index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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: 64rpx;
  16. width: 64rpx;
  17. margin: 0 10rpx;
  18. }
  19. .mine .head .balance {color: #301310; font-size: 36rpx;}
  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. width: 40%;
  32. }
  33. .main .left .stopped {
  34. width: 200rpx;
  35. height: 200rpx;
  36. background: #838383!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. .main .left .started {
  45. width: 200rpx;
  46. height: 200rpx;
  47. background-color: rgba(214, 31, 31, 0.9)!important;
  48. color: #fff;
  49. border-radius: 50%;
  50. display: flex;
  51. flex-direction: column;
  52. justify-content: center;
  53. align-items: center;
  54. transform: scale(1);
  55. animation: heartbeat 3s;
  56. animation-iteration-count: infinite;
  57. }
  58. @keyframes heartbeat{
  59. 60%{
  60. transform: scale(1.1);
  61. }
  62. 100%{
  63. transform: scale(1);
  64. }
  65. }
  66. .mine .main .right {
  67. display: flex;
  68. flex-direction: column;
  69. justify-content: center;
  70. }
  71. .mine .main .right .current {
  72. display: flex;
  73. flex-direction: row;
  74. justify-content: flex-start;
  75. align-items: flex-start;
  76. }
  77. .mine .main .right .current .progress {
  78. font-size: 48rpx;
  79. color: #e93323;
  80. }
  81. .mine .his {
  82. display: flex;
  83. flex-direction: column;
  84. justify-content: flex-start;
  85. }
  86. .mine .his .his-img {
  87. display: flex;
  88. flex-direction: row;
  89. justify-content: center;
  90. }
  91. .mine .his .his-img image {
  92. width: 431rpx;
  93. height: 88rpx;
  94. }
  95. .mine .his .no-record {
  96. display: flex;
  97. flex-direction: row;
  98. justify-content: center;
  99. margin-top: 32rpx;
  100. color: gray;
  101. }
  102. .mine .his .records {
  103. display: flex;
  104. flex-direction: column;
  105. width: 100%;
  106. margin: 32rpx 20rpx;
  107. }
  108. .mine .his .records .item {
  109. display: flex;
  110. flex-direction: row;
  111. justify-content: flex-start;
  112. align-items: center;
  113. height: 54rpx;
  114. margin: 10rpx;
  115. }
  116. .mine .his .records .color {
  117. color: #e93323;
  118. }
  119. .mine .his .records .item .icon {
  120. display: flex;
  121. flex-direction: row;
  122. justify-content: flex-start;
  123. align-items: center;
  124. width: 10%;
  125. }
  126. .mine .his .records .item .icon image {
  127. width: 48rpx;
  128. height: 48rpx;
  129. }
  130. .mine .his .records .item .symbol {
  131. display: flex;
  132. width: 15%;
  133. }
  134. .mine .his .records .item .direction {
  135. display: flex;
  136. width: 15%;
  137. }
  138. .mine .his .records .item .amount {
  139. display: flex;
  140. width: 30%;
  141. }
  142. .mine .his .records .item .time {
  143. display: flex;
  144. width: 30%;
  145. }