地质所 沉降监测网建设项目
zmk
2024-05-22 28e168f05d3eb48223e69064188c6fce786442d4
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
.custom-tab{
    position: absolute;
    width: 400px;
    height: 100%;
    top: 0px;
    right: 0px;
    border: 1px solid #80808033;
    background-color: white;
}
 
.custom-tab-title{
    font-size: 0px;
    background-color: rgb(248,248,248);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #80808033;
    margin-bottom: 0px;
}
 
.custom-tab-title li{
    font-size: 13px;
    display: inline-block;
    padding: 0px 10px;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    position: relative;
    margin-left: -1px;
}
 
.custom-tab-title li.active{
    color: rgb(61, 144, 200);
    background-color: white;
}
 
.custom-tab-title li.active::after{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 41px;
    border-width: 0px 1px 1px;
    border-style: solid;
    border-color: white #80808033;
}
 
.custom-tab-item{
    display: none;
    padding: 10px;
}
 
.custom-tab-item.active{
    display: block;
}