tengsx
2023-04-07 36c045a4f518f6506eab91e48ee48ce7d1aaa21d
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
@media screen and (min-width: 1920px) {
 
    html,
    body {
        font-size: countSizeVh(16) !important;
 
        #app {
            width: 100vw;
            height: 100vh;
 
            .wrapper {
                width: 100vw;
                height: 100vh;
 
                .main-header {
                    width: 100vw;
                    height: countSizeVh(60);
                    line-height: countSizeVh(60);
 
                    .title {
                        font-size: countSizeVh(24);
                    }
 
                    .menu-list.left {
                        margin-left: countSizeVh(72);
                    }
 
                    .menu-list.right {
                        margin-right: countSizeVh(72);
                    }
 
                    .menu-list {
 
                        .nav-list {
                            width: countSizeVw(132, 1920);
                            height: countSizeVh(36);
                            font-size: countSizeVh(18);
 
                            .sub-nav-list {
                                border-top: countSizeVh(14) solid transparent;
                                top: countSizeVh(28);
                                left: countSizeVw(72, 1920);
 
                                div {
                                    height: countSizeVh(36);
                                    line-height: countSizeVh(36);
                                    font-size: countSizeVh(16);
                                }
 
                                div:first-child {
                                    padding-top: countSizeVh(10);
                                }
 
                                div:last-child {
                                    padding-bottom: countSizeVh(10);
                                }
                            }
 
                        }
                    }
                }
 
                .main-content {
                    top: countSizeVh(60);
                    height: calc(100% - countSizeVh(60));
 
                    .home-page {
 
                        .left-container,
                        .right-container {
                            top: countSizeVh(60);
                            width: countSizeVw(400, 1920);
                            height: calc(100% - countSizeVh(60));
 
                            .person-box,
                            .land-box,
                            .case-box,
                            .crowd-box {
                                height: countSizeVh(320);
                            }
 
                            .person-box,
                            .house-box,
                            .land-box,
                            .case-box,
                            .alert-box,
                            .crowd-box {
 
                                .title {
                                    padding: 0 countSizeVw(18, 1920) 0 countSizeVw(18, 1920);
                                    height: countSizeVh(58);
                                    line-height: countSizeVh(58);
                                    font-size: countSizeVh(16);
                                }
 
                                .sub-title {
                                    line-height: countSizeVh(36);
                                }
 
                                .sub-tab {
                                    padding: countSizeVh(10);
 
                                    .tab {
 
                                        &>div {
                                            height: countSizeVh(22);
                                            line-height: countSizeVh(22);
                                        }
 
                                        &>div.tab-title-small {
                                            height: maxCountSizeVh(32);
                                            line-height: maxCountSizeVh(32);
                                        }
                                    }
                                }
 
                            }
 
                            .house-box,
                            .alert-box {
 
                                .title {
                                    height: countSizeVh(62);
                                    line-height: countSizeVh(62);
                                }
                            }
                        }
 
                        .bottom-container {
                            left: countSizeVw(400, 1920);
                            width: calc(100% - countSizeVw(400, 1920) * 2);
                            height: countSizeVh(320);
                        }
 
                        .region-select {
                            top: countSizeVh(20);
                        }
 
                        .center-container {
                            bottom: countSizeVh(340);
 
                            .layers-control-btn {
                                width: countSizeVw(96, 1920);
                                height: countSizeVh(40);
                                border-radius: countSizeVh(20)
                            }
                        }
 
                        .el-checkbox__inner {
                            width: countSizeVh(20);
                            height: countSizeVh(20);
                        }
 
                        .el-checkbox__label {
                            font-size: countSizeVh(16) !important;
                        }
                    }
 
                    .house-page {
                        .container-content {
 
                            .search-box {
                                height: countSizeVh(48);
 
                                input {
                                    font-size: countSizeVh(18);
                                }
 
                                button {
                                    width: countSizeVw(80, 1920);
                                    font-size: countSizeVh(24);
                                }
                            }
 
                            .search-val-box {
                                top: countSizeVh(48);
                                left: countSizeVw(6, 1920);
                                width: calc(100% - 2 * countSizeVw(6, 1920));
                                max-height: countSizeVh(160);
                                border-radius: countSizeVh(10);
 
                                &>div {
                                    div {
                                        padding: 0 countSizeVw(10, 1920);
                                        line-height: countSizeVh(36);
                                        cursor: pointer;
                                    }
                                }
                            }
 
                            .result-content {
                                height: calc(100% - countSizeVh(48));
 
                                .housing-estate-info {
 
                                    .housing-title {
                                        padding: 0 countSizeVw(10, 1920);
                                        height: countSizeVh(40);
                                        line-height: countSizeVh(40);
                                        font-size: countSizeVh(28);
 
                                        &::after {
                                            top: countSizeVh(18);
                                            left: countSizeVw(10, 1920);
                                            right: countSizeVw(10, 1920);
                                            top: countSizeVh(4);
                                        }
                                    }
 
                                    .housing-bg {
                                        margin-top: countSizeVh(6);
                                        height: countSizeVh(200);
                                    }
 
                                    .housing-introduce {
 
                                        &>div {
                                            padding: 0 countSizeVw(10, 1920);
 
                                            .l {
                                                width: countSizeVw(80, 1920);
                                                line-height: countSizeVh(40);
                                            }
 
                                            .r {
                                                line-height: countSizeVh(40);
                                            }
                                        }
                                    }
                                }
 
                                .nav-tab {
 
                                    .nav {
                                        height: countSizeVh(40);
                                        line-height: countSizeVh(40);
                                        border-bottom: countSizeVh(1) solid #33566c;
                                    }
                                }
 
                                .base-info {
 
                                    .sub-nav-list {
                                        padding: countSizeVw(14, 1920) 0;
 
                                        .sub-nav {
                                            width: countSizeVw(76, 1920);
                                            height: countSizeVh(26);
                                            line-height: countSizeVh(26);
                                            border-radius: countSizeVh(13);
                                        }
 
                                        .on {
                                            border: countSizeVh(1) solid #fff;
                                        }
                                    }
 
                                    &>.floor-content {
 
                                        .build-info {
                                            height: countSizeVh(100);
                                        }
 
                                        .nextBtn {
                                            left: countSizeVw(1, 1920);
                                            width: countSizeVw(20, 1920);
                                            height: countSizeVh(60);
                                            padding-top: countSizeVh(12);
 
                                            i {
                                                font-size: countSizeVh(30);
                                                margin-left: countSizeVw(-5, 1920);
                                            }
                                        }
 
                                        .rightBtn {
                                            left: countSizeVw(369, 1920);
                                        }
 
                                        .build-outBox {
                                            left: countSizeVw(18, 1920);
                                            width: countSizeVw(356, 1920);
                                            height: countSizeVh(100);
 
                                            .build-box {
 
                                                .ridgepole-list {
                                                    width: countSizeVw(356, 1920);
 
                                                    &>div {
                                                        margin: countSizeVh(6) countSizeVw(8, 1920);
                                                        width: countSizeVw(54, 1920);
                                                        height: countSizeVh(36);
                                                        line-height: countSizeVh(36);
                                                        border: countSizeVh(1) solid #ccc;
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
 
                    .police-page {
                        .switch-box {
                            padding: countSizeVh(6);
 
                            .el-input__inner {
                                height: countSizeVh(40);
                                font-size: countSizeVh(16);
 
                            }
 
                            .el-icon-arrow-up:before {
                                font-size: countSizeVh(16);
                                line-height: countSizeVh(40);
                            }
 
                            .el-input__suffix {
                                right: countSizeVw(5, 1920);
                            }
 
                            .el-select-dropdown__wrap {
                                height: countSizeVh(274);
                            }
 
                        }
 
                        .list-show {
                            height: calc(100% - countSizeVh(50));
 
                            .search-box {
                                padding: countSizeVh(6) countSizeVw(6, 1920);
                                height: countSizeVh(46);
 
                                input {
                                    font-size: countSizeVh(18);
                                    border-radius: countSizeVh(20);
                                }
                            }
 
                            .list {
                                height: calc(100% - countSizeVh(48));
 
                                .el-button--text {
                                    font-size: countSizeVh(14);
                                }
 
                                .pages {
                                    height: countSizeVh(40);
 
                                    &>div {
                                        display: flex;
                                        align-items: center;
 
                                        &>button {
                                            width: countSizeVh(32);
                                            height: countSizeVh(32);
 
                                            &>i {
                                                font-size: countSizeVh(16);
                                            }
                                        }
 
                                        &>ul {
                                            display: flex;
                                            align-items: center;
 
                                            li {
                                                width: countSizeVh(32);
                                                height: countSizeVh(32);
                                                line-height: countSizeVh(32);
                                                font-size: countSizeVh(16);
                                            }
                                        }
                                    }
 
                                }
 
                                .state-box {
                                    width: countSizeVw(20, 1920);
                                    height: countSizeVh(20);
                                    line-height: countSizeVh(20);
                                }
 
                                .el-table__header-wrapper {
                                    height: countSizeVh(48);
 
                                    .el-table__header {
                                        height: 100%;
 
                                    }
                                }
 
                                .el-table th.el-table__cell {
                                    height: 100%;
                                }
 
                                .el-table .cell {
                                    line-height: countSizeVh(48);
                                    font-size: countSizeVh(16);
                                }
 
                                .el-table th.el-table__cell>.cell {
                                    height: 100%;
                                }
 
                                .el-table__empty-text {
                                    font-size: countSizeVh(16);
                                }
 
 
                            }
 
                        }
 
                        .track-box {
                            height: calc(100% - countSizeVh(50));
 
                            .back-btn {
                                height: countSizeVh(42);
                                line-height: countSizeVh(42);
                                border-bottom: countSizeVh(1) solid #fff;
                            }
 
                            .back-btn::before {
                                height: countSizeVh(28);
                                line-height: countSizeVh(28);
                                top: countSizeVh(4);
                                left: countSizeVw(8, 1920);
                            }
 
                            li {
                                padding: 0 countSizeVw(4, 1920);
                                height: countSizeVh(42);
                                line-height: countSizeVh(42);
                                border-bottom: countSizeVh(1) solid #fff;
                            }
 
                            li:last-child {
                                .el-button {
                                    width: countSizeVw(68, 1920);
                                    height: countSizeVh(32);
                                    line-height: countSizeVh(32);
                                }
                            }
                        }
                    }
 
                    .video-page {
                        .list {
                            .search-box {
                                padding: countSizeVw(6, 1920) countSizeVh(6);
                                height: countSizeVh(52);
 
                                input {
                                    font-size: countSizeVh(18);
                                    border: countSizeVh(1) solid rgb(0, 92, 169);
                                    border-radius: countSizeVh(20) 0 0 countSizeVw(20, 1920);
                                }
 
                                button {
                                    font-size: countSizeVh(24);
                                    width: countSizeVw(80, 1920);
                                    border: countSizeVh(1) solid rgb(0, 92, 169);
                                    border-radius: 0 countSizeVw(20, 1920) countSizeVh(20) 0;
                                }
 
                                button:active {
                                    border: countSizeVh(1) solid rgb(0, 92, 169);
                                }
                            }
 
                            .search-val-box {
                                top: countSizeVh(48);
                                left: countSizeVw(6, 1920);
                                width: calc(100% - countSizeVw(12, 1920));
                                max-height: countSizeVh(160);
                                border-radius: countSizeVh(10) countSizeVw(10, 1920);
 
                                &>div {
                                    padding: 0 countSizeVw(10, 1920);
                                    line-height: countSizeVh(36);
                                }
                            }
 
                            .draw-btn {
                                margin: countSizeVh(8) countSizeVw(8, 1920);
                                height: countSizeVh(26);
 
                                .el-button--mini {
                                    font-size: countSizeVh(16);
                                    padding: countSizeVh(8) 0;
                                    border-radius: countSizeVh(4);
 
                                }
                            }
 
                            .range-input {
                                right: countSizeVw(-190, 1920);
                                top: countSizeVh(20);
                                width: countSizeVw(180, 1920);
                                height: countSizeVh(100);
 
                                input {
                                    border: countSizeVh(1) solid #005ca9;
                                    width: countSizeVw(160, 1920);
                                    height: countSizeVh(30);
                                    margin-top: countSizeVh(10);
                                    padding-left: countSizeVw(6, 1920);
                                }
 
                                .btn {
                                    width: countSizeVw(60, 1920);
                                    height: countSizeVh(30);
                                    border-radius: countSizeVh(4);
                                    margin-top: countSizeVh(10);
                                }
 
                                .close {
                                    width: countSizeVw(20, 1920);
                                    height: countSizeVh(10);
                                }
 
                                .close::before {
                                    font-size: countSizeVh(18);
                                }
                            }
 
                            .list-show {
                                .pages {
                                    height: countSizeVh(40);
 
                                    &>div {
                                        display: flex;
                                        align-items: center;
 
                                        &>button {
                                            width: countSizeVh(32);
                                            height: countSizeVh(32);
 
                                            &>i {
                                                font-size: countSizeVh(16);
                                            }
                                        }
 
                                        &>ul {
                                            display: flex;
                                            align-items: center;
 
                                            li {
                                                width: countSizeVh(32);
                                                height: countSizeVh(32);
                                                line-height: countSizeVh(32);
                                                font-size: countSizeVh(16);
                                            }
                                        }
                                    }
                                }
 
                                .el-table__header-wrapper {
                                    height: countSizeVh(48);
 
                                    .el-table__header {
                                        height: 100%;
 
                                    }
                                }
 
                                .el-table th.el-table__cell {
                                    height: 100%;
                                }
 
                                .el-table .cell {
                                    line-height: countSizeVh(48);
                                    font-size: countSizeVh(16);
                                }
 
                                .el-table th.el-table__cell>.cell {
                                    height: 100%;
                                }
 
                                .el-table__empty-text {
                                    font-size: countSizeVh(16);
                                }
                            }
                        }
 
                        .region {
                            .left-container {
                                .search-box {
                                    padding: countSizeVw(6, 1920) countSizeVh(6);
                                    height: countSizeVh(52);
 
                                    input {
                                        font-size: countSizeVh(18);
                                        border: countSizeVh(1) solid rgb(0, 92, 169);
                                        border-radius: countSizeVh(20) 0 0 countSizeVw(20, 1920);
                                    }
 
                                    button {
                                        font-size: countSizeVh(24);
                                        width: countSizeVw(80, 1920);
                                        border: countSizeVh(1) solid rgb(0, 92, 169);
                                        border-radius: 0 countSizeVw(20, 1920) countSizeVh(20) 0;
                                    }
 
                                    button:active {
                                        border: countSizeVh(1) solid rgb(0, 92, 169);
                                    }
                                }
 
                                .search-val-box {
                                    top: countSizeVh(48);
                                    left: countSizeVw(6, 1920);
                                    width: calc(100% - countSizeVw(12, 1920));
                                    max-height: countSizeVh(160);
                                    border-radius: countSizeVh(10) countSizeVw(10, 1920);
 
                                    &>div {
                                        padding: 0 countSizeVw(10, 1920);
                                        line-height: countSizeVh(36);
                                    }
                                }
 
                                .list-show {
                                    &>div {
                                        .list-box {
                                            .btn {
                                                width: 60px;
                                                height: countSizeVh(30);
                                                border-radius: countSizeVh(4) countSizeVw(4, 1920);
                                                margin-top: countSizeVh(10);
                                            }
 
                                            .btn:active {
                                                border: countSizeVh(1) solid rgb(0, 92, 169);
                                            }
                                        }
                                    }
 
                                    .el-table__header-wrapper {
                                        height: countSizeVh(48);
 
                                        .el-table__header {
                                            height: 100%;
                                        }
                                    }
 
                                    .el-table th.el-table__cell {
                                        height: 100%;
                                    }
 
                                    .el-table .cell {
                                        line-height: countSizeVh(48);
                                        font-size: countSizeVh(16);
                                    }
 
                                    .el-table th.el-table__cell>.cell {
                                        height: 100%;
                                    }
 
                                    .el-table__empty-text {
                                        font-size: countSizeVh(16);
                                    }
 
                                    .pages {
                                        height: countSizeVh(40);
 
                                        &>div {
                                            display: flex;
                                            align-items: center;
 
                                            &>button {
                                                width: countSizeVh(32);
                                                height: countSizeVh(32);
 
                                                &>i {
                                                    font-size: countSizeVh(16);
                                                }
                                            }
 
                                            &>ul {
                                                display: flex;
                                                align-items: center;
 
                                                li {
                                                    width: countSizeVh(32);
                                                    height: countSizeVh(32);
                                                    line-height: countSizeVh(32);
                                                    font-size: countSizeVh(16);
                                                }
                                            }
                                        }
 
 
                                    }
                                }
                            }
                        }
                    }
 
                    .activity-page {
                        .container-content {
                            font-size: countSizeVh(24);
 
                            .title {
                                height: countSizeVh(40);
                                line-height: countSizeVh(40);
                                font-size: countSizeVh(24);
                                letter-spacing: countSizeVw(20, 1920);
                            }
 
                            .search-box {
                                padding: 0 countSizeVw(10, 1920);
 
                                &>div {
                                    margin-top: countSizeVh(10);
 
                                    .category {
                                        width: countSizeVw(88, 1920);
                                        font-size: countSizeVh(16);
                                    }
 
                                    .category-value {
                                        .category-input {
                                            width: 80%;
                                            height: countSizeVh(32);
                                            font-size: countSizeVh(14);
                                            border: countSizeVh(1) solid rgb(0, 92, 169);
                                            border-radius: countSizeVh(5) 0 0 countSizeVw(5, 1920);
                                        }
 
                                        .category-button {
                                            font-size: countSizeVh(20);
                                            // width: countSizeVw(60, 1920);
                                            width: 20%;
                                            height: countSizeVh(32);
                                            border: countSizeVh(1) solid rgb(0, 92, 169);
                                            border-radius: 0 countSizeVw(5, 1920) countSizeVh(5) 0;
                                        }
 
                                        .category-button:active {
                                            border: countSizeVh(1) solid rgb(0, 92, 169);
                                        }
 
                                        .el-range-editor.el-input__inner {
                                            width: 100% !important;
                                            height: countSizeVh(32);
                                        }
 
                                        .el-range-editor .el-range-input {
                                            font-size: countSizeVh(14);
                                            height: countSizeVh(32);
                                            line-height: countSizeVh(32);
                                        }
 
                                        .el-icon-date:before {
                                            font-size: countSizeVh(14);
                                        }
 
                                        .el-date-editor .el-range__icon {
                                            line-height: countSizeVh(32);
                                            height: countSizeVh(32);
                                            margin-left: countSizeVw(4, 1920);
                                        }
 
                                        .el-date-editor .el-range-separator {
                                            height: countSizeVh(32);
                                            line-height: countSizeVh(32);
                                            font-size: countSizeVh(14);
                                        }
 
                                        .el-select {
                                            width: 100%;
                                            height: countSizeVh(32);
                                        }
 
                                        .el-input--suffix .el-input__inner {
                                            height: countSizeVh(32);
                                            font-size: countSizeVh(14);
                                            padding-left: countSizeVw(10, 1920);
                                        }
 
                                        .el-select .el-input .el-select__caret {
                                            font-size: countSizeVh(14);
                                            line-height: countSizeVh(32);
                                        }
                                    }
 
 
                                }
                            }
 
                            .result-content {
                                margin-top: countSizeVh(8);
 
                                .table-box {
 
                                    .row-box {
                                        margin: countSizeVh(10) countSizeVw(10, 1920);
                                        padding: countSizeVh(10) countSizeVw(10, 1920);
                                        font-size: countSizeVh(14);
 
                                        .row-content {
                                            &>div {
                                                line-height: countSizeVh(28);
 
                                                .category {
                                                    width: countSizeVw(88, 1920);
                                                    font-size: countSizeVh(16);
                                                }
                                            }
                                        }
                                    }
 
                                    .tableClass {
                                        width: countSizeVw(400, 1920);
                                    }
 
                                    .tableClass td {
                                        width: countSizeVw(300, 1920);
                                    }
                                }
 
                                .pages {
                                    height: countSizeVh(40);
 
                                    &>div {
                                        display: flex;
                                        align-items: center;
 
                                        &>button {
                                            width: countSizeVh(32);
                                            height: countSizeVh(32);
 
                                            &>i {
                                                font-size: countSizeVh(16);
                                            }
                                        }
 
                                        &>ul {
                                            display: flex;
                                            align-items: center;
 
                                            li {
                                                width: countSizeVh(32);
                                                height: countSizeVh(32);
                                                line-height: countSizeVh(32);
                                                font-size: countSizeVh(16);
                                            }
                                        }
                                    }
 
                                }
                            }
                        }
 
                        .draw-btn-box {
                            bottom: countSizeVh(40);
 
                            ul {
                                li {
                                    button {
                                        width: countSizeVw(60, 1920);
                                        height: countSizeVh(30);
                                        margin: 0 countSizeVw(5, 1920);
                                        border: countSizeVh(1) solid #cecece;
                                        border-radius: countSizeVh(4) countSizeVw(4, 1920);
                                    }
                                }
                            }
                        }
 
                        .second-container {
                            top: countSizeVh(10);
                            width: countSizeVw(240, 1920);
 
                            .el-tree-node__content {
                                height: countSizeVh(30);
                                font-size: countSizeVh(16);
                            }
 
                            .el-tree-node__label {
                                font-size: countSizeVh(16);
                            }
 
                            .el-checkbox .el-checkbox__inner {
                                height: countSizeVh(20);
                                width: countSizeVh(20);
                                border-radius: countSizeVh(2);
                            }
 
                            .el-tree-node__expand-icon {
                                font-size: countSizeVh(16);
 
                            }
 
                            .el-checkbox .el-checkbox__inner::after {
                                height: countSizeVh(16);
                                left: countSizeVw(7, 1920);
                            }
 
                        }
 
                        .second-container.spread {
                            left: countSizeVw(410, 1920);
                        }
 
                        .second-container.take-back {
                            left: countSizeVw(10, 1920);
                        }
 
                        .activity-details-box {
                            top: countSizeVh(90);
                            right: countSizeVw(10, 1920);
                            width: countSizeVw(400, 1920);
                            padding: countSizeVh(10) countSizeVw(10, 1920);
                            border-radius: countSizeVh(10) countSizeVw(10, 1920);
 
                            .title {
                                height: countSizeVh(36);
                                line-height: countSizeVh(36);
                            }
 
                            .row-box {
                                line-height: countSizeVh(28);
 
                                .category {
                                    width: countSizeVw(96, 1920);
                                }
                            }
                        }
 
                        .btn-box {
                            top: countSizeVh(78);
                            min-height: countSizeVh(40);
                            padding: countSizeVh(10) countSizeVw(10, 1920) 0 countSizeVw(10, 1920);
                            border-radius: countSizeVw(10, 1920);
 
                            ul {
                                li {
                                    button {
                                        width: countSizeVw(60, 1920);
                                        height: countSizeVh(30);
                                        margin: 0 countSizeVw(5, 1920);
                                        border: countSizeVh(1) solid #cecece;
                                        border-radius: countSizeVw(4, 1920);
                                    }
                                }
                            }
                        }
                    }
 
                }
 
                .flexible-btn {
                    font-size: countSizeVh(24);
                }
 
                .main-content.spread {
                    width: countSizeVw(400, 1920);
                }
 
                .flexible-btn {
                    padding: 0 countSizeVw(2, 1920);
                    width: countSizeVw(32, 1920);
                    height: countSizeVh(64);
                    line-height: countSizeVh(32);
                    border-radius: 0 countSizeVh(5) countSizeVh(5) 0;
                    box-shadow: countSizeVh(1) 0px countSizeVh(4) countSizeVh(1) $bg-color;
                }
 
                .flexible-btn.spread {
                    left: countSizeVw(400, 1920);
                }
 
                // 地图,控制按钮
                .screen-full-btn {
                    left: countSizeVh(10);
                    bottom: countSizeVh(10);
                    width: countSizeVh(36);
                    height: countSizeVh(36);
                    font-size: countSizeVh(20);
                }
 
                .screen-full-btn.homebottom {
                    left: countSizeVw(402, 1920) !important;
                    bottom: countSizeVh(340);
                }
 
                .screen-full-btn.shrink-btn {
                    left: countSizeVw(410, 1920) !important;
                }
 
                .dc-zoom-controller {
                    left: countSizeVh(10) !important;
                    bottom: countSizeVh(56) !important;
                    width: countSizeVh(36) !important;
 
                    &>div {
                        width: countSizeVh(36) !important;
                        height: countSizeVh(36) !important;
 
                        svg {
                            width: countSizeVh(20) !important;
                            height: countSizeVh(20) !important;
                        }
                    }
                }
 
                .dc-zoom-controller.homebottom {
                    left: countSizeVw(402, 1920) !important;
                    bottom: countSizeVh(386) !important;
                }
 
                .dc-zoom-controller.shrink-btn {
                    left: countSizeVw(410, 1920) !important;
                }
 
                .image-switch-icon-btn {
                    left: countSizeVh(10);
                    bottom: countSizeVh(178);
                    width: countSizeVh(36);
                    height: countSizeVh(36);
                    font-size: countSizeVh(20);
 
 
                    .image-switch-img-btn {
                        left: countSizeVw(46, 1920);
                        bottom: countSizeVh(190);
                        font-size: countSizeVh(20);
                        border-radius: countSizeVh(5);
 
 
                        .layer-change-box {
                            .title {
                                height: countSizeVh(32);
                                line-height: countSizeVh(32);
                            }
 
                            .content {
                                padding: 0 countSizeVw(18, 1920);
                                height: countSizeVh(66);
                                line-height: countSizeVh(66);
                            }
                        }
 
                        .img,
                        .elec {
                            width: countSizeVh(80);
                            height: countSizeVh(60);
 
                            span {
                                right: countSizeVh(2);
                                bottom: countSizeVh(2);
                                padding: 0 countSizeVh(2);
                            }
                        }
                    }
                }
 
                .image-switch-icon-btn.iconbottom {
                    left: countSizeVw(402, 1920) !important;
                    bottom: countSizeVh(506) !important;
                }
 
                .image-switch-icon-btn.shrink-btn {
                    left: countSizeVw(410, 1920) !important;
                }
 
                .dc-location-bar.homebottom {
                    bottom: countSizeVh(390) !important;
                }
 
            }
        }
 
        .option-css,
        .activity-option {
            height: countSizeVh(40);
            line-height: countSizeVh(40);
            font-size: countSizeVh(16);
        }
 
        .option-css:hover,
        .option-css.selected {
            color: #409EFF;
        }
 
        .option-css:hover {
            background-color: rgba(0, 92, 169, 0.3) !important;
        }
 
        .el-select-dropdown__wrap {
            max-height: countSizeVh(200);
        }
 
        .el-picker-panel {
            width: countSizeVw(536, 1920) !important;
        }
 
        .el-date-range-picker__header div {
            font-size: countSizeVh(16);
            height: countSizeVh(36);
            line-height: countSizeVh(36);
 
        }
 
        .el-picker-panel .el-date-range-picker__header button {
            font-size: countSizeVh(16);
            height: countSizeVh(36);
            line-height: countSizeVh(36);
        }
 
        .el-date-table td span,
        .el-date-table th {
            font-size: countSizeVh(16);
        }
 
        .el-date-table tr {
            height: countSizeVh(22);
        }
    }
 
}
 
@media screen and (max-height: 975px) {
    .left-container {
        .mypath {
            transform-origin: top;
            transform: scale(1.1, 1);
        }
    }
}
 
@media screen and (min-width: 7296px) {
 
    html,
    body {
        font-size: countSizeVh(16) !important;
 
        #app {
            width: 100vw;
            height: 100vh;
 
            .wrapper {
                width: 100vw;
                height: 100vh;
 
                .main-header {
                    width: 100vw;
                    height: maxCountSizeVh(60);
 
                    .user-infor {
                        width: maxCountSizeVh(60);
                        height: maxCountSizeVh(60);
                        line-height: maxCountSizeVh(60);
                        font-size: 2.16vh;
                    }
                }
 
                .main-content {
                    top: maxCountSizeVh(60);
                    height: calc(100% - maxCountSizeVh(60));
 
                    .left-container,
                    .right-container {
                        top: maxCountSizeVh(60);
                        width: countSizeVw(1520, 7296);
                        height: calc(100% - maxCountSizeVh(60));
 
                        .person-box,
                        .land-box,
                        .case-box,
                        .crowd-box {
                            height: maxCountSizeVh(320);
                        }
 
 
                        .person-box,
                        .house-box,
                        .land-box,
                        .case-box,
                        .alert-box,
                        .crowd-box {
 
 
                            .title {
                                height: maxCountSizeVh(54);
                                line-height: maxCountSizeVh(54);
                            }
 
                            .sub-title {
                                line-height: maxCountSizeVh(36);
                            }
 
                            .sub-tab {
                                padding: maxCountSizeVh(10);
 
                                .tab {
 
                                    &>div {
                                        height: maxCountSizeVh(22);
                                        line-height: maxCountSizeVh(22);
                                    }
                                }
                            }
                        }
 
                        .house-box {
 
                            .title {
                                height: countSizeVh(54);
                                line-height: countSizeVh(54);
                            }
                        }
                    }
 
                    .bottom-container {
                        left: countSizeVw(1520, 7296);
                        width: calc(100% - countSizeVw(1520, 7296) * 2);
                        height: maxCountSizeVh(320);
                    }
 
                    .region-select {
                        top: maxCountSizeVh(20);
                    }
                }
            }
        }
    }
 
}