67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
.total {
|
|
height: 195rpx;
|
|
background: #fff;
|
|
text-align: center;
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.total .title {
|
|
font-size: 26rpx;
|
|
line-height: 48rpx;
|
|
color: #999;
|
|
}
|
|
|
|
.total .num {
|
|
font-size: 44rpx;
|
|
line-height: 60rpx;
|
|
color: #ff5555;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.record {
|
|
width: 100%;
|
|
background: #fff;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.record .item {
|
|
padding: 30rpx 24rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.item-label .name {
|
|
font-size: 26rpx;
|
|
color: #000;
|
|
line-height: 1;
|
|
}
|
|
|
|
.item-label .date {
|
|
font-size: 22rpx;
|
|
color: #999;
|
|
line-height: 1;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.item-remark {
|
|
color: #999;
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.record .item:after {
|
|
content: " ";
|
|
position: absolute;
|
|
left: 24rpx;
|
|
right: 24rpx;
|
|
bottom: -1rpx;
|
|
height: 1px;
|
|
border-bottom: 1px solid #ebebeb;
|
|
color: #D9D9D9;
|
|
transform-origin: 0 0;
|
|
transform: scaleY(0.5);
|
|
} |