index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .mine {
  2. display: flex;
  3. flex-direction: column;
  4. width: 100%;
  5. background-color: #fff;
  6. }
  7. .mine .head {
  8. display: flex;
  9. flex-direction: row;
  10. justify-content: center;
  11. align-items: center;
  12. margin-top:20rpx;
  13. }
  14. .mine .head image {
  15. height: 48rpx;
  16. width: 48rpx;
  17. margin: 0 10rpx;
  18. }
  19. .mine .head .balance {color: #e93323;}
  20. .mine .main {
  21. display: flex;
  22. flex-direction: row;
  23. margin-top: 36rpx;
  24. height: 240rpx;
  25. }
  26. .mine .main .left {
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: center;
  30. align-items: center;
  31. flex-grow: 2;
  32. }
  33. .main .left .start {
  34. width: 200rpx;
  35. height: 200rpx;
  36. background-color: #e93323!important;
  37. color: #fff;
  38. border-radius: 50%;
  39. display: flex;
  40. flex-direction: column;
  41. justify-content: center;
  42. align-items: center;
  43. }
  44. .mine .main .right {
  45. display: flex;
  46. flex-direction: column;
  47. justify-content: center;
  48. flex-grow: 3;
  49. }
  50. .mine .main .right .current {
  51. display: flex;
  52. flex-direction: row;
  53. justify-content: flex-start;
  54. align-items: flex-start;
  55. }
  56. .mine .main .right .current .progress {
  57. font-size: 48rpx;
  58. color: green;
  59. }
  60. .mine .his {
  61. display: flex;
  62. flex-direction: column;
  63. justify-content: flex-start;
  64. }
  65. .mine .his .his-img {
  66. display: flex;
  67. flex-direction: row;
  68. justify-content: center;
  69. }
  70. .mine .his .his-img image {
  71. width: 431rpx;
  72. height: 88rpx;
  73. }
  74. .mine .his .no-record {
  75. display: flex;
  76. flex-direction: row;
  77. justify-content: center;
  78. margin-top: 32rpx;
  79. color: gray;
  80. }
  81. .mine .his .records {
  82. display: flex;
  83. flex-direction: column;
  84. width: 100%;
  85. margin: 32rpx 20rpx;
  86. }
  87. .mine .his .records .item {
  88. display: flex;
  89. flex-direction: row;
  90. justify-content: flex-start;
  91. height: 54rpx;
  92. margin: 10rpx;
  93. }
  94. .mine .his .records .color {
  95. color: forestgreen;
  96. }
  97. .mine .his .records .icon {
  98. width: 10%;
  99. }
  100. .mine .his .records .icon image {
  101. width: 48rpx;
  102. height: 48rpx;
  103. }
  104. .mine .his .records .item .symbol {
  105. display: flex;
  106. width: 15%;
  107. }
  108. .mine .his .records .item .direction {
  109. display: flex;
  110. width: 15%;
  111. }
  112. .mine .his .records .item .amount {
  113. display: flex;
  114. width: 30%;
  115. }
  116. .mine .his .records .item .time {
  117. display: flex;
  118. width: 30%;
  119. }