gw-gis-standard-gpage-ui-vue3 1.1.110 → 1.1.111
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app.scss +91 -91
- package/gw-gis-standard-gpage-ui-vue3.css +1 -0
- package/gw-gis-standard-gpage-ui-vue3.js +26093 -25779
- package/gw-gis-standard-gpage-ui-vue3.umd.cjs +21 -49
- package/package.json +1 -1
package/app.scss
CHANGED
|
@@ -86,8 +86,8 @@ html, body {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
// 主体内容 ---------
|
|
89
|
-
// 是为了继承父级的高度,如果使用
|
|
90
|
-
.
|
|
89
|
+
// 是为了继承父级的高度,如果使用gisInfo-xc-content 这个不是在组件的第一层的class,要使用gisInfo-xc 将其放在第一层,gisInfo-xc-content则放在第二层 进行继承gisInfo-xc
|
|
90
|
+
.gisInfo-xc {
|
|
91
91
|
width: 100%;
|
|
92
92
|
display: flex;
|
|
93
93
|
justify-content: space-between;
|
|
@@ -97,13 +97,13 @@ html, body {
|
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
// 设置后最外层div会覆盖地图,先取消 以后更新
|
|
100
|
-
//.
|
|
100
|
+
//.gisInfo-xc-content-view {
|
|
101
101
|
//flex: 1;
|
|
102
102
|
//overflow: auto;
|
|
103
103
|
//}
|
|
104
104
|
|
|
105
|
-
// 一般情况下组件是在第一层使用,如果有外部组件要和该类进行平级显示则第一层使用
|
|
106
|
-
.
|
|
105
|
+
// 一般情况下组件是在第一层使用,如果有外部组件要和该类进行平级显示则第一层使用gisInfo-xc再使用该类
|
|
106
|
+
.gisInfo-xc-content {
|
|
107
107
|
height: 100%;
|
|
108
108
|
display: flex;
|
|
109
109
|
flex-direction: column;
|
|
@@ -111,27 +111,27 @@ html, body {
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
// 向内挤出
|
|
114
|
-
.
|
|
114
|
+
.gisInfo-xc-content-conPadding {
|
|
115
115
|
padding: 15px 20px;
|
|
116
116
|
box-sizing: border-box;
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
// 这是给主体内容添加背景色
|
|
120
|
-
.
|
|
120
|
+
.gisInfo-xc-background {
|
|
121
121
|
background: #FFFFFF;
|
|
122
122
|
padding: 10px;
|
|
123
123
|
box-sizing: border-box;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
// 这是在布局时,如果想要不超出内容区,滚动条在内容区内部的话,可以将下面类放到
|
|
127
|
-
.
|
|
126
|
+
// 这是在布局时,如果想要不超出内容区,滚动条在内容区内部的话,可以将下面类放到 gisInfo-xc-content 的下面一层 ,仅限于上级是 flex和 将表单和表格单独区分开。
|
|
127
|
+
.gisInfo-xc-content-auto {
|
|
128
128
|
flex: auto;
|
|
129
129
|
height: 0;
|
|
130
130
|
overflow: auto;
|
|
131
131
|
}
|
|
132
132
|
|
|
133
133
|
// 相对定位
|
|
134
|
-
.
|
|
134
|
+
.gisInfo-xc-content-position {
|
|
135
135
|
position: relative;
|
|
136
136
|
z-index: 10;
|
|
137
137
|
}
|
|
@@ -447,12 +447,12 @@ html, body {
|
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
// 其他字体颜色
|
|
450
|
-
//.
|
|
450
|
+
//.gisInfo-otherText {
|
|
451
451
|
// color: var(--gwCommonTextColor) !important;
|
|
452
452
|
//}
|
|
453
453
|
|
|
454
454
|
// -------拖拽样式---------------------
|
|
455
|
-
.
|
|
455
|
+
.gisInfo-drag-child-global {
|
|
456
456
|
position: absolute;
|
|
457
457
|
user-select: none;
|
|
458
458
|
//transition: .1s;
|
|
@@ -460,7 +460,7 @@ html, body {
|
|
|
460
460
|
}
|
|
461
461
|
|
|
462
462
|
|
|
463
|
-
.
|
|
463
|
+
.gisInfo-drag-child-right {
|
|
464
464
|
right: 0;
|
|
465
465
|
top: 0;
|
|
466
466
|
bottom: 0;
|
|
@@ -470,7 +470,7 @@ html, body {
|
|
|
470
470
|
cursor: col-resize;
|
|
471
471
|
}
|
|
472
472
|
|
|
473
|
-
.
|
|
473
|
+
.gisInfo-drag-child-left {
|
|
474
474
|
left: 0;
|
|
475
475
|
top: 0;
|
|
476
476
|
margin: auto;
|
|
@@ -479,7 +479,7 @@ html, body {
|
|
|
479
479
|
cursor: col-resize;
|
|
480
480
|
}
|
|
481
481
|
|
|
482
|
-
.
|
|
482
|
+
.gisInfo-drag-child-top {
|
|
483
483
|
right: 0;
|
|
484
484
|
top: -10px;
|
|
485
485
|
left: 0;
|
|
@@ -489,7 +489,7 @@ html, body {
|
|
|
489
489
|
cursor: row-resize;
|
|
490
490
|
}
|
|
491
491
|
|
|
492
|
-
.
|
|
492
|
+
.gisInfo-drag-child-bottom {
|
|
493
493
|
right: 0;
|
|
494
494
|
bottom: -10px;
|
|
495
495
|
left: 0;
|
|
@@ -499,7 +499,7 @@ html, body {
|
|
|
499
499
|
cursor: row-resize;
|
|
500
500
|
}
|
|
501
501
|
|
|
502
|
-
//.
|
|
502
|
+
//.gisInfo-drag-child-center {
|
|
503
503
|
// width: 7px;
|
|
504
504
|
// height: 100%;
|
|
505
505
|
// //height: calc(100% - 20px);
|
|
@@ -510,7 +510,7 @@ html, body {
|
|
|
510
510
|
// margin-right: -10px;
|
|
511
511
|
//}
|
|
512
512
|
|
|
513
|
-
.
|
|
513
|
+
.gisInfo-drag-child-center {
|
|
514
514
|
height: 60px;
|
|
515
515
|
width: 14px;
|
|
516
516
|
left: 0;
|
|
@@ -534,7 +534,7 @@ html, body {
|
|
|
534
534
|
|
|
535
535
|
|
|
536
536
|
// 内容区的样式
|
|
537
|
-
#
|
|
537
|
+
#gisInfo-xc-container {
|
|
538
538
|
//box-sizing: border-box;
|
|
539
539
|
position: relative;
|
|
540
540
|
//border-right: 1px solid #f5f5f5;
|
|
@@ -568,316 +568,316 @@ html, body {
|
|
|
568
568
|
color: var(--gwCommonTextColor);
|
|
569
569
|
}
|
|
570
570
|
|
|
571
|
-
.
|
|
571
|
+
.gisInfo-xc-background {
|
|
572
572
|
background-color: var(--gwCommonBgColor);
|
|
573
573
|
}
|
|
574
574
|
|
|
575
575
|
/*------侧边栏-----------------*/
|
|
576
|
-
.
|
|
576
|
+
.gisInfo-sideMenu-element {
|
|
577
577
|
background: var(--menuBackground);
|
|
578
578
|
}
|
|
579
579
|
|
|
580
|
-
.
|
|
580
|
+
.gisInfo-sideMenu-element .gisInfo-sideMenu-fold {
|
|
581
581
|
color: var(--menuTextColor);
|
|
582
582
|
}
|
|
583
583
|
|
|
584
|
-
.
|
|
584
|
+
.gisInfo-sideMenu-element .sidebar {
|
|
585
585
|
background: var(--menuBackground);
|
|
586
586
|
}
|
|
587
587
|
|
|
588
|
-
.
|
|
588
|
+
.gisInfo-sideMenu-element .el-menu {
|
|
589
589
|
background: var(--menuBackground);
|
|
590
590
|
}
|
|
591
591
|
|
|
592
592
|
/*一级菜单和子类hover*/
|
|
593
|
-
.
|
|
593
|
+
.gisInfo-sideMenu-element .el-menu-vertical-demo:not(.el-menu--collapse) {
|
|
594
594
|
background: var(--menuBackground);
|
|
595
595
|
}
|
|
596
596
|
|
|
597
|
-
.
|
|
597
|
+
.gisInfo-sideMenu-element .el-menu-vertical-demo .el-submenu__title {
|
|
598
598
|
color: var(--menuTextColor) !important;
|
|
599
599
|
}
|
|
600
600
|
|
|
601
|
-
.
|
|
601
|
+
.gisInfo-sideMenu-element .el-menu-vertical-demo .el-submenu__title:hover {
|
|
602
602
|
color: var(--menuCheckedTextColor) !important;
|
|
603
603
|
background-color: var(--menuHoverBackground) !important;
|
|
604
604
|
}
|
|
605
605
|
|
|
606
|
-
.
|
|
606
|
+
.gisInfo-sideMenu-element .el-menu-vertical-demo .el-menu-item:hover {
|
|
607
607
|
color: var(--menuCheckedTextColor) !important;
|
|
608
608
|
background-color: var(--menuHoverBackground) !important;
|
|
609
609
|
}
|
|
610
610
|
|
|
611
|
-
.
|
|
611
|
+
.gisInfo-sideMenu-element .el-menu-vertical-demo .el-menu-item:focus {
|
|
612
612
|
color: var(--menuCheckedTextColor) !important;
|
|
613
613
|
background-color: var(--menuHoverBackground) !important;
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
/*一级菜单无子类*/
|
|
617
|
-
.
|
|
617
|
+
.gisInfo-sideMenu-element .el-menu-item {
|
|
618
618
|
color: var(--menuTextColor);
|
|
619
619
|
}
|
|
620
620
|
|
|
621
621
|
/*一级菜单有子类*/
|
|
622
|
-
.
|
|
622
|
+
.gisInfo-sideMenu-element .el-sub-menu__title {
|
|
623
623
|
color: var(--menuTextColor);
|
|
624
624
|
background: var(--menuBackground);
|
|
625
625
|
}
|
|
626
626
|
|
|
627
|
-
.
|
|
627
|
+
.gisInfo-sideMenu-element .el-sub-menu__title:hover {
|
|
628
628
|
background-color: var(--menuHoverBackground) !important;
|
|
629
629
|
}
|
|
630
630
|
|
|
631
631
|
/*无子类 收起状态*/
|
|
632
|
-
.
|
|
632
|
+
.gisInfo-sideMenu-element .el-tooltip {
|
|
633
633
|
background-color: var(--menuBackground) !important;
|
|
634
634
|
}
|
|
635
635
|
|
|
636
|
-
.
|
|
636
|
+
.gisInfo-sideMenu-element .el-tooltip:hover {
|
|
637
637
|
background-color: var(--menuHoverBackground) !important;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
/*一级菜单选中色*/
|
|
641
|
-
.
|
|
641
|
+
.gisInfo-sideMenu-element .el-menu-item.is-active {
|
|
642
642
|
color: var(--menuCheckedTextColor) !important;
|
|
643
643
|
background-color: var(--menuCheckedBackground) !important;
|
|
644
644
|
}
|
|
645
645
|
|
|
646
646
|
/*二级菜单背景色*/
|
|
647
|
-
.
|
|
647
|
+
.gisInfo-sideMenu-element .el-menu--inline .el-menu-item {
|
|
648
648
|
background-color: var(--menuChildBackground);
|
|
649
649
|
}
|
|
650
650
|
|
|
651
651
|
/*有子类一级菜单*/
|
|
652
|
-
.
|
|
652
|
+
.gisInfo-sideMenu-element .el-submenu.is-active .el-submenu__title {
|
|
653
653
|
color: var(--menuCheckedTextColor) !important;
|
|
654
654
|
}
|
|
655
655
|
|
|
656
656
|
/*子菜单背景*/
|
|
657
|
-
.
|
|
657
|
+
.gisInfo-sideMenu-element .el-menu-item-group {
|
|
658
658
|
background-color: #ccc !important;
|
|
659
659
|
}
|
|
660
660
|
|
|
661
661
|
/*收起的菜单颜色*/
|
|
662
|
-
.
|
|
662
|
+
.gisInfo-sideMenu-element .el-menu--collapse .el-submenu {
|
|
663
663
|
background-color: var(--menuBackground)
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
/*置灰颜色*/
|
|
667
|
-
.
|
|
667
|
+
.gisInfo-sideMenu-element .el-menu-item.is-disabled {
|
|
668
668
|
background-color: var(--menuChildBackground)
|
|
669
669
|
}
|
|
670
670
|
|
|
671
671
|
/*关闭开启按钮*/
|
|
672
|
-
.
|
|
672
|
+
.gisInfo-sideMenu-element .el-icon-s-unfold:before {
|
|
673
673
|
color: var(--menuTextColor);
|
|
674
674
|
}
|
|
675
675
|
|
|
676
676
|
/*修改有子类的箭头*/
|
|
677
|
-
.
|
|
677
|
+
.gisInfo-sideMenu-element .el-icon-arrow-down:before {
|
|
678
678
|
color: var(--menuCheckedTextColor) !important;
|
|
679
679
|
}
|
|
680
680
|
|
|
681
|
-
.
|
|
681
|
+
.gisInfo-sideMenu-element .gisInfo-fold {
|
|
682
682
|
color: var(--gwCommonTextColor);
|
|
683
683
|
}
|
|
684
684
|
|
|
685
685
|
/* ----------导航栏-------------*/
|
|
686
|
-
.
|
|
686
|
+
.gisInfo-header-element .header-style {
|
|
687
687
|
background: var(--headerBackground);
|
|
688
688
|
}
|
|
689
689
|
|
|
690
|
-
.
|
|
690
|
+
.gisInfo-header-element .header-style .header-logo {
|
|
691
691
|
color: var(--headerTextColor);
|
|
692
692
|
}
|
|
693
693
|
|
|
694
|
-
.
|
|
694
|
+
.gisInfo-header-element .header-style .header-list-user {
|
|
695
695
|
color: var(--headerTextColor);
|
|
696
696
|
}
|
|
697
697
|
|
|
698
698
|
/*去掉主题*/
|
|
699
|
-
.
|
|
699
|
+
.gisInfo-header-element :deep(.el-color-picker__trigger) {
|
|
700
700
|
color: var(--headerTextColor);
|
|
701
701
|
}
|
|
702
702
|
|
|
703
|
-
.
|
|
703
|
+
.gisInfo-header-element :deep(.el-color-picker__color) {
|
|
704
704
|
border: 1px solid var(--headerTextColor);
|
|
705
705
|
}
|
|
706
706
|
|
|
707
707
|
/*下拉*/
|
|
708
|
-
.
|
|
708
|
+
.gisInfo-header-element :deep(.el-dropdown) {
|
|
709
709
|
color: var(--gwCommonTextColor);
|
|
710
710
|
}
|
|
711
711
|
|
|
712
712
|
/*箭头颜色*/
|
|
713
|
-
.
|
|
713
|
+
.gisInfo-header-element :deep(.el-icon-arrow-down:before) {
|
|
714
714
|
color: var(--headerTextColor);
|
|
715
715
|
}
|
|
716
716
|
|
|
717
|
-
.
|
|
717
|
+
.gisInfo-header-element .el-dropdown-link {
|
|
718
718
|
color: var(--headerTextColor);
|
|
719
719
|
}
|
|
720
720
|
|
|
721
721
|
|
|
722
|
-
.
|
|
722
|
+
.gisInfo-header-element .el-menu--horizontal > .el-menu-item {
|
|
723
723
|
color: var(--headerTextColor);
|
|
724
724
|
}
|
|
725
725
|
|
|
726
|
-
.
|
|
726
|
+
.gisInfo-header-element .el-menu--horizontal > .el-menu-item:not(.is-disabled):hover {
|
|
727
727
|
color: var(--headerTextHoverColor) !important;
|
|
728
728
|
background-color: var(--headerHoverBackground);
|
|
729
729
|
border-bottom-color: var(--headerHoverBackground);
|
|
730
730
|
}
|
|
731
731
|
|
|
732
|
-
.
|
|
732
|
+
.gisInfo-header-element .el-menu--horizontal > .el-menu-item:not(.is-disabled):focus {
|
|
733
733
|
color: var(--contrastiveColor) !important;
|
|
734
734
|
background-color: var(--headerCheckedBackground);
|
|
735
735
|
border-bottom-color: var(--headerTextColor);
|
|
736
736
|
}
|
|
737
737
|
|
|
738
|
-
.
|
|
738
|
+
.gisInfo-header-element .el-menu--horizontal > .el-menu-item.is-active {
|
|
739
739
|
color: var(--headerCheckedTextColor) !important;
|
|
740
740
|
background-color: var(--headerCheckedBackground);
|
|
741
741
|
border-bottom-color: var(--headerTextColor);
|
|
742
742
|
}
|
|
743
743
|
|
|
744
|
-
.
|
|
744
|
+
.gisInfo-header-element .el-menu--horizontal > .el-sub-menu .el-sub-menu__title {
|
|
745
745
|
color: var(--headerTextColor) !important;
|
|
746
746
|
}
|
|
747
747
|
|
|
748
|
-
.
|
|
748
|
+
.gisInfo-header-element .el-menu--horizontal > .el-sub-menu .el-sub-menu__title:hover {
|
|
749
749
|
color: var(--headerTextHoverColor) !important;
|
|
750
750
|
background-color: var(--headerHoverBackground);
|
|
751
751
|
border-bottom-color: var(--headerHoverBackground);
|
|
752
752
|
}
|
|
753
753
|
|
|
754
|
-
.
|
|
754
|
+
.gisInfo-header-element .el-menu--horizontal > .el-sub-menu.is-active .el-sub-menu__title {
|
|
755
755
|
border-bottom-color: var(--headerTextColor);
|
|
756
756
|
background-color: var(--headerCheckedBackground);
|
|
757
757
|
}
|
|
758
758
|
|
|
759
759
|
/*-----------页面标签--------------------*/
|
|
760
|
-
.
|
|
760
|
+
.gisInfo-headerTags-element {
|
|
761
761
|
background: var(--gwCommonBgColor);
|
|
762
762
|
}
|
|
763
763
|
|
|
764
|
-
.
|
|
764
|
+
.gisInfo-headerTags-element .header-tags-listNoClick {
|
|
765
765
|
color: var(--pageTagsTextColor);
|
|
766
766
|
background: var(--pageTagsBgColor);
|
|
767
767
|
}
|
|
768
768
|
|
|
769
|
-
.
|
|
769
|
+
.gisInfo-headerTags-element .header-tags-listNoClick .header-tags-listSpan {
|
|
770
770
|
color: var(--pageTagsTextColor);
|
|
771
771
|
background: var(--pageTagsBgColor);
|
|
772
772
|
}
|
|
773
773
|
|
|
774
|
-
.
|
|
774
|
+
.gisInfo-headerTags-element .header-tags-listNoClick .close {
|
|
775
775
|
color: var(--pageTagsTextColor);
|
|
776
776
|
}
|
|
777
777
|
|
|
778
|
-
.
|
|
778
|
+
.gisInfo-headerTags-element .header-tags-listClick {
|
|
779
779
|
background: var(--pageTagsCheckedBgColor);
|
|
780
780
|
color: var(--pageTagsCheckedColor);
|
|
781
781
|
}
|
|
782
782
|
|
|
783
|
-
.
|
|
783
|
+
.gisInfo-headerTags-element .header-tags-listClick .header-tags-listSpan {
|
|
784
784
|
background: var(--pageTagsCheckedBgColor);
|
|
785
785
|
color: var(--pageTagsCheckedColor);
|
|
786
786
|
}
|
|
787
787
|
|
|
788
|
-
.
|
|
788
|
+
.gisInfo-headerTags-element .header-tags-leftBut {
|
|
789
789
|
color: var(--gwThemeColor);
|
|
790
790
|
}
|
|
791
791
|
|
|
792
|
-
.
|
|
792
|
+
.gisInfo-headerTags-element .header-tags-rightBut {
|
|
793
793
|
color: var(--gwThemeColor);
|
|
794
794
|
}
|
|
795
795
|
|
|
796
|
-
.
|
|
796
|
+
.gisInfo-headerTags-element .header-tags-clear {
|
|
797
797
|
color: var(--pageTagsCloseColor);
|
|
798
798
|
background: var(--pageTagsCloseBgColor);
|
|
799
799
|
}
|
|
800
800
|
|
|
801
|
-
.
|
|
801
|
+
.gisInfo-headerTags-element .tags-list .tags-close-con span {
|
|
802
802
|
color: initial;
|
|
803
803
|
}
|
|
804
804
|
|
|
805
|
-
.
|
|
805
|
+
.gisInfo-headerTags-element .tags-list .tags-close-con:hover span {
|
|
806
806
|
color: var(--gwThemeColor);
|
|
807
807
|
}
|
|
808
808
|
|
|
809
809
|
/*-----------面包屑---------------------*/
|
|
810
|
-
.
|
|
810
|
+
.gisInfo-breadcrumb-element .el-breadcrumb {
|
|
811
811
|
background: var(--gwCommonBgColor);
|
|
812
812
|
}
|
|
813
813
|
|
|
814
|
-
.
|
|
814
|
+
.gisInfo-breadcrumb-element .color {
|
|
815
815
|
color: var(--gwCommonTextColor);
|
|
816
816
|
}
|
|
817
817
|
|
|
818
|
-
.
|
|
818
|
+
.gisInfo-breadcrumb-element .color2 {
|
|
819
819
|
color: var(--gwCommonTextColor);
|
|
820
820
|
}
|
|
821
821
|
|
|
822
|
-
.
|
|
822
|
+
.gisInfo-breadcrumb-element .el-icon-arrow-right:before {
|
|
823
823
|
color: var(--gwCommonTextColor)
|
|
824
824
|
}
|
|
825
825
|
|
|
826
826
|
/* ------底部栏-----------*/
|
|
827
|
-
.
|
|
827
|
+
.gisInfo-footer-element {
|
|
828
828
|
background: var(--gwCommonBgColor);
|
|
829
829
|
}
|
|
830
830
|
|
|
831
831
|
/*--------iframe----------------*/
|
|
832
832
|
/*非全屏*/
|
|
833
|
-
.
|
|
833
|
+
.gisInfo-embed-web-NoFullScreen {
|
|
834
834
|
background-color: var(--mainBackgroundColor);
|
|
835
835
|
}
|
|
836
836
|
|
|
837
837
|
/*-------layout 内容区域--------------*/
|
|
838
838
|
/*--分割线--*/
|
|
839
|
-
.
|
|
839
|
+
.gisInfo-layout-form {
|
|
840
840
|
background-color: var(--gwLayoutForm);
|
|
841
841
|
}
|
|
842
842
|
|
|
843
843
|
/*表格区域*/
|
|
844
|
-
.
|
|
844
|
+
.gisInfo-layout-table {
|
|
845
845
|
border-bottom: 1px solid var(--gwSplitLineColor);
|
|
846
846
|
}
|
|
847
847
|
|
|
848
|
-
.
|
|
848
|
+
.gisInfo-sideMenu {
|
|
849
849
|
border-right: 1px solid var(--gwSplitLineColor);
|
|
850
850
|
box-sizing: border-box;
|
|
851
851
|
padding-right: 1px;
|
|
852
852
|
}
|
|
853
853
|
|
|
854
|
-
.
|
|
854
|
+
.gisInfo-headerTags-element {
|
|
855
855
|
border-bottom: 1px solid var(--gwSplitLineColor);
|
|
856
856
|
}
|
|
857
857
|
|
|
858
858
|
/*内容区的样式*/
|
|
859
|
-
.
|
|
859
|
+
.gisInfo-layout-main {
|
|
860
860
|
border-right: 1px solid var(--gwSplitLineColor);
|
|
861
861
|
}
|
|
862
862
|
|
|
863
863
|
/*----end----*/
|
|
864
864
|
|
|
865
865
|
/*操作栏颜色*/
|
|
866
|
-
.
|
|
866
|
+
.gisInfo-layout-table .setColor {
|
|
867
867
|
color: var(--gwThemeColor);
|
|
868
868
|
}
|
|
869
869
|
|
|
870
870
|
/*操作栏颜色*/
|
|
871
|
-
.
|
|
871
|
+
.gisInfo-layout-table .setColor {
|
|
872
872
|
color: var(--gwThemeColor);
|
|
873
873
|
}
|
|
874
874
|
|
|
875
|
-
.
|
|
875
|
+
.gisInfo-layout-table .setColor2 {
|
|
876
876
|
color: var(--gwThemeColor);
|
|
877
877
|
}
|
|
878
878
|
|
|
879
879
|
/*其它消息*/
|
|
880
|
-
.
|
|
880
|
+
.gisInfo-otherText {
|
|
881
881
|
color: var(--gwCommonTextColor) !important;
|
|
882
882
|
}
|
|
883
883
|
|
|
@@ -905,15 +905,15 @@ html, body {
|
|
|
905
905
|
//}
|
|
906
906
|
|
|
907
907
|
/*自定义消息*/
|
|
908
|
-
.
|
|
908
|
+
.gisInfo-self .gisInfo-bg {
|
|
909
909
|
background: rgba(0, 0, 0, 0.4);
|
|
910
910
|
}
|
|
911
911
|
|
|
912
|
-
.
|
|
912
|
+
.gisInfo-self .gisInfo-con {
|
|
913
913
|
background: var(--gwCommonBgColor);
|
|
914
914
|
}
|
|
915
915
|
|
|
916
|
-
.
|
|
916
|
+
.gisInfo-self .gisInfo-con .gisInfo-con-title {
|
|
917
917
|
background: var(--gwThemeColor);
|
|
918
918
|
color: var(--headerTextColor);
|
|
919
919
|
}
|
|
@@ -925,19 +925,19 @@ html, body {
|
|
|
925
925
|
}
|
|
926
926
|
|
|
927
927
|
/*中间拖拽*/
|
|
928
|
-
.
|
|
928
|
+
.gisInfo-drag-child-center {
|
|
929
929
|
background: var(--contrastiveColor);
|
|
930
930
|
}
|
|
931
931
|
|
|
932
|
-
.
|
|
932
|
+
.gisInfo-drag-child-center .iconfont {
|
|
933
933
|
color: #C2CDD5;
|
|
934
934
|
}
|
|
935
935
|
|
|
936
|
-
.
|
|
936
|
+
.gisInfo-setting-icon {
|
|
937
937
|
color: var(--gwSettingIcon) !important;
|
|
938
938
|
}
|
|
939
939
|
|
|
940
|
-
.
|
|
940
|
+
.gisInfo-xc-integrationContent {
|
|
941
941
|
background: var(--mainInnerBackgroundColor);
|
|
942
942
|
}
|
|
943
943
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.drawer-footer[data-v-4e2d4d0d]{position:absolute;border-top:1px solid var(--gwSplitLineColor);width:100%;box-sizing:border-box;padding:0 15px;height:var(--gwNavBarHeight);left:0;line-height:var(--gwNavBarHeight);right:0;margin:auto;bottom:0}.drawer-footer[data-v-4e2d4d0d] .el-button+.el-button{margin-left:15px}.gisInfo-drawer-content[data-v-4e2d4d0d]{overflow:auto}.contentHeight[data-v-4e2d4d0d]{height:100%}.contentHeight2[data-v-4e2d4d0d]{height:calc(100% - (var(--gwNavBarHeight)))}.heightVer[data-v-4e2d4d0d]{height:calc(var(--gwNavBarHeight))}[data-v-4e2d4d0d] .el-drawer__header{font-size:18px!important}[data-v-4e2d4d0d] .el-drawer__body{height:100%!important;overflow-y:auto}.gisInfo-drawer-drag[data-v-4e2d4d0d]{width:14px;height:60px;background:#fff;box-shadow:0 0 4px #c2cdd5;border-radius:10px;cursor:col-resize;position:fixed;top:50%;margin-left:-7px;text-align:center;line-height:68px}.gisInfo-drawer-drag .gisInfo-drawer-drag-icon[data-v-4e2d4d0d]{color:#939393;transform:rotate(90deg);margin-left:-5px;width:16px}.el-overlay[data-v-4e2d4d0d]{box-sizing:border-box}.gwt-top-el-overlay[data-v-4e2d4d0d]{border-top:var(--gwNavBarHeight) solid rgba(0,0,0,0)}#nprogress{pointer-events:none}#nprogress .bar{background:#29d;position:fixed;z-index:1031;top:0;left:0;width:100%;height:2px}#nprogress .peg{display:block;position:absolute;right:0;width:100px;height:100%;box-shadow:0 0 10px #29d,0 0 5px #29d;opacity:1;-webkit-transform:rotate(3deg) translate(0px,-4px);-ms-transform:rotate(3deg) translate(0px,-4px);transform:rotate(3deg) translateY(-4px)}#nprogress .spinner{display:block;position:fixed;z-index:1031;top:15px;right:15px}#nprogress .spinner-icon{width:18px;height:18px;box-sizing:border-box;border:solid 2px transparent;border-top-color:#29d;border-left-color:#29d;border-radius:50%;-webkit-animation:nprogress-spinner .4s linear infinite;animation:nprogress-spinner .4s linear infinite}.nprogress-custom-parent{overflow:hidden;position:relative}.nprogress-custom-parent #nprogress .spinner,.nprogress-custom-parent #nprogress .bar{position:absolute}@-webkit-keyframes nprogress-spinner{0%{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@keyframes nprogress-spinner{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.sizeTools[data-v-3c250acc]{width:40px;height:38px;line-height:50px;text-align:center;position:fixed;-webkit-user-select:none;user-select:none;z-index:20;box-shadow:0 0 5px #ccc;cursor:pointer;overflow:hidden;border-radius:6px;font-weight:bolder}.sizeTools .sizeIcon[data-v-3c250acc]{font-size:24px;margin-top:6px}.fsW[data-v-3c250acc]{width:100px;outline:none}[data-v-3c250acc] .el-form-item{margin-bottom:5px;float:left}[data-v-3c250acc] .el-form-item__content{font-size:15px}[data-v-3c250acc] input::-webkit-outer-spin-button,[data-v-3c250acc] input::-webkit-inner-spin-button{-webkit-appearance:none!important}[data-v-3c250acc] input[type=number]{-moz-appearance:textfield!important}.bigSetColor[data-v-3c250acc]{transform:scale(1.1)}.gisInfo-setting-icon[data-v-3c250acc]{font-size:26px}.colorIcon[data-v-db839d14]{margin-right:10px}.header-style[data-v-bff5e050]{width:100%;height:var(--gwNavBarHeight);line-height:var(--gwNavBarHeight);display:grid;grid-template-columns:var(--logoWidth) 1fr auto;position:relative;z-index:12}.header-style .header-logo[data-v-bff5e050]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:var(--logoWidth);text-align:left;vertical-align:bottom;font-size:var(--headerFontSize)}.header-style .header-logo .header-logo-title[data-v-bff5e050]{display:flex;align-items:center}.header-style .header-logo .header-logo-title .header-logo-img[data-v-bff5e050]{vertical-align:middle;margin-right:10px;margin-left:10px;max-width:40px}.header-style .header-logo .header-logo-title .header-logo-text[data-v-bff5e050]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.header-style .header-logo a[data-v-bff5e050]{color:inherit;text-decoration:none}.header-style .header-list[data-v-bff5e050]{height:inherit}.header-style .header-list-user[data-v-bff5e050]{padding:0 15px;cursor:pointer;text-align:right;font-size:var(--headerFontSize)}@keyframes FadeIn-bff5e050{0%{opacity:0;height:initial}to{opacity:1;height:initial}}@keyframes FadeOut-bff5e050{0%{opacity:1;height:initial}99%{opacity:0;height:initial}to{height:0;opacity:0}}[data-v-bff5e050] .el-color-picker__trigger{border:none}[data-v-bff5e050] .el-color-picker__color{margin-top:12px;border-radius:5px}[data-v-bff5e050] .el-dropdown{font-size:var(--headerFontSize);line-height:var(--gwNavBarHeight)}.el-dropdown-link[data-v-bff5e050]{cursor:pointer}.gw-dropdown-name[data-v-bff5e050],.gw-dropdown-singleName[data-v-bff5e050]{margin-right:5px}.el-icon-arrow-down[data-v-bff5e050]{font-size:var(--headerFontSize)}[data-v-bff5e050] .el-menu{background:inherit;box-sizing:initial}[data-v-bff5e050] .el-menu--horizontal{height:100%;justify-content:var(--headerDirection)}[data-v-bff5e050] .el-menu--horizontal>.el-menu-item{height:100%!important;padding:0 10px}.gisInfo-xc-content-child[data-v-620b8ef9]{height:100%}.gisInfo-embed-web[data-v-620b8ef9],.iframe[data-v-620b8ef9],.iframe-full[data-v-620b8ef9]{width:100%;height:100%}.gisInfo-embed-web-fullScreen[data-v-620b8ef9]{position:fixed!important;top:0;left:0;z-index:999!important;background:none}.gisInfo-embed-web-NoFullScreen[data-v-620b8ef9]{position:initial}.colorIcon[data-v-3e06ac5d]{margin-right:10px}.gw-submenu-icon[data-v-3e06ac5d]{position:absolute;right:13px}.gisInfo-sideMenu[data-v-0e539f71]{width:100%;height:100%;position:relative}.gisInfo-sideMenu .gisInfo-sideMenu-fold[data-v-0e539f71]{height:52px;line-height:52px;font-size:22px;cursor:pointer;text-align:right;margin-right:20px}.sidebar[data-v-0e539f71]{width:100%;height:calc(100% - 52px);position:relative;z-index:12;overflow:auto}.sidebar[data-v-0e539f71]::-webkit-scrollbar{width:5px;background:transparent;display:none}.sidebar[data-v-0e539f71]::-webkit-scrollbar-track{background:transparent}.sidebar[data-v-0e539f71]::-webkit-scrollbar-thumb{background-color:#0000001a}.sidebar[data-v-0e539f71]:hover::-webkit-scrollbar{display:block}[data-v-0e539f71] .el-menu-vertical-demo:not(.el-menu--collapse){width:var(--menuWidth)}[data-v-0e539f71] .el-menu-item-group{background-color:#ccc!important}[data-v-0e539f71] .el-submenu__title{font-size:.85rem}[data-v-0e539f71] .el-menu--vertical{padding-top:1px}[data-v-0e539f71] .el-menu-item{height:52px;line-height:52px}[data-v-0e539f71] .el-menu.el-menu--inline .el-menu-item{height:38px;width:calc(100% - 24px);line-height:38px;margin:7px auto;border-radius:4px;padding-left:35px}.breadcrumb[data-v-e84f27c6]{margin-bottom:10px;position:relative;z-index:15}[data-v-e84f27c6] .el-breadcrumb{line-height:40px;text-indent:10px;overflow:auto}.color[data-v-e84f27c6]{font-size:15px;cursor:pointer}.color[data-v-e84f27c6]:hover{text-decoration:underline}.color2[data-v-e84f27c6]{font-size:15px;cursor:default;opacity:.8}.gisInfo-headerTags-element[data-v-a41b60c1]{height:50px;width:100%;box-sizing:border-box;display:flex;justify-content:space-between;position:relative;z-index:15}.tags-color[data-v-a41b60c1],.header-tags-rightBut[data-v-a41b60c1],.header-tags-leftBut[data-v-a41b60c1]{width:35px;height:29px;background:#fff;cursor:pointer;border-radius:2px;transition:.3s;text-align:center;line-height:30px;box-shadow:0 0 3px #0000001a;margin-top:-2px}.tags-color .el-icon[data-v-a41b60c1],.header-tags-rightBut .el-icon[data-v-a41b60c1],.header-tags-leftBut .el-icon[data-v-a41b60c1]{font-size:16px}.header-tags-leftBut[data-v-a41b60c1]{margin-right:10px}.header-tags-rightBut[data-v-a41b60c1]{margin-left:10px}.header-tags[data-v-a41b60c1]{width:calc(100% - 85px);height:100%;position:relative;margin-bottom:-15px;display:flex;transition:.3s;box-sizing:border-box;align-items:center;padding-left:10px}.header-tags .header-con[data-v-a41b60c1]{white-space:nowrap;width:calc(100% - 200px);transition:.3s;display:flex;align-items:center;height:32px;line-height:30px;box-sizing:border-box;overflow:auto}.header-tags .header-con[data-v-a41b60c1]::-webkit-scrollbar{width:0;height:2px}.header-tags .header-con[data-v-a41b60c1]::-webkit-scrollbar-thumb{display:none}.header-tags .header-con[data-v-a41b60c1]::-webkit-scrollbar-track{background-color:transparent;border-radius:10px}.header-tags .header-con .header-tags-list[data-v-a41b60c1]{display:flex;width:fit-content;padding:0 9px;height:100%;border-radius:2px;font-size:15px;margin-right:10px}.header-tags .header-con .header-tags-list .close[data-v-a41b60c1]{float:right;margin-top:8px;font-size:14px;cursor:pointer;margin-left:4px}.header-tags .header-con .header-tags-list .header-tags-listSpan[data-v-a41b60c1]{float:left;cursor:pointer}.header-tags .header-con .header-tags-list[data-v-a41b60c1]:last-child{margin-right:0}.header-tags .conWidth[data-v-a41b60c1]{padding:0 35px}.header-tags-clear[data-v-a41b60c1]{font-size:16px;width:74px;height:32px;border-radius:4px;text-align:center;line-height:30px;margin-top:9px;margin-right:20px}.tags-list[data-v-a41b60c1]{text-indent:5px;z-index:20;font-size:16px;margin:auto}.tags-list img[data-v-a41b60c1]{width:21px;height:12px}.tags-list .tags-close-con[data-v-a41b60c1]{line-height:35px;transition:.3s;cursor:pointer}.tags-list .tags-close-con span[data-v-a41b60c1]{margin-left:5px}[data-v-a41b60c1] .el-popover{padding:0!important}.footer-style[data-v-3cef6e19]{width:100%;text-align:center;position:relative;box-sizing:border-box;z-index:10}.demo-form-inline[data-v-c4750bff]{overflow:auto}[data-v-c4750bff] .el-form-item{margin-bottom:16px}.pagination[data-v-1bc4d220]{width:100%;margin:auto;font-size:16px;overflow-x:clip}.pagination[data-v-1bc4d220] .el-pagination.is-background .btn-prev,.pagination[data-v-1bc4d220] .el-pagination.is-background .btn-next{padding:0 14px}.pagination[data-v-1bc4d220] .el-pagination .el-select .el-input .el-input__inner{height:28px}.pagination[data-v-1bc4d220] .el-pagination{padding:12px;float:right}.gw-table-data-img[data-v-0ef8faa8]{line-height:0;padding:5px 0}.setColor[data-v-0ef8faa8]{cursor:pointer;padding:0 12px;font-size:15px}.setColor[data-v-0ef8faa8]:hover{text-decoration:underline}.setColor2[data-v-0ef8faa8]{opacity:.5;padding:0 12px;font-size:15px;cursor:none}.statusStyle[data-v-0ef8faa8]{width:110px;padding:4px 0;text-align:center;font-size:15px;border-radius:3px;margin:auto}[data-v-5e4c81da] .el-table__row{font-size:15px!important}.info-tables[data-v-5e4c81da]{width:100%;height:100%;margin:auto;box-sizing:border-box;display:flex;flex-direction:column}.info-tables .info-tables-data[data-v-5e4c81da]{flex:1 0 0;overflow:auto}.info-tables .info-tables-data .info-tables-data-flex[data-v-5e4c81da]{height:100%}.info-page-ing[data-v-5e4c81da]{height:.64rem;float:left;width:100%}.info-page-ing[data-v-5e4c81da] .pagination{height:100%}[data-v-5e4c81da] .el-table .el-table__cell{padding:0!important}.gw-xc-integrationContent[data-v-d01d76f1]{width:100%;background:#fff}.clear[data-v-d01d76f1]{clear:both}.dialog-form[data-v-2e773204]{margin-bottom:10px;width:100%;box-sizing:border-box;padding:10px}[data-v-2e773204] .el-col-2{text-align:center}[data-v-2e773204] .el-form-item{margin-bottom:16px}[data-v-2e773204] .el-col-11{width:100%;max-width:none!important;flex:none!important}.dialogWarp[data-v-2e773204]{flex-direction:row;flex-wrap:wrap}.dialog-form-footer[data-v-2e773204]{width:100%}.isFullScreenStyle[data-v-9885028c]{position:fixed!important;top:0;right:0;margin:auto;z-index:0}.isNoFullScreenStyle[data-v-9885028c]{position:absolute;top:0;box-sizing:border-box;right:0;margin:auto;z-index:0}.xc-map-content[data-v-9885028c]{overflow:auto;width:100%}.xc-map-content iframe[data-v-9885028c]{width:100%;height:100%;position:absolute}.isHasMapModule[data-v-9885028c]{height:100%}.isNoHasMapModule[data-v-9885028c]{height:calc(100% - 50px);margin-top:50px}.isNoHasMapModule2[data-v-9885028c]{height:100%;margin-top:0}.isNoMapBoxPadding iframe[data-v-9885028c]{padding:0}.mapMiniFrameContent[data-v-d0061ef7]{position:absolute;transition:.2s;z-index:50}.mapMiniFrameContent iframe[data-v-d0061ef7]{width:100%;height:100%;position:absolute}[data-v-ef3d9802] .gw-addContent-radio-group .el-radio-button__inner{padding:7px 15px}[data-v-ef3d9802] .el-radio-button:last-child .el-radio-button__inner{border-radius:0;border-right:0}.clean[data-v-d3739d8d]{clear:both}.form-con[data-v-d3739d8d]{width:100%;max-height:100px;overflow:auto;box-sizing:border-box;display:flex;justify-content:flex-start;border-bottom:1px solid #f6f6f6;flex-flow:row wrap}.form-con .form-con-list[data-v-d3739d8d]{width:49%;line-height:30px}.form-con .form-con-list .form-con-list-name[data-v-d3739d8d]{line-height:35px;text-align:left;font-size:14px;font-family:PingFang SC-Regular,serif;color:var(--gwCommonTextColor)}.form-con .form-con-input[data-v-d3739d8d]{display:flex;justify-content:space-between}[data-v-d3739d8d] .el-form--inline .el-form-item{padding:0!important;vertical-align:bottom;margin-right:0}[data-v-d3739d8d] .el-form-item__label{min-width:90px;justify-content:flex-end;padding-right:0}[data-v-d3739d8d] .el-input__wrapper{overflow:auto}[data-v-d3739d8d] .el-input__inner{height:auto}[data-v-d3739d8d] .checkDate .el-input__wrapper{border-radius:0 var(--el-border-radius-base) var(--el-border-radius-base) 0}[data-v-d3739d8d] .el-form-item__content{margin-right:17px}.form-item[data-v-d3739d8d]{min-width:280px;margin-left:8px}[data-v-e8de6ddd] .el-table::-webkit-scrollbar{width:0}.clean[data-v-e8de6ddd]{clear:both}.gisInfo-xc-content-img[data-v-e8de6ddd]{object-fit:cover;position:absolute;width:100%}.gisInfo-xc-content-title[data-v-e8de6ddd]{width:100%;position:relative}.form-con[data-v-e8de6ddd]{width:100%;max-height:400px;overflow:auto;box-sizing:border-box;padding:0 10px 10px;display:flex;justify-content:space-between;flex-flow:row wrap}.form-con .form-con-list[data-v-e8de6ddd]{width:49%;line-height:30px}.form-con .form-con-list .form-con-list-name[data-v-e8de6ddd]{line-height:35px;text-align:left;font-size:14px;font-family:PingFang SC-Regular,serif;color:var(--gwCommonTextColor)}.form-con .form-con-input[data-v-e8de6ddd]{display:flex;justify-content:space-between}[data-v-e8de6ddd] input::-webkit-outer-spin-button,[data-v-e8de6ddd] input::-webkit-inner-spin-button{-webkit-appearance:none!important}[data-v-e8de6ddd] input[type=number]{-moz-appearance:textfield!important}[data-v-e8de6ddd] .el-input__inner,[data-v-e8de6ddd] .el-range-editor.el-input__inner{height:30px!important}.mapContent-area .mapContent-area-title[data-v-e8de6ddd]{background:none;height:40px;line-height:40px;display:flex;justify-content:space-around}.mapContent-area .mapContent-area-title .mapContent-area-title-list[data-v-e8de6ddd]{font-size:14px;color:var(--gwCommonTextColor);padding:0 10px;border:1px solid #eaeaea;text-align:center;border-radius:4px;line-height:30px;margin-top:5px;cursor:pointer}.mapContent-area .mapContent-area-title .mapContent-area-title-list[data-v-e8de6ddd]:hover,.mapContent-area .mapContent-area-title .checkList[data-v-e8de6ddd]{background-color:var(--headerBackground);color:#fff}.map-area[data-v-e8de6ddd]{width:100%;height:100%;background-color:#b7c1b721}.fm-style[data-v-e8de6ddd]{cursor:pointer}.fm-style[data-v-e8de6ddd]:hover{color:#3a8ee6}.isTitle[data-v-e8de6ddd]{color:#ec3560;font-weight:700}.count[data-v-e8de6ddd]{cursor:pointer;margin-top:-3px;vertical-align:middle}.details[data-v-a6c2bc74]{width:100%;margin-top:14px}.details .details-list[data-v-a6c2bc74]{width:100%;display:flex;justify-content:space-between;font-size:15px;margin-top:15px;line-height:32px}.details .details-list .details-list-name[data-v-a6c2bc74]{text-align:right;min-width:120px;color:#868e96}.details .details-list .details-list-val[data-v-a6c2bc74]{flex:1;text-align:left;margin-left:15px;color:#666;margin-right:31px}.details .details-list .details-list-input[data-v-a6c2bc74]{border:1px solid #eaeaea;border-radius:4px;padding:0 10px;box-sizing:border-box}.gw-config-edit[data-v-1b72d576]{width:100%;padding:20px 30px 0 0;box-sizing:border-box}.gw-config-edit .gw-config-edit-list[data-v-1b72d576]{width:100%;display:flex;justify-content:space-between;font-size:15px;margin-top:15px;line-height:32px}.gw-config-edit .gw-config-edit-list .gw-config-edit-list-name[data-v-1b72d576]{text-align:right;min-width:110px;font-size:16px;color:var(--gwCommonTextColor)}.gw-config-edit .gw-config-edit-list .gw-config-edit-list-val[data-v-1b72d576]{flex:1;text-align:left;margin-left:15px;color:#666;margin-right:31px}.gw-config-edit .gw-config-edit-list .gw-config-edit-list-input[data-v-1b72d576]{border:1px solid #eaeaea;border-radius:4px;padding:0 10px;box-sizing:border-box}[data-v-1b72d576] .dialog-form{padding:0}.message[data-v-7fe0f2ab]{width:100%;height:100%;position:fixed;left:0;top:0;z-index:3003!important}.message .message-content[data-v-7fe0f2ab]{background:#fff;position:fixed;top:30%;left:50%;transform:translate(-50%) translateY(-50%);padding-bottom:15px}.message .message-content .title[data-v-7fe0f2ab]{padding:12px 0 12px 12px;font-size:16px;display:flex}.message .message-content .title span[data-v-7fe0f2ab]{flex:1}.message .message-content .title i[data-v-7fe0f2ab]{margin-right:17px;font-size:16px}.message .message-content .iconBox[data-v-7fe0f2ab]{text-align:center;width:100%;margin-top:10px;margin-bottom:10px}.message .message-content .iconBox .el-icon[data-v-7fe0f2ab]{box-sizing:content-box;font-size:45px}.message .message-content .text-content p[data-v-7fe0f2ab]{text-align:center}.message .message-content .text-content .code[data-v-7fe0f2ab]{color:#4e5157;font-weight:700;font-size:18px;padding:10px 0}.message .message-content .text-content .text[data-v-7fe0f2ab]{color:#86878c;font-size:16px;width:100%;text-align:center;margin:auto;box-sizing:border-box;padding:5px 10px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.message .message-content .text-content .readMore[data-v-7fe0f2ab]{display:flex;width:100%;justify-content:center;cursor:pointer;margin:10px 0 0}.message .message-content .text-content .readMore span[data-v-7fe0f2ab]{color:var(--headerBackground);font-size:18px}.message .message-content .text-content .readMore i[data-v-7fe0f2ab]{color:#0098ff;font-size:18px;position:relative;top:2px;margin-left:2px}.message .message-content .text-content .moreMessage p[data-v-7fe0f2ab],.message .message-content .text-content .moreMessage .moreMessage-details[data-v-7fe0f2ab]{background:#fafbfc;border:1px solid var(--headerBackground);margin:17px;padding:8px;font-size:16px;height:100px;color:#ff5050;overflow:auto;word-wrap:break-word;letter-spacing:.7px;text-align:left}.message .message-content .text-content .moreMessage p span[data-v-7fe0f2ab],.message .message-content .text-content .moreMessage .moreMessage-details span[data-v-7fe0f2ab]{font-size:14px;padding-top:5px}.message .message-content .text-content .moreMessage p[data-v-7fe0f2ab]::-webkit-scrollbar{width:4px}.message[data-v-7fe0f2ab]{background:#0000004d}.message .title[data-v-7fe0f2ab]{color:var(--headerTextColor)}.message .message-content[data-v-7fe0f2ab]{background:var(--gwCommonBgColor)}.message-content .title[data-v-7fe0f2ab]{background:var(--gwThemeColor)}.gw-self[data-v-d15a4bb2]{position:fixed;inset:0;width:100%;height:100%;margin:auto;z-index:20;overflow:hidden}.gw-self .gw-bg[data-v-d15a4bb2]{inset:0;width:100%;height:100%;margin:auto;position:absolute;z-index:30}.gw-self .gw-con[data-v-d15a4bb2]{width:600px;height:500px;margin:auto;border-radius:4px;position:absolute;z-index:100;left:50%;top:50%;transform:translate(-50%,-50%);display:flex;flex-direction:column}.gw-self .gw-con .gw-con-title[data-v-d15a4bb2]{width:100%;height:50px;text-align:center;line-height:50px;border-radius:4px 4px 0 0}.gw-self .gw-con .gw-con-content[data-v-d15a4bb2]{width:100%;flex:1;box-sizing:border-box;padding:10px}.gw-self .gw-con .gw-con-footer[data-v-d15a4bb2]{width:100%;height:60px;border-top:1px solid #e8e8e8;text-align:right;line-height:60px;box-sizing:border-box;padding:0 10px}
|