index.scss 4.2 KB

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