acceptFill.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. .container {
  2. padding: 20rpx;
  3. min-height: 100vh;
  4. }
  5. .section-title {
  6. color: #333 !important;
  7. font-size: 32rpx;
  8. padding: 20rpx;
  9. font-weight: bold;
  10. }
  11. .section-title1 {
  12. color: #333 !important;
  13. font-size: 32rpx;
  14. font-weight: bold;
  15. padding: 20rpx;
  16. border-bottom: 1px solid #eee;
  17. }
  18. .service-order {
  19. background: #fff;
  20. margin-bottom: 20rpx;
  21. }
  22. .order-info {
  23. padding: 10rpx 20rpx;
  24. background: #fff;
  25. margin-bottom: 10rpx;
  26. }
  27. .info-item {
  28. margin-bottom: 20rpx;
  29. font-size: 28rpx;
  30. }
  31. .delay-info {
  32. color: #ff4d4f;
  33. }
  34. .highlight {
  35. color: #ff4d4f;
  36. }
  37. .service-record {
  38. background: #fff;
  39. }
  40. .record-header {
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. padding-right: 20rpx;
  45. border-bottom: 1px solid #eee;
  46. }
  47. .history-btn {
  48. color: #3963bc;
  49. font-size: 28rpx;
  50. }
  51. .record-content {
  52. padding: 20rpx;
  53. background-color: #fff;
  54. margin-bottom: 20rpx;
  55. }
  56. .product-item {
  57. margin-bottom: 10rpx;
  58. }
  59. .product-label {
  60. display: inline-block;
  61. width: 180rpx;
  62. font-size: 28rpx;
  63. }
  64. .product-name,
  65. .product-value {
  66. color: #333;
  67. }
  68. .quantity-input {
  69. display: inline-block;
  70. width: 100px;
  71. border: 1px solid #ddd;
  72. padding: 4px 8px;
  73. border-radius: 4px;
  74. font-size: 28rpx;
  75. height: 20rpx;
  76. color: #333;
  77. }
  78. .form-container {
  79. padding: 20rpx;
  80. }
  81. .form-item {
  82. margin-bottom: 10rpx;
  83. display: flex;
  84. justify-content: left;
  85. align-items: start;
  86. }
  87. .form-label {
  88. width: 200rpx;
  89. font-size: 30rpx;
  90. color: #333;
  91. }
  92. .form-input {
  93. flex: 1;
  94. height: 60rpx;
  95. border: 1rpx solid #ddd;
  96. border-radius: 8rpx;
  97. padding: 10rpx;
  98. }
  99. .picker {
  100. flex: 1;
  101. height: 60rpx;
  102. border: 1rpx solid #ddd;
  103. border-radius: 8rpx;
  104. padding: 10rpx;
  105. }
  106. .picker-text {
  107. line-height: 60rpx;
  108. color: #333;
  109. }
  110. .button-container {
  111. display: flex;
  112. justify-content: center;
  113. }
  114. .nodata {
  115. padding: 20rpx;
  116. text-align: center;
  117. color: #999;
  118. }
  119. .medium-button {
  120. padding: 0px 20px;
  121. border: none;
  122. border-radius: 4px;
  123. cursor: pointer;
  124. font-size: 28rpx;
  125. }
  126. .btn-area {
  127. display: flex;
  128. justify-content: space-around;
  129. }
  130. .required::before {
  131. content: '*';
  132. color: red;
  133. margin-right: 5rpx;
  134. }
  135. .uploader {
  136. margin-top: 20rpx;
  137. }
  138. .preview-list {
  139. display: flex;
  140. flex-wrap: wrap;
  141. }
  142. .preview-item {
  143. width: 200rpx;
  144. height: 200rpx;
  145. margin-right: 20rpx;
  146. margin-bottom: 20rpx;
  147. position: relative;
  148. }
  149. .preview-image {
  150. width: 100%;
  151. height: 100%;
  152. border-radius: 8rpx;
  153. }
  154. .upload-btn {
  155. border: 2rpx dashed #ccc;
  156. display: flex;
  157. justify-content: center;
  158. align-items: center;
  159. background-color: #f5f5f5;
  160. }
  161. .add-text {
  162. font-size: 60rpx;
  163. color: #666;
  164. }
  165. .delete-btn {
  166. position: absolute;
  167. right: -10rpx;
  168. top: -10rpx;
  169. width: 40rpx;
  170. height: 40rpx;
  171. background: #ff4444;
  172. border-radius: 50%;
  173. color: white;
  174. text-align: center;
  175. line-height: 40rpx;
  176. font-size: 36rpx;
  177. z-index: 2;
  178. }
  179. .action-buttons {
  180. position: absolute;
  181. bottom: 0;
  182. left: 0;
  183. right: 0;
  184. display: flex;
  185. justify-content: space-between;
  186. padding: 10rpx;
  187. }
  188. .input-custorm {
  189. flex: 1;
  190. height: 60rpx;
  191. border: 1rpx solid #ddd;
  192. border-radius: 8rpx;
  193. padding-bottom: 30rpx;
  194. position: relative;
  195. }