feedback.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. .container.data-v-a24b82f2 {
  2. width: 100%;
  3. height: 100vh;
  4. background-color: #FFFFFF;
  5. display: flex;
  6. flex-direction: column;
  7. padding-top: 30px;
  8. box-sizing: border-box;
  9. }
  10. .header.data-v-a24b82f2 {
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. padding: 20rpx 30rpx;
  15. background-color: #FFFFFF;
  16. border-bottom: 1rpx solid #F0F0F0;
  17. position: relative;
  18. }
  19. .back-btn.data-v-a24b82f2 {
  20. width: 60rpx;
  21. height: 60rpx;
  22. display: flex;
  23. align-items: center;
  24. justify-content: center;
  25. z-index: 10;
  26. }
  27. .back-icon.data-v-a24b82f2 {
  28. font-size: 40rpx;
  29. color: #333333;
  30. font-weight: bold;
  31. }
  32. .header-title.data-v-a24b82f2 {
  33. position: absolute;
  34. left: 50%;
  35. transform: translateX(-50%);
  36. font-size: 36rpx;
  37. font-weight: bold;
  38. color: #333333;
  39. }
  40. .header-right.data-v-a24b82f2 {
  41. width: 60rpx;
  42. }
  43. .scroll-content.data-v-a24b82f2 {
  44. flex: 1;
  45. width: 100%;
  46. padding-bottom: env(safe-area-inset-bottom);
  47. }
  48. .section.data-v-a24b82f2 {
  49. padding: 40rpx 30rpx;
  50. background-color: #FFFFFF;
  51. }
  52. .section-title.data-v-a24b82f2 {
  53. display: flex;
  54. align-items: center;
  55. margin-bottom: 30rpx;
  56. }
  57. .title-indicator.data-v-a24b82f2 {
  58. width: 6rpx;
  59. height: 32rpx;
  60. background-color: #81C784;
  61. border-radius: 3rpx;
  62. margin-right: 15rpx;
  63. }
  64. .title-text.data-v-a24b82f2 {
  65. font-size: 32rpx;
  66. font-weight: bold;
  67. color: #333333;
  68. }
  69. .type-buttons.data-v-a24b82f2 {
  70. display: flex;
  71. gap: 20rpx;
  72. }
  73. .type-btn.data-v-a24b82f2 {
  74. flex: 1;
  75. height: 80rpx;
  76. background-color: #F5F5F5;
  77. border-radius: 40rpx;
  78. display: flex;
  79. align-items: center;
  80. justify-content: center;
  81. border: 2rpx solid transparent;
  82. transition: all 0.3s;
  83. }
  84. .type-btn.active.data-v-a24b82f2 {
  85. background-color: #E8F5E9;
  86. border-color: #81C784;
  87. }
  88. .type-btn-text.data-v-a24b82f2 {
  89. font-size: 28rpx;
  90. color: #999999;
  91. }
  92. .type-btn.active .type-btn-text.data-v-a24b82f2 {
  93. color: #4CAF50;
  94. font-weight: bold;
  95. }
  96. .description-input.data-v-a24b82f2 {
  97. width: 100%;
  98. min-height: 300rpx;
  99. background-color: #F5F5F5;
  100. border-radius: 16rpx;
  101. padding: 30rpx;
  102. font-size: 28rpx;
  103. color: #333333;
  104. line-height: 1.6;
  105. box-sizing: border-box;
  106. }
  107. .description-input.data-v-a24b82f2::-webkit-input-placeholder {
  108. color: #CCCCCC;
  109. }
  110. .description-input.data-v-a24b82f2::placeholder {
  111. color: #CCCCCC;
  112. }
  113. .upload-area.data-v-a24b82f2 {
  114. width: 100%;
  115. }
  116. .image-list.data-v-a24b82f2 {
  117. display: flex;
  118. flex-wrap: wrap;
  119. gap: 20rpx;
  120. }
  121. .image-item.data-v-a24b82f2 {
  122. position: relative;
  123. width: 200rpx;
  124. height: 200rpx;
  125. border-radius: 12rpx;
  126. overflow: hidden;
  127. }
  128. .uploaded-image.data-v-a24b82f2 {
  129. width: 100%;
  130. height: 100%;
  131. }
  132. .delete-btn.data-v-a24b82f2 {
  133. position: absolute;
  134. top: 0;
  135. right: 0;
  136. width: 50rpx;
  137. height: 50rpx;
  138. background-color: rgba(0, 0, 0, 0.5);
  139. border-radius: 0 0 0 50rpx;
  140. display: flex;
  141. align-items: center;
  142. justify-content: center;
  143. }
  144. .delete-icon.data-v-a24b82f2 {
  145. font-size: 40rpx;
  146. color: #FFFFFF;
  147. line-height: 1;
  148. }
  149. .upload-btn.data-v-a24b82f2 {
  150. width: 200rpx;
  151. height: 200rpx;
  152. border: 2rpx dashed #CCCCCC;
  153. border-radius: 12rpx;
  154. display: flex;
  155. align-items: center;
  156. justify-content: center;
  157. background-color: #FAFAFA;
  158. }
  159. .upload-icon.data-v-a24b82f2 {
  160. font-size: 80rpx;
  161. color: #CCCCCC;
  162. line-height: 1;
  163. }
  164. .submit-section.data-v-a24b82f2 {
  165. padding: 30rpx;
  166. background-color: #FFFFFF;
  167. border-top: 1rpx solid #F0F0F0;
  168. padding-bottom: calc(30rpx + env(safe-area-inset-bottom));
  169. }
  170. .submit-btn.data-v-a24b82f2 {
  171. width: 100%;
  172. height: 88rpx;
  173. background-color: #4FC3F7;
  174. color: #FFFFFF;
  175. font-size: 32rpx;
  176. font-weight: bold;
  177. border: none;
  178. border-radius: 44rpx;
  179. display: flex;
  180. align-items: center;
  181. justify-content: center;
  182. }
  183. .submit-btn.data-v-a24b82f2::after {
  184. border: none;
  185. }