.newsCateList {
    width: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 0 60px;
    border-bottom: 1px solid #EFF0F4;
}

.newsCateItem {
    width: 160px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    background: #F1F4FB;
    border-radius: 28px;
    margin-right: 50px;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
}

.newsCateItemActive {
    color: #FFFFFF;
    background: #2871FF;
}

.newsList {
    width: 1400px;
}

.newsItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px 30px 60px;
    margin-bottom: 60px;
    cursor: pointer;
}

.newsItem:hover {
    background: #F7F7F7;
    box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.newsItemActive {
    background: #F7F7F7;
    box-shadow: 0px 3px 12px 1px rgba(0, 0, 0, 0.16);
    border-radius: 14px;
}

.newsItemImg {
    width: 328px;
    height: 198px;
    border-radius: 14px 14px 14px 14px;
}

.newsItemMoreImg {
    width: 60px;
    height: 60px;
}

.newsItemInfo {
    flex: 1;
    height: 198px;
    padding: 14px 0;
    flex-shrink: 0;
    margin: 0 75px;
}

.newsItemInfoTit {
    font-weight: 500;
    font-size: 20px;
    color: #000000;
}

.newsItemInfoTime {
    font-weight: 400;
    font-size: 16px;
    color: #788498;
    margin: 22px 0 25px;
}

.newsItemInfodecs {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    display: -webkit-box;
    white-space: normal;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* --- 分页器样式 --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    min-width: 40px;
    text-align: center;
}

.page-link:hover {
    border-color: #2871FF;
    color: #2871FF;
}

.page-item.active .page-link {
    background: #2871FF;
    color: #fff;
    border-color: #2871FF;
}

.page-item.disabled .page-link {
    background: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    border-color: #eee;
}

.page-ellipsis {
    padding: 8px 5px;
    color: #999;
    cursor: default;
}