insert.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @import "./insert.skeleton.wxss";
  2. .header {
  3. width: 100vw;
  4. padding: 20rpx 30rpx;
  5. background-color: #fff;
  6. font-size: 24rpx;
  7. color: #999999;
  8. box-sizing: border-box;
  9. margin-bottom: 20rpx;
  10. .title {
  11. font-size: 36rpx;
  12. font-weight: 600;
  13. color: #333333;
  14. margin-bottom: 10rpx;
  15. }
  16. }
  17. .inputs {
  18. width: 100vw;
  19. padding: 30rpx;
  20. background-color: #fff;
  21. box-sizing: border-box;
  22. font-size: 30rpx;
  23. font-family: PingFang SC-Medium, PingFang SC;
  24. font-weight: 600;
  25. color: #333333;
  26. border-bottom: 1px solid #ddd;
  27. .label {
  28. position: relative;
  29. margin-bottom: 20rpx;
  30. .Yl_VoiceInput{
  31. position: absolute;
  32. margin-left: 20rpx;
  33. }
  34. }
  35. textarea {
  36. font-size: 28rpx !important;
  37. font-weight: 400;
  38. width: 100%;
  39. white-space: pre-wrap;
  40. word-break: break-all;
  41. }
  42. }
  43. .disabled {
  44. color: #999;
  45. }
  46. .footer {
  47. display: flex;
  48. justify-content: space-between;
  49. padding: 0 30rpx;
  50. position: fixed;
  51. width: 100vw;
  52. height: 136rpx;
  53. background: #FFFFFF;
  54. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  55. bottom: 0;
  56. box-sizing: border-box;
  57. z-index: 9999;
  58. padding-top: 10rpx;
  59. .but-box {
  60. .but {
  61. min-width: 156rpx;
  62. height: 90rpx;
  63. border-radius: 8rpx;
  64. font-size: 28rpx;
  65. font-family: PingFang SC-Bold, PingFang SC;
  66. font-weight: bold;
  67. }
  68. .submit1 {
  69. margin-left: 20rpx;
  70. color: #FFFFFF;
  71. }
  72. }
  73. }
  74. .files-box {
  75. display: flex;
  76. justify-content: space-between;
  77. >view {
  78. display: flex;
  79. justify-content: space-between;
  80. width: 110rpx;
  81. font-size: 40rpx !important;
  82. }
  83. }