textTitleBox.less
1018 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
51
52
53
54
55
56
57
58
59
60
61
62
@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;
.title {
max-width: 580px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
}
.more-box {
display: flex;
justify-content: flex-start;
align-items: center;
color: #999999;
font-size: 26px;
font-weight: 400;
.more-text {
max-width: 90px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
& + .icon-img {
margin-left: 10px;
}
}
.icon-img {
display: block;
width: 36px;
height: 36px;
}
}
}
&.style-2 {
.box {
.title-box {
display: contents;
color: #666666;
font-size: 30px;
font-weight: 500;
}
.more-box {
font-weight: 500;
}
}
}
}