add.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .head {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. padding: 20rpx 30rpx;
  5. background-color: #fff;
  6. .title {
  7. line-height: 40rpx;
  8. font-size: 28rpx;
  9. color: #333333;
  10. margin-bottom: 20rpx;
  11. }
  12. text {
  13. font-size: 24rpx;
  14. font-family: PingFang SC-Regular, PingFang SC;
  15. color: #333333;
  16. }
  17. }
  18. .label {
  19. width: 750rpx;
  20. height: 80rpx;
  21. background: #FFFFFF;
  22. font-size: 28rpx;
  23. color: #333333;
  24. box-sizing: border-box;
  25. padding: 20rpx 30rpx;
  26. margin-top: 20rpx;
  27. }
  28. .text {
  29. padding: 0 30rpx 20rpx;
  30. background-color: #fff;
  31. textarea {
  32. width: 690rpx;
  33. height: 180rpx;
  34. background: #F5F5F5 !important;
  35. border-radius: 16rpx;
  36. box-sizing: border-box;
  37. padding: 20rpx;
  38. font-size: 24rpx !important;
  39. }
  40. }
  41. .footer {
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. padding: 0 30rpx;
  46. position: fixed;
  47. width: 100vw;
  48. height: 130rpx;
  49. background: #FFFFFF;
  50. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  51. bottom: 0;
  52. box-sizing: border-box;
  53. .but {
  54. width: 156rpx;
  55. height: 90rpx;
  56. background: #3874F6;
  57. border-radius: 8rpx;
  58. font-size: 28rpx;
  59. font-family: PingFang SC-Bold, PingFang SC;
  60. font-weight: bold;
  61. color: #FFFFFF;
  62. }
  63. }