.news-list-page {
    padding: 35px 0 55px;
}

/* 分类 */
.news-list-category {
    margin-bottom: 24px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(55,179,74,.08), rgba(16,155,215,.08));
    border: 1px solid #e7f2ee;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-list-category a {
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(55,179,74,.16);
    border-radius: 24px;
    color: #14284b;
    font-size: 15px;
    line-height: 42px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.news-list-category a i {
    color: #37b34a;
    transition: all .3s ease;
}

.news-list-category a:hover,
.news-list-category a.active {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(55,179,74,.22);
}

.news-list-category a:hover i,
.news-list-category a.active i {
    color: #fff;
}

/* 新闻列表 */
.news-list-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.news-list-item {
    display: flex;
    gap: 24px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e7f2ee;
    border-radius: 20px;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 10px 28px rgba(16,36,58,.05);
}

.news-list-item:hover {
    background: #fff;
    border-color: rgba(16,155,215,.34);
    box-shadow: 0 14px 36px rgba(16,155,215,.14);
    transform: translateY(-3px);
}

.news-list-img {
    flex: 0 0 260px;
    height: 165px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7fbf8;
    position: relative;
}

.news-list-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
    z-index: 2;
}

.news-list-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .4s ease;
}

.news-list-item:hover .news-list-img img {
    transform: scale(1.06);
}

.news-list-info {
    flex: 1;
    min-width: 0;
    padding: 8px 6px 4px 0;
}

.news-list-info h2 {
    margin: 0 0 12px;
    color: #14284b;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-info p {
    margin: 0 0 18px;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 时间 / 浏览 */
.news-list-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.news-list-meta span {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
}

.news-list-meta i {
    margin-right: 5px;
    color: #37b34a;
}

/* 分页 */
.news-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.news-pagination a,
.news-pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f7fbf8;
    border: 1px solid #e7f2ee;
    border-radius: 50%;
    color: #14284b;
    font-size: 15px;
    line-height: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.news-pagination a:hover,
.news-pagination a.active {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(55,179,74,.22);
}

.news-pagination a.disabled {
    opacity: .45;
    pointer-events: none;
}

/* 移动端 */
@media (max-width: 768px) {
    .news-list-page {
        padding: 28px 0 42px;
    }

    .news-list-category {
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 18px;
        gap: 8px;
    }

    .news-list-category a {
        width: 100%;
        min-height: 42px;
        border-radius: 12px;
        justify-content: flex-start;
    }

    .news-list-box {
        gap: 14px;
    }

    .news-list-item {
        display: block;
        padding: 14px;
        border-radius: 18px;
    }

    .news-list-img {
        width: 100%;
        height: 190px;
        border-radius: 14px;
        margin-bottom: 15px;
    }

    .news-list-info {
        padding: 0;
    }

    .news-list-info h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .news-list-info p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .news-list-meta {
        gap: 10px;
    }

    .news-list-meta span {
        font-size: 12px;
    }

    .news-pagination {
        margin-top: 24px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .news-pagination a,
    .news-pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        line-height: 36px;
    }
}