backBox.less
984 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
@charset "UTF-8";
.back-box {
background-color: transparent;
width: 100%;
height: 93px;
.box {
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
width: auto;
height: 100%;
padding: 0 30px;
.buttons-box {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
height: 100%;
.back {
display: block;
width: 38px;
height: 38px;
}
}
.title {
position: absolute;
top: 0;
left: 20%;
display: flex;
justify-content: center;
align-items: center;
background-color: transparent;
color: #333333;
width: 60vw;
font-size: 34px;
height: 93px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
pointer-events: none;
}
.func-box {
display: flex;
justify-content: flex-end;
align-items: center;
width: 100%;
height: 100%;
.func {
display: block;
width: 38px;
height: 38px;
}
}
}
}