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

209 lines
5.3 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. .info-page.data-v-8c99bd1d {
  27. min-height: 100vh;
  28. background: linear-gradient(to right, #9be48f, #42dfc2);
  29. padding-bottom: calc(env(safe-area-inset-bottom) + 100rpx);
  30. }
  31. .header.data-v-8c99bd1d {
  32. background: linear-gradient(to right, #9be48f, #42dfc2);
  33. padding-bottom: 20rpx;
  34. }
  35. .header .nav-bar.data-v-8c99bd1d {
  36. display: flex;
  37. align-items: center;
  38. height: 88rpx;
  39. padding-top: var(--status-bar-height);
  40. }
  41. .header .nav-bar .title.data-v-8c99bd1d {
  42. font-family: DingTalk JinBuTi;
  43. font-weight: 400;
  44. font-style: italic;
  45. font-size: 50rpx;
  46. line-height: 100%;
  47. letter-spacing: 0%;
  48. vertical-align: bottom;
  49. color: #333;
  50. margin-left: 10%;
  51. }
  52. .header .nav-bar .back-icon.data-v-8c99bd1d, .header .nav-bar .more-icon.data-v-8c99bd1d {
  53. width: 88rpx;
  54. height: 88rpx;
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. }
  59. .header .nav-bar .back-icon .iconfont.data-v-8c99bd1d, .header .nav-bar .more-icon .iconfont.data-v-8c99bd1d {
  60. font-size: 40rpx;
  61. color: #333;
  62. }
  63. .header .feature-tags.data-v-8c99bd1d {
  64. display: flex;
  65. justify-content: space-between;
  66. width: 90%;
  67. margin: 0 auto;
  68. margin-top: 10rpx;
  69. border: 1px solid rgba(0, 0, 0, 0.3);
  70. border-radius: 20rpx;
  71. background: linear-gradient(to right, #9be48f, #42dfc2);
  72. }
  73. .header .feature-tags .tag.data-v-8c99bd1d {
  74. border-radius: 30rpx;
  75. padding: 12rpx 24rpx;
  76. display: flex;
  77. align-items: center;
  78. }
  79. .header .feature-tags .tag .check.data-v-8c99bd1d {
  80. color: #4CAF50;
  81. margin-right: 8rpx;
  82. font-size: 24rpx;
  83. }
  84. .header .feature-tags .tag text.data-v-8c99bd1d {
  85. font-size: 24rpx;
  86. color: #333;
  87. }
  88. .content.data-v-8c99bd1d {
  89. padding: 30rpx;
  90. box-sizing: border-box;
  91. background: linear-gradient(to bottom, #eaffe6, 6%, #fcfffb);
  92. border-radius: 40rpx;
  93. }
  94. .content .page-title.data-v-8c99bd1d {
  95. font-size: 36rpx;
  96. font-weight: bold;
  97. color: #333;
  98. margin-bottom: 30rpx;
  99. }
  100. .content .section.data-v-8c99bd1d {
  101. border-radius: 20rpx;
  102. padding: 30rpx;
  103. margin-bottom: 30rpx;
  104. }
  105. .content .section .section-header.data-v-8c99bd1d {
  106. display: flex;
  107. align-items: center;
  108. margin-bottom: 20rpx;
  109. }
  110. .content .section .section-header .title.data-v-8c99bd1d {
  111. font-size: 32rpx;
  112. font-weight: bold;
  113. color: #333;
  114. }
  115. .content .section .section-header .tag.data-v-8c99bd1d {
  116. margin-left: 20rpx;
  117. padding: 4rpx 16rpx;
  118. border-radius: 8rpx;
  119. font-size: 24rpx;
  120. }
  121. .content .section .section-header .tag.free.data-v-8c99bd1d {
  122. background: #fff0d2;
  123. color: #df8155;
  124. border: 1px solid #de835a;
  125. }
  126. .content .section .section-header .tag.paid.data-v-8c99bd1d {
  127. background: #fff0d2;
  128. color: #df8155;
  129. border: 1px solid #de835a;
  130. }
  131. .content .section .description.data-v-8c99bd1d {
  132. font-family: PingFang SC;
  133. font-weight: 400;
  134. font-size: 13px;
  135. line-height: 140%;
  136. letter-spacing: 0%;
  137. color: #666;
  138. line-height: 1.6;
  139. margin-bottom: 30rpx;
  140. }
  141. .content .section .points.data-v-8c99bd1d {
  142. font-family: PingFang SC;
  143. font-weight: 400;
  144. font-size: 13px;
  145. line-height: 140%;
  146. letter-spacing: 0%;
  147. }
  148. .content .section .points .point.data-v-8c99bd1d {
  149. margin-bottom: 24rpx;
  150. }
  151. .content .section .points .point.data-v-8c99bd1d:last-child {
  152. margin-bottom: 0;
  153. }
  154. .content .section .points .point .point-content.data-v-8c99bd1d {
  155. font-size: 26rpx;
  156. color: #666;
  157. line-height: 1.6;
  158. }
  159. .content .bottom-note.data-v-8c99bd1d {
  160. font-family: PingFang SC;
  161. font-weight: 400;
  162. font-size: 13px;
  163. line-height: 140%;
  164. letter-spacing: 0%;
  165. color: #666;
  166. line-height: 1.6;
  167. text-align: center;
  168. margin: 30rpx 0;
  169. }
  170. .qrcode-area.data-v-8c99bd1d {
  171. display: flex;
  172. justify-content: center;
  173. margin: 40rpx 0;
  174. }
  175. .qrcode-area .qrcode.data-v-8c99bd1d {
  176. width: 240rpx;
  177. height: 240rpx;
  178. background: #fff;
  179. padding: 20rpx;
  180. border-radius: 20rpx;
  181. }
  182. .bottom-btns.data-v-8c99bd1d {
  183. position: fixed;
  184. bottom: 0;
  185. left: 0;
  186. right: 0;
  187. padding: 20rpx 40rpx;
  188. padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
  189. display: flex;
  190. justify-content: space-between;
  191. background: #fff;
  192. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
  193. }
  194. .bottom-btns .btn.data-v-8c99bd1d {
  195. flex: 1;
  196. height: 88rpx;
  197. line-height: 88rpx;
  198. text-align: center;
  199. border-radius: 44rpx;
  200. font-size: 32rpx;
  201. margin: 0 10rpx;
  202. border: none;
  203. }
  204. .bottom-btns .btn.apply-btn.data-v-8c99bd1d {
  205. background: #f5f5f5;
  206. }
  207. .bottom-btns .btn.upgrade-btn.data-v-8c99bd1d {
  208. background: linear-gradient(to right, #9be48f, #42dfc2);
  209. color: #fff;
  210. }