jinlin
2024-03-14 b09b6361f6348c22d2d02f99391ca76350b45102
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
/* 深色主题 */
/* .zt.high 开头 */
.zt {
  /*background-image: url(../../assets/img/zhptbg.jpg);*/
}
.zt #onload{
  /*background-image: url(../../assets/img/login-bg.png);*/
  /*background-repeat: repeat-x;*/
  /*height: 100vh;*/
}
.zt.high .aui-content__wrapper.high-show-background{
  background-image: url(../../assets/img/zhptbg.jpg) !important;
}
.zt.high .index-header-font{
  color: #39AFD4;
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
}
 
/*深色系统自己基本颜色为白色*/
.zt.high .index-wx-span,
.zt.high .index-wx-span1,
.zt.high .form-title,
.zt.high .map_button_style,
  /*dialog表头字体颜色*/
.zt.high .el-table thead,
  /*附件*/
.zt.high .el-upload-list__item-name,
.zt.high .el-upload-list__item-name [class^=el-icon],
  /* 对话框中的X颜色*/
.zt.high .el-dialog__headerbtn .el-dialog__close,
.zt.high .el-form-item__label,
  /*对话框footer的取消按钮*/
.zt.high .el-dialog__footer .el-button.el-button--default,
  /*对话框footer的取消按钮移入*/
.zt.high .el-dialog__footer .el-button.el-button--default:hover,
  /*对话框footer的暂存提交按钮*/
.zt.high .el-dialog__footer .el-button.el-button--primary,
  /*对话框footer的暂存提交按钮*/
.zt.high .el-dialog__footer .el-button.el-button--primary:hover,
  /*表格分页图标颜色*/
.zt.high .el-pagination .btn-next,
.zt.high .el-pagination .btn-prev,
.zt.high .lx-plan-h2,
.zt.high .jx-plan-h3,
  /*改换装设备装机信息的表头背景*/
.zt.high .replace-all-table-header,
.zt.high .el-transfer-panel__item.el-checkbox,
  /*日历*/
.zt.high .el-date-editor .el-range-separator,
  /*年份日历的年份字体颜色*/
.zt.high .el-year-table td .cell,
  /*年份日历的年份字体颜色选中的样式*/
.zt.high .el-year-table td .cell:hover,
.zt.high .el-year-table td.current:not(.disabled) .cell,
.zt.high .el-range-editor .el-range-input,
.zt.high .el-date-table th,
.zt.high .select-lx-plan,
.zt.high .select-option,
.zt.high .item,
.zt.high .ship-no-style,
.zt.high .img_ship1,
.zt.high .seamless-warp1 .el-step__title.is-finish, .seamless-warp1 .el-step__description.is-finish,
  /* 表格内查看标签*/
.zt.high .el-link.el-link--default,
  /*表格序号左侧图标*/
.zt.high .el-table__expand-icon,
  /* 导航栏字体及图标颜色*/
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-menu-item, .aui-sidebar--dark .aui-sidebar__menu .el-submenu > .el-submenu__title,
.zt.high .aui-sidebar--dark > .el-menu--popup .el-menu-item, .aui-sidebar--dark > .el-menu--popup .el-submenu > .el-submenu__title,
.zt.high .el-menu--inline .active,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-menu-item:focus,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-menu-item:hover,
.zt.high .el-submenu__title:hover,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-submenu > .el-submenu__title:focus,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-submenu > .el-submenu__title:hover,
.zt.high .aui-sidebar--dark > .el-menu--popup .el-menu-item:focus,
.zt.high .aui-sidebar--dark > .el-menu--popup .el-menu-item:hover,
.zt.high .aui-sidebar--dark > .el-menu--popup .el-submenu > .el-submenu__title:focus,
.zt.high .aui-sidebar--dark > .el-menu--popup .el-submenu > .el-submenu__title:hover,
  /* 下拉框的字体颜色 */
.zt.high .el-dropdown,
.zt.high .el-submenu.is-active .el-submenu__title,
.zt.high .el-pager, .zt.high .el-pager li,
.zt.high .el-dialog__title,
.zt.high .el-form-item__label,
  /*tab分页初始颜色*/
.zt.high .el-tabs__item,
.zt.high .message-btn .el-button.el-button--default,
.zt.high .message-btn .el-button.el-button--default.el-button--mini,
.zt.high .message-btn .el-button.el-button--default:hover,
.zt.high .message-btn .el-button.el-button--default.el-button--mini:hover,
.zt.high .admin-query-button{
  color: #fff
}
 
