textTitleBox.less
608 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
@charset "UTF-8";
.title-box {
background-color: transparent;
width: 100%;
height: auto;
.box {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
width: 690px;
height: auto;
.title-box {
display: contents;
color: #4A4A4A;
font-size: 36px;
font-weight: 600;
}
.more-box {
display: contents;
color: #999999;
font-size: 26px;
font-weight: 400;
}
}
&.style-2 {
.box {
.title-box {
display: contents;
color: #666666;
font-size: 30px;
font-weight: 500;
}
.more-box {
font-weight: 500;
}
}
}
}