/* News Information CSS */

/* Banner Styles */
.news-banner {
    width: 100%;
    min-width: 1300px;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* News Navigation */
.news-nav-container {
    width: 100%;
    min-width: 1300px;
    background: rgba(245, 248, 251, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-nav {
    width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    justify-content: flex-start;
    align-items: center;
    height: 85px;
    gap: 168px;
}

.news-nav-item {
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    position: relative;
    height: 85px;
    line-height: 85px;
    transition: color 0.3s;
}

.news-nav-item:hover,
.news-nav-item.active {
    color: rgba(1, 92, 171, 1);
    font-weight: 500;
}

.news-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 2px;
    background-color: rgba(1, 92, 171, 1);
}

/* Content Sections */
.news-content {
    background-color: rgba(245, 248, 251, 1);
    padding: 60px 0 50px 0;
    min-width: 1300px;
}

.news-content section {
    display: none;
}

.news-content section.active {
    display: block;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    background-color: #fff;
    padding: 44px 91px 56px 60px;
    gap: 56px;
    transition: box-shadow 0.3s;
    cursor: pointer;
    box-sizing: border-box;
}

.news-item:hover {
    box-shadow: 0px 6px 16px rgba(23, 93, 173, 0.2);
}

.news-image {
    width: 400px;
    height: 240px;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-details {
    width: 694px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-title {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    /* 禁止换行 */
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 显示省略号 */
    margin-bottom: 26px;
}

.news-date {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 14px;
}

.news-desc {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 31px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.news-link {
    width: 120px;
    height: 40px;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.news-link:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(1, 92, 171, 1);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(166, 166, 166, 1);
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s;
    color: rgba(166, 166, 166, 1);
}

.page-link:hover,
.page-link.active {
    color: rgba(23, 93, 173, 1);
    border-color: rgba(23, 93, 173, 1);
}
.prev,.next{
    font-size: 20px;
}