智慧园区前端大屏
shuishen
2024-12-18 9a37c5e1b2190c3f6ec71483923922189091dd52
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
@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;
}