2025-06-06 15:07:26 +08:00

92 lines
1.5 KiB
Plaintext

.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: #2583FF;
}
.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: #2583FF;
white-space: nowrap;
display: flex;
align-items: center;
justify-content: center;
}
.block-divider {
width: 100%;
height: 20rpx;
background-color: #F9F9F9;
}
.record-list {
position: sticky;
left: 0;
top: 205rpx;
z-index: 10;
padding: 0 20rpx;
width: 100%;
}
.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;
}