:root {
    --bg: #0b0f1a;
    --card-bg: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --text: #e5e7eb;
    --muted: #9ca3af;
    --primary: #7c7cff;
    --accent: #38bdf8;
    --glow: 0 0 25px rgba(124,124,255,0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    background: radial-gradient(circle at top, #111827, var(--bg));
    color: var(--text);
    line-height: 1.9;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-shadow: var(--glow);
}

header {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(120deg, #1e293b, #020617);
    border-bottom: 1px solid var(--border);
}

header h1 {
    font-size: 3em;
    margin: 0;
    background: linear-gradient(90deg, #7c7cff, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    color: var(--muted);
    margin-top: 14px;
}

.time {
    margin-top: 10px;
    font-size: 0.9em;
    color: #94a3b8;
}

main {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px;
    box-shadow: var(--glow);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(124,124,255,0.55);
}

.card h2 {
    margin-top: 0;
    border-left: 4px solid var(--accent);
    padding-left: 12px;
}

.post-item {
    padding: 22px 0;
    border-bottom: 1px dashed var(--border);
}

.post-item:last-child {
    border-bottom: none;
}

.post-item h3 {
    margin: 0 0 6px 0;
}

.post-item p {
    color: var(--muted);
    margin: 0;
}

.article h1 {
    margin-top: 0;
}

.article-meta {
    font-size: 0.9em;
    color: var(--muted);
    margin-bottom: 25px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer-beian.police a{
  display:inline-flex;
  align-items:center;     /* ⭐ 关键：垂直居中 */
  gap:6px;
}

.footer-beian.police img{
  width:18px;
  height:18px;
  display:block;          /* 防止基线偏移 */
}

/* ===== Footer 行距压缩（推荐值）===== */
footer p{
  margin:2px 0 !important;   /* 原来一般是 8~16px */
  line-height:1.4;
}
