地质所 沉降监测网建设项目
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
* {
    margin: 0px;
    padding: 0px;
    user-select: none;
    box-sizing: border-box;
}
 
html, body {
    height: 100%;
}
 
#container {
    height: 100%;
    display: flex;
}
 
#menu {
    width: 200px;
}
 
#menu .menu-title {
    background-color: rgb(12, 135, 203);
    height: 100px;
    line-height: 100px;
    text-align: center;
    color: white;
    font-size: 18px;
}
 
#menu .menu-tree {
    list-style-type: none;
}
 
#menu .menu-tree li {
    border-width: 0px 1px 1px 1px;
    border-style: solid;
    border-color: #80808073;
    padding: 5px 10px;
    background-color: rgb(249, 249, 249);
    cursor: pointer;
}
 
#menu .menu-tree li.active {
    background-color: white;
    color: rgb(61, 144, 200);
    border-width: 0px 0px 1px 1px;
}
 
#menu .menu-tree li i{
    margin-right: 5px;
}
 
.prospect-detail{
    boder-collapse: collapse;
}
 
.prospect-detail td{
    border: 1px solid #80808047;
    padding: 5px;
    min-width: 80px ;
}
 
 
.prospect-detail td:nth-child(odd){
    background-color: rgb(237,243,244);
    color: rgb(58,105,161);
    text-align: right;
}
 
.prospect-detail td:nth-child(1){
    width: 80px;
}
.prospect-detail td:nth-child(3){
    width: 100px;
}
.chart-label{
    margin-bottom: 10px;
}
 
.chart-label span{
    border: 1px solid rgb(20,120,188);
    color: rgb(20,120,188);
    padding: 5px;
    margin-left: 3px;
    cursor: pointer;
    display: inline-block;
}
 
.chart-label span i{
    margin-right: 3px;
}
 
.record-item{
    background-color: rgb(242,246,249);
    padding: 10px;
    border: 1px solid #8080804a;
}
 
.record-item .item-title{
    color: rgb(42,138,204);
    padding-bottom: 6px;
    font-weight: bold;
}
 
.record-item .item-title .star{
    margin: 0px 10px 0px 5px;
    color: gray;
}
 
.record-item .item-title .clip{
    margin: 0px 10px 0px 200px;
}
 
.record-item .item-title .square{
    margin: 0px 5px 0px 30px;
    color: rgb(214,72,126);
}
 
.record-item .item-title .date{
    margin-left: 20px;
}
 
.record-item .record-content{
    height: 100px;
    background-color: white;
}
 
.custom-tab-content{
    height: calc(100% - 41px);
}
 
.custom-tab-item{
    height: 100%;
    overflow: auto;
}