moreCom.less
672 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
@charset "UTF-8";
.more-com {
background-color: transparent;
width: 100%;
height: auto;
.box {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
width: 90%;
height: auto;
.points {
display: flex;
justify-content: flex-start;
align-items: center;
color: #4A4A4A;
font-weight: 600;
.key {
font-size: 28px;
}
.value {
font-size: 32px;
}
}
.more {
display: flex;
justify-content: flex-start;
align-items: center;
.text {
color: #999999;
font-size: 22px;
font-weight: 400;
}
.icon-img {
display: block;
width: 22px;
height: 22px;
}
}
}
}