From 5808f76456ca0d40de5074f132b73a5a488e3e13 Mon Sep 17 00:00:00 2001
From: 张含笑 <zhx18749296735@163.com>
Date: Tue, 09 Dec 2025 09:12:03 +0800
Subject: [PATCH] Merge branch 'refs/heads/feature/v9.0/9.0.1' into test

---
 src/styles/common.scss |   45 ++++++++++++++++++++++++++++++++++++++++-----
 1 files changed, 40 insertions(+), 5 deletions(-)

diff --git a/src/styles/common.scss b/src/styles/common.scss
index 6986257..e0704d4 100644
--- a/src/styles/common.scss
+++ b/src/styles/common.scss
@@ -1,5 +1,10 @@
 // 全局变量
 @import './variables.scss';
+@import './base.scss';
+@import './tool.scss';
+@import './element-ui.scss';
+// 地图编辑样式
+@import './mapEdit.scss';
 
 a {
   text-decoration: none;
@@ -20,7 +25,9 @@
 
 .avue-layout {
   display: flex;
+  width: 100%;
   height: 100%;
+  background: url("@/assets/images/layoutBg.png") no-repeat center / 100% 100%;
   overflow: hidden;
 
   &--horizontal {
@@ -74,19 +81,21 @@
   box-sizing: border-box;
   overflow: hidden;
   // background: #f0f2f5;
-  background: linear-gradient( 180deg, #EEF3FE 0%, #F8F9FB 100%);
 }
 
 #avue-view {
   flex: 1;
   overflow-y: auto;
   overflow-x: hidden;
-  margin-bottom: 10px;
+  margin-bottom: 0;
 }
 
-.avue-view {
-  width: 100%;
-  box-sizing: border-box;
+.main-avue-view-container {
+  height: 0;
+  flex: 1;
+  display: flex;
+  flex-direction: column;
+  overflow: hidden;
 }
 
 .avue-footer {
@@ -152,4 +161,30 @@
     background: rgb(255, 186, 0);
     border-radius: 50%;
   }
+}
+
+.ztzf-cesium {
+  .cesium-viewer {
+    height: 100%;
+    overflow: hidden;
+
+    .cesium-viewer-cesiumWidgetContainer {
+      width: 100%;
+      height: 100%;
+
+      .cesium-widget {
+        width: 100%;
+        height: 100%;
+
+        canvas {
+          width: 100%;
+          height: 100%;
+        }
+      }
+    }
+  }
+
+  .cesium-viewer-bottom {
+    display: none;
+  }
 }
\ No newline at end of file

--
Gitblit v1.9.3