50 lines
1.3 KiB
CSS
50 lines
1.3 KiB
CSS
:root {
|
|
color: #1f2933;
|
|
background: #f6f8fb;
|
|
font-family:
|
|
Inter,
|
|
'PingFang SC',
|
|
'Microsoft YaHei',
|
|
system-ui,
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
'Segoe UI',
|
|
sans-serif;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
margin: 0;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
max-width: 100%;
|
|
overflow-x: clip;
|
|
}
|
|
|
|
#app {
|
|
max-width: 100%;
|
|
overflow-x: clip;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* ── Vant Toast 保护规则 ──────────────────────────────────
|
|
.van-popup 声明 background: var(--van-popup-background) = #fff (白色)
|
|
.van-toast 声明 background: var(--van-toast-background) = rgba(0,0,0,.7) (黑色)
|
|
两个类同优先级,但 .van-popup 在 vant/lib/index.css 中后声明 → 覆盖黑色背景
|
|
导致 Toast 白底白字看不见。用双类选择器提升优先级强制使用黑色背景。
|
|
────────────────────────────────────────────────────────── */
|
|
.van-popup.van-toast {
|
|
background: var(--van-toast-background) !important;
|
|
color: var(--van-toast-text-color) !important;
|
|
}
|