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

151 lines
3.5 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. .about-container.data-v-97ada362 {
  27. min-height: 100vh;
  28. background: linear-gradient(180deg, #fff3db 0%, #fffefb 30%);
  29. padding-bottom: 40rpx;
  30. }
  31. .nav-bar.data-v-97ada362 {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. right: 0;
  36. z-index: 999;
  37. display: flex;
  38. align-items: center;
  39. background: #fffbe6;
  40. padding: 0 30rpx;
  41. }
  42. .nav-bar .back.data-v-97ada362 {
  43. padding: 20rpx;
  44. margin-left: -20rpx;
  45. }
  46. .nav-bar .title.data-v-97ada362 {
  47. flex: 1;
  48. text-align: center;
  49. font-family: PingFang SC;
  50. font-weight: 500;
  51. font-size: 16px;
  52. line-height: 140%;
  53. letter-spacing: 0%;
  54. text-align: center;
  55. vertical-align: middle;
  56. font-weight: 500;
  57. color: #222;
  58. }
  59. .main-card.data-v-97ada362 {
  60. background: #ffffff;
  61. border-radius: 36rpx;
  62. box-shadow: 0 8rpx 32rpx rgba(255, 156, 0, 0.08);
  63. margin: 32rpx 24rpx 0 24rpx;
  64. padding: 40rpx 32rpx 32rpx 32rpx;
  65. display: flex;
  66. flex-direction: column;
  67. align-items: stretch;
  68. }
  69. .main-title.data-v-97ada362 {
  70. font-size: 32rpx;
  71. font-weight: bold;
  72. color: #222;
  73. margin-bottom: 18rpx;
  74. }
  75. .main-desc.data-v-97ada362 {
  76. font-size: 26rpx;
  77. color: #444;
  78. margin-bottom: 32rpx;
  79. line-height: 1.7;
  80. }
  81. .service-tags.data-v-97ada362 {
  82. display: grid;
  83. grid-template-columns: 1fr 1fr;
  84. gap: 24rpx 24rpx;
  85. margin-bottom: 36rpx;
  86. }
  87. .tag-item.data-v-97ada362 {
  88. background: #fff8ea;
  89. border-radius: 24rpx;
  90. box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.06);
  91. display: flex;
  92. flex-direction: row;
  93. align-items: center;
  94. justify-content: center;
  95. padding: 28rpx 0 18rpx 0;
  96. min-height: 90rpx;
  97. gap: 12rpx;
  98. }
  99. .tag-icon.data-v-97ada362 {
  100. width: 40rpx;
  101. height: 40rpx;
  102. margin: 0;
  103. }
  104. .tag-text.data-v-97ada362 {
  105. font-size: 26rpx;
  106. color: #222;
  107. font-weight: 500;
  108. }
  109. .service-section.data-v-97ada362 {
  110. margin-bottom: 36rpx;
  111. }
  112. .section-title.data-v-97ada362 {
  113. display: flex;
  114. align-items: center;
  115. font-size: 28rpx;
  116. font-weight: bold;
  117. color: #222;
  118. margin-bottom: 12rpx;
  119. }
  120. .section-title .section-icon.data-v-97ada362 {
  121. width: 32rpx;
  122. height: 32rpx;
  123. margin-right: 12rpx;
  124. }
  125. .section-desc.data-v-97ada362 {
  126. font-size: 24rpx;
  127. color: #666;
  128. line-height: 1.7;
  129. margin-bottom: 18rpx;
  130. }
  131. .section-img.data-v-97ada362 {
  132. width: 80%;
  133. margin: 0 auto;
  134. display: block;
  135. border-radius: 24rpx;
  136. box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.04);
  137. }
  138. .about-footer.data-v-97ada362 {
  139. margin-top: 24rpx;
  140. text-align: center;
  141. }
  142. .footer-divider.data-v-97ada362 {
  143. width: 100%;
  144. height: 1rpx;
  145. background: #f0f0f0;
  146. margin: 32rpx 0 18rpx 0;
  147. }
  148. .footer-text.data-v-97ada362 {
  149. color: #bcbcbc;
  150. font-size: 24rpx;
  151. margin-bottom: 18rpx;
  152. }