afterservice.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .container {
  2. margin: 0rpx 30rpx;
  3. width: calc(100% - 60rpx);
  4. padding: 0 0;
  5. height: calc(100% - 60rpx);
  6. overflow: hidden;
  7. overflow-y: hidden;
  8. }
  9. .section {
  10. border-radius: 13rpx;
  11. width: calc(100% - 60rpx);
  12. background: #fff;
  13. margin-top: 20rpx;
  14. padding: 30rpx;
  15. }
  16. .section-title {
  17. font-size: 38rpx;
  18. font-weight: bold;
  19. margin-bottom: 20rpx;
  20. padding-bottom: 20rpx;
  21. border-bottom: 1rpx solid #e7e7e7;
  22. }
  23. .field-title {
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. font-size: 34rpx;
  28. color: #333;
  29. margin-bottom: 20rpx;
  30. }
  31. .word-limit {
  32. color: #999;
  33. font-size: 24rpx;
  34. }
  35. .textarea {
  36. width: calc(100% - 60rpx);
  37. border-radius: 8rpx;
  38. height: 200rpx;
  39. border: 1px solid #eee;
  40. padding: 20rpx;
  41. font-size: 26rpx;
  42. background: #fafafa;
  43. }
  44. .upload-box {
  45. width: 160rpx;
  46. height: 160rpx;
  47. border: 2rpx dashed #ccc;
  48. display: flex;
  49. flex-direction: column;
  50. align-items: center;
  51. justify-content: center;
  52. color: #999;
  53. }
  54. .upload-icon {
  55. width: 60rpx;
  56. height: 60rpx;
  57. margin-bottom: 10rpx;
  58. }
  59. .upload-text {
  60. font-size: 24rpx;
  61. }
  62. .upload-tip {
  63. margin-top: 10rpx;
  64. font-size: 22rpx;
  65. color: #409eff;
  66. }
  67. .submit-btn {
  68. margin: 40rpx 30rpx 0;
  69. background: #409eff;
  70. color: #fff;
  71. font-size: 32rpx;
  72. border-radius: 8rpx;
  73. }
  74. .img-container {
  75. display: flex;
  76. flex-wrap: wrap;
  77. gap: 20rpx;
  78. }
  79. .img-wrapper {
  80. position: relative;
  81. }
  82. .img-thumb {
  83. width: 195rpx;
  84. height: 195rpx;
  85. border-radius: 8rpx;
  86. }
  87. .delete-btn {
  88. position: absolute;
  89. top: -10rpx;
  90. right: -10rpx;
  91. background: rgba(0,0,0,0.6);
  92. color: white;
  93. border-radius: 50%;
  94. width: 40rpx;
  95. height: 40rpx;
  96. display: flex;
  97. justify-content: center;
  98. align-items: center;
  99. font-size: 28rpx;
  100. }
  101. .upload-btn {
  102. width: 195rpx;
  103. height: 195rpx;
  104. background: #f0f0f0;
  105. display: flex;
  106. justify-content: center;
  107. align-items: center;
  108. border-radius: 8rpx;
  109. font-size: 48rpx;
  110. color: #999;
  111. }