WXL
4 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
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
@font-face {
  font-family: "iconfont";
  src: url('/static/fonts/iconfont.woff2') format('woff2'),
       url('/static/fonts/iconfont.woff') format('woff'),
       url('/static/fonts/iconfont.ttf') format('truetype');
}
 
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
 
/* 使用 SVG 图标替代字体图标 */
.icon-language {
  background: url('/static/icons/language.svg') no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: inline-block;
}
 
.icon-search {
  background: url('/static/icons/search.svg') no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: inline-block;
}
 
.icon-arrow-right {
  background: url('/static/icons/arrow-right.svg') no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: inline-block;
}
 
.icon-check {
  background: url('/static/icons/check.svg') no-repeat center;
  background-size: contain;
  width: 1em;
  height: 1em;
  display: inline-block;