爱简收旧衣按件回收前端代码仓库
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.

208 lines
4.6 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. .withdraw-container.data-v-c6e30f7c {
  27. min-height: 100vh;
  28. background: #f8f8f8;
  29. padding-bottom: calc(160rpx + env(safe-area-inset-bottom));
  30. }
  31. .nav-bar.data-v-c6e30f7c {
  32. display: flex;
  33. align-items: center;
  34. background: #fff;
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. right: 0;
  39. z-index: 999;
  40. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.02);
  41. }
  42. .back.data-v-c6e30f7c {
  43. padding: 20rpx;
  44. margin-left: -20rpx;
  45. }
  46. .title.data-v-c6e30f7c {
  47. flex: 1;
  48. text-align: center;
  49. font-size: 36rpx;
  50. font-weight: 500;
  51. color: #222;
  52. }
  53. .main-card.data-v-c6e30f7c {
  54. background: #fff;
  55. border-radius: 32rpx;
  56. box-shadow: 0 8rpx 32rpx rgba(60, 167, 250, 0.06);
  57. padding: 48rpx 36rpx 32rpx 36rpx;
  58. position: relative;
  59. }
  60. .section-title.data-v-c6e30f7c {
  61. font-size: 34rpx;
  62. font-weight: bold;
  63. color: #222;
  64. margin-bottom: 40rpx;
  65. }
  66. .form-group.data-v-c6e30f7c {
  67. margin-bottom: 0;
  68. }
  69. .form-label.data-v-c6e30f7c {
  70. font-size: 28rpx;
  71. color: #222;
  72. font-weight: 500;
  73. margin-bottom: 16rpx;
  74. }
  75. .form-input.data-v-c6e30f7c {
  76. width: 100%;
  77. font-size: 28rpx;
  78. color: #222;
  79. background: none;
  80. border: none;
  81. outline: none;
  82. padding: 16rpx 0 22rpx 0;
  83. }
  84. .input-placeholder.data-v-c6e30f7c {
  85. color: #ccc;
  86. font-size: 28rpx;
  87. }
  88. .divider.data-v-c6e30f7c {
  89. border-bottom: 1rpx solid #eee;
  90. margin: 0 0 24rpx 0;
  91. }
  92. .desc-area.data-v-c6e30f7c {
  93. margin: 36rpx 40rpx 0 40rpx;
  94. font-size: 24rpx;
  95. color: #bbb;
  96. line-height: 1.7;
  97. text-align: left;
  98. }
  99. .desc-link.data-v-c6e30f7c {
  100. color: #FFA800;
  101. margin-left: 4rpx;
  102. white-space: nowrap;
  103. }
  104. .footer-btn-area.data-v-c6e30f7c {
  105. position: fixed;
  106. left: 0;
  107. right: 0;
  108. bottom: 0;
  109. z-index: 10;
  110. background: #fff;
  111. padding: 24rpx 0 env(safe-area-inset-bottom);
  112. display: flex;
  113. justify-content: center;
  114. }
  115. .main-btn.data-v-c6e30f7c {
  116. width: 92%;
  117. height: 100rpx;
  118. background: linear-gradient(90deg, #FFD36D 0%, #FFA800 100%);
  119. color: #fff;
  120. font-size: 36rpx;
  121. border-radius: 50rpx;
  122. font-weight: bold;
  123. margin: 0 auto;
  124. display: flex;
  125. align-items: center;
  126. justify-content: center;
  127. box-shadow: 0 4rpx 16rpx rgba(255, 168, 0, 0.08);
  128. border: none;
  129. }
  130. .main-btn.promotion.data-v-c6e30f7c {
  131. background: linear-gradient(90deg, #c2fdab 0%, #08eae0 100%);
  132. color: #222;
  133. }
  134. .notice-popup.data-v-c6e30f7c {
  135. position: fixed;
  136. left: 0;
  137. right: 0;
  138. top: 0;
  139. bottom: 0;
  140. z-index: 2000;
  141. display: flex;
  142. align-items: center;
  143. justify-content: center;
  144. }
  145. .popup-mask.data-v-c6e30f7c {
  146. position: absolute;
  147. left: 0;
  148. right: 0;
  149. top: 0;
  150. bottom: 0;
  151. background: rgba(0, 0, 0, 0.55);
  152. }
  153. .popup-content.data-v-c6e30f7c {
  154. position: relative;
  155. width: 86vw;
  156. max-width: 650rpx;
  157. background: #fff;
  158. border-radius: 40rpx;
  159. overflow: hidden;
  160. box-shadow: 0 8rpx 32rpx rgba(0, 0, 0, 0.1);
  161. display: flex;
  162. flex-direction: column;
  163. align-items: center;
  164. }
  165. .popup-title.data-v-c6e30f7c {
  166. text-align: center;
  167. font-size: 38rpx;
  168. font-weight: bold;
  169. color: #222;
  170. margin: 48rpx 0 32rpx 0;
  171. }
  172. .popup-body.data-v-c6e30f7c {
  173. max-height: 600rpx;
  174. padding: 0 40rpx 0 40rpx !important;
  175. font-size: 28rpx;
  176. color: #888;
  177. line-height: 1.9;
  178. margin-bottom: 24rpx;
  179. box-sizing: border-box;
  180. width: 100%;
  181. }
  182. .section-title.data-v-c6e30f7c {
  183. font-size: 28rpx;
  184. color: #888;
  185. font-weight: bold;
  186. margin-top: 0;
  187. margin-bottom: 0;
  188. display: block;
  189. }
  190. .section-content.data-v-c6e30f7c {
  191. font-size: 28rpx;
  192. color: #888;
  193. margin-bottom: 8rpx;
  194. display: block;
  195. word-break: break-all;
  196. }
  197. .popup-footer.data-v-c6e30f7c {
  198. border-top: 1rpx solid #f2f2f2;
  199. width: 100%;
  200. padding: 24rpx 0 32rpx 0;
  201. display: flex;
  202. justify-content: center;
  203. }
  204. .confirm-btn.data-v-c6e30f7c {
  205. color: #FFA800;
  206. font-size: 34rpx;
  207. font-weight: bold;
  208. text-align: center;
  209. }