29 lines
560 B
SCSS
29 lines
560 B
SCSS
/* components/statistics-card/index.wxss */
|
|
.statistcs-card {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
border-radius: 16rpx;
|
|
margin: 0 32rpx;
|
|
background-color: #fff;
|
|
padding: 32rpx 0;
|
|
.statistcs-item {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
&:not(:last-child) {
|
|
border-right: 1px solid #eee;
|
|
}
|
|
.value {
|
|
color: #0052d9;
|
|
font-size: larger;
|
|
// font-weight: bold;
|
|
}
|
|
.title {
|
|
margin-top: 6rpx;
|
|
color: #555;
|
|
font-size: small;
|
|
}
|
|
}
|
|
}
|