From 196aac76666571c60536973418bff3da63bef1d8 Mon Sep 17 00:00:00 2001
From: ‘chensiAb’ <‘chenchenco03@163.com’>
Date: Tue, 01 Apr 2025 17:29:32 +0800
Subject: [PATCH] fix:百度地图组件微调 & 地址三级联动增加只读属性

---
 plugins/baiduMap/cBaiduMap.scss |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)

diff --git a/plugins/baiduMap/cBaiduMap.scss b/plugins/baiduMap/cBaiduMap.scss
new file mode 100644
index 0000000..0bd329f
--- /dev/null
+++ b/plugins/baiduMap/cBaiduMap.scss
@@ -0,0 +1,54 @@
+/**
+ * cBaiduMap
+ * @author chensi
+ */
+
+@import "../../common/sassMixin";
+
+.c-baidu-map {
+    width: 100%;
+    height: 100%;
+    position: relative;
+    display: block;
+
+    .map {
+        width: 100%;
+        height: 100%;
+        display: block;
+    }
+
+    .map-controls {
+        position: absolute;
+        bottom: 0;
+        left: 0;
+        right: 0;
+        background: rgba(255, 255, 255, 0.9);
+        z-index: 100;
+
+        .map-controls-top {
+            display: flex;
+            justify-content: space-between;
+            align-items: center;
+            height: 100px;
+            padding: 0 20px;
+            .at-button {
+                width: 45%;
+                height: 76px !important;
+                line-height: 72px;
+                font-size: 40px;
+            }
+        }
+        .map-controls-bottom {
+            display: flex;
+            align-items: center;
+            height: 100px;
+            padding: 0 20px;
+            .at-button {
+                width: 95%;
+                height: 76px !important;
+                line-height: 72px;
+                font-size: 40px;
+            }
+        }
+    }
+}
\ No newline at end of file

--
Gitblit v1.9.1