dataStoreCount.scss
955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.dataStoreCount_main {
display: flex;
justify-content: space-around;
margin-top: 50rpx;
.item_box_count {
flex: 1;
background: #F5F6FD;
border-radius: 10rpx;
padding: 20rpx 14rpx 18rpx 20rpx;
.count_name {
display: flex;
justify-content: space-between;
font-family: PingFangSC-Regular;
font-size: 12*2rpx;
color: #3B465B;
letter-spacing: 0;
font-weight: 400;
align-items: center;
.image_box {
width: 28rpx;
height: 28rpx;
}
}
.count_num {
font-family: DINAlternate-Bold;
font-size: 32rpx;
color: #323241;
letter-spacing: 0;
font-weight: 700;
margin-top: 14rpx;
}
}
.marginLeftBox {
margin-left: 20rpx;
}
.marginBoth {
margin: 0 18rpx;
}
.marginRightBox {
margin-right: 20rpx;
}
}