/*深版主体内容板块背景颜色*/
.zt.high .borderimg1 {
  border: 15px solid transparent;
  padding: 10px;
  border-image: url(../../assets/img/border1.png) 15 stretch;
}
.zt.high .borderimg2 {
  border: 18px solid transparent;
  padding: 25px;
  border-image: url(../../assets/img/indexborder.png) 18 stretch;
}
.zt.high .borderimg4 {
  border: 15px solid transparent;
  padding: 10px;
  border-image: url(../../assets/img/borderRight.png) 15 stretch;
}
.zt.high .item {
  font-size: 14px;
}
.zt.high .ul_button_style {
  margin-top: 1%;
  border: 1px solid #7be0f4;
  width: 100%;
  background: #7be0f4;
  border-radius: 25px 0 25px 0;
  background: rgba(120, 223, 224, 0.1);
}
.zt.high .map_button_style1 {
  background: rgba(36, 255, 0, 0.1);
}
.zt.high .map_button_style2 {
  background: rgba(255, 198, 0, 0.1);
}
.zt.high .map_button_style3 {
  background: rgba(255, 0, 0, 0.1);
}
.zt.high .div_style1{
  background:rgba(36, 255, 0, 0.15);
}
.zt.high .div_style2{
  background:rgba(36, 255, 0, 0.15);
}
.zt.high .div_style3{
  background:rgba(36, 255, 0, 0.15);
}
.zt.high .div_style4{
  background:rgba(36, 255, 0, 0.15);
}
.zt.high .div_style5{
  background:rgba(36, 255, 0, 0.15);
}
.zt.high .div_style6{
  background:rgba(36, 255, 0, 0.15);
}
/*.zt.high .div_style7{*/
/*  background:rgba(36, 255, 0, 0.15);*/
/*}*/
.zt.high .line-position,
.zt.high .line-position1,
.zt.high .line-position2,
.zt.high .line-position4{
  border-bottom: 3px dashed rgba(123, 224, 244, 1);
  border-left: 3px dashed rgba(123, 224, 244, 1);
  display: block;
  position: absolute;
}
.zt.high .line-position{
  width: 9.5%;
  left: 15%;
  height: 9.5%;
  top: 70%;
}
.zt.high .line-position1 {
  width: 2%;
  left: 25%;
  height: 8%;
  top: 80%;
}
 
.zt.high .line-position2 {
  width: 7.5%;
  left: 47.5%;
  height:8.5%;
  top: 10.5%;
}
 
.zt.high .line-position3 {
  display: block;
  width: 3.5%;
  left: 43.1%;
  height: 20%;
  border-right: 3px dashed rgba(123, 224, 244, 1);
  border-bottom: 3px dashed rgba(123, 224, 244, 1);
  position: absolute;
  top: 26%;
}
.zt.high .line-position4{
  width: 3%;
  left: 47%;
  height: 11%;
  top: 26%;
}
.zt.high .el-table {
  /* 表格字体颜色 */
  color: white;
  /* 表格边框颜色 */
   border:1px solid rgba(123, 224, 244, 0.3);
}
.zt.high .el-table__header{
  background: rgba(123, 224, 244, 0.1);
}
.zt.high .el-input__inner{
  background: rgba(123, 224, 244, 0.1);
}
  /* 富文本框样式 */
.zt.high .el-textarea__inner{
  background: rgba(123, 224, 244, 0.1);
}
.zt.high .el-pager, .zt.high .el-pager li{
  background: rgba(123, 224, 244, 0.1);
}
.zt.high .el-pagination .btn-next{
  background: rgba(123, 224, 244, 0.1);
}
.zt.high .el-pagination .btn-prev{
  background: rgba(123, 224, 244, 0.1);
}
  /* 滚动条正常时候的主干部分 */
.zt.high ::-webkit-scrollbar-track{
  background: rgba(123, 224, 244, 0.1);
}
  /*改换装设备装机信息的表头背景*/
.zt.high .replace-all-table-header{
  background: rgba(123, 224, 244, 0.1);
}
 
  /*admin用户样式*/
.zt.high .distpicker-address-wrapper select,
.zt.high .el-input-number.is-controls-right .el-input-number__decrease,
.zt.high .el-input-number.is-controls-right .el-input-number__increase{
  background: rgba(123, 224, 244, 0.1);
}
/*表格读取时中间图片颜色*/
.zt.high .el-loading-mask{
  background: rgba(123, 224, 244, 0.1);
}
/* 表格内背景颜色 */
.zt.high .el-table th, .zt.high .el-table tr, .zt.high .el-table td {
  border: 1px solid rgba(123, 224, 244, 0.1);
  background-color: transparent;
}
.zt.high .el-table__fixed-right-patch{
  background: rgb(13, 34, 73) ;
}
.zt.high .el-table-column--selection .cell{
  text-align: center;
  padding: 0;
}
.zt.high .el-table--border th,
.zt.high .el-table__fixed-right-patch{
  border: 1px solid rgba(123, 224, 244, 0.2);
}
/* 双数行背景颜色 */
.zt.high .el-table--striped .el-table__body tr.el-table__row--striped td {
  background-color: transparent;
}
 
/* 删除表格下横线 */
.zt.high .el-table::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
}
 
/* 表格表头字体颜色 */
.zt.high .aui-wrapper .el-table th {
  color: white;
}
 
/* 去掉表格单元格边框 */
.zt.high tr {
  border: 1px solid rgba(123, 224, 244, 0.1);
}
 
/* 表格最外边框 */
/*.zt.high .el-table--border, .zt.high .el-table--group {*/
  /*border: none !important;*/
/*}*/
 
/* 表格背景透明*/
.zt.high .el-table {
  overflow: hidden;
  background: transparent;
}
.zt.high .table-top-line{
  border-bottom: none;
}
/* 表格最外层边框-底部边框 */
/*.zt.high .el-table--border::after, .zt.high .el-table--group::after {*/
  /*width: 0 !important;*/
/*}*/
 
.zt.high .el-table__fixed-right::before, .zt.high .el-table__fixed::before {
  width: 0 !important;
}
/* 表格有滚动时表格头边框 */
.zt.high .el-table--border th.gutter:last-of-type {
  border: none;
  border-left: none;
}
 
/* 表格内下边框*/
.zt.high .el-form .el-form-item.toolbar {
  border-bottom: none;
}
 
/*表格鼠标移入时*/
.zt.high .el-table__body tr:hover > td {
  background-color: rgba(123, 224, 244, .1);
}
 
.zt.high .el-table .el-table__row:focus {
  background-color: rgba(123, 224, 244, .1);
}
 
