赣州市洪水风险预警系统三维版本
guoshilong
2023-02-27 4d8c6dd77427e8e581fda17b6b65ba86bfb7a815
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
136
137
138
139
140
@import "Tooltip-div.css";
.jimu-widget-FloodAnalysis{
  width: 100%;
  height: 160px !important;
  position: fixed !important;
  left: 30px !important;
  top: 75px !important;
  overflow-x: hidden;
  background: rgba(31, 39, 48, .7);
  font-size: 14px;
  border: 1px solid rgb(69, 154, 251);
  border-radius: 5px;
  color: rgb(255, 255, 255);
}
 
 
.jimu-widget-FloodAnalysis .flood-analysis-header {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    border-bottom: 1px solid rgb(69, 154, 251);
}
 
.jimu-widget-FloodAnalysis .flood-analysis-header i {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../../../images/toolbox.png ) no-repeat 0 -20px;
    background-size: 20px;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis {
    margin: 12px 17px 10px  17px;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis ul ,
.jimu-widget-FloodAnalysis .flood-water-analysis ul li ,
.jimu-widget-FloodAnalysis .flood-water-analysis ul input {
    padding: 0;
    margin: 0;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis ul li {
    margin: 5px 0;
    list-style: none;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis ul li input {
    padding: 0 10px;
    width: 48%;
    height: 100%;
    color: #fff;
    border: none;
    background: rgba(140, 151, 165, 0.5);
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis ul li span {
    display: inline-block;
    width: 52%;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis .flood-water-analysis-new input {
    margin: 5px 0;
    width: 48%;
    height: 36px;
    color: #fff;
    background: rgb(2,24,55);
    border: 1px solid rgb(69, 154, 251);
    border-radius: 4px;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis .flood-water-analysis-new input:nth-child(odd) {
    float:left;
}
 
.jimu-widget-FloodAnalysis .flood-water-analysis .flood-water-analysis-new input:nth-child(even) {
    float: right;
}
/**淹没详情**/
.flood-detail{
    position: fixed;
    top: 270px;
    width: 440px;
    height: 200px;
    left: 30px !important;
    overflow-x: hidden;
    background: rgba(31, 39, 48, .7);
    font-size: 14px;
    border: 1px solid rgb(69, 154, 251);
    border-radius: 5px;
    color: rgb(255, 255, 255);
    display: none;
}
 
.flood-detail-header {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
    border-bottom: 1px solid rgb(69, 154, 251);
}
 
.flood-detail-header i {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../../../images/toolbox.png ) no-repeat 0 -20px;
    background-size: 20px;
}
 
.flood-detail-content{
    height: 45%;
    text-align: center;
    margin: 12px 17px 10px 17px;
}
 
.flood-detail-text{
    height: 95%;
    font-size: 20px;
}
 
.flood-detail-button input{
    margin: 5px 0;
    width: 48%;
    height: 36px;
    color: #fff;
    background: rgb(2,24,55);
    border: 1px solid rgb(69, 154, 251);
    border-radius: 4px;
}