/* 新闻详情容器 */
.news-show-section {
    padding: 60px 0 130px;
    background-color: #f5f5f5;
}

.news-show-container {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    background: #fff;
    padding: 40px 60px;
}

/* 左侧主内容区 */
.news-show-main {
    flex: 1;
    max-width: calc(100% - 360px);
}

/* 文章标题 */
.news-show-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0 0 20px 0;
}
.news-show-content img {
    max-width: 100%;
}

/* 文章元信息 */
.news-show-meta {
    display: flex;
    gap: 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 30px;
}

.news-show-source,
.news-show-date {
    font-size: 14px;
    color: #999;
}

/* 文章内容区 */
.news-show-content {
    color: #666;
    line-height: 1.8;
}

.news-show-image {
    margin-bottom: 30px;
}

.news-show-image img {
    height: auto;
    display: block;
}

.news-show-text {
    font-size: 16px;
}

.news-show-text p {
    margin: 0 0 20px 0;
}

.news-show-text p:last-child {
    margin-bottom: 0;
}

/* 右侧边栏 */
.news-show-sidebar {
    width: 388px;
    border: 1px solid #E5E5E5;
}

/* 侧边栏小部件 */
.news-show-widget {
    background-color: #fff;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 10px;
}
.news-show-widget-pb {
    
    margin-bottom: 0px;
}
/* 小部件标题区 */
.news-show-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin: 0 20px;
    border-bottom: 1px solid #e6e6e6;
}

.news-show-widget-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin: 0;
    position: relative;
    padding-left: 12px;
}

.news-show-widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height:24px;
    background-color: #0168b7;
}

.news-show-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-show-more:hover {
    color: #1E4B93;
}

/* 文章列表 */
.news-show-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding:12px 0;
}

.news-show-list-item {
}

.news-show-list-item:last-child {
    border-bottom: none;
}

.news-show-list-item a {
    display: block;
    padding: 7px 20px;
    font-size: 15px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-show-list-item a:hover {
    color: #1E4B93;
    /* background-color: #F8F9FA; */
    padding-left: 25px;
}

/* 分享按钮区域 */
.news-show-share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    padding: 30px 0;
    margin-top: 40px;
    border-bottom: 1px solid #E5E5E5;
}

.news-show-share-label {
    font-size: 14px;
    color: #666;
}

.news-show-share-buttons {
    display: flex;
    gap: 10px;
}

.news-show-share-btn {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.news-show-share-btn:hover {
    transform: translateY(-3px);
}

.news-show-share-btn svg {
    display: block;
}

/* 上下篇导航 */
.news-show-nav {
    margin-top: 40px;
    margin-bottom: 60px;
    position: relative;
}

.news-show-nav-item {
    display: flex;
    align-items: flex-start;
    padding: 5px 0;
    font-size: 14px;
}

.news-show-nav-label {
    color: #666;
    flex-shrink: 0;
}

.news-show-nav-title {
    color: #999;
}

.news-show-nav-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-show-nav-link:hover {
    color: #1E4B93;
}

/* 返回列表按钮 */
.news-show-nav-back {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background-color: #fff;
    border: 1px solid #1E4B93;
    border-radius: 20px;
    color: #1E4B93;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-show-nav-back:hover {
    background-color: #1E4B93;
    color: #fff;
}

.news-show-nav-back svg {
    display: block;
}

@media (max-width: 1440px) {
    .news-show-title {
        font-size:30px;
    }
    .news-show-meta {
        gap: 20px;
        padding: 0 0 20px;
    }
    .news-show-nav {
        margin-top: 30px;
        margin-bottom: 40px;
        position: relative;
    }
}
@media (max-width: 1200px) {
    .news-show-title {
        font-size: 26px;
    }
}
@media (max-width: 1024px) {
    .news-show-title {
        font-size: 22px;
    }
    .news-show-container {
        flex-direction: column;
    }

    .news-show-main {
        max-width: 100%;
    }

    .news-show-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .news-show-title {
        font-size: 19px;
    }
    .news-show-section {
        padding: 30px 0;
    }

    .news-show-title {
        font-size: 24px;
    }

    .news-show-meta {
        flex-direction: column;
        gap: 4px;
        margin-bottom:18px;
    }

    .news-show-text {
        font-size: 15px;
    }

    .news-show-widget-title {
        font-size: 16px;
    }

    .news-show-share {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-show-nav {
        padding: 0px;
        margin-top: 10px;
        margin-bottom:10px;
    }
    .news-show-widget {
        margin-bottom: 10px;
    }
    .news-show-nav-back {
        position:relative;
        transform: none;
        margin-top: 20px;
        margin-bottom: 20px;
        width:inherit;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }

    .news-show-nav-item {
        flex-direction: column;
        gap: 5px;
    }
    .news-show-container {
        gap: 30px;
        align-items: flex-start;
        background: #fff;
        padding: 20px;
    }
    .news-show-title {
        font-size:18px;
        margin-bottom: 10px;
    }
    .news-show-text p {
        margin: 0 0 10px 0;
    }
}

