/* News Details 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;
}


/* Breadcrumb */
.breadcrumb-section {
    width: 100%;
    min-width: 1300px;
    background-color: #fff;
    height: 50px;
}

.breadcrumb {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 50px;
    color: rgba(0, 0, 0, 0.5);
    height: 50px;
}

.breadcrumb a {
    text-decoration: none;
    /* color: #666; */
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb a:hover {
    color: rgba(23, 93, 173, 1);
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb .current {
    color: rgba(23, 93, 173, 1);
    font-weight: 500;
}

/* News Detail Content */
.news-detail-section {
    padding: 50px 0 85px 0;
    background-color: rgba(245, 248, 251, 1);
    min-width: 1300px;
}

.news-detail-content {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 1);
    padding: 60px 50px 33px 50px;
}

.detail-title {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-bottom: 14px;
}

.detail-date {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 32px;
    color: rgba(0, 0, 0, 0.3);
    text-align: center;
    width: calc(100% - 100px);
    margin: 0 auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
    margin-bottom: 35px;
}

.detail-body {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 34px;
    color: rgba(0, 0, 0, 0.7);
}

.detail-body h4 {
    margin-top: 40px;
}

/* Navigation Links (Prev/Next) */
.news-nav-links {
    width: 100%;
    margin-top: 71px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.news-nav-links a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    overflow: hidden;
    /* 超出隐藏 */
    text-overflow: ellipsis;
    /* 显示省略号 */
    border: 1px solid #000;
    border: none;
    display: block;
}

.news-nav-links a:hover {

    color: rgba(23, 93, 173, 1);
}