.news-list-page {
    padding: 40px 0 76px;
    background: #f7f8fa;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.news-list-shell {
    width: min(1105px, calc(100% - 32px));
    display: grid;
    grid-template-columns: 180px minmax(0, 810px);
    gap: 42px;
    margin: 0 auto;
}

.news-category-sidebar {
    min-width: 0;
}

.news-category-nav {
    display: grid;
    gap: 10px;
    position: sticky;
    top: 92px;
}

.news-category-nav a {
    width: 160px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #eceef2;
    border-radius: 999px;
    color: #25354d;
    background: #fff;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
    transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.news-category-nav a:hover,
.news-category-nav a:focus-visible {
    border-color: #9ac5ff;
    color: #1670e6;
    outline: 0;
    transform: translateY(-1px);
}

.news-category-nav a.is-active {
    border-color: #2f86f6;
    color: #fff;
    background: #2f86f6;
    box-shadow: 0 5px 10px rgba(47, 134, 246, .26);
}

.news-list-content {
    min-width: 0;
}

.news-list-item {
    min-height: 198px;
    display: grid;
    grid-template-columns: 287px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #edf0f4;
}

.news-list-cover {
    height: 161px;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #edf2f8;
}

.news-list-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-list-item:hover .news-list-cover img {
    transform: scale(1.025);
}

.news-list-copy {
    min-width: 0;
    min-height: 161px;
    display: flex;
    flex-direction: column;
}

.news-list-copy h2 {
    margin: 2px 0 8px;
    overflow: hidden;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.55;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list-copy h2 a {
    color: #092f66;
}

.news-list-copy h2 a:hover,
.news-list-copy h2 a:focus-visible {
    color: #2f86f6;
}

.news-list-summary {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #111;
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-list-summary span {
    font-weight: 500;
}

.news-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
    color: #91a0b7;
    font-size: 13px;
    line-height: 1.4;
}

.news-list-meta a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #7890b6;
}

.news-list-meta a:hover,
.news-list-meta a:focus-visible {
    color: #2f86f6;
}

.news-list-meta a img {
    width: 5px;
    height: 9px;
    display: block;
    opacity: .58;
}

.news-list-empty {
    min-height: 220px;
    display: grid;
    place-items: center;
    color: #7f8da2;
    background: #fff;
    border-radius: 10px;
}

.news-list-pagination .fanye {
    height: auto;
    padding: 4px 0 0;
}

.news-list-pagination .fanye li a {
    min-width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid #e1e7f0;
    border-radius: 7px;
    color: #60708a;
    background: #fff;
}

.news-list-pagination .fanye li.thisclass a,
.news-list-pagination .fanye li a:hover,
.news-list-pagination .fanye li a:focus-visible {
    border-color: #2f86f6;
    color: #fff;
    background: #2f86f6;
}

@media (max-width: 900px) {
    .news-list-shell {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .news-category-nav {
        display: flex;
        gap: 9px;
        position: static;
        overflow-x: auto;
        padding: 2px 2px 8px;
        scrollbar-width: none;
    }

    .news-category-nav::-webkit-scrollbar {
        display: none;
    }

    .news-category-nav a {
        width: auto;
        min-width: 112px;
        flex: 0 0 auto;
    }

    .news-list-content {
        max-width: 810px;
    }
}

@media (max-width: 680px) {
    .news-list-page {
        padding: 28px 0 52px;
    }

    .news-list-shell {
        width: min(100% - 28px, 520px);
    }

    .news-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 26px;
        padding-bottom: 26px;
    }

    .news-list-cover {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .news-list-copy {
        min-height: 148px;
    }

    .news-list-copy h2 {
        margin-top: 0;
        font-size: 16px;
        white-space: normal;
    }

    .news-list-summary {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .news-list-meta {
        margin-top: 22px;
    }
}
