| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- .mine {
- display: flex;
- flex-direction: column;
- width: 100%;
- background-color: #fff;
- }
- .mine .head {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- margin-top: 20rpx;
- }
- .mine .head image {
- height: 64rpx;
- width: 64rpx;
- margin: 0 10rpx;
- }
- .mine .head .balance {
- color: #301310;
- font-size: 36rpx;
- }
- .mine .main {
- display: flex;
- flex-direction: row;
- margin-top: 36rpx;
- height: 240rpx;
- }
- .mine .main .left {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- width: 40%;
- }
- .main .left .stopped {
- width: 200rpx;
- height: 200rpx;
- background: #838383 !important;
- color: #fff;
- border-radius: 50%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .main .left .started {
- width: 200rpx;
- height: 200rpx;
- background-color: rgba(214, 31, 31, 0.9) !important;
- color: #fff;
- border-radius: 50%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- transform: scale(1);
- animation: heartbeat 3s;
- animation-iteration-count: infinite;
- }
- @keyframes heartbeat {
- 60% {
- transform: scale(1.1);
- }
- 100% {
- transform: scale(1);
- }
- }
- .mine .main .right {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .mine .main .right .current {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .mine .main .right .current .progress {
- font-size: 48rpx;
- color: #e93323;
- }
- .mine .his {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- }
- .mine .his .his-img {
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .mine .his .his-img image {
- width: 431rpx;
- height: 88rpx;
- }
- .mine .his .no-record {
- display: flex;
- flex-direction: row;
- justify-content: center;
- margin-top: 32rpx;
- color: gray;
- }
- .mine .his .records {
- display: flex;
- flex-direction: column;
- width: 100%;
- margin: 32rpx 20rpx;
- }
- .mine .his .records .item {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- height: 54rpx;
- margin: 10rpx;
- }
- .mine .his .records .color {
- color: #e93323;
- }
- .mine .his .records .item .icon {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- width: 10%;
- }
- .mine .his .records .item .icon image {
- width: 48rpx;
- height: 48rpx;
- }
- .mine .his .records .item .symbol {
- display: flex;
- width: 15%;
- }
- .mine .his .records .item .direction {
- display: flex;
- width: 15%;
- }
- .mine .his .records .item .amount {
- display: flex;
- width: 30%;
- }
- .mine .his .records .item .time {
- display: flex;
- width: 30%;
- }
|