insert.scss 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .box {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. margin-top: 20rpx;
  5. background-color: #fff;
  6. .content {
  7. border-radius: 8rpx;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. .upload {
  11. display: flex;
  12. align-items: center;
  13. width: 100%;
  14. height: 88rpx;
  15. box-sizing: border-box;
  16. .title {
  17. flex: 1;
  18. font-size: 28rpx;
  19. font-family: PingFang SC-Regular, PingFang SC;
  20. color: #333333;
  21. font-weight: bold;
  22. }
  23. navigator {
  24. width: 100rpx;
  25. height: 80rpx;
  26. line-height: 80rpx;
  27. text-align: center;
  28. padding: 0;
  29. }
  30. }
  31. }
  32. }
  33. .inputs {
  34. width: 100vw;
  35. padding: 30rpx;
  36. background-color: #fff;
  37. box-sizing: border-box;
  38. font-size: 30rpx;
  39. font-family: PingFang SC-Medium, PingFang SC;
  40. font-weight: 600;
  41. color: #333333;
  42. border-bottom: 1px solid #ddd;
  43. .label {
  44. position: relative;
  45. margin-bottom: 20rpx;
  46. .Yl_VoiceInput {
  47. position: absolute;
  48. margin-left: 20rpx;
  49. }
  50. }
  51. textarea {
  52. font-size: 28rpx !important;
  53. font-weight: 400;
  54. width: 100%;
  55. white-space: pre-wrap;
  56. word-break: break-all;
  57. }
  58. }
  59. .footer {
  60. display: flex;
  61. align-items: center;
  62. justify-content: flex-end;
  63. position: fixed;
  64. width: 750rpx;
  65. height: 130rpx;
  66. background: #FFFFFF;
  67. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  68. bottom: 0;
  69. .but {
  70. width: 156rpx;
  71. height: 90rpx;
  72. background: #3874F6;
  73. border-radius: 8rpx;
  74. font-size: 28rpx;
  75. font-family: PingFang SC-Bold, PingFang SC;
  76. font-weight: bold;
  77. color: #FFFFFF;
  78. margin-right: 30rpx;
  79. }
  80. }