From b67f46b4a768b4cd72d4e463c5dffefe977ddeb7 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Mon, 02 Dec 2024 22:04:27 +0800
Subject: [PATCH] 应急空间及全局图层去除废水处理站、污水池

---
 src/styles/base/index.scss |  114 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 113 insertions(+), 1 deletions(-)

diff --git a/src/styles/base/index.scss b/src/styles/base/index.scss
index c4a215e..d390aaf 100644
--- a/src/styles/base/index.scss
+++ b/src/styles/base/index.scss
@@ -1 +1,113 @@
-@use './container.scss'as *;
\ No newline at end of file
+@use './flexStyle.scss';
+@use './marginStyle.scss';
+@use './paddingStyle.scss';
+@use './widthStyle.scss';
+@use './heightStyle.scss';
+@use './fontStyle.scss';
+@use './dc-base.scss';
+
+.ol-attribution {
+  display: none;
+}
+
+* {
+  margin: 0;
+  padding: 0;
+  list-style: none;
+  box-sizing: border-box;
+  scrollbar-color: #BFBFBF rgb(255, 255, 255);
+  // scrollbar-width: thin;
+}
+
+html,
+body,
+#app {
+  width: 100%;
+  height: 100%;
+  overflow: hidden;
+}
+
+::-webkit-scrollbar {
+  width: 6px;
+  height: 6px;
+  background-color: none;
+}
+
+::-webkit-scrollbar-thumb {
+  background: #4acfff;
+  border-radius: 3px;
+}
+
+::-webkit-scrollbar-track {
+  background: #1d486e;
+}
+
+.content-center {
+  position: absolute;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  margin: auto;
+}
+
+.b-r-4 {
+  border-radius: 4px;
+}
+
+.b-r-6 {
+  border-radius: 6px;
+}
+
+.b-r-20 {
+  border-radius: 20px;
+}
+
+.b-c-w {
+  background-color: #fff;
+}
+
+.cursor-p {
+  cursor: pointer;
+}
+
+.f-c-black {
+  color: #000;
+}
+
+.overflow-h {
+  overflow: hidden;
+}
+
+.relative {
+  position: relative;
+}
+
+.b-s-b {
+  box-sizing: border-box;
+}
+
+.text-align-l {
+  text-align: left
+}
+
+.pointer-auto {
+  pointer-events: auto;
+}
+
+.nowrap-ellipsis-hidden {
+  white-space: nowrap;
+  text-overflow: ellipsis;
+  overflow: hidden;
+}
+
+//去除输入框type为number的箭头
+input::-webkit-outer-spin-button,
+input::-webkit-inner-spin-button {
+  -webkit-appearance: none !important;
+}
+
+/* 在Firefox浏览器下 */
+input[type="number"] {
+  -moz-appearance: textfield !important;
+}
\ No newline at end of file

--
Gitblit v1.9.3