/* ===================== 全局基础布局 ===================== */
/* 页面外层容器 */
.news-page-wrap {
    width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* 左右布局容器 */
        .news-layout-row{
            display: flex;
            gap: 30px;
        }
        /* 右侧新闻区域自适应剩余宽度 */
        .news-content-right{
            flex: 1;
        }
      
/* ===================== 顶部面包屑+搜索栏 ===================== */
.news-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 32px;
    gap: 20px;
}
/* 隐藏废弃Tab */
.news-tab-group,
.news-tab-item {
    display: none !important;
}
/* 面包屑 字号14px */
.news-breadcrumb {
    font-size: 14px;
    color: #4b5563;
    letter-spacing: 0.3px;
    word-break: break-all;
}
.news-breadcrumb a {
    color: #0046ad;
    text-decoration: none;
    transition: color 0.2s;
}
.news-breadcrumb a:hover {
    color: #003380;
    text-decoration: underline;
}

/* ===================== 新闻列表主体内容 ===================== */
.news-main-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
/* 新闻条目 左图右文 */
.news-card-row {
    display: flex;
    gap: 28px;
    padding: 24px 8px;
    margin: 0 -8px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: background 0.2s;
}
.news-card-row:hover {
    background-color: #f9fafb;
}
.news-card-row:last-child {
    border-bottom: none;
}
/* 新闻缩略图 */
.news-card-img {
    width: 220px;
    height: 160px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.news-card-row:hover .news-card-img img {
    transform: scale(1.04);
}
/* 文字内容区域 */
.news-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* 新闻标题 固定18px */
.news-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
    line-height: 1.4;
}
.news-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.news-card-title a:hover {
    color: #0046ad;
}
/* 日期 字号14px */
.news-card-date {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 16px;
}
.news-card-date::before {
    content: "🕒";
    margin-right: 8px;
}
/* 简介 固定14px */
.news-card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
}

/* ===================== 分页样式 ===================== */
.page ul {
    display: inline-block;
    margin: 0 auto;
}
.page li {
    line-height: 30px;
    display: inline-block;
    border: 1px solid #ddd;
    float: left;
    cursor: pointer;
    margin: 3px -1px 3px 0;
    padding: 0 10px;
}
.page li a {
    line-height: 30px;
    height: 30px;
    display: block;
}
.page li.thisclass {
    color: #fff;
    background-color: #004684;
    line-height: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #004684;
}
.page ul li.thisclass a,
.page ul li.thisclass a:hover {
    color: #fff;
    background-color: #004684;
    line-height: 30px;
    height: 30px;
    padding: 0;
}
.page li:hover {
    color: #fff;
    background-color: #004684;
    border: 1px solid #004684;
}
.page li:hover a {
    color: #fff;
}

/* ===================== 回到顶部按钮 ===================== */
#fix-nav {
    display: none;
}
.fix-nav {
    position: fixed;
    right: 30px;
    bottom: 40px;
    z-index: 999;
}
.fix-nav-wrap {
    width: 46px;
    height: 46px;
    background: #0046ad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 70, 173, 0.25);
}
.i-totop {
    width: 22px;
}

/* ===================== 侧边栏样式（栏目导航+在线客服） ===================== */
.main_left {
    width: 220px;
    flex-shrink: 0;
    background: #ffffff;
    overflow: hidden;
}
/* 侧边栏板块深蓝色标题栏 */
.left_block_title {
    background-color: #0046ad;
    padding: 10px 10px;
}
.left_block_title h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: normal;
}
/* 栏目导航菜单 */
.sidebar_menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar_menu li {
    padding: 10px 10px;
    border-bottom: 1px dashed #cccccc;
}
.sidebar_menu li:last-child {
    border-bottom: none;
}
.sidebar_menu li a {
    font-size: 14px;
    color: #555555;
    text-decoration: none;
    display: block;
}
/* 当前栏目高亮 */
.sidebar_menu li a.active {
    color: #0046ad;
}
/* 在线客服区块 */
.service_box {
    margin-top: 10px;
}
.service_item {
    padding: 10px 10px;
    border-bottom: 1px dashed #cccccc;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.service_item:last-child {
    border-bottom: none;
}
.service_icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.service_text {
    flex: 1;
}
.service_text h4 {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: normal;
}
.service_text p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ===================== 移动端适配 统一768px ===================== */
@media screen and (max-width: 768px) {
    /* 页面容器 */
    .news-page-wrap {
        width: 96%;
    }
    /* 顶部面包屑搜索竖排 */
    .news-top-bar {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    .search-input {
        width: 240px;
        height: 46px;
    }
    .search-btn {
        height: 46px;
        width: 60px;
        font-size: 20px;
    }
    /* 新闻卡片上下排列 */
    .news-card-row {
        flex-direction: column;
        gap: 16px;
        padding: 18px 0;
    }
    .news-card-img {
        width: 100%;
        height: 200px;
    }
    .news-main-box {
        padding: 18px;
    }
    /* 侧边栏移动端铺满 */
    .main_left {
        display:none;
    }
	.news-layout-row{
                flex-direction: column;
            }

}