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
| @import './element.scss';
|
| body {
| height: 100%;
| background-color: #fff;
| -moz-osx-font-smoothing: grayscale;
| -webkit-font-smoothing: antialiased;
| text-rendering: optimizeLegibility;
| font-family: PingFang SC, Helvetica Neue, Helvetica, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
| }
|
| html {
| height: 100%;
| box-sizing: border-box;
| }
|
| html body {
| margin: 0;
| padding: 0;
| }
| #app {
| height: 100%;
| }
| *,
| *:before,
| *:after {
| box-sizing: inherit;
| }
|
| /*全局滚动条样式*/
| ::-webkit-scrollbar-track-piece {
| background: #ffffff00;
| }
|
| ::-webkit-scrollbar {
| width: 6px;
| height: 6px;
| }
|
| ::-webkit-scrollbar-thumb {
| background: #d7d6e6;
| border-radius: 6px;
| }
| a:focus,
| a:active {
| outline: none;
| }
|
| a,
| a:focus,
| a:hover {
| cursor: pointer;
| color: inherit;
| text-decoration: none;
| }
| div {
| box-sizing: border-box;
| }
| div:focus {
| outline: none;
| }
| p {
| margin: 0;
| }
|
|