87 lines
1.3 KiB
CSS
87 lines
1.3 KiB
CSS
.points-overview {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
padding: 40rpx 20rpx 30rpx;
|
|
height: 185rpx;
|
|
}
|
|
|
|
.points-overview__content {
|
|
flex: 1;
|
|
}
|
|
|
|
.points-overview__label {
|
|
font-size: 26rpx;
|
|
color: #222;
|
|
}
|
|
|
|
.points-overview__num {
|
|
margin-top: 10rpx;
|
|
margin-left: 12rpx;
|
|
font-weight: bold;
|
|
font-size: 64rpx;
|
|
line-height: 75rpx;
|
|
color: #FF512A;
|
|
}
|
|
|
|
.points-overview__action {
|
|
flex-shrink: 1;
|
|
padding: 5rpx 22rpx;
|
|
width: max-content;
|
|
height: max-content;
|
|
border-radius: 40rpx;
|
|
background-color: rgba(255, 81, 42, 0.1);
|
|
white-space: nowrap;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.points-overview__desc {
|
|
margin-right: 10rpx;
|
|
font-size: 26rpx;
|
|
line-height: 30rpx;
|
|
color: #FF512A;
|
|
white-space: nowrap;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.block-divider {
|
|
width: 100%;
|
|
height: 20rpx;
|
|
background-color: #F9F9F9;
|
|
}
|
|
|
|
.record-list {
|
|
padding: 0 20rpx;
|
|
}
|
|
|
|
.record-list-item {
|
|
padding: 30rpx 0;
|
|
font-size: 26rpx;
|
|
color: #222;
|
|
}
|
|
|
|
.record-list-item__content {
|
|
display: flex;
|
|
}
|
|
|
|
.record-list-item__label {
|
|
flex: 1;
|
|
}
|
|
|
|
.record-list-item__num {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.record-list-item__datetime {
|
|
margin-top: 10rpx;
|
|
font-size: 22rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.record-list-item + .record-list-item {
|
|
border-top: 1px solid #E6E6E6;
|
|
}
|