tousujianyi.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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. width: 16px;
  23. height: 16px;
  24. vertical-align: middle;
  25. }
  26. .nav-title {
  27. flex: 1;
  28. text-align: center;
  29. font-size: 34rpx;
  30. color: #fff;
  31. }
  32. .nav-placeholder {
  33. width: 60rpx;
  34. }
  35. .bill-card {
  36. background-color: #fff;
  37. border-radius: 16rpx;
  38. padding: 30rpx;
  39. margin-bottom: 10rpx;
  40. box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
  41. position: relative;
  42. }
  43. /* 第一个卡片额外的顶部间距 */
  44. /* .first-card {
  45. margin-top: 10rpx;
  46. } */
  47. .bill-row {
  48. display: flex;
  49. justify-content: space-between;
  50. align-items: center;
  51. padding: 20rpx 0;
  52. }
  53. .bill-rownew {
  54. display: flex;
  55. font-size: 32rpx;
  56. justify-content: space-between;
  57. align-items: center;
  58. padding: 10rpx 0;
  59. }
  60. .bill-row-address {
  61. color: rgba(104, 108, 128, 1);
  62. }
  63. /* 必填项标记 */
  64. .required {
  65. color: #ff4d4f;
  66. margin-left: 4rpx;
  67. }
  68. /* 单选框样式 */
  69. .radio-group {
  70. display: flex;
  71. justify-content: flex-end;
  72. }
  73. .radio {
  74. margin-left: 30rpx;
  75. font-size: 32rpx;
  76. color: #333;
  77. font-weight: 500;
  78. }
  79. .divider {
  80. height: 1rpx;
  81. background-color: #eee;
  82. margin: 10rpx 0; /* 增加了分隔线上下间距 */
  83. }
  84. .solid-divider {
  85. height: 1rpx;
  86. background-color: #ddd;
  87. margin: 15rpx 0 20rpx 0;
  88. }
  89. .card-title {
  90. font-size: 32rpx;
  91. color: #333;
  92. font-weight: 500;
  93. margin-bottom: 10rpx;
  94. padding: 10rpx 0;
  95. }
  96. .input-right {
  97. text-align: right;
  98. width: 60%;
  99. }
  100. .input-text {
  101. color: rgba(104, 108, 128, 1);
  102. }
  103. .preview-text {
  104. color: #333;
  105. }
  106. .placeholder-style {
  107. color: #999;
  108. text-align: right;
  109. }
  110. .selector-value {
  111. display: flex;
  112. align-items: center;
  113. }
  114. .arrow {
  115. margin-left: 10rpx;
  116. color: #999;
  117. }
  118. .fault-description textarea {
  119. width: 100%;
  120. height: 150rpx;
  121. padding: 10rpx;
  122. box-sizing: border-box;
  123. font-size: 28rpx;
  124. }
  125. .upload-section {
  126. display: flex;
  127. flex-wrap: wrap;
  128. }
  129. .upload-btn-container {
  130. width: 150rpx;
  131. height: 150rpx;
  132. margin-right: 20rpx;
  133. margin-bottom: 20rpx;
  134. border-radius: 8rpx;
  135. display: flex;
  136. justify-content: center;
  137. align-items: center;
  138. }
  139. .solid-border {
  140. border: 2rpx solid #ccc;
  141. }
  142. .upload-btn {
  143. width: 120rpx;
  144. height: 120rpx;
  145. display: flex;
  146. justify-content: center;
  147. align-items: center;
  148. }
  149. .plus-icon {
  150. font-size: 60rpx;
  151. color: #999;
  152. }
  153. .upload-tip {
  154. font-size: 24rpx;
  155. color: #999;
  156. margin-top: 10rpx;
  157. }
  158. .image-preview {
  159. display: flex;
  160. flex-wrap: wrap;
  161. }
  162. .image-item {
  163. width: 150rpx;
  164. height: 150rpx;
  165. margin-right: 20rpx;
  166. margin-bottom: 20rpx;
  167. position: relative;
  168. }
  169. .image-item image {
  170. width: 100%;
  171. height: 100%;
  172. border-radius: 8rpx;
  173. }
  174. .delete-icon {
  175. position: absolute;
  176. top: -15rpx;
  177. right: -15rpx;
  178. width: 40rpx;
  179. height: 40rpx;
  180. background-color: rgba(0, 0, 0, 0.5);
  181. color: #fff;
  182. border-radius: 50%;
  183. display: flex;
  184. justify-content: center;
  185. align-items: center;
  186. font-size: 24rpx;
  187. }
  188. .submit-btn {
  189. width: 90%;
  190. height: 90rpx;
  191. background-color: #0080ff;
  192. color: white;
  193. border-radius: 45rpx;
  194. font-size: 36rpx;
  195. font-weight: 600;
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. margin: 60rpx auto;
  200. }
  201. .submit-btn.disabled {
  202. opacity: 0.7;
  203. }
  204. .reply-item {
  205. background-color: #f8f8f8;
  206. border-radius: 8rpx;
  207. margin-top: 20rpx;
  208. }
  209. .reply-time {
  210. font-size: 28rpx;
  211. color: #666;
  212. padding: 20rpx;
  213. }
  214. .reply-timenew {
  215. font-size: 32rpx;
  216. color: #666;
  217. padding: 10rpx;
  218. }
  219. .reply-content {
  220. font-size: 30rpx;
  221. color: #333;
  222. padding: 20rpx;
  223. line-height: 1.5;
  224. }
  225. .reply-content {
  226. font-size: 28rpx;
  227. color: #333;
  228. padding: 10rpx 0;
  229. line-height: 1.5;
  230. }
  231. .reply-time {
  232. font-size: 28rpx;
  233. color: rgba(104, 108, 128, 1);
  234. text-align: right;
  235. }
  236. /* 禁用状态的输入框样式 */
  237. input[disabled], textarea[disabled] {
  238. color: #333;
  239. background-color: transparent;
  240. }
  241. /* 自定义单选按钮的选中颜色 */
  242. radio .wx-radio-input.wx-radio-input-checked {
  243. background-color: rgba(46, 130, 255, 1) !important;
  244. border-color: rgba(46, 130, 255, 1) !important;
  245. }
  246. radio .wx-radio-input.wx-radio-input-checked::before {
  247. color: #ffffff !important; /* 选中后中间的对勾颜色 */
  248. }