123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .index {
- background-color: #f9f9f9;
- min-height: 100vh;
- padding: 30px 16px 0 16px;
- box-sizing: border-box;
- .cash-out-record {
- .total-amount {
- height: 170px;
- background-color: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 17px;
- box-sizing: border-box;
- .left {
- display: flex;
- align-items: center;
- .icon {
- width: 60px;
- height: 60px;
- margin-right: 10px;
- }
- .title {
- color: #000000;
- line-height: 41px;
- font-size: 28px;
- }
- }
- .amount {
- display: flex;
- align-items: baseline;
- color: #F6C71A;
- font-weight: bold;
- .integer {
- font-size: 48px;
- }
- .decimal {
- font-size: 36px;
- }
- }
- }
- // 提现记录
- .record-item {
- background-color: #fff;
- padding: 46px 16px 0 16px;
- box-sizing: border-box;
- border-radius: 20px;
- display: flex;
- justify-content: space-between;
- height: 170px;
- margin-top: 26px;
- .item-time {
- font-size: 26px;
- color: #000000;
- line-height: 38px;
- }
- .item-amount {
- display: flex;
- flex-direction: column;
- align-items: flex-end;
- .status {
- font-size: 24px;
- color: #91A95B;
- line-height: 35px;
- }
- .amount {
- font-size: 28px;
- color: #000000;
- line-height: 41px;
- }
- }
- }
- }
- }
|