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
| /* 公共样式 */
| @import './element-variables.scss';
|
| * {
| margin: 0;
| padding: 0;
| list-style: none;
| touch-action: pan-y;
| }
| html,
| body {
| height: 100%;
| width: 100%;
| box-sizing: border-box;
| margin: 0;
| padding: 0;
| }
|
| body {
| -moz-osx-font-smoothing: grayscale;
| -webkit-font-smoothing: antialiased;
| text-rendering: optimizeLegibility;
| font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
| overflow: hidden;
| touch-action: none;
| // background-color: #eef1f3 !important;
| }
| *,
| *:before,
| *:after {
| box-sizing: inherit;
| }
|
| a:focus,
| a:active {
| outline: none;
| }
|
| a,
| a:focus,
| a:hover {
| cursor: pointer;
| color: inherit;
| text-decoration: none;
| }
|
| div:focus {
| outline: none;
| }
|
|
| ::-webkit-input-placeholder {
| /* WebKit browsers */
| color: #babdcb !important;
| }
|
| ::-moz-placeholder {
| /* Mozilla Firefox 19+ */
| color: #babdcb !important;
| }
|
| :-ms-input-placeholder {
| /* Internet Explorer 10+ */
| color: #babdcb !important;
| }
|
| ::-webkit-scrollbar {
| width: 7px;
| height: 9px;
| }
|
| ::-webkit-scrollbar-thumb {
| background: rgba(144, 147, 153, 0.3);
| /* // border: 1px solid rgba(144, 147, 153, 0.3); */
| border-radius: 3px;
| }
|
| ::-webkit-scrollbar-track {
| border-radius: 3px;
| background: rgba(255, 255, 255, 1);
| }
|
| /* message组件样式重定义 */
| .el-message {
| padding: 10px 20px;
| .el-message__icon{
| font-size: 26px;
| }
| }
|
|