.zt.high .el-table__body tr.current-row > td {
  background-color: rgba(123, 224, 244, .1);
}
 
/*表格内标签*/
.zt.high .el-tag{
  background: transparent;
  border: transparent;
}
/*标签tabs下划线的颜色*/
.zt.high .el-tabs__nav-wrap::after{
background: rgba(123, 224, 244, .2);
}
/*标签tabs下划线选中之后的样式*/
.zt.high .el-tabs__active-bar{
  height:4px;
}
/**/
.zt.high .el-collapse-item__wrap{
  border-bottom:transparent;
}
 
.zt.high .el-tag.el-tag--primary {
  color: rgba(235, 216, 7, 1);
}
.zt.high .el-tag.el-tag--info{
  color:rgba(206, 50, 42, 1);
}
.zt.high .selector-color .el-tag.el-tag--info{
  color:rgba(123, 224, 244, 1);
}
 
/* 表格内查看标签*/
.zt.high .el-link.el-link--default {
  background: transparent;
  border: transparent;
}
 
/*表格内修改按钮*/
.zt.high .zt-table-column-button.el-button.el-link.el-link--primary {
  color: rgba(245, 225, 3, 1);
  background: transparent;
  border: transparent;
}
 
/*表格内删除按钮*/
.zt.high .el-button--danger{
  background:rgba(206, 50, 42, .7);
  border:none;
}
.zt.high .message-btn .el-button.el-button--danger{
  background:rgba(206, 50, 42, .7)!important;
  border:none!important;
}
.zt.high .message-btn .el-button.el-button--danger:hover{
  background:rgba(206, 50, 42, 1)!important;
  border:none!important;
}
.zt.high .el-button--danger:hover{
  background:rgba(206, 50, 42, 1);
  border:none;
}
/*表格内删除按钮*/
.zt.high .el-link.el-link--danger{
  background: transparent;
}
/* 表格 内 维修检验按钮颜色*/
.zt.high .repair_button .zt-table-column-button.el-button.el-link.el-link--primary {
  color: rgba(123, 224, 244, 1);
  background: transparent;
  border: transparent;
}
 
/* 表格 内 编辑打印按钮颜色*/
.zt.high .el-link.el-link--primary {
  color: rgba(123, 224, 244, 1);
  background: transparent;
  border: transparent;
}
 
/*导出工程单项目清单*/
.zt.high .el-button--primary,
/*404*/
.zt.high .btn-bar .el-button--default{
  background: rgba(2, 120, 231, .5);
  border: rgba(2, 120, 231, .5);
}
.zt.high .el-button--primary:hover,
/*404*/
.zt.high .btn-bar .el-button--default:hover{
  background: rgba(2, 120, 231, 1);
  border: rgba(2, 120, 231, 1);
}
 
.zt.high .el-button.el-button--danger.is-disabled,
.zt.high .el-button.el-button--danger.is-disabled:active,
.zt.high .el-button.el-button--danger.is-disabled:focus,
.zt.high .el-button.el-button--danger.is-disabled:hover{
  background-color: rgba(206, 50, 42, .5);
  border: rgba(206, 50, 42, .5);
}
.zt.high .el-button.el-button--primary.is-disabled,
.zt.high .el-button.el-button--primary.is-disabled:active,
.zt.high .el-button.el-button--primary.is-disabled:focus,
.zt.high .el-button.el-button--primary.is-disabled:hover{
  background-color: rgba(2, 120, 231, .5);
  border: rgba(2, 120, 231, .5);
}
/*导入项目清单和导入维修信息*/
.zt.high .dropdown_color .el-button--primary {
  background: rgba(36, 53, 137, .5);
  border: rgba(36, 53, 137, .5);
}
.zt.high .dropdown_color .el-button--primary:hover {
  background: rgba(36, 53, 137, 1);
  border: rgba(36, 53, 137, 1);
}
 
/* 卡片 */
.zt.high .el-card {
  border: 2px solid transparent;
  color:rgba(123, 224, 244, 1);
  background: transparent;
}
 
/* 左侧结构树字体样式*/
.zt.high .el-tree {
  background: none !important;
  color: rgba(123, 224, 244, 1) !important;
}
.zt.high .product-tree-container{
  padding: 5px;
  border:1px solid rgba(123, 224, 244, 0.3);
}
/* 左侧结构树图标样式*/
.zt.high .el-tree-node__expand-icon {
  color: rgba(123, 224, 244, 1) !important;
}
 
/* 左侧结构树*/
.zt.high .el-tree-node__content:focus {
  background: #0bb2d4;
}
 
/* 左侧结构树鼠标移入*/
.zt.high .el-tree-node__content:hover {
  background: rgba(123, 224, 244, 0.2);
}
 
/* 左侧结构树鼠标点击*/
.zt.high .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
  background: rgba(123, 224, 244, 0.2);
}
 
/* 左侧结构树鼠标点击完成后鼠标移出的背景*/
.zt.high .el-tree-node:focus > .el-tree-node__content {
  background: rgba(123, 224, 244, 0.2);
}
 
/* 页面导航栏内部的缝*/
.zt.high .aui-sidebar {
  background:url(../../assets/img/zhptbg.jpg)
}
 
/*导航栏内部 ul的边框*/
.zt.high .el-menu--inline {
  /*border: 1px solid rgba(0, 153, 255, 1);*/
}
 
