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

169 lines
3.8 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. .tui-apply-detail-container.data-v-138bea45 {
  27. min-height: 100vh;
  28. background: #f7f7f7;
  29. padding-bottom: 160rpx;
  30. }
  31. .navbar.data-v-138bea45 {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. width: 100vw;
  36. height: 100rpx;
  37. background: #fff;
  38. z-index: 10;
  39. display: flex;
  40. align-items: flex-end;
  41. justify-content: space-between;
  42. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  43. padding: 0 32rpx;
  44. }
  45. .navbar .nav-left.data-v-138bea45 {
  46. flex: 0 0 48rpx;
  47. display: flex;
  48. align-items: center;
  49. height: 100%;
  50. }
  51. .navbar .nav-title.data-v-138bea45 {
  52. flex: 1;
  53. text-align: center;
  54. font-size: 36rpx;
  55. font-weight: bold;
  56. color: #222;
  57. line-height: 100rpx;
  58. }
  59. .navbar .nav-right.data-v-138bea45 {
  60. flex: 0 0 80rpx;
  61. display: flex;
  62. align-items: center;
  63. justify-content: flex-end;
  64. height: 100%;
  65. }
  66. .main-content.data-v-138bea45 {
  67. margin-top: 120rpx;
  68. margin-bottom: 40rpx;
  69. }
  70. .info-card.data-v-138bea45 {
  71. background: #fff;
  72. border-radius: 40rpx;
  73. margin: 0 32rpx 32rpx 32rpx;
  74. padding: 40rpx 36rpx 36rpx 36rpx;
  75. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  76. position: relative;
  77. }
  78. .card-title-row.data-v-138bea45 {
  79. display: flex;
  80. align-items: center;
  81. margin-bottom: 32rpx;
  82. }
  83. .card-title.data-v-138bea45 {
  84. font-size: 32rpx;
  85. font-weight: bold;
  86. color: #222;
  87. margin-right: 18rpx;
  88. }
  89. .status-tag.data-v-138bea45 {
  90. font-size: 28rpx;
  91. border-radius: 0 20rpx 0 0;
  92. padding: 8rpx 32rpx;
  93. font-weight: 400;
  94. position: absolute;
  95. right: 0;
  96. top: 0;
  97. }
  98. .status-tag.orange.data-v-138bea45 {
  99. background: #fff7e6;
  100. color: #ffb400;
  101. }
  102. .status-tag.red.data-v-138bea45 {
  103. background: #ffeaea;
  104. color: #ff4d4f;
  105. }
  106. .status-tag.gray.data-v-138bea45 {
  107. background: #f5f5f5;
  108. color: #999;
  109. }
  110. .info-row.data-v-138bea45 {
  111. display: flex;
  112. align-items: center;
  113. min-height: 60rpx;
  114. margin-bottom: 0;
  115. }
  116. .info-row .label.data-v-138bea45 {
  117. font-size: 26rpx;
  118. color: #b3b3b3;
  119. width: 180rpx;
  120. font-weight: 400;
  121. }
  122. .info-row .value.data-v-138bea45 {
  123. font-size: 30rpx;
  124. color: #222;
  125. font-weight: 500;
  126. flex: 1;
  127. word-break: break-all;
  128. }
  129. .divider.data-v-138bea45 {
  130. height: 2rpx;
  131. background: #f3f3f3;
  132. margin: 18rpx 0 18rpx 0;
  133. border: none;
  134. }
  135. .bottom-bar.data-v-138bea45 {
  136. position: fixed;
  137. left: 0;
  138. right: 0;
  139. bottom: 0;
  140. display: flex;
  141. justify-content: center;
  142. align-items: center;
  143. background: #f7f7f7;
  144. padding-bottom: env(safe-area-inset-bottom);
  145. padding-top: 24rpx;
  146. padding-bottom: 24rpx;
  147. z-index: 20;
  148. gap: 32rpx;
  149. }
  150. .action-btn.data-v-138bea45 {
  151. flex: 1;
  152. height: 80rpx;
  153. border-radius: 40rpx;
  154. font-size: 30rpx;
  155. font-weight: 500;
  156. border: 2rpx solid #ffd36d;
  157. background: #fffbe6;
  158. color: #ffb800;
  159. box-shadow: 0 2rpx 8rpx rgba(255, 156, 0, 0.03);
  160. }
  161. .action-btn.primary.data-v-138bea45 {
  162. color: #fff;
  163. border: none;
  164. background: linear-gradient(90deg, #FFD36D 0%, #FFA800 100%);
  165. }
  166. .action-btn.danger.data-v-138bea45 {
  167. color: #ffb800;
  168. border: 2rpx solid #ffd36d;
  169. background: #fffbe6;
  170. }