/* ── CSS 自定义属性 ─────────────────────────────────────────────────────── */
:root {
  --color-primary:      #1a6fc4;
  --color-primary-dark: #155fa0;
  --color-brand:        #1a3a5c;
  --color-bg:           #f0f2f5;
  --color-surface:      #ffffff;
  --color-border:       #e0e0e0;
  --color-text:         #333333;
  --color-text-muted:   #888888;
  --color-success:      #28a745;
  --color-warning:      #fd7e14;
  --color-danger:       #dc3545;
  --color-pending:      #f59e0b;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-nav:  0 2px 8px rgba(0,0,0,0.2);

  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
                 'Helvetica Neue', Arial, sans-serif;
}

/* ── 重置 ────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── 基础 ────────────────────────────────────────────────────────────────── */
html { font-size: 16px; }

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

/* ── 页脚占位（让 footer 贴底） ─────────────────────────────────────────── */
main, .page-body { flex: 1; }
