/* 仅此页面覆盖全局紫色背景 */
    body { background: #f8fafc !important; }

    .news-wrap { max-width: 1100px; margin: 110px auto 64px; padding: 0 20px; }
    .news-header { margin-bottom: 16px; }
    .news-header h1 { font-size: 34px; color: #0f172a; letter-spacing: -0.02em; position: relative; display: inline-block; }
    .news-header h1::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 48px; height: 4px; border-radius: 2px; background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6); box-shadow: 0 4px 12px rgba(99,102,241,.25); }
    .news-header p { color: #64748b; margin-top: 12px; }

    .news-simple { display: grid; gap: 14px; }
    .post { display: grid; grid-template-columns: 320px minmax(0,1fr); gap: 16px; background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 14px; transition: box-shadow .25s, transform .12s, border-color .25s; position: relative; }
    .post::before { content: ''; position: absolute; inset: 0; border-radius: 16px; pointer-events: none; box-shadow: 0 0 0 0 rgba(99,102,241,.15); transition: box-shadow .25s; }
    .post:hover { border-color: #c7d2fe; box-shadow: 0 12px 26px rgba(99,102,241,.12); transform: translateY(-1px); }
    .post:hover::before { box-shadow: 0 0 0 6px rgba(99,102,241,.08) inset; }
    .thumb { position: relative; height: 200px; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg,#e2e8f0,#f1f5f9); display: flex; align-items: center; justify-content: center; color: #94a3b8; font-weight: 800; }
    .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.15) 100%); }
    .badge { position: absolute; left: 10px; top: 10px; z-index: 1; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; color: #fff; background: linear-gradient(135deg, #3b82f6, #6366f1); box-shadow: 0 8px 18px rgba(59,130,246,.25); }
    .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .body { display: flex; flex-direction: column; }
    .title { font-weight: 900; color: #0f172a; line-height: 1.45; letter-spacing: -.01em; transition: color .2s; }
    .title:hover { color: #4338ca; }
    .meta { margin-top: 8px; color: #64748b; font-size: 12px; display: flex; gap: 12px; align-items: center; }
    .excerpt { margin-top: 10px; color: #475569; line-height: 1.8; }
    .more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; color: #2563eb; text-decoration: none; font-weight: 700; padding: 8px 10px; border-radius: 10px; background: rgba(37,99,235,0.06); border: 1px solid rgba(37,99,235,0.2); width: fit-content; }
    .more:hover { background: linear-gradient(135deg, #3b82f6, #2563eb); color: #fff; box-shadow: 0 10px 24px rgba(59,130,246,.35); border-color: #3b82f6; }

    @media (max-width: 820px) {
        .post { grid-template-columns: 1fr; }
        .thumb { height: 200px; }
    }

    /* 分页样式 */
    .pagination-wrapper { margin-top: 40px; }
    .pagination { margin-top: 18px; }
    .pagination ul { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
    .pagination li { margin: 0; }
    .pagination a, .pagination span { display: inline-block; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 12px; background: #fff; color: #334155; text-decoration: none; font-weight: 700; transition: all .2s; }
    .pagination a:hover { border-color: #c7d2fe; color: #4f46e5; box-shadow: 0 8px 20px rgba(99,102,241,.12); transform: translateY(-1px); }
    .pagination li.active span { background: linear-gradient(135deg, #3b82f6, #6366f1); color: #fff; border-color: transparent; box-shadow: 0 10px 24px rgba(59,130,246,.35); }
    .pagination li.disabled span { opacity: .5; cursor: not-allowed; background: #f1f5f9; color: #94a3b8; }
    .pagination li.disabled a { opacity: .5; cursor: not-allowed; pointer-events: none; }