123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .index {
- background-color: #f9f9f9;
- padding: 30px 16px;
- min-height: 100vh;
- box-sizing: border-box;
- .record-list {
- background-color: #fff;
- padding: 0 17px;
- border-radius: 20px;
- overflow: hidden;
- .record-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 100px;
- border-bottom: 1px solid #D8D8D8;
- &:last-child {
- border-bottom: none;
- }
- .left {
- display: flex;
- align-items: center;
- .icon {
- height: 52px;
- width: 52px;
- margin-right: 10px;
- }
- .month {
- color: #444444;
- font-size: 28px;
- }
- }
- .right {
- .amount {
- color: #666666;
- font-size: 28px;
- font-weight: 500;
- }
- }
- }
- }
- }
|