sbjw
2025-08-13 524213932e59cfb0bc70450b6f9accdee5cc9783
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
.mainContainer {
    width: 100%;
    height: 100vh;
}
 
.mainContainer .headerBox {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: #fff;
}
 
.mainContainer .headerBox .logoBox {
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
}
 
.mainContainer .headerBox .navBox {
    height: 100%;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}
 
.mainContainer .headerBox .navBox a {
    color: #fff;
}
 
.mainContainer .headerBox .navBox a:hover {
    color: #f83434;
}
 
.mainContainer .headerBox .navBox .divider {
    padding: 0 10px;
    color: #fff;
}
 
.mainContainer .mainBox {
    height: calc(100% - 60px);
}