titleBox.less
642 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
@charset "UTF-8";
.title-box {
background-color: transparent;
width: 100%;
height: auto;
.box {
position: relative;
width: 100vw;
height: auto;
.title-img-box {
width: 100%;
height: auto;
.title-img {
display: block;
width: 100%;
height: auto;
}
}
.more-box {
position: absolute;
top: 0;
right: 20px;
display: flex;
justify-content: center;
align-items: center;
width: auto;
height: 100%;
.more-text {
width: 80px;
color: #999999;
font-size: 26px;
}
.more-arrow-right-img {
display: block;
width: 26px;
height: 26px;
}
}
}
}