26 lines
405 B
CSS
26 lines
405 B
CSS
@font-face {
|
|
font-family: "iconfont";
|
|
src: url('@/static/iconfont.ttf') format('truetype')
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-sousuo:before {
|
|
content: "\e603";
|
|
}
|
|
|
|
.icon-pinglun:before {
|
|
content: "\e601";
|
|
}
|
|
|
|
.icon-shezhi:before {
|
|
content: "\e602";
|
|
}
|
|
|