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

128 lines
3.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. .faq-page.data-v-a871b013 {
  27. min-height: 100vh;
  28. background: linear-gradient(to bottom, #fff3da, 5%, #ffffff);
  29. padding-bottom: calc(env(safe-area-inset-bottom) + 120rpx);
  30. }
  31. .nav-bar.data-v-a871b013 {
  32. display: flex;
  33. align-items: center;
  34. height: 88rpx;
  35. padding-top: var(--status-bar-height);
  36. }
  37. .nav-bar .title.data-v-a871b013 {
  38. font-family: PingFang SC;
  39. font-weight: 500;
  40. font-size: 16px;
  41. line-height: 140%;
  42. letter-spacing: 0%;
  43. text-align: center;
  44. vertical-align: middle;
  45. color: #333;
  46. margin-left: 30%;
  47. }
  48. .nav-bar .back-icon.data-v-a871b013 {
  49. width: 88rpx;
  50. height: 88rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. }
  55. .content.data-v-a871b013 {
  56. padding: 40rpx 30rpx;
  57. background: #fff;
  58. width: 80%;
  59. margin: 0 auto;
  60. }
  61. .content .section.data-v-a871b013 {
  62. margin-bottom: 60rpx;
  63. }
  64. .content .section .section-title.data-v-a871b013 {
  65. font-family: PingFang SC;
  66. font-weight: 400;
  67. font-size: 14px;
  68. line-height: 22px;
  69. letter-spacing: 0%;
  70. color: #666;
  71. margin-bottom: 30rpx;
  72. }
  73. .content .section .qa-list .qa-item.data-v-a871b013 {
  74. margin-bottom: 40rpx;
  75. }
  76. .content .section .qa-list .qa-item .question.data-v-a871b013 {
  77. display: flex;
  78. align-items: center;
  79. font-family: PingFang SC;
  80. font-weight: 600;
  81. font-size: 18px;
  82. line-height: 140%;
  83. letter-spacing: 0%;
  84. color: #333;
  85. margin-bottom: 20rpx;
  86. }
  87. .content .section .qa-list .qa-item .question .q-icon.data-v-a871b013 {
  88. color: #FFA500;
  89. font-weight: bold;
  90. margin-right: 16rpx;
  91. }
  92. .content .section .qa-list .qa-item .answer.data-v-a871b013 {
  93. font-family: PingFang SC;
  94. font-weight: 400;
  95. font-size: 13px;
  96. line-height: 140%;
  97. letter-spacing: 0%;
  98. color: #999;
  99. padding-left: 40rpx;
  100. }
  101. .content .bottom-tip.data-v-a871b013 {
  102. font-size: 26rpx;
  103. color: #999;
  104. text-align: center;
  105. line-height: 1.6;
  106. padding: 30rpx;
  107. border-top: 1rpx solid rgba(0, 0, 0, 0.05);
  108. }
  109. .bottom-btn.data-v-a871b013 {
  110. position: fixed;
  111. left: 0;
  112. right: 0;
  113. bottom: 0;
  114. padding: 20rpx 30rpx;
  115. padding-bottom: calc(20rpx + env(safe-area-inset-bottom));
  116. background: rgba(255, 255, 255, 0.9);
  117. -webkit-backdrop-filter: blur(10px);
  118. backdrop-filter: blur(10px);
  119. }
  120. .bottom-btn .online-service-btn.data-v-a871b013 {
  121. width: 100%;
  122. height: 88rpx;
  123. line-height: 88rpx;
  124. background: #FFA500;
  125. color: #fff;
  126. font-size: 32rpx;
  127. border-radius: 44rpx;
  128. border: none;
  129. }