fix: 稳定管理端启动页字体显示

- 启动文案固定使用 700 字重

- 复用应用字体栈避免加载前后视觉跳变
This commit is contained in:
2026-07-24 19:03:27 +08:00
parent cb06599dca
commit ac07899dc4

View File

@@ -10,6 +10,17 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background-color: #f4f7f9; background-color: #f4f7f9;
font-family: var(
--font-family,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
'Helvetica Neue',
Arial,
'Noto Sans',
sans-serif
);
/* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */ /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
} }
@@ -70,7 +81,7 @@
.loadingText { .loadingText {
color: #333; color: #333;
font-size: 16px; font-size: 16px;
font-weight: 500; font-weight: 700;
margin-bottom: 24px; margin-bottom: 24px;
letter-spacing: 0.5px; letter-spacing: 0.5px;
} }