爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

227 lines
5.7 KiB

  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .container.data-v-11a7f7fa {
  27. min-height: 100vh;
  28. background: #4A332D;
  29. padding-bottom: var(--f5ca2768);
  30. }
  31. .nav-bar.data-v-11a7f7fa {
  32. display: flex;
  33. align-items: center;
  34. height: 88rpx;
  35. padding: 0 30rpx;
  36. }
  37. .nav-bar .back.data-v-11a7f7fa {
  38. padding: 20rpx;
  39. margin-left: -20rpx;
  40. color: #fff;
  41. }
  42. .nav-bar .title.data-v-11a7f7fa {
  43. flex: 1;
  44. text-align: center;
  45. font-size: 34rpx;
  46. font-weight: 500;
  47. color: #fff;
  48. }
  49. .nav-bar .right-btns.data-v-11a7f7fa {
  50. display: flex;
  51. gap: 30rpx;
  52. }
  53. .nav-bar .right-btns .more.data-v-11a7f7fa, .nav-bar .right-btns .share.data-v-11a7f7fa {
  54. font-size: 40rpx;
  55. color: #fff;
  56. }
  57. .subtitle.data-v-11a7f7fa {
  58. text-align: center;
  59. font-size: 24rpx;
  60. color: rgba(255, 255, 255, 0.8);
  61. margin-bottom: 30rpx;
  62. }
  63. .check-types.data-v-11a7f7fa {
  64. display: flex;
  65. justify-content: space-between;
  66. padding: 0 30rpx;
  67. margin-bottom: 30rpx;
  68. }
  69. .check-types .type-tag.data-v-11a7f7fa {
  70. background: rgba(255, 255, 255, 0.2);
  71. border-radius: 30rpx;
  72. padding: 10rpx 20rpx;
  73. display: flex;
  74. align-items: center;
  75. gap: 8rpx;
  76. color: #fff;
  77. font-size: 24rpx;
  78. }
  79. .check-types .type-tag .check-icon.data-v-11a7f7fa {
  80. font-size: 24rpx;
  81. }
  82. .content.data-v-11a7f7fa {
  83. background: linear-gradient(to bottom, #fef2da, 3%, #fffefb);
  84. border-radius: 30rpx 30rpx 0 0;
  85. min-height: calc(100vh - 200rpx);
  86. padding: 30rpx;
  87. }
  88. .content .detail-section .section-title.data-v-11a7f7fa {
  89. font-size: 32rpx;
  90. font-weight: bold;
  91. color: #333;
  92. margin-bottom: 30rpx;
  93. }
  94. .content .detail-section .result-section.data-v-11a7f7fa {
  95. margin-bottom: 20rpx;
  96. }
  97. .content .detail-section .result-section .label.data-v-11a7f7fa {
  98. font-size: 28rpx;
  99. color: #666;
  100. margin-bottom: 10rpx;
  101. display: block;
  102. }
  103. .content .detail-section .result-section .result-tag.data-v-11a7f7fa {
  104. display: inline-block;
  105. padding: 4rpx 20rpx;
  106. border-radius: 8rpx;
  107. font-size: 26rpx;
  108. }
  109. .content .detail-section .result-section .result-tag.qualified.data-v-11a7f7fa {
  110. background: #4CAF50;
  111. color: #fff;
  112. }
  113. .content .detail-section .result-section .result-tag.unqualified.data-v-11a7f7fa {
  114. background: #FF5252;
  115. color: #fff;
  116. }
  117. .content .detail-section .result-desc.data-v-11a7f7fa {
  118. font-size: 28rpx;
  119. color: #666;
  120. line-height: 1.6;
  121. margin-bottom: 30rpx;
  122. }
  123. .content .detail-section .info-item.data-v-11a7f7fa {
  124. margin-bottom: 20rpx;
  125. }
  126. .content .detail-section .info-item .label.data-v-11a7f7fa {
  127. font-size: 28rpx;
  128. color: #666;
  129. margin-bottom: 8rpx;
  130. display: block;
  131. }
  132. .content .detail-section .info-item .value.data-v-11a7f7fa {
  133. font-size: 28rpx;
  134. color: #333;
  135. }
  136. .content .detail-section .section-subtitle.data-v-11a7f7fa {
  137. font-size: 30rpx;
  138. font-weight: bold;
  139. color: #333;
  140. margin: 30rpx 0 20rpx;
  141. }
  142. .content .detail-section .reason-grid.data-v-11a7f7fa {
  143. display: grid;
  144. grid-template-columns: repeat(3, 1fr);
  145. gap: 20rpx;
  146. padding: 20rpx 0;
  147. }
  148. .content .detail-section .reason-grid .reason-item.data-v-11a7f7fa {
  149. background: #fff;
  150. border-radius: 12rpx;
  151. padding: 20rpx;
  152. display: flex;
  153. flex-direction: column;
  154. align-items: center;
  155. text-align: center;
  156. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
  157. position: relative;
  158. }
  159. .content .detail-section .reason-grid .reason-item .close-icon.data-v-11a7f7fa {
  160. position: absolute;
  161. top: 70rpx;
  162. right: 10rpx;
  163. color: #FF5252;
  164. font-size: 32rpx;
  165. line-height: 1;
  166. font-weight: bold;
  167. }
  168. .content .detail-section .reason-grid .reason-item .reason-title.data-v-11a7f7fa {
  169. font-size: 26rpx;
  170. color: #333;
  171. margin-bottom: 10rpx;
  172. font-weight: 500;
  173. margin-top: 10rpx;
  174. }
  175. .content .detail-section .reason-grid .reason-item .detail-link.data-v-11a7f7fa {
  176. font-size: 24rpx;
  177. color: #999;
  178. display: flex;
  179. align-items: center;
  180. gap: 4rpx;
  181. }
  182. .content .detail-section .qualified-desc .desc-item.data-v-11a7f7fa {
  183. display: flex;
  184. margin-bottom: 20rpx;
  185. }
  186. .content .detail-section .qualified-desc .desc-item .dot.data-v-11a7f7fa {
  187. margin-right: 10rpx;
  188. color: #666;
  189. }
  190. .content .detail-section .qualified-desc .desc-item text.data-v-11a7f7fa {
  191. font-size: 28rpx;
  192. color: #666;
  193. line-height: 1.6;
  194. }
  195. .content .detail-section .bottom-note.data-v-11a7f7fa {
  196. font-size: 28rpx;
  197. color: #666;
  198. line-height: 1.6;
  199. margin-top: 40rpx;
  200. text-align: center;
  201. }
  202. .content .detail-section .bottom-note.success.data-v-11a7f7fa {
  203. color: #4CAF50;
  204. }
  205. .bottom-btn.data-v-11a7f7fa {
  206. position: fixed;
  207. left: 0;
  208. right: 0;
  209. bottom: 0;
  210. padding: 20rpx 30rpx calc(20rpx + env(safe-area-inset-bottom));
  211. background: #fff;
  212. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  213. }
  214. .bottom-btn .reorder-btn.data-v-11a7f7fa {
  215. width: 100%;
  216. height: 80rpx;
  217. background: #FFB74D;
  218. color: #fff;
  219. font-size: 30rpx;
  220. border-radius: 40rpx;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. border: none;
  225. }
  226. .bottom-btn .reorder-btn.data-v-11a7f7fa::after {
  227. border: none;
  228. }