tousujianyi.wxss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. .fixed-back {
  22. font-size: 40rpx;
  23. text-align: center;
  24. color: #fff;
  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: 28rpx;
  76. color: rgba(104, 108, 128, 1);
  77. }
  78. .divider {
  79. height: 1rpx;
  80. background-color: #eee;
  81. margin: 10rpx 0; /* 增加了分隔线上下间距 */
  82. }
  83. .solid-divider {
  84. height: 1rpx;
  85. background-color: #ddd;
  86. margin: 15rpx 0 20rpx 0;
  87. }
  88. .card-title {
  89. font-size: 32rpx;
  90. color: #333;
  91. font-weight: 500;
  92. margin-bottom: 10rpx;
  93. padding: 10rpx 0;
  94. }
  95. .input-right {
  96. text-align: right;
  97. width: 60%;
  98. }
  99. .input-text {
  100. color: rgba(104, 108, 128, 1);
  101. }
  102. .placeholder-style {
  103. color: #999;
  104. text-align: right;
  105. }
  106. .selector-value {
  107. display: flex;
  108. align-items: center;
  109. }
  110. .arrow {
  111. margin-left: 10rpx;
  112. color: #999;
  113. }
  114. .fault-description {
  115. margin-bottom: 20rpx;
  116. }
  117. .fault-description textarea {
  118. width: 100%;
  119. height: 150rpx;
  120. padding: 10rpx;
  121. box-sizing: border-box;
  122. font-size: 28rpx;
  123. }
  124. .upload-section {
  125. display: flex;
  126. flex-wrap: wrap;
  127. }
  128. .upload-btn-container {
  129. width: 150rpx;
  130. height: 150rpx;
  131. margin-right: 20rpx;
  132. margin-bottom: 20rpx;
  133. border-radius: 8rpx;
  134. display: flex;
  135. justify-content: center;
  136. align-items: center;
  137. }
  138. .solid-border {
  139. border: 2rpx solid #ccc;
  140. }
  141. .upload-btn {
  142. width: 120rpx;
  143. height: 120rpx;
  144. display: flex;
  145. justify-content: center;
  146. align-items: center;
  147. }
  148. .plus-icon {
  149. font-size: 60rpx;
  150. color: #999;
  151. }
  152. .upload-tip {
  153. font-size: 24rpx;
  154. color: #999;
  155. margin-top: 10rpx;
  156. }
  157. .image-preview {
  158. display: flex;
  159. flex-wrap: wrap;
  160. }
  161. .image-item {
  162. width: 150rpx;
  163. height: 150rpx;
  164. margin-right: 20rpx;
  165. margin-bottom: 20rpx;
  166. position: relative;
  167. }
  168. .image-item image {
  169. width: 100%;
  170. height: 100%;
  171. border-radius: 8rpx;
  172. }
  173. .delete-icon {
  174. position: absolute;
  175. top: -15rpx;
  176. right: -15rpx;
  177. width: 40rpx;
  178. height: 40rpx;
  179. background-color: rgba(0, 0, 0, 0.5);
  180. color: #fff;
  181. border-radius: 50%;
  182. display: flex;
  183. justify-content: center;
  184. align-items: center;
  185. font-size: 24rpx;
  186. }
  187. .submit-btn {
  188. width: 90%;
  189. height: 45px;
  190. background-color: #0080ff;
  191. color: white;
  192. border-radius: 22.5px;
  193. font-size: 16px;
  194. display: flex;
  195. align-items: center;
  196. justify-content: center;
  197. margin: 30px auto;
  198. }
  199. .submit-btn.disabled {
  200. opacity: 0.7;
  201. }
  202. .reply-item {
  203. background-color: #f8f8f8;
  204. border-radius: 8rpx;
  205. margin-top: 20rpx;
  206. }
  207. .reply-time {
  208. font-size: 28rpx;
  209. color: #666;
  210. padding: 20rpx;
  211. }
  212. .reply-timenew {
  213. font-size: 32rpx;
  214. color: #666;
  215. padding: 10rpx;
  216. }
  217. .reply-content {
  218. font-size: 30rpx;
  219. color: #333;
  220. padding: 20rpx;
  221. line-height: 1.5;
  222. }
  223. .preview-text {
  224. color: rgba(104, 108, 128, 1);
  225. font-size: 28rpx;
  226. }
  227. .reply-content {
  228. font-size: 28rpx;
  229. color: #333;
  230. padding: 10rpx 0;
  231. line-height: 1.5;
  232. }
  233. .reply-time {
  234. font-size: 28rpx;
  235. color: rgba(104, 108, 128, 1);
  236. text-align: right;
  237. }
  238. /* 禁用状态的输入框样式 */
  239. input[disabled], textarea[disabled] {
  240. color: #333;
  241. background-color: transparent;
  242. }