money.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. .header-box.data-v-69f29528 {
  27. background-color: #ffffff;
  28. padding: 30rpx;
  29. }
  30. .header-box .card-box.data-v-69f29528 {
  31. width: 100%;
  32. min-height: 300rpx;
  33. padding: 40rpx;
  34. background-size: 100% 100%;
  35. border-radius: 30rpx;
  36. overflow: hidden;
  37. position: relative;
  38. z-index: 1;
  39. box-sizing: border-box;
  40. }
  41. .header-box .card-box.data-v-69f29528::after {
  42. content: "";
  43. display: block;
  44. width: 100%;
  45. height: 100%;
  46. z-index: 2;
  47. position: absolute;
  48. top: 0;
  49. left: 0;
  50. background: var(--05bea019) no-repeat;
  51. pointer-events: none;
  52. }
  53. .header-box .card-box .card-head.data-v-69f29528 {
  54. color: #ffffff;
  55. font-size: 30rpx;
  56. }
  57. .header-box .card-box .ss-eye-icon.data-v-69f29528 {
  58. font-size: 40rpx;
  59. color: #ffffff;
  60. }
  61. .header-box .card-box .money-num.data-v-69f29528 {
  62. font-size: 70rpx;
  63. line-height: 70rpx;
  64. font-weight: 500;
  65. color: #ffffff;
  66. font-family: OPPOSANS;
  67. }
  68. .header-box .card-box .reduce-num.data-v-69f29528 {
  69. font-size: 26rpx;
  70. font-weight: 400;
  71. color: #ffffff;
  72. }
  73. .header-box .card-box .topup-btn.data-v-69f29528 {
  74. width: 120rpx;
  75. height: 60rpx;
  76. line-height: 60rpx;
  77. border-radius: 30px;
  78. font-size: 26rpx;
  79. font-weight: 500;
  80. background-color: #ffffff;
  81. color: var(--ui-BG-Main);
  82. }
  83. .filter-box.data-v-69f29528 {
  84. height: 114rpx;
  85. background-color: #f6f6f6;
  86. }
  87. .filter-box .total-box.data-v-69f29528 {
  88. font-size: 24rpx;
  89. font-weight: 500;
  90. color: #999999;
  91. }
  92. .filter-box .date-btn.data-v-69f29528 {
  93. background-color: #ffffff;
  94. line-height: 54rpx;
  95. border-radius: 27rpx;
  96. padding: 0 20rpx;
  97. font-size: 24rpx;
  98. font-weight: 500;
  99. color: #666666;
  100. }
  101. .filter-box .date-btn .ss-seldate-icon.data-v-69f29528 {
  102. font-size: 50rpx;
  103. color: #999999;
  104. }
  105. .tabs-box.data-v-69f29528 {
  106. background: #ffffff;
  107. border-bottom: 2rpx solid #eeeeee;
  108. }
  109. .wallet-tab-card .tab-item.data-v-69f29528 {
  110. height: 80rpx;
  111. position: relative;
  112. }
  113. .wallet-tab-card .tab-item .tab-title.data-v-69f29528 {
  114. font-size: 30rpx;
  115. }
  116. .wallet-tab-card .tab-item .cur-tab-title.data-v-69f29528 {
  117. font-weight: 700;
  118. }
  119. .wallet-tab-card .tab-item .tab-line.data-v-69f29528 {
  120. width: 60rpx;
  121. height: 6rpx;
  122. border-radius: 6rpx;
  123. position: absolute;
  124. left: 50%;
  125. transform: translateX(-50%);
  126. bottom: 2rpx;
  127. background-color: var(--ui-BG-Main);
  128. }
  129. .wallet-list.data-v-69f29528 {
  130. padding: 30rpx;
  131. background-color: #ffff;
  132. }
  133. .wallet-list .head-img.data-v-69f29528 {
  134. width: 70rpx;
  135. height: 70rpx;
  136. border-radius: 50%;
  137. background: #cccccc;
  138. }
  139. .wallet-list .list-content.data-v-69f29528 {
  140. justify-content: space-between;
  141. align-items: flex-start;
  142. flex: 1;
  143. }
  144. .wallet-list .list-content .title.data-v-69f29528 {
  145. font-size: 28rpx;
  146. color: #333333;
  147. width: 400rpx;
  148. }
  149. .wallet-list .list-content .time.data-v-69f29528 {
  150. color: #cccccc;
  151. font-size: 22rpx;
  152. }
  153. .wallet-list .money.data-v-69f29528 {
  154. font-size: 28rpx;
  155. font-weight: bold;
  156. font-family: OPPOSANS;
  157. }
  158. .wallet-list .money .add.data-v-69f29528 {
  159. color: var(--ui-BG-Main);
  160. }
  161. .wallet-list .money .minus.data-v-69f29528 {
  162. color: #333333;
  163. }