Newer
Older
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
63
64
65
66
67
68
69
70
71
.padding_box {
padding: 3.5rem 2rem 0;
}
.flex-box {
display: flex;
align-content: center;
justify-content: center;
align-items: center;
}
.menu_box {
width: 10rem;
}
.menu_title_box {
width: 100%;
text-align: center;
font-size: 32px;
color: #fff;
}
.tab_list ul {
display: block;
width: 100%;
}
.tab_list ul li {
color: #fff;
font-weight: normal;
font-size: 16px;
background: rgb(0 35 105 / 70%);
margin: 0.4rem 0;
border-radius: 0.2rem;
line-height: 2rem;
}
.tab_list ul li div {
font-size: 0.6rem;
justify-content: space-around;
}
.monitor {
font-size: 0.5rem;
}
.monitor span {
background: #006aec;
padding: 0.1rem 0.4rem;
border-radius: 2rem;
margin-left: 0.1rem;
}
.tab_list ul li a {
color: #a84c47;
}
.tab_list ul li.current {
line-height: 2rem;
border: none;
background: #006aec;
font-weight: normal;
}
.tab_list ul li.current .monitor span {
background: #0055bd;
}
.content_box {
flex: 1;
}