allcardList.scss
774 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
.allcardList_main {
display: flex;
flex-wrap: wrap;
// background: #fff;
// justify-content: space-between;
.cardList_box {
width: 100%;
// background: red;
}
.allcardListItem {
background: #F5F6FD;
border-radius: 10rpx;
margin-bottom: 20rpx;
min-width:33.33%;
height: 104rpx;
padding-top: 20rpx;
.text_key {
font-family: PingFangSC-Regular;
font-size: 11*2rpx;
color: #3B465B;
letter-spacing: 0;
text-align: center;
font-weight: 400;
// margin-top: 20rpx;
}
.text_value {
margin-top: 16rpx;
font-family: DINAlternate-Bold;
font-size: 14*2rpx;
color: #323241;
letter-spacing: 0;
text-align: center;
font-weight: 700;
}
}
}