wallet.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. height: 100vh;
  52. background: #F5F5F5;
  53. padding: 10rpx 30rpx;
  54. box-sizing: border-box;
  55. overflow: hidden;
  56. }
  57. .wallet-page .balance-card.data-v-c179270e {
  58. background: #38C148;
  59. border-radius: 20rpx;
  60. padding: 30rpx 40rpx;
  61. color: #FFFFFF;
  62. z-index: 9;
  63. position: -webkit-sticky;
  64. position: sticky;
  65. top: 10rpx;
  66. }
  67. .wallet-page .balance-card .card-header.data-v-c179270e {
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. font-size: 28rpx;
  72. }
  73. .wallet-page .balance-card .card-header .detail-link.data-v-c179270e {
  74. display: flex;
  75. align-items: center;
  76. opacity: 0.9;
  77. }
  78. .wallet-page .balance-card .amount.data-v-c179270e {
  79. margin: 40rpx 0 20rpx;
  80. }
  81. .wallet-page .balance-card .amount .symbol.data-v-c179270e {
  82. font-size: 40rpx;
  83. margin-right: 8rpx;
  84. }
  85. .wallet-page .balance-card .amount .number.data-v-c179270e {
  86. font-size: 80rpx;
  87. font-weight: 500;
  88. }
  89. .wallet-page .balance-card .balance-info.data-v-c179270e {
  90. font-size: 26rpx;
  91. opacity: 0.9;
  92. }
  93. .wallet-page .balance-card .withdraw-btn.data-v-c179270e {
  94. margin-top: 40rpx;
  95. height: 60rpx;
  96. line-height: 60rpx;
  97. text-align: center;
  98. background: rgba(255, 255, 255, 0.2);
  99. border-radius: 14rpx;
  100. font-size: 28rpx;
  101. width: 200rpx;
  102. }
  103. .wallet-page .detail-section.data-v-c179270e {
  104. background: #FFFFFF;
  105. border-radius: 20rpx;
  106. margin-top: 20rpx;
  107. padding: 0 30rpx;
  108. height: calc(100vh - 400rpx);
  109. overflow-y: auto;
  110. }
  111. .wallet-page .detail-section .section-header.data-v-c179270e {
  112. display: flex;
  113. justify-content: space-between;
  114. align-items: center;
  115. height: 100rpx;
  116. font-size: 30rpx;
  117. color: #333;
  118. border-bottom: 1px solid #EEEEEE;
  119. }
  120. .wallet-page .detail-section .section-header .filter.data-v-c179270e {
  121. display: flex;
  122. align-items: center;
  123. color: #666;
  124. font-size: 28rpx;
  125. margin-right: 8rpx;
  126. }
  127. .wallet-page .detail-section .detail-list .detail-item.data-v-c179270e {
  128. display: flex;
  129. justify-content: space-between;
  130. align-items: center;
  131. padding: 30rpx 0;
  132. border-bottom: 1px solid #EEEEEE;
  133. }
  134. .wallet-page .detail-section .detail-list .detail-item.data-v-c179270e:last-child {
  135. border-bottom: none;
  136. }
  137. .wallet-page .detail-section .detail-list .detail-item .item-left .title.data-v-c179270e {
  138. font-size: 28rpx;
  139. color: #333;
  140. margin-bottom: 10rpx;
  141. display: block;
  142. }
  143. .wallet-page .detail-section .detail-list .detail-item .item-left .time.data-v-c179270e {
  144. font-size: 24rpx;
  145. color: #999;
  146. }
  147. .wallet-page .detail-section .detail-list .detail-item .item-right.data-v-c179270e {
  148. text-align: right;
  149. }
  150. .wallet-page .detail-section .detail-list .detail-item .item-right .amount.data-v-c179270e {
  151. display: block;
  152. font-size: 32rpx;
  153. margin-bottom: 10rpx;
  154. font-weight: 500;
  155. }
  156. .wallet-page .detail-section .detail-list .detail-item .item-right .amount.income.data-v-c179270e {
  157. color: #FF5B5B;
  158. }
  159. .wallet-page .detail-section .detail-list .detail-item .item-right .amount.expense.data-v-c179270e {
  160. color: #38C148;
  161. }
  162. .wallet-page .detail-section .detail-list .detail-item .item-right .status.data-v-c179270e {
  163. font-size: 24rpx;
  164. color: #999;
  165. }