.nlist-page {
    color: #11141b;
    background: #fff;
}

.nlist-page *,
.nlist-page *::before,
.nlist-page *::after {
    box-sizing: border-box;
}

.nlist-container {
    width: calc(100% - 40px);
    max-width: 1420px;
    margin: 0 auto;
}

.nlist-hero {
    padding: 56px 0 48px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.nlist-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #8a8f99;
    font-size: 14px;
}

.nlist-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.nlist-hero h1 {
    margin: 0;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.nlist-hero p {
    max-width: 760px;
    margin: 22px auto 0;
    color: #676d78;
    font-size: 16px;
    line-height: 1.75;
}

.nlist-content {
    padding: 54px 0 86px;
}

.nlist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 28px;
}

.nlist-card {
    min-width: 0;
    transition: opacity .4s ease, transform .4s ease;
}

.nlist-page.is-enhanced .nlist-card:not(.is-visible) {
    opacity: 0;
    transform: translateY(16px);
}

.nlist-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nlist-card-image {
    height: 250px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #f2f3f5;
}

.nlist-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .25s ease;
}

.nlist-card:hover .nlist-card-image img {
    transform: scale(1.03);
}

.nlist-card-category {
    margin-top: 18px;
    color: #7c818c;
    font-size: 14px;
}

.nlist-card h2 {
    margin: 12px 0 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -.02em;
}

.nlist-card h2 a {
    color: inherit;
    text-decoration: none;
}

.nlist-card h2 a:hover {
    color: #13a99c;
}

.nlist-card-summary {
    margin: 13px 0 0;
    color: #666c76;
    font-size: 14px;
    line-height: 1.7;
}

.nlist-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    color: #8a8f98;
    font-size: 14px;
}

.nlist-card-meta span {
    color: #30343b;
    font-weight: 650;
}

.nlist-card-meta i {
    font-style: normal;
}

.nlist-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 52px;
    font-size: 14px;
}

.nlist-pagination a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid #dfe2e7;
    border-radius: 6px;
    color: #1d222a;
    text-decoration: none;
}

.nlist-empty {
    min-height: 360px;
    display: grid;
    place-items: center;
    color: #8c929c;
    font-size: 16px;
}

@media (max-width: 980px) {
    .nlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .nlist-container {
        width: calc(100% - 24px);
    }

    .nlist-hero {
        padding: 40px 0 36px;
    }

    .nlist-grid {
        grid-template-columns: 1fr;
    }

    .nlist-card-image {
        height: 230px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nlist-card,
    .nlist-card-image img {
        transition: none;
    }

    .nlist-page.is-enhanced .nlist-card:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================
   NEWS-LIST-PAGINATION-SPACING-V1
   统计、分页与底部留白
   ========================================== */

.nlist-content {
    padding-bottom: 150px;
}

.nlist-list-footer {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 72px;
    padding-top: 30px;
    border-top: 1px solid #e7e9ed;
}

.nlist-total-count {
    flex: 0 0 auto;
    color: #747a85;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
}

.nlist-total-count strong {
    color: #171b23;
    font-size: 16px;
    font-weight: 700;
}

.nlist-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    margin-top: 0;
}

.nlist-page-numbers {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nlist-page-button {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 13px;
    border: 1px solid #dfe3e9;
    border-radius: 6px;
    color: #252a33;
    background: #ffffff;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
    transition:
        color .16s ease,
        border-color .16s ease,
        background .16s ease;
}

.nlist-page-button:hover {
    color: #11151c;
    border-color: #aeb5c0;
    background: #f7f8fa;
}

.nlist-page-button.is-number {
    padding: 0;
}

.nlist-page-button.is-current {
    color: #ffffff;
    border-color: #11141b;
    background: #11141b;
    font-weight: 700;
    cursor: default;
}

.nlist-page-button.is-disabled {
    color: #b3b8c1;
    border-color: #eceef1;
    background: #fafafa;
    cursor: not-allowed;
    pointer-events: none;
}

.nlist-page-ellipsis {
    min-width: 22px;
    color: #8a9099;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 720px) {
    .nlist-content {
        padding-bottom: 105px;
    }

    .nlist-list-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 52px;
        padding-top: 24px;
    }

    .nlist-pagination {
        width: 100%;
        justify-content: space-between;
    }

    .nlist-page-numbers {
        overflow-x: auto;
        max-width: 100%;
        scrollbar-width: none;
    }

    .nlist-page-numbers::-webkit-scrollbar {
        display: none;
    }

    .nlist-page-button.is-direction {
        padding: 0 11px;
    }
}

@media (max-width: 480px) {
    .nlist-page-button {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}
