s-wallet-card.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. .head-nav.data-v-0aa1f5b2 {
  27. margin: 20rpx auto;
  28. display: flex;
  29. align-items: center;
  30. color: #CCCCCC;
  31. }
  32. .activite.data-v-0aa1f5b2 {
  33. box-sizing: border-box;
  34. color: var(--ui-BG-Main);
  35. border-bottom: 4rpx solid var(--ui-BG-Main);
  36. }
  37. .head-nav > view.data-v-0aa1f5b2 {
  38. padding-bottom: 10rpx;
  39. }
  40. .content.data-v-0aa1f5b2 {
  41. /* background: #008000; */
  42. height: 100%;
  43. }
  44. .scroll-view_H.data-v-0aa1f5b2 {
  45. width: 600rpx;
  46. height: 700rpx;
  47. padding: 20rpx;
  48. }
  49. .progress-box.data-v-0aa1f5b2 {
  50. padding: 40rpx 40rpx 0;
  51. }
  52. /* 进度条容器 */
  53. .progress-container.data-v-0aa1f5b2 {
  54. width: 100%;
  55. /* 全宽 */
  56. height: 40rpx;
  57. /* 高度 */
  58. background-color: #e0e0e0;
  59. /* 背景色 */
  60. border-radius: 20rpx;
  61. /* 圆角 */
  62. position: relative;
  63. /* 相对定位,用于文本定位 */
  64. }
  65. /* 进度条 */
  66. .progress-bar.data-v-0aa1f5b2 {
  67. height: 100%;
  68. background: var(--ui-BG-Main);
  69. /* 渐变色 */
  70. border-radius: 20rpx;
  71. /* 圆角 */
  72. position: relative;
  73. /* 相对定位,用于文本定位 */
  74. display: flex;
  75. /* 开启 Flex 布局 */
  76. align-items: center;
  77. /* 垂直居中 */
  78. justify-content: center;
  79. /* 水平居中 */
  80. }
  81. /* 进度文本 */
  82. .progress-text.data-v-0aa1f5b2 {
  83. color: white;
  84. font-size: 16px;
  85. position: absolute;
  86. left: 50%;
  87. top: 50%;
  88. transform: translate(-50%, -50%);
  89. }
  90. .ss-wallet-menu-wrap.data-v-0aa1f5b2 {
  91. flex-wrap: wrap;
  92. height: auto;
  93. padding: 40rpx;
  94. }
  95. .ss-wallet-menu-wrap .menu-wallet.data-v-0aa1f5b2 {
  96. width: 144rpx;
  97. }
  98. .ss-wallet-menu-wrap .menu-item.data-v-0aa1f5b2:nth-child(odd) {
  99. border-right: 4rpx solid #f6f6f6;
  100. }
  101. .ss-wallet-menu-wrap .menu-item.data-v-0aa1f5b2 {
  102. height: 300rpx;
  103. flex: 0 0 50%;
  104. /* flex-grow: 0, flex-shrink: 0, flex-basis: 50% */
  105. box-sizing: border-box;
  106. padding: 20rpx;
  107. /* 确保 padding 和 border 不会使元素宽度超过 50% */
  108. /* 可选,为了视觉效果 */
  109. /* 可选,为了视觉效果 */
  110. }
  111. .ss-wallet-menu-wrap .menu-item .menu-title.data-v-0aa1f5b2 {
  112. font-size: 32rpx;
  113. line-height: 32rpx;
  114. color: #333333;
  115. }
  116. .ss-wallet-menu-wrap .menu-item .menu-mini-title.data-v-0aa1f5b2 {
  117. font-size: 20rpx;
  118. line-height: 20rpx;
  119. color: #333333;
  120. }
  121. .ss-wallet-menu-wrap .menu-item .item-icon.data-v-0aa1f5b2 {
  122. width: 44rpx;
  123. height: 44rpx;
  124. }
  125. .ss-wallet-menu-wrap .menu-item .value-box.data-v-0aa1f5b2 {
  126. width: 120rpx;
  127. height: 120rpx;
  128. text-align: center;
  129. border-radius: 50%;
  130. border: 2px solid #f6f6f6;
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. }
  135. .ss-wallet-menu-wrap .menu-item .value-box .value-text.data-v-0aa1f5b2 {
  136. font-size: 28rpx;
  137. color: #000000;
  138. vertical-align: text-bottom;
  139. font-family: OPPOSANS;
  140. }
  141. .ss-wallet-menu-wrap .menu-item .value-box .unit-text.data-v-0aa1f5b2 {
  142. font-size: 24rpx;
  143. color: #343434;
  144. line-height: 24rpx;
  145. }