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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
| html,
| body {
| /* 文字风格 Sans-serif 各笔画粗细相同,Serif 笔画粗细不同,monospace 等宽体,cursive草书,fantasy梦幻 */
| font-family: 'Microsoft YaHei', sans-serif, 'Helvetica Neue', Helvetica, Arial,
| '黑体', '宋体', Arial;
| -webkit-tap-highlight-color: transparent;
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| }
|
| body {
| font-size: 14px;
| color: #333;
| }
|
| /* 重置各标签的默认样式 */
| a,
| body,
| center,
| cite,
| code,
| dd,
| del,
| div,
| dl,
| dt,
| em,
| fieldset,
| figcaption,
| figure,
| footer,
| form,
| h1,
| h2,
| h3,
| h4,
| h5,
| h6,
| header,
| hr,
| html,
| img,
| input,
| label,
| legend,
| li,
| mark,
| ol,
| p,
| section,
| span,
| textarea,
| time,
| td,
| th,
| ul {
| margin: 0;
| border: 0;
| padding: 0;
| font-style: normal;
| box-sizing: border-box;
| /* 自动换行 */
| word-wrap: break-word;
| /* 强制英文单词断行 */
| word-break: break-all;
| }
|
| /* 设置标签为块级分类 */
| article,
| aside,
| details,
| fieldset,
| figcaption,
| figure,
| footer,
| header,
| main,
| nav,
| section {
| display: block;
| }
|
| /* 去除input标签的默认样式 */
| button,
| input,
| textarea {
| -webkit-appearance: none;
| font-family: 'Microsoft YaHei', sans-serif, 'Helvetica Neue', Helvetica, Arial,
| '黑体', '宋体', Arial;
| border: 0;
| margin: 0;
| padding: 0;
| font-size: 1em;
| line-height: 1em;
| outline: none;
| background-color: transparent;
| }
|
| /* 禁止多文本框手动拖动大小 */
| textarea {
| resize: none;
| -webkit-appearance: none;
| }
|
| /* 去掉按下的阴影盒子 */
| input,
| textarea,
| a {
| -webkit-tap-highlight-color: transparent;
| }
|
| /* 清除a标签下划线 */
| a,
| a:visited {
| text-decoration: none;
| }
|
| a:focus,
| a:active,
| a:hover {
| outline: none;
| }
|
| /* 清除列表前面的点 */
| ol,
| li,
| ul {
| list-style: none;
| }
|
| /* 清除IE下图片的边框 */
| img {
| border-style: none;
| font-size: 0;
| }
|
| /* 解决chrome浏览器默认黄色背景问题 */
| input:-webkit-autofill,
| textarea:-webkit-autofill,
| select:-webkit-autofill {
| -webkit-box-shadow: 0 0 0 1000px #fff inset;
| }
|
| /* 设置默认滚动条样式 */
| ::-webkit-input-placeholder {
| color: #afbdcc;
| }
|
| :-moz-placeholder {
| color: #afbdcc;
| }
|
| ::-moz-placeholder {
| color: #afbdcc;
| }
|
| :-ms-input-placeholder {
| color: #afbdcc;
| }
|
| ::-webkit-scrollbar {
| width: 6px;
| height: 6px;
| }
|
| ::-webkit-scrollbar-track {
| background-color: #f5f5f5;
| }
|
| ::-webkit-scrollbar-track-piece {
| background-color: #f5f5f5;
| border-radius: 6px;
| }
|
| ::-webkit-scrollbar-thumb {
| background-color: #cccccc;
| border-radius: 6px;
| }
|
| ::-webkit-scrollbar-corner {
| background-color: #f5f5f5;
| }
|
| ::-webkit-resizer {
| background-repeat: no-repeat;
| background-position: bottom right;
| }
|
| .el-table__fixed-right .el-table__fixed-body-wrapper .el-table__body {
| padding-bottom: 10px;
| }
|
| .is-scrolling-none+.el-table__fixed-right .el-table__fixed-body-wrapper .el-table__body {
| padding-bottom: 0;
| }
| .is-scrolling-none+.el-table__fixed-right::before {
| background: transparent;
| }
| .vl-notify-mask {
| opacity: 0.4 !important;
| z-index: 99998;
| }
| .vl-notify {
| z-index: 99999;
| }
|
|