2022-01-16 03:20:40 +08:00
|
|
|
@charset "UTF-8";
|
|
|
|
|
2022-01-19 17:34:41 +08:00
|
|
|
html {
|
2022-01-16 03:20:40 +08:00
|
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
2022-01-20 08:48:00 +08:00
|
|
|
font-size: 16px;
|
2022-01-19 21:24:32 +08:00
|
|
|
|
2022-01-25 22:24:53 +08:00
|
|
|
// =========== 移动端 ===========
|
|
|
|
@media (max-width: 870px) {
|
|
|
|
font-size: 18px;
|
|
|
|
font-family: -apple-system, BlinksMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
|
|
'Noto Sans', serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
|
|
'Noto Color Emoji';
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
2022-01-19 18:53:46 +08:00
|
|
|
|
2022-01-25 22:24:53 +08:00
|
|
|
// =========== 桌面端 ===========
|
|
|
|
@media (min-width: 870px) and (max-width: 2048px) {
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: -apple-system, BlinksMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
|
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
|
|
'Noto Color Emoji';
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2022-01-16 03:20:40 +08:00
|
|
|
}
|
|
|
|
|
2022-01-19 17:34:41 +08:00
|
|
|
// 衬线字体
|
2022-01-19 21:24:32 +08:00
|
|
|
[data-font="serif"] {
|
2022-01-16 03:20:40 +08:00
|
|
|
font-family: -apple-system, BlinksMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
|
|
|
'Noto Sans', serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
|
|
'Noto Color Emoji';
|
2022-01-17 19:51:11 +08:00
|
|
|
font-weight: 500;
|
2022-01-16 03:20:40 +08:00
|
|
|
}
|
2022-01-19 17:34:41 +08:00
|
|
|
|
|
|
|
// 无衬线字体
|
2022-01-19 21:24:32 +08:00
|
|
|
[data-font="sans"] {
|
2022-01-16 03:20:40 +08:00
|
|
|
font-family: -apple-system, BlinksMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
|
2022-01-19 21:24:32 +08:00
|
|
|
'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
|
|
'Noto Color Emoji';
|
2022-01-17 19:51:11 +08:00
|
|
|
font-weight: 400;
|
2022-01-19 21:24:32 +08:00
|
|
|
}
|