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

123 lines
3.0 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. .profit-detail-container.data-v-9a161012 {
  27. min-height: 100vh;
  28. background: #f7f7f7;
  29. }
  30. .nav-bar.data-v-9a161012 {
  31. display: flex;
  32. align-items: center;
  33. height: calc(150rpx + var(--status-bar-height));
  34. padding: 0 32rpx;
  35. padding-top: var(--status-bar-height);
  36. background: #fff;
  37. position: fixed;
  38. top: 0;
  39. left: 0;
  40. right: 0;
  41. z-index: 999;
  42. box-sizing: border-box;
  43. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  44. }
  45. .nav-bar .back.data-v-9a161012 {
  46. padding: 20rpx;
  47. margin-left: -20rpx;
  48. }
  49. .nav-bar .title.data-v-9a161012 {
  50. flex: 1;
  51. text-align: center;
  52. font-size: 34rpx;
  53. font-weight: 500;
  54. color: #222;
  55. }
  56. .main-content.data-v-9a161012 {
  57. margin-top: calc(150rpx + var(--status-bar-height));
  58. margin-bottom: 40rpx;
  59. }
  60. .profit-list-card.data-v-9a161012 {
  61. background: #fff;
  62. border-radius: 40rpx;
  63. margin: 0 32rpx 32rpx 32rpx;
  64. padding: 0 0 0 0;
  65. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  66. }
  67. .profit-item.data-v-9a161012 {
  68. display: flex;
  69. align-items: center;
  70. justify-content: flex-start;
  71. padding: 28rpx 36rpx 28rpx 36rpx;
  72. border-bottom: 2rpx solid #f3f3f3;
  73. }
  74. .profit-item.data-v-9a161012:last-child {
  75. border-bottom: none;
  76. }
  77. .avatar.data-v-9a161012 {
  78. width: 60rpx;
  79. height: 60rpx;
  80. border-radius: 50%;
  81. margin-right: 24rpx;
  82. object-fit: cover;
  83. background: #f5f5f5;
  84. }
  85. .profit-info.data-v-9a161012 {
  86. display: flex;
  87. flex-direction: column;
  88. justify-content: center;
  89. min-width: 120rpx;
  90. }
  91. .profit-name-date.data-v-9a161012 {
  92. display: flex;
  93. flex-direction: column;
  94. }
  95. .profit-name.data-v-9a161012 {
  96. font-size: 28rpx;
  97. color: #222;
  98. font-weight: 500;
  99. }
  100. .profit-date.data-v-9a161012 {
  101. font-size: 22rpx;
  102. color: #b3b3b3;
  103. font-weight: 400;
  104. margin-top: 2rpx;
  105. }
  106. .profit-type.data-v-9a161012 {
  107. flex: 1;
  108. text-align: center;
  109. font-family: PingFang SC;
  110. font-weight: 400;
  111. font-size: 14px;
  112. line-height: 100%;
  113. letter-spacing: 0%;
  114. color: #4c4c4c;
  115. font-weight: 400;
  116. }
  117. .profit-amount.data-v-9a161012 {
  118. font-size: 28rpx;
  119. color: #ff8917;
  120. font-weight: 500;
  121. margin-left: 12rpx;
  122. min-width: 80rpx;
  123. text-align: right;
  124. }