baoxiudj.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. .container4 {
  2. padding: 20rpx;
  3. background-color: #f5f5f5;
  4. min-height: 100vh;
  5. padding-top: calc(90rpx + 44px + 20rpx); /* 增加了额外的顶部间距 */
  6. }
  7. .custom-nav {
  8. display: flex;
  9. align-items: center;
  10. height: 90rpx;
  11. margin-bottom: 20rpx;
  12. background-color: #2E82FF;
  13. position: fixed;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. z-index: 1000;
  18. padding: 0 20rpx;
  19. padding-top: 44px; /* 适配iPhone状态栏 */
  20. }
  21. .back-icon {
  22. position: fixed;
  23. top: 115rpx;
  24. left: 30rpx;
  25. z-index: 999;
  26. width: 40rpx;
  27. height: 40rpx;
  28. }
  29. .nav-title {
  30. flex: 1;
  31. text-align: center;
  32. font-size: 34rpx;
  33. color: #fff;
  34. }
  35. .nav-placeholder {
  36. width: 60rpx;
  37. }
  38. .bill-card {
  39. background-color: #fff;
  40. border-radius: 16rpx;
  41. padding: 15rpx 24rpx 15rpx 24rpx ;
  42. margin-bottom: 20rpx;
  43. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  44. position: relative;
  45. }
  46. .bill-rownew {
  47. display: flex;
  48. font-size: 32rpx;
  49. justify-content: space-between;
  50. align-items: center;
  51. padding: 10rpx 0;
  52. }
  53. /* 第一个卡片额外的顶部间距 */
  54. .first-card {
  55. margin-top: 20rpx;
  56. }
  57. .bill-row {
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. padding: 20rpx 0;
  62. }
  63. .bill-row-address {
  64. text-align: right;
  65. color: rgba(104, 108, 128, 1);
  66. }
  67. .divider {
  68. height: 1rpx;
  69. background-color: #eee;
  70. margin: 10rpx 0; /* 增加了分隔线上下间距 */
  71. }
  72. .solid-divider {
  73. height: 1rpx;
  74. background-color: #ddd;
  75. margin: 15rpx 0 20rpx 0;
  76. }
  77. .card-title {
  78. font-size: 32rpx;
  79. color: #333;
  80. font-weight: 400;
  81. margin-bottom: 10rpx;
  82. }
  83. .reply-timenew {
  84. font-size: 32rpx;
  85. color: rgba(170, 177, 192, 1);
  86. padding: 10rpx;
  87. }
  88. .input-right {
  89. text-align: right;
  90. width: 60%;
  91. }
  92. .input-text {
  93. color: rgba(104, 108, 128, 1);
  94. }
  95. .placeholder-style {
  96. color: #999;
  97. text-align: right;
  98. }
  99. .selector-value {
  100. display: flex;
  101. align-items: center;
  102. }
  103. .arrow {
  104. margin-left: 10rpx;
  105. color: #999;
  106. }
  107. .fault-description textarea {
  108. width: 100%;
  109. height: 150rpx;
  110. padding: 10rpx;
  111. box-sizing: border-box;
  112. font-size: 28rpx;
  113. }
  114. .upload-section {
  115. display: flex;
  116. flex-wrap: wrap;
  117. }
  118. .upload-btn-container {
  119. width: 150rpx;
  120. height: 150rpx;
  121. margin-right: 20rpx;
  122. margin-bottom: 20rpx;
  123. border-radius: 8rpx;
  124. display: flex;
  125. justify-content: center;
  126. align-items: center;
  127. }
  128. .solid-border {
  129. border: 2rpx solid #ccc;
  130. }
  131. .upload-btn {
  132. width: 120rpx;
  133. height: 120rpx;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. }
  138. .plus-icon {
  139. font-size: 60rpx;
  140. color: #999;
  141. }
  142. .upload-tip {
  143. font-size: 24rpx;
  144. color: #999;
  145. margin-top: 10rpx;
  146. }
  147. .image-preview {
  148. display: flex;
  149. flex-wrap: wrap;
  150. }
  151. .image-item {
  152. width: 150rpx;
  153. height: 150rpx;
  154. margin-right: 20rpx;
  155. margin-bottom: 20rpx;
  156. position: relative;
  157. }
  158. .image-item image {
  159. width: 100%;
  160. height: 100%;
  161. border-radius: 8rpx;
  162. }
  163. .delete-icon {
  164. position: absolute;
  165. top: -15rpx;
  166. right: -15rpx;
  167. width: 40rpx;
  168. height: 40rpx;
  169. background-color: rgba(0, 0, 0, 0.5);
  170. color: #fff;
  171. border-radius: 50%;
  172. display: flex;
  173. justify-content: center;
  174. align-items: center;
  175. font-size: 24rpx;
  176. }
  177. .submit-btn {
  178. width: 90%;
  179. height: 45px;
  180. background-color: #0080ff;
  181. color: white;
  182. border-radius: 22.5px;
  183. font-size: 16px;
  184. display: flex;
  185. align-items: center;
  186. justify-content: center;
  187. margin: 30px auto;
  188. }
  189. .submit-btn.disabled {
  190. opacity: 0.7;
  191. }
  192. /* 报修须知弹窗样式 */
  193. .notification-modal {
  194. position: fixed;
  195. bottom: 0;
  196. left: 0;
  197. right: 0;
  198. background-color: rgba(0, 0, 0, 0.5);
  199. z-index: 999;
  200. display: flex;
  201. justify-content: center;
  202. align-items: flex-end;
  203. height: 100%;
  204. }
  205. .notification-content {
  206. background-color: #fff;
  207. width: 100%;
  208. border-radius: 20rpx 20rpx 0 0;
  209. padding: 40rpx 30rpx;
  210. }
  211. .notification-title {
  212. text-align: center;
  213. font-size: 36rpx;
  214. font-weight: bold;
  215. margin-bottom: 20rpx;
  216. }
  217. .notification-divider {
  218. height: 1rpx;
  219. background-color: #ddd;
  220. margin-bottom: 30rpx;
  221. }
  222. .notification-list {
  223. margin-bottom: 40rpx;
  224. }
  225. .notification-item {
  226. margin-bottom: 20rpx;
  227. font-size: 28rpx;
  228. line-height: 1.5;
  229. }
  230. .notification-btn {
  231. background-color: #007aff;
  232. color: #fff;
  233. text-align: center;
  234. padding: 25rpx 0;
  235. border-radius: 50rpx;
  236. font-size: 32rpx;
  237. }
  238. .disabled-btn {
  239. background-color: #999;
  240. pointer-events: none;
  241. }
  242. /* 必填项标记 */
  243. .required {
  244. color: #ff4d4f;
  245. margin-left: 4rpx;
  246. }
  247. .submit-button.submitting {
  248. background-color: #cccccc;
  249. color: #666666;
  250. }