@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;
|
}
|