31 lines
549 B
CSS
31 lines
549 B
CSS
@font-face {
|
|
font-family: "iconfont"; /* Project id */
|
|
src: url('iconfont.ttf?t=1648280512434') format('truetype');
|
|
src: url('../fonts/iconfont.ttf?t=1648280512434') format('truetype');
|
|
}
|
|
|
|
.iconfont {
|
|
font-family: "iconfont" !important;
|
|
font-size:30px;
|
|
font-style: normal;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.icon-weixin-copy:before {
|
|
content: "\e65b";
|
|
}
|
|
|
|
.icon-weibo:before {
|
|
content: "\e61a";
|
|
}
|
|
|
|
.icon-taobao:before {
|
|
content: "\e782";
|
|
}
|
|
|
|
.icon-doyin:before {
|
|
content: "\e70c";
|
|
}
|
|
|