:root {
  --bg: #f7f5f1;
  --card: #ffffff;
  --text: #2b2a28;
  --muted: #8a857c;
  --border: #e7e2d8;
  --accent: #b5482a;
  --accent-soft: #f6e7df;
  --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 40px 20px 72px;
}
main { max-width: 720px; margin: 0 auto; }
header { margin-bottom: 32px; }
header h1 { font-size: 30px; font-weight: 750; letter-spacing: 0.5px; }
header p { color: var(--muted); font-size: 14px; margin-top: 6px; }
section { margin-bottom: 32px; }
section h2 {
  font-size: 15px; font-weight: 650; color: var(--muted);
  margin-bottom: 12px; padding-left: 2px;
}
ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
li a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; text-decoration: none; color: var(--text);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
li a:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(181,72,42,.10); transform: translateY(-1px); }
.name { font-size: 15px; font-weight: 600; }
.meta { font-size: 12.5px; color: var(--muted); flex-shrink: 0; }
.tag {
  font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-soft);
  padding: 2px 8px; border-radius: 999px; letter-spacing: .03em; flex-shrink: 0;
}
.row { display: flex; align-items: center; gap: 10px; min-width: 0; }
.row .name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
footer { margin-top: 40px; color: var(--muted); font-size: 12px; text-align: center; }