index.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. .balance {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. padding: 32rpx;
  6. padding-bottom: 50rpx;
  7. box-sizing: border-box;
  8. .balance-header {
  9. width: 100%;
  10. height: 304rpx;
  11. background: url("@/static/image/user/consumptionPrice_bg.png") no-repeat;
  12. background-size: 100% 100%;
  13. position: relative;
  14. padding: 0 48rpx;
  15. padding-top: 48rpx;
  16. box-sizing: border-box;
  17. .header-top {
  18. @include flex(space-between, null, null);
  19. .price-left {
  20. @include flex(center, column, 10rpx);
  21. text {
  22. &:nth-of-type(1) {
  23. font-size: 56rpx;
  24. background: linear-gradient(180deg, #FFFFFF 0%, #B8CDFF 100%);
  25. -webkit-background-clip: text;
  26. -webkit-text-fill-color: transparent;
  27. font-weight: 600;
  28. // background: linear-gradient(180deg, #ffffff 0%, #ffd5b8 100%);
  29. // -webkit-background-clip: text;
  30. // -webkit-text-fill-color: transparent;
  31. }
  32. &:nth-of-type(2) {
  33. color: #ffffff;
  34. font-size: 28rpx;
  35. }
  36. }
  37. }
  38. .price-right {
  39. width: 160rpx;
  40. height: 64rpx;
  41. text-align: center;
  42. line-height: 64rpx;
  43. font-size: 32rpx;
  44. font-weight: 500;
  45. background: rgba(255, 255, 255, 0.4);
  46. border: 2rpx solid rgba(255, 255, 255, 0.39);
  47. color: #ffffff;
  48. border-radius: 50rpx;
  49. }
  50. }
  51. .header-bottom {
  52. position: absolute;
  53. bottom: 0;
  54. left: 50%;
  55. transform: translateX(-50%);
  56. width: calc(100% - 64rpx);
  57. height: 96rpx;
  58. border-top: 2rpx solid rgba(255, 255, 255, 0.4);
  59. @include flex(flex-start, null, 104rpx);
  60. .text-box {
  61. @include flex(flex-start, null, 16rpx);
  62. text {
  63. &:nth-of-type(1) {
  64. color: rgba(255, 255, 255, 0.8);
  65. font-size: 24rpx;
  66. }
  67. &:nth-of-type(2) {
  68. color: #ffffff;
  69. font-size: 32rpx;
  70. font-weight: 600;
  71. }
  72. }
  73. }
  74. }
  75. }
  76. .balance-container {
  77. width: 100%;
  78. margin-top: 32rpx;
  79. .text-tab {
  80. @include flex(flex-start, null, 64rpx);
  81. view {
  82. color: rgba(0, 0, 0, 0.4);
  83. font-size: 32rpx;
  84. padding-bottom: 10rpx;
  85. }
  86. .active {
  87. position: relative;
  88. color: rgba(0, 0, 0, 0.9);
  89. &::after {
  90. content: "";
  91. position: absolute;
  92. left: 50%;
  93. transform: translateX(-50%);
  94. bottom: 0;
  95. width: 32rpx;
  96. height: 8rpx;
  97. background-color: #ff604e;
  98. border-radius: 4rpx;
  99. }
  100. }
  101. }
  102. .record-list {
  103. margin-top: 16rpx;
  104. width: 100%;
  105. background-color: #ffffff;
  106. border-radius: 16rpx;
  107. .record-item {
  108. width: 100%;
  109. height: 168rpx;
  110. border-bottom: 2rpx solid #f1f1f1;
  111. padding: 32rpx 24rpx 32rpx 32rpx;
  112. box-sizing: border-box;
  113. @include flex(space-between, null, null);
  114. .item-left {
  115. @include flex(center, column, 16rpx);
  116. align-items: flex-start;
  117. text {
  118. &:nth-of-type(1) {
  119. color: rgba(0, 0, 0, 0.9);
  120. font-size: 28rpx;
  121. font-weight: 600;
  122. }
  123. &:nth-of-type(2) {
  124. color: rgba(0, 0, 0, 0.4);
  125. font-size: 28rpx;
  126. }
  127. }
  128. }
  129. .item-right {
  130. font-size: 28rpx;
  131. color: #ea5c1e;
  132. font-weight: 900;
  133. }
  134. }
  135. .no-more {
  136. width: 100%;
  137. height: 100rpx;
  138. text-align: center;
  139. line-height: 100rpx;
  140. font-size: 24rpx;
  141. color: rgba(0, 0, 0, 0.24);
  142. }
  143. }
  144. .empty {
  145. margin-top: 96rpx;
  146. width: 100%;
  147. @include flex(flex-start, column, 32rpx);
  148. image {
  149. width: 320rpx;
  150. height: 320rpx;
  151. display: block;
  152. }
  153. text {
  154. font-weight: 600;
  155. font-size: 28rpx;
  156. color: rgba(0, 0, 0, 0.4);
  157. }
  158. }
  159. }
  160. }