/**
 * 基础排版 — body 字体 / 颜色 / 行距。
 *
 * 来源:从 assets/css/style.css 复制(P1.4 第一刀)。仅复制不删原。
 */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}
