Files
lingji-work-fe/src/styles/font.scss

31 lines
689 B
SCSS
Raw Normal View History

2025-07-01 14:34:16 +08:00
@font-face {
2025-07-10 11:05:00 +08:00
font-family: 'PuHuiTi-Regular';
src: url('@/assets/fonts/Alibaba-PuHuiTi-Regular.woff2') format('woff2');
font-display: swap;
2025-07-01 14:34:16 +08:00
}
@font-face {
2025-07-10 11:05:00 +08:00
font-family: 'PuHuiTi-Medium';
src: url('@/assets/fonts/Alibaba-PuHuiTi-Medium.woff2') format('woff2');
font-display: swap;
2025-07-01 14:34:16 +08:00
}
@font-face {
font-family: 'PuHuiTi-Bold';
2025-07-10 11:05:00 +08:00
src: url('@/assets/fonts/Alibaba-PuHuiTi-Bold.woff2') format('woff2');
font-display: swap;
2025-07-01 14:34:16 +08:00
}
2025-07-10 11:05:00 +08:00
// 使用统一的字体族名
.font-family-puhui-regular {
font-family: 'PuHuiTi-Regular' !important;
2025-07-01 14:34:16 +08:00
}
2025-07-10 11:05:00 +08:00
2025-07-01 14:34:16 +08:00
.font-family-puhui-medium {
2025-07-10 11:05:00 +08:00
font-family: 'PuHuiTi-Medium' !important;
2025-07-01 14:34:16 +08:00
}
2025-07-10 11:05:00 +08:00
.font-family-puhui-bold {
font-family: 'PuHuiTi-Bold' !important;
2025-07-01 14:34:16 +08:00
}