57 lines
892 B
Plaintext
57 lines
892 B
Plaintext
|
|
/* 页面背景色 */
|
||
|
|
page {
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
font-size: 14px;
|
||
|
|
color: #333;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 卡片样式 */
|
||
|
|
.card {
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 8px;
|
||
|
|
margin: 10rpx;
|
||
|
|
padding: 20rpx;
|
||
|
|
box-shadow: 0 2rpx 10rpx rgba(0, 0, 0, 0.05);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 标题样式 */
|
||
|
|
.title {
|
||
|
|
font-size: 16px;
|
||
|
|
font-weight: 600;
|
||
|
|
margin-bottom: 15rpx;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 按钮样式 */
|
||
|
|
.btn {
|
||
|
|
background-color: #1890ff;
|
||
|
|
color: #fff;
|
||
|
|
border-radius: 30rpx;
|
||
|
|
padding: 12rpx 24rpx;
|
||
|
|
font-size: 14px;
|
||
|
|
text-align: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* 数字统计卡片 */
|
||
|
|
.stat-card {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
padding: 15rpx;
|
||
|
|
flex: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.stat-value {
|
||
|
|
font-size: 24px;
|
||
|
|
font-weight: 700;
|
||
|
|
color: #1890ff;
|
||
|
|
margin-bottom: 5rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.stat-a2 {
|
||
|
|
font-size: 12px;
|
||
|
|
color: #666;
|
||
|
|
}
|