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
| @font-face {
| font-family: "iconfont"; /* Project id */
| src: url('iconfont.ttf?t=1749612611295') format('truetype');
| }
|
| .iconfont {
| font-family: "iconfont" !important;
| font-size: 2.6vw;
| font-style: normal;
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| }
|
| .icon-work:before {
| content: "\ee17";
| }
|
| .icon-close:before {
| content: "\e694";
| }
|
| .icon-fault:before {
| content: "\e72a";
| }
|
| .icon-spotCheck:before {
| content: "\e604";
| }
|
| .icon-passRate:before {
| content: "\e65d";
| }
|
| .icon-call:before {
| content: "\e818";
| }
|
| .icon-maintenance:before {
| content: "\e639";
| }
|
|