/* 首页导航栏内部背景 */
.zt.high .aui-sidebar--dark .aui-sidebar__menu, .zt.high .aui-sidebar--dark .aui-sidebar__menu .el-menu, .zt.high .aui-sidebar--dark .aui-sidebar__menu .el-submenu.is-opened {
  background-image: url(../../assets/img/zhptbg.jpg);
}
 
 
/* 页面顶部背景 */
.zt.high .aui-navbar {
  background-image: linear-gradient(to top,rgba(123, 224, 244, 0.2),rgba(123, 224, 244, 0.2)), url(../../assets/img/zhptbg.jpg);
}
 
/* 页面刷新符号鼠标移入时的颜色 */
.zt.high .aui-navbar--colorful .aui-navbar__menu.mr-auto > .el-menu-item:hover {
  background: #0099FF;
}
/*头部切换系统位置的颜色*/
.zt.high .el-menu--horizontal>.el-menu-item.is-active{
  background: transparent;
}
 
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-menu-item:focus,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-menu-item:hover,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-submenu > .el-submenu__title:focus,
.zt.high .aui-sidebar--dark .aui-sidebar__menu .el-submenu > .el-submenu__title:hover, .aui-sidebar--dark > .el-menu--popup .el-menu-item:focus, .aui-sidebar--dark > .el-menu--popup .el-menu-item:hover, .aui-sidebar--dark > .el-menu--popup .el-submenu > .el-submenu__title:focus, .aui-sidebar--dark > .el-menu--popup .el-submenu > .el-submenu__title:hover {
  background-color: #0099FF;
  border-color: #0099FF;
}
/*.zt.high .el-submenu.is-active .el-submenu__title {*/
  /*background: rgba(2, 120, 231, 1) !important;*/
/*}*/
.zt.high .el-menu-item:hover{
   background: none;
 }
/* 首页副标题选中后的颜色 */
.zt.high .aui-content > .el-tabs > .el-tabs__header > .el-tabs__nav-wrap > .el-tabs__nav-scroll > .el-tabs__nav > .el-tabs__item:focus,
.zt.high .aui-content > .el-tabs > .el-tabs__header > .el-tabs__nav-wrap > .el-tabs__nav-scroll > .el-tabs__nav > .el-tabs__item:hover,
.zt.high .aui-content > .el-tabs > .el-tabs__header > .el-tabs__nav-wrap > .el-tabs__nav-scroll > .el-tabs__nav > .el-tabs__item.is-active {
  color: rgba(123, 224, 244, 1);
  background: rgba(123, 224, 244, 0.2);
}
 
/* 首页副标题初始颜色 */
.zt.high .aui-content > .el-tabs > .el-tabs__header > .el-tabs__nav-wrap > .el-tabs__nav-scroll > .el-tabs__nav > .el-tabs__item {
  color: rgba(123, 224, 244, 1);
}
 
/* 首页副标题x符号初始后的颜色 */
.zt.high .aui-content > .el-tabs > .el-tabs__header > .el-tabs__nav-wrap > .el-tabs__nav-scroll > .el-tabs__nav > .el-tabs__item > .el-icon-close {
  color: rgba(123, 224, 244, 1);
}
 
.zt.high .aui-content__wrapper {
  background: none;
  margin-top:0;
  padding:7px
}
.zt.high .aside .el-submenu__title{
  background-color: #0099FF;
}
.zt.high .aside .el-menu--inline .active{
  background-color: #0099FF;
}
.zt.high .aui-wrapper-width-pos .aui-content__wrapper{
  margin-top:112px;
}
.zt.high .aui-content > .el-tabs > .el-tabs__header {
  background-image: linear-gradient(to top,rgba(123, 224, 244, 0.2),rgba(123, 224, 244, 0.2)), url(../../assets/img/zhptbg.jpg)
  /*background: url(../../assets/img/zhptbg.jpg);*/
  /*background-size: 50%;*/
  /*background-color: rgba(123, 224, 244, 0.2);*/
 
}
 
/* 分割线 */
.zt.high .el-divider {
  background: none;
}
/* 下拉框的背景颜色 */
.zt.high .el-dropdown {
  background: none;
}
/* 输入框样式 */
.zt.high .el-input__inner {
  border-radius: 3px;
  color: rgba(123, 224, 244, 1);
  background:rgba(123, 224, 244, .1) ;
  border: 1px solid rgba(0, 153, 255, 0.3);
}
.zt.high .input_style .el-input__inner:focus{
  background: none;
}
/* 只读的输入框样式*/
.zt.high .el-input.is-disabled .el-input__inner{
  -webkit-text-fill-color: rgba(255, 255, 244, .5);
}
/*只读的富文本框样式*/
.zt.high .el-textarea.is-disabled .el-textarea__inner{
  -webkit-text-fill-color: rgba(225, 255, 255, .5);
}
/* 富文本框样式 */
.zt.high .el-textarea__inner {
  border-radius: 3px;
  color: rgba(123, 224, 244, 1);
  border: 1px solid rgba(0, 153, 255, 0.3);
}
 
/*表格分页左侧文字颜色*/
.zt.high .el-pagination__total {
  color: rgba(123, 224, 244, 1);
}
 
/*表格分页右侧文字颜色*/
.zt.high .el-pagination__jump {
  color: rgba(123, 224, 244, 1);
}
/*表格分页中间图片颜色*/
.zt.high .el-pagination button:disabled {
  color: rgba(123, 224, 244, 1);
}
/*表格分页中间字体激活和移入时的颜色*/
.zt.high .el-pager li.active,
.zt.high .el-pager li:hover{
  color:rgba(123, 224, 244, 1)
}
/*表格无数据时显示内容的字体颜色*/
.zt.high .el-table__empty-text {
  color: rgba(123, 224, 244, 1);
}
 
/*表格最右侧列样式*/
.zt.high .el-table__fixed-right{
  background-image: url(../../assets/img/zhptbg.jpg);
  z-index: 2;
}
/* 弹出的对话框的样式*/
.zt.high .el-dialog .el-dialog__header {
  background: rgba(0, 11, 49, 1);
}
.zt.high .el-dialog .el-dialog__footer {
  background: rgba(0, 11, 49, 1);
}
 
/*附件*/
.zt.high .el-upload-list__item {
  background: transparent;
}
.zt.high .el-upload-list__item:hover{
  background: rgba(1, 23, 64, 1)
}
/*附件*/
.zt.high .el-upload-list__item-name{
  margin-right:0;
}
/*单选按钮*/
.zt.high .el-radio{
  color:rgba(255,255,255, .7);
}
 
.zt.high .el-dialog .el-dialog__body {
  /*border-top: 1px solid #fff;*/
  /*outline: 2px dashed #fff;*/
  background: rgba(1, 23, 64, 1);
  color: rgba(123, 224, 244, 1);
  border: none;
}
/*对话框footer的取消按钮*/
.zt.high .el-dialog__footer .el-button.el-button--default{
  background: rgba(123, 224, 244, .1);
  border: 1px solid rgba(0, 153, 255, 1);
}
/*对话框footer的取消按钮移入*/
.zt.high .el-dialog__footer .el-button.el-button--default:hover{
  background:rgba(1, 23, 64, 1);
  border: 1px solid rgba(0, 153, 255, 1);
}
/*对话框footer的暂存提交按钮*/
.zt.high .el-dialog__footer .el-button.el-button--primary{
  background: rgba(2, 120, 231, .5);
  border: 1px solid rgba(2, 120, 231, .5);
}
/*对话框footer的暂存提交按钮*/
.zt.high .el-dialog__footer .el-button.el-button--primary:hover{
  background: rgba(2, 120, 231, 1);
  border: 1px solid rgba(2, 120, 231, 1);
}
/*.zt.high .el-dialog__footer .el-button.el-button.el-button--primary.el-button--default{*/
  /*background: #011740;*/
  /*border: 1px solid #0099FF;*/
/*}*/
 
/*tab分页激活颜色*/
.zt.high .el-tabs__item.is-active {
  color: #0099FF !important;
}
.zt.high .el-tabs__active-bar{
  background-color: #0099FF !important;
}
.zt.high .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{
  border-color:#fff;
}
/*折叠面板头部内容样式*/
.zt.high .el-collapse-item__header {
  background: rgba(0, 11, 49, 1);
  /*border-top: 1px solid #7BE0F4;*/
  border: none;
}
 
/*折叠面板主体内容样式*/
.zt.high .el-collapse-item__content {
  background: rgba(0, 11, 49, 1);
  color:rgba(123, 224, 244, 1);
}
 
.zt.high .message-btn .el-button.el-button--default,
.zt.high .message-btn .el-button.el-button--default.el-button--mini,
.zt.high .admin-query-button{
  background: rgba(2, 120, 231, .5);
  border: none;
}
.zt.high .message-btn .el-button.el-button--default:hover,
.zt.high .message-btn .el-button.el-button--default.el-button--mini:hover,
.zt.high .admin-query-button:hover{
  background: rgba(2, 120, 231, 1);
  border: none;
}
.zt.high .el-button--info{
  background: rgba(2, 120, 231, 1);
  border: none;
}
/*表格分页图标移入颜色*/
.zt.high .el-pagination .btn-next:hover,
.zt.high .el-pagination .btn-prev:hover{
  color: rgba(123, 224, 244, 1)
}
/*维修首页echarts图边框图*/
.zt.high .bg-purple {
  margin-top:10px;
  border: 20px solid transparent;
  border-image: url(../../assets/img/page-border.png) 20 stretch;
  background: transparent;
}
.zt.high ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
 
/* 正常情况下滑块的样式 */
.zt.high ::-webkit-scrollbar-thumb {
  background-color: rgba(123, 224, 244, 0.2);
  border-radius: 2px;
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}
.zt.high ::-webkit-scrollbar-corner{
  background-color: rgba(123, 224, 244, 0.1);
}
  /* 鼠标悬浮在该类指向的控件上时滑块的样式 */
.zt.high :hover::-webkit-scrollbar-thumb {
  background-color: rgba(123, 224, 244, 0.3);
  border-radius: 2px;
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}
 
/* 鼠标悬浮在滑块上时滑块的样式 */
.zt.high ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(123, 224, 244, 0.3);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
}
 
/* 正常时候的主干部分 */
.zt.high ::-webkit-scrollbar-track {
  border-radius: 2px;
  /*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);*/
}
 
/* 鼠标悬浮在滚动条上的主干部分 */
.zt.high ::-webkit-scrollbar-track:hover {
  /*-webkit-box-shadow: inset 0 0 6px rgba(123, 224, 244, 0.1);*/
  background-color: rgba(123, 224, 244, 0.3);
}
/* IE 滚动条样式*/
.zt.high{
  /*三角箭头的颜色*/
  scrollbar-arrow-color: #ffffff;
  /*滚动条滑块按钮的颜色*/
  scrollbar-face-color:rgb(47, 93, 133);
  /*滚动条整体颜色*/
  scrollbar-highlight-color: rgb(13, 34, 73);
  /*滚动条阴影*/
  scrollbar-shadow-color: rgb(123, 224, 244);
  /*滚动条轨道颜色*/
  scrollbar-track-color: rgb(13, 34, 73);
  /*滚动条3d亮色阴影边框的外观颜色——左边和上边的阴影色*/
  scrollbar-3dlight-color:rgb(123, 224, 244);
  /*滚动条3d暗色阴影边框的外观颜色——右边和下边的阴影色*/
  scrollbar-darkshadow-color: rgb(123, 224, 244);
  /*滚动条基准颜色*/
  scrollbar-base-color: rgb(13, 34, 73);
}
 
.zt.high .el-collapse-item__wrap {
  background: rgba(0, 11, 49, 1);
}
/*改换装重大技术问题和设备装机信息的下边框*/
.zt.high .scroll-li-border{
  border-bottom:2px solid rgba(123, 224, 244, 0.1);
}
 
.zt.high .el-popover{
  color:#fff;
  background:rgba(0, 11, 49, 1) ;
  border: 1px solid rgba(123, 224, 244, 1)  ;
}
.zt.high .el-select-dropdown__list{
  background:rgba(0, 11, 49, 1) ;
}
.zt.high .el-select-dropdown__item{
  color: rgba(123, 224, 244, 1);
}
.zt.high .el-select-dropdown__item.hover,
.zt.high .el-select-dropdown__item:hover{
  background: rgba(123, 224, 244, 0.2);
}
.zt.high .el-select-dropdown{
  border: 1px solid rgba(123, 224, 244, 1);
  border-radius: 2px;
}
/*下拉框无数据时样式*/
.zt.high .el-select-dropdown__empty{
  border:rgba(123, 224, 244, 1) ;
  color:rgba(123, 224, 244, 1);
  background: rgba(0, 11, 49, 1);
}
/*下拉框箭头样式*/
.zt.high .el-select .el-input .el-select__caret{
  color:rgba(123, 224, 244, 1);
}
.zt.high .el-input__prefix,
.zt.high .el-input__suffix{
  color:rgba(123, 224, 244, 1);
}
/*谷歌下的placeholder*/
.zt.high .el-input__inner::-webkit-input-placeholder,
.zt.high .el-textarea__inner::-webkit-input-placeholder{
  color:rgba(123, 224, 244, .4);
}
/*IE下的placeholder*/
.zt.high input::placeholder,
.zt.high textarea::placeholder{
  color:rgba(123, 224, 244, .4) !important;
}
.zt.high .el-dropdown-menu{
  background:rgba(0, 11, 49, 1);
  border: 1px solid rgba(123, 224, 244, 1);
}
.zt.high .el-dropdown-menu__item{
  color:rgba(123, 224, 244, 1) ;
}
.zt.high .el-dropdown-menu__item:focus,
.zt.high .el-dropdown-menu__item:not(.is-disabled):hover{
  background: rgba(123, 224, 244, 0.2);
}
/* 开关*/
.zt.high .el-switch__core{
  background: rgba(123, 224, 244, 1);
  border: 1px solid rgba(123, 224, 244, 1);
}
.zt.high .el-switch__core::after{
  background: rgba(0, 44, 102, 1);
}
.zt.high .el-switch.is-checked .el-switch__core{
  background: rgba(2, 120, 231, 1);
  border:transparent;
}
/*穿梭框*/
.zt.high .el-transfer-panel{
  border: 1px solid rgba(0, 153, 255, 0.3);
  background: transparent;
}
.zt.high .el-transfer-panel .el-transfer-panel__header{
  background: transparent;
  border-bottom: 1px solid rgba(0, 153, 255, 0.3);
}
.zt.high .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label{
  color:rgba(123, 224, 244, 1)
}
.zt.high .el-transfer-panel .el-transfer-panel__header .el-checkbox .el-checkbox__label span{
  color:rgba(123, 224, 244, 1)
}
.zt.high .el-textarea .el-input__count{
  background: rgba(123, 224, 244, .1);
  color:rgba(123, 224, 244, 1);
}
/*日历*/
.zt.high .el-date-picker__header-label{
  color:rgba(123, 224, 244, 1);
}
.zt.high .el-date-picker__header--bordered{
  border-bottom: 1px solid rgba(0, 153, 255, 1);
}
.zt.high .el-range-editor .el-range-input{
  background: transparent !important;
}
/*日历主体*/
.zt.high .el-picker-panel{
  background:rgba(0, 11, 49, 1);
  color:rgba(123, 224, 244, 1);
  border: 1px solid rgba(0, 153, 255, 1);
}
.zt.high .el-date-range-picker__content.is-left{
  border-right: 1px solid rgba(0, 153, 255, 1);
}
.zt.high .el-date-table td.in-range div,
.zt.high .el-date-table td.in-range div:hover,
.zt.high .el-date-table.is-week-mode .el-date-table__row.current div,
.zt.high .el-date-table.is-week-mode .el-date-table__row:hover div{
  background:rgba(123, 224, 244, .1) ;
}
.zt.high .el-picker-panel__icon-btn{
  color:rgba(123, 224, 244, 1);
}
.zt.high .el-date-table th{
  border-bottom:1px solid rgba(0, 153, 255, 1) ;
}
.zt.high .el-date-table td.next-month,
.zt.high .el-date-table td.prev-month{
  color:rgba(123, 224, 244, .4);
}
.zt.high .el-date-table td.end-date span,
.zt.high .el-date-table td.start-date span{
  background: transparent;
}
.zt.high .el-date-table td.end-date div,
.zt.high .el-date-table td.start-date div{
  color:rgba(0, 153, 255, 1);
}
.zt.high .select-lx-plan{
  border:1px solid rgba(0, 153, 255, 1);
  background:rgba(0, 11, 49, 1) ;
}
.zt.high .select-option{
  border:1px solid rgba(0, 153, 255, 1);
  background: rgba(0, 11, 49, 1);
}
/*单选按钮*/
.zt.high .el-checkbox__inner{
  background: rgba(123, 224, 244, 0.1);
  border: 1px solid rgba(0, 153, 255, 0.3);
}
/*单选按钮颜色*/
.zt.high .el-checkbox{
  color:rgba(255,255,255,.7)
}
.zt.high .el-checkbox__input.is-checked .el-checkbox__inner{
  border: 1px solid rgba(0, 153, 255, 0.3);
  background: rgb(0, 153, 255);
}
/*login页面下拉框记住账号密码后的样式*/
.zt.high input:-webkit-autofill ,
.zt.high textarea:-webkit-autofill,
.zt.high select:-webkit-autofill{
  -webkit-text-fill-color: #000 !important;
  -webkit-box-shadow: 0 0 0 1000px transparent  inset !important;
  background-color:transparent;
  background-image: none;
  transition: background-color 50000s ease-in-out 5000s;
}
 
/*admin用户样式*/
.zt.high .distpicker-address-wrapper select{
  color:rgba(11, 222, 243, 1);
  border: 1px solid rgba(0, 153, 255, 0.3);
  background: rgba(123, 224, 244, 0.1);
}
.zt.high .distpicker-address-wrapper select option{
  background:rgba(0, 11, 49, 1) ;
}
.zt.high .distpicker-address-wrapper select option:hover{
  background: rgba(123, 224, 244, 0.1);
}
.zt.high .el-input-number.is-controls-right .el-input-number__decrease,
.zt.high .el-input-number.is-controls-right .el-input-number__increase{
  color:rgba(11, 222, 243, 1);
  border-left: 1px solid rgba(0, 153, 255, 0.3);
  border-bottom: 1px solid rgba(0, 153, 255, 0.3);
}
/*404*/
.zt.high .aui-page__not-found .title{
  color:rgba(255,255,255,.9);
}
.zt.high .aui-page__not-found .desc{
  color:rgba(255,255,255,.8);
}
.zt.high .btn-bar .el-button--default{
  color:#fff;
}
/*更换主题*/
.zt.high .aui-theme-tools__content{
  /*height:50%;*/
  background:rgba(0, 11, 49, 1) ;
  border:1px solid rgba(0, 153, 255, 1);
  color:#fff;
}
.zt.high .el-radio-button__orig-radio:checked+.el-radio-button__inner{
  color:rgba(11, 222, 243, 1) !important;
  border: 1px solid rgba(0, 153, 255, 0.3)!important;
  background: rgba(36, 53, 137, .5) !important;
}
/*.zt.high .el-radio-button__orig-radio:checked+.el-radio-button__inner:hover{*/
  /*color:rgba(11, 222, 243, 1);*/
  /*border: 1px solid rgba(0, 153, 255, 0.3);*/
  /*background: rgba(36, 53, 137, 1);*/
/*}*/
.zt.high .life-list-divider .el-radio-button__inner,
.zt.high .life-list-divider .el-radio-button:last-child .el-radio-button__inner{
  color:#fff;
  background-color: rgba(123, 224, 244, .1);
  border-color: rgba(123, 224, 244, .1);
}
.zt.high .life-list-divider .el-input-group__append{
  color:rgba(123, 224, 244, 1);
  background-color: rgba(123, 224, 244, .1);
  border-color:rgba(123, 224, 244, .1) ;
}
.zt.high .el-form-item__content .el-button.el-button--default.el-button--mini{
  color:#fff;
  background: rgba(2, 120, 231, .5);
  border: 1px solid rgba(2, 120, 231, .5);
}
.zt.high .el-form-item__content .el-button.el-button--default.el-button--mini:hover{
  background: rgba(2, 120, 231, 1);
  border: 1px solid rgba(2, 120, 231, 1);
}
.zt.high .scene_style{
  color: yellow;
  background: #0c46af;
}
.zt.high .el-input.el-input--default.is-disabled{
  color:rgba(123, 224, 244, 0.1)
}
/* 甘特图*/
.zt.high .gantt-header-title{
  color:rgba(255,255,255, 1)
}
.zt.high .gantt-leftbar{
  color:#fff;
}
.zt.high .gantt-left-test{
  color:rgba(123, 224, 244, 1);
  background: rgba(123, 224, 244, .1);
  border: 1px solid rgba(0, 153, 255, 0.3);
  border-radius: 2px;
  /*color:rgba(123, 224, 244, 1)*/
  /*background-color:rgba(123, 224, 244, 0.5);*/
}
.zt.high .gantt-timeline-day{
  color:#fff;
}
.zt.high .detail ul>li span{
  color:#fff;
}
.zt.high .el-popover__title{
  color:#fff;
}
/* 多选下拉框选中之后样式*/
.zt.high .el-select-dropdown.is-multiple .el-select-dropdown__item.selected{
  background-color: rgba(0, 11, 49, 1);
}
/* 多选下拉框选中之后的文本样式*/
.zt.high .el-select__tags .el-tag.el-tag--info{
  color: rgba(123, 224, 244, 1)
}
.zt.high .el-scrollbar__wrap{
  overflow: auto;
}
.zt.high .el-cascader__dropdown{
  border:1px solid rgba(123, 224, 244, 1);
}
.zt.high .el-scrollbar__view.el-cascader-menu__list{
  background: rgba(0, 11, 49, 1);
  color:rgba(123, 224, 244, 1);
}
.zt.high .el-cascader-node:not(.is-disabled):focus,
.zt.high .el-cascader-node:not(.is-disabled):hover{
  background: rgba(123, 224, 244, 0.2);
}
.zt.high .el-progress-bar__outer{
  background-color:rgba(123, 224, 244, .3) ;
}
.zt.high .el-cascader .el-input .el-input__inner:hover{
  border:1px solid rgba(123, 224, 244, 1);
}
.zt.high .el-upload__tip{
  color:rgba(123, 224, 244, 1);
}
 
/*导航栏鼠标悬停时的颜色*/
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-submenu__title:hover,
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-menu-item:hover,
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-submenu__title:hover,
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-menu-item:hover,
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-submenu__title:hover,
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-menu-item:hover{
  background: #193f5c;
}
/*一级导航栏*/
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-submenu__title{
  background: #020A38;
}
/*二级导航栏*/
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-menu-item,
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-submenu__title{
  background:#0d2041;
}
/*三级导航栏*/
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-menu-item{
  background: #193452 ;
}
/*有子集的三级导航栏*/
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-submenu__title{
  background:#193452;
}
/*无子集的四级导航栏*/
.zt.high .sidebar-container>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-submenu>.el-menu>.navMenu>.el-menu-item{
  background: #234b79;
}
.zt.high .el-menu{
  /*background-color:#1fa799 ;*/
  border-right: none;
}
.zt.high .user-text{
  background:  #254770;
}
.zt.high .approval-tag-color{
  color:#ffffff;
}
.zt.high .common-color{
  color:#ffffff;
}
.zt.high .approval-right-form__color{
  color:#ffffff;
}
.zt.high .project-yd-right-color{
  color:#ffffff;
}
.zt.high #columnOption .content .head{
  border-bottom: 1px solid #000;
  color:#ffffff;
}
.zt.high #columnOption .content{
  background-color:  rgb(1,23,64);
}
.zt.high #columnOption .el-checkbox__input.is-checked+.el-checkbox__label{
  color: rgb(123,224,244) !important
}
 
.zt.high #columnOption .content #footer{
  border-top: 1px solid #000;
}
.zt.high .inspection-project-node-color{
  color:#ffffff;
}
.zt.high .sidebar-container{
  position: absolute;
  background:#020A38;
  height: 80%;
}
.zt.high .is_menu-height{
  height:100%;
  background:#020A38 ;
}
.zt.high .table-common-margin{
  margin-top:-5px;
}
.zt.high .form-common-margin{
  margin-top:-20px;
}
.zt.high .container5 .canvas{
  height:280px;
  width: 100%;
}
.zt.high .container5{
  width: 100%;
}
.zt.high .selector-ul-style{
  background: rgba(0, 11, 49, 1);
  color: rgba(123, 224, 244, 1);
  border: 1px solid rgba(123, 224, 244, 1);
}
 
.zt.high .selector-ul-style li:hover{
  background-color: rgba(123, 224, 244, 0.2);
}
.zt.high .el-badge.item .el-badge__content.is-fixed{
  top:-8px;
  right:15px;
}
.zt.high .link{
  background: #cccccc;
}
.zt.high .link:before {
  box-shadow: inset -2px 2px 0 0 #cccccc;
}
/*.zt.high .dotted-line{*/
  /*border-bottom:2px dashed rgba(123, 224, 244, 1);*/
  /*border-top:2px dashed rgba(123, 224, 244, 1);*/
/*}*/
/*.zt.high .dotted-line.is_right{*/
  /*border-right: 2px dashed rgba(123, 224, 244, 1);*/
/*}*/
.zt.high .dotted-line.is_left{
  border-left:2px dashed #cccccc;
}
/*.zt.high .dotted-line:before{*/
  /*box-shadow: inset -2px 2px 0 0 rgba(123, 224, 244, 1);*/
/*}*/
.zt.high .ZX-begin{
  border:2px solid #cccccc;
  border-bottom: none;
}
.zt.high .ZX-begin:before,
.zt.high .ZX-begin:after{
  box-shadow: inset -2px 2px 0 0 #cccccc;
}
.zt.high .solid-line.is_left{
  border-left: 2px solid #cccccc;
  border-right: none;
}
.zt.high .solid-line.is_left1{
  border-left: 2px solid #cccccc;
  border-right: none;
}
.zt.high .solid-line.is_right{
  border-right: 2px solid #cccccc
}
.zt.high .solid-line{
  border-bottom: 2px solid #cccccc;
  border-top: 2px solid #cccccc;
}
.zt.high .solid-line:before{
  box-shadow: inset -2px 2px 0 0 #cccccc;
}
.zt.high .is_parents .is_divider{
  background:#cccccc
}
.zt.high .is_parents .is_begin--diamond{
  background: #6f6f6f;
}
.zt.high .is_begin{
  background: #6f6f6f;
}
.zt.high .is_background {
  background:#194d09 !important;
}
 
.zt.high .is_background2 {
  background: #8b702a !important;
}
.zt.high .table-common-img{
  margin-top:0;
}
.zt.high .p_style1{
  color:#fff;
}
.zt.high .life-list-divider .el-divider{
  background-color:#DCDFE6
}
.zt.high .el-input-number.is-disabled,
.zt.high .el-input-number__decrease,
.zt.high .el-input-number__increase{
  color:rgb(123,224,244);
  background-color: rgba(123,224,244,.1);
  border-color:rgba(123,224,244,.1);
}