吉安感知网项目-前端
shuishen
15 hours ago 6e88705bd5b443a259b24c17c8a299765d059d96
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
// 全局变量
@import './variables.scss';
@import './base.scss';
@import './tool.scss';
@import './element-ui.scss';
// video-js 直播回放 样式
@import './video-js.scss';
// 地图编辑样式
@import './mapEdit.scss';
 
@import './common/cockpit.scss';
@import './customFont.scss';
 
a {
  text-decoration: none;
  color: #333;
}
 
* {
  outline: none;
}
 
.avue-sidebar,
.avue-top,
.avue-logo,
.avue-layout .login-logo,
.avue-main {
  transition: all .3s;
}
 
.avue-layout {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  background: #05050F;
  overflow: hidden;
 
  &--horizontal {
    flex-direction: column;
 
    .avue-sidebar {
      width: 100%;
      height: $top_height;
      display: flex;
 
      .avue-menu,
      .el-menu-item,
      .el-sub-menu__title {
        height: $top_height !important;
        line-height: $top_height !important;
      }
 
      .is-active:before {
        display: none;
      }
    }
 
    .avue-logo {
      width: $sidebar_width
    }
  }
 
  > .top-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 109px;
    z-index: 9;
  }
 
  > .leaf-container {
    padding-top: 109px;
    width: 160px;
    height: 100%;
    box-sizing: border-box;
 
    .avue-sidebar {
 
      .el-menu-item,
      .el-sub-menu__title {
        margin-top: 26px;
        height: $top_height !important;
        line-height: $top_height !important;
      }
    }
  }
 
  > .right-container {
    width: 0;
    flex: 1;
    height: 100%;
  }
}
 
.avue-contail {
  width: 100%;
  height: 100%;
  background: #f0f2f5;
  background-size: 100%;
  background-repeat: no-repeat;
}
 
.avue--collapse {
 
  .avue-sidebar,
  .avue-logo {
    width: $sidebar_collapse;
  }
}
 
.avue-main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  box-sizing: border-box;
  overflow: hidden;
  // background: #f0f2f5;
}
 
#avue-view {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 0;
}
 
.main-avue-view-container {
  height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
 
.avue-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: center;
 
  .copyright {
    color: #666;
    font-size: 12px;
  }
}
 
.mac_bg {
  background-image: url("/img/bg.jpg");
  background-color: #000;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
 
.command-cesium {
  .cesium-viewer {
    height: 100%;
    overflow: hidden;
 
    .cesium-viewer-cesiumWidgetContainer {
      width: 100%;
      height: 100%;
 
      .cesium-widget {
        width: 100%;
        height: 100%;
 
        canvas {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
 
  .cesium-viewer-bottom {
    display: none;
  }
}
 
// ele样式覆盖
@import './element-ui.scss';
// 顶部右侧显示
@import './top.scss';
// 导航标签
@import './tags.scss';
// 工具类函数
@import './mixin.scss';
// 侧面导航栏
@import './sidebar.scss';
//主题
@import './theme/index.scss';
//通用配置
@import './normalize.scss';
//图标配置
@import './iconfont.scss';
//登录样式
@import "./login.scss";
//适配
@import './media.scss';
//滚动条样式
@include scrollBar;
 
 
// 地图区域html标签样式调整
.div-icon {
  padding: 0px !important;
  border: none !important;
  background: transparent !important;
  border-radius: 50% !important;
 
  .point-icon-box {
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    background: rgb(255, 186, 0);
    border-radius: 50%;
  }
}
 
.command-cesium {
  .cesium-viewer {
    height: 100%;
    overflow: hidden;
 
    .cesium-viewer-cesiumWidgetContainer {
      width: 100%;
      height: 100%;
 
      .cesium-widget {
        width: 100%;
        height: 100%;
 
        canvas {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
 
  .cesium-viewer-bottom {
    display: none;
  }
}