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-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-11-01 15:28:03 +08:00
|
|
|
// =========== 适配端 ===========
|
|
|
|
@media (min-width: 870px) and (max-width: 1440px) {
|
2022-09-14 19:10:22 +08:00
|
|
|
font-size: 20px;
|
2022-01-25 22:24:53 +08:00
|
|
|
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';
|
2022-09-14 19:10:22 +08:00
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
2022-11-01 15:28:03 +08:00
|
|
|
// =========== 桌面端 ===========
|
|
|
|
@media (min-width: 1440px) and (max-width: 1920px) {
|
|
|
|
font-size: 22px;
|
|
|
|
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: 500;
|
|
|
|
}
|
|
|
|
|
2022-09-14 19:10:22 +08:00
|
|
|
// =========== 2K端 ===========
|
|
|
|
@media (min-width: 1920px) and (max-width: 2560px) {
|
2022-11-01 15:28:03 +08:00
|
|
|
font-size: 1.2vw;
|
2022-09-14 19:10:22 +08:00
|
|
|
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: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
// =========== 4K端 ===========
|
|
|
|
@media (min-width: 2560px) and (max-width: 2880px) {
|
2022-11-01 15:28:03 +08:00
|
|
|
font-size: 1.25vw;
|
2022-09-14 19:10:22 +08:00
|
|
|
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: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
// =========== >4K端 ===========
|
|
|
|
@media (min-width: 2880px) {
|
2022-11-01 15:28:03 +08:00
|
|
|
font-size: 1.27vw;
|
2022-09-14 19:10:22 +08:00
|
|
|
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: 500;
|
2022-01-25 22:24:53 +08:00
|
|
|
}
|
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
|
|
|
}
|