wallet.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page.data-v-c179270e {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad.data-v-c179270e {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .data-v-c179270e:export {
  17. appThemeColor: #38C148;
  18. appThemeBgColor: #ffffff;
  19. appThemeBgGrayColor: #fafafa;
  20. appThemeBgGrayDeppColor: #f8f8f8;
  21. appThemeSearchBgColor: #F4F5F8;
  22. appThemeBorderColor: #efefef;
  23. appThemeTextColor: #333333;
  24. appThemeTextGrayColor: #8f92a1;
  25. appThemeTextGrayLightColor: #cccccc;
  26. appThemeTextGrayDeepColor: #696969;
  27. appThemeTextWhiteColor: #ffffff;
  28. appThemeTextBlackColor: #171717;
  29. appThemeTextBlackDeepColor: #16162e;
  30. appThemeTextMoneyColor: #f00;
  31. appThemeTextGrayWhiteColor: #c3c6cb;
  32. appThemeSkuGrayColor: #f5f5f8;
  33. appThemeCardGrayColor: #8f92a1;
  34. appThemeShopGrayColor: #888e98;
  35. appThemePointsSignBgColor: #f0f0f0;
  36. appThemePointsSignLabelColor: #dfdfdf;
  37. appThemePointsSignValueColor: #696969;
  38. appThemePointsSignYellowColor: #f9a906;
  39. appThemePointsSignBlueColor: #22ac38;
  40. appThemeNavbarTabColor: #696969;
  41. appThemeNavbarTabColorActive: #333333;
  42. appThemeShadow: 0px 2px 8px 0px rgba(27, 25, 86, 0.06);
  43. appZIndexDeep: 0;
  44. appZIndexNormal: 19;
  45. appZIndexAbsolute: 99;
  46. appZIndexFixed: 199;
  47. appZIndexPage: 999;
  48. appThemeBuyBtnBgColor: #ed3f14;
  49. }
  50. .wallet-page.data-v-c179270e {
  51. min-height: 100vh;
  52. background: #F5F5F5;
  53. padding: 10rpx 30rpx;
  54. box-sizing: border-box;
  55. }
  56. .wallet-page .balance-card.data-v-c179270e {
  57. background: #38C148;
  58. border-radius: 20rpx;
  59. padding: 30rpx 40rpx;
  60. color: #FFFFFF;
  61. }
  62. .wallet-page .balance-card .card-header.data-v-c179270e {
  63. display: flex;
  64. justify-content: space-between;
  65. align-items: center;
  66. font-size: 28rpx;
  67. }
  68. .wallet-page .balance-card .card-header .detail-link.data-v-c179270e {
  69. display: flex;
  70. align-items: center;
  71. opacity: 0.9;
  72. }
  73. .wallet-page .balance-card .amount.data-v-c179270e {
  74. margin: 40rpx 0 20rpx;
  75. }
  76. .wallet-page .balance-card .amount .symbol.data-v-c179270e {
  77. font-size: 40rpx;
  78. margin-right: 8rpx;
  79. }
  80. .wallet-page .balance-card .amount .number.data-v-c179270e {
  81. font-size: 80rpx;
  82. font-weight: 500;
  83. }
  84. .wallet-page .balance-card .balance-info.data-v-c179270e {
  85. font-size: 26rpx;
  86. opacity: 0.9;
  87. }
  88. .wallet-page .balance-card .withdraw-btn.data-v-c179270e {
  89. margin-top: 40rpx;
  90. height: 60rpx;
  91. line-height: 60rpx;
  92. text-align: center;
  93. background: rgba(255, 255, 255, 0.2);
  94. border-radius: 14rpx;
  95. font-size: 28rpx;
  96. width: 200rpx;
  97. }
  98. .wallet-page .detail-section.data-v-c179270e {
  99. background: #FFFFFF;
  100. border-radius: 20rpx;
  101. margin-top: 20rpx;
  102. padding: 0 30rpx;
  103. }
  104. .wallet-page .detail-section .section-header.data-v-c179270e {
  105. display: flex;
  106. justify-content: space-between;
  107. align-items: center;
  108. height: 100rpx;
  109. font-size: 30rpx;
  110. color: #333;
  111. border-bottom: 1px solid #EEEEEE;
  112. }
  113. .wallet-page .detail-section .section-header .filter.data-v-c179270e {
  114. display: flex;
  115. align-items: center;
  116. color: #666;
  117. font-size: 28rpx;
  118. margin-right: 8rpx;
  119. }
  120. .wallet-page .detail-section .detail-list .detail-item.data-v-c179270e {
  121. display: flex;
  122. justify-content: space-between;
  123. align-items: center;
  124. padding: 30rpx 0;
  125. border-bottom: 1px solid #EEEEEE;
  126. }
  127. .wallet-page .detail-section .detail-list .detail-item.data-v-c179270e:last-child {
  128. border-bottom: none;
  129. }
  130. .wallet-page .detail-section .detail-list .detail-item .item-left .title.data-v-c179270e {
  131. font-size: 28rpx;
  132. color: #333;
  133. margin-bottom: 10rpx;
  134. display: block;
  135. }
  136. .wallet-page .detail-section .detail-list .detail-item .item-left .time.data-v-c179270e {
  137. font-size: 24rpx;
  138. color: #999;
  139. }
  140. .wallet-page .detail-section .detail-list .detail-item .item-right.data-v-c179270e {
  141. text-align: right;
  142. }
  143. .wallet-page .detail-section .detail-list .detail-item .item-right .amount.data-v-c179270e {
  144. display: block;
  145. font-size: 32rpx;
  146. margin-bottom: 10rpx;
  147. font-weight: 500;
  148. }
  149. .wallet-page .detail-section .detail-list .detail-item .item-right .amount.income.data-v-c179270e {
  150. color: #FF5B5B;
  151. }
  152. .wallet-page .detail-section .detail-list .detail-item .item-right .amount.expense.data-v-c179270e {
  153. color: #38C148;
  154. }
  155. .wallet-page .detail-section .detail-list .detail-item .item-right .status.data-v-c179270e {
  156. font-size: 24rpx;
  157. color: #999;
  158. }