/* 初始化 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


body {
    min-width: 1200px;
    background-color: #fff;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.main-header {
    width: 100%;
    height: 727px;
    position: relative;
}

/* Swiper 背景全屏 */
.headerSwiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.headerSwiper .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 顶部 Logo 和日期区域 */
.header-top-info {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 98%;
}

.header-logo img {
    height: 80px;
    /* 根据实际 logo 大小调整 */
}

.header-date {
    text-align: right;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.8;
}

/* 底部导航栏容器 */
.header-navbar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 1400px;
}

/* 异形白色背景 */
.nav-white-bg {
    width: 1400px;
    /* 根据你提供的图片宽度比例调整 */
    height: 80px;
    margin: 0 auto;
    /* 关键：使用你提供的异形图片作为背景 */
    background: url('../img/navBlue.png') no-repeat center bottom;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 0 5px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    /* 导航间距 */
    padding-top: 10px;
    /* 避开异形背景的弧度 */
}

.nav-item {
    text-decoration: none;
    color: #fff;
    /* color: #333; */
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    width: 135px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
}

.nav-item>a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-item>a>img{
    margin-right: 8px;
    width: 27px;
    height: 25px;
}

/* 默认状态的蓝色横线（隐藏） */
.nav-item::after {
    content: "";
    position: absolute;
    bottom: 7px;
    /* 距离文字底部的距离 */
    left: 50%;
    /* 水平居中 */
    transform: translateX(-50%) scaleX(0);
    /* 居中并缩小到 0 */
    width: 120px;
    /* 横线的宽度，根据图片看大约是文字的一半 */
    height: 5px;
    /* 横线的厚度 */
    background-color: #fff;
    /* 蓝色 */
    border-radius: 3px;
    /* 圆角效果 */
    transition: transform 0.3s ease;
    /* 平滑展开动画 */
}

/* 鼠标悬浮时 和 处于激活状态时（文字变蓝） */
.nav-item:hover,
.nav-item.active {
    /* color: #215EE9; */
}

/* 鼠标悬浮时 和 处于激活状态时（横线显示） */
.nav-item:hover::after,
.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
    /* 恢复到原始宽度 */
}

/* 侧边栏容器 */
.side-nav {
    width: 200px;
    background-color: #fff;
    border-top: 1px solid #eee;
    /* 顶部分割线 */
}

/* --- 二级菜单样式 --- */
.side-submenu {
    position: absolute;
    left: -30px;
    top: 70px;
    width: 180px;
    background-color: #fff;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

/* 鼠标悬浮一级菜单时，显示二级菜单 */
.has-submenu:hover .side-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* 回到原位 */
}

/* 二级菜单项样式 */
.side-submenu a {
    display: block;
    padding: 0 20px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    /* 二级菜单文字不加粗 */
    border-bottom: 1px solid #f5f5f5;
}

.side-submenu a:hover {
    background-color: #EEF4FF;
    color: #215EE9;
}

.side-submenu a:last-child {
    border-bottom: none;
}
/* ====================内容==================== */
.contentBox {
    width: 1200px;
    margin: 0 auto;
}
.inner-news-module {
    margin: 20px auto 60px;
}

/* 面包屑导航 */
.breadcrumb-nav {
    background-color: #EEF4FF;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}
.breadcrumb-nav i { color: #215EE9; margin-right: 8px; }
.breadcrumb-nav a { color: #666; text-decoration: none; }
.breadcrumb-nav .A3 { color: #215EE9; }

/* 布局控制 */
.inner-main-flex {
    display: flex;
    justify-content: space-between;
}

/* --- 左侧侧边栏 --- */
.inner-sidebar {
    width: 260px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 25px 15px;
    min-height: 550px; /* 固定最小高度 */
}

.menu-item {
    display: flex;
    align-items: center;
    height: 55px; /* 卡片高度 */
    padding: 0 20px;
    background-color: #F4F7FB;
    border-radius: 6px;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s;
}

/* 图标颜色处理 */
.menu-item i:first-child { 
    color: #215EE9; 
    margin-right: 15px; 
    font-size: 20px; 
}
.menu-item .arrow { 
    margin-left: auto; 
    font-size: 14px; 
    color: #999; 
}

/* 选中状态样式 */
.menu-item.active {
    background-color: #215EE9;
    color: #fff;
}
.menu-item.active i { color: #fff; } /* 选中时图标变白 */
.menu-item.active .arrow { color: #fff; }

/* 右侧列表容器宽度 */
.inner-content-right {
    width: 900px; /* 侧边栏 260 + 间距 40 + 此处 900 = 1200px */
}

/* 新闻卡片整体 */
.news-card-item {
    display: flex;
    padding: 10px;
    border-bottom: 1px dashed #dbdbdb; 
}

.news-card-item:last-child {
    margin-bottom: 0;
}

/* 图片区域 */
.card-img {
    width: 220px;
    height: 140px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0; /* 防止图片被压缩 */
    margin-right: 25px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文字信息区域 - 使用 Flex 垂直布局 */
.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 第一行：标题和时间 - 使用 Flex 水平分布 */
.info-top {
    display: flex;
    justify-content: space-between; /* 核心：标题靠左，时间靠右 */
    align-items: flex-start;        /* 顶部对齐 */
    margin-bottom: 15px;
}

.info-title {
    margin: 0;
    flex: 1; /* 标题占据剩余空间 */
    padding-right: 20px; /* 与日期保持一点间距 */
}

.info-title a {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}

.info-title a:hover {
    color: #215EE9;
}

/* 时间样式 - 自然流在右侧 */
.info-date {
    font-size: 14px;
    color: #bbb;
    white-space: nowrap; /* 确保日期不换行 */
    padding-top: 5px;    /* 微调日期与标题文字的对齐高度 */
}

/* 描述文字样式 */
.info-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    /* 多行溢出隐藏 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-align: justify;
}

/* --- 分页器 --- */
.inner-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    font-size: 14px;
    color: #888;
}

.total-text { margin-right: 30px; }

.page-nums { display: flex; align-items: center; gap: 6px; }

.page-num, .page-btn {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    text-decoration: none;
    color: #666;
    transition: all 0.2s;
}

.page-num.active {
    background-color: #215EE9;
    color: #fff;
    border-color: #215EE9;
}

.page-num:hover:not(.active), .page-btn:hover {
    border-color: #215EE9;
    color: #215EE9;
}

.page-dot { margin: 0 5px; }

.page-go { margin-left: 30px; }
.page-go input {
    width: 40px;
    height: 32px;
    border: 1px solid #DDD;
    border-radius: 4px;
    text-align: center;
    margin: 0 5px;
    color: #333;
}


/* ===========================脚============================ */
.main-footer {
    width: 100%;
    color: #fff;
}

/* 外层背景 100% 铺满 */
.footer-links-outer {
    width: 100%;
    background-color: #1459c0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 内层容器 1200px 居中 */
.links-content {
    width: 1200px;
    margin: 0 auto;
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* 防止 Swiper 宽度溢出 */
}

.links-label {
    white-space: nowrap;
    font-weight: bold;
    color: #fff;
    margin-right: 20px;
    z-index: 10;
    /* 确保标题在最前 */
}

/* Swiper 实例 */
.footerLinksSwiper {
    flex: 1;
    height: 100%;
    cursor: grab;
}

.footerLinksSwiper:active {
    cursor: grabbing;
}

/* 单个链接滑块 */
.link-item {
    width: auto !important;
    /* 关键：宽度由文字长度决定 */
    display: flex;
    align-items: center;
}

.link-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    white-space: nowrap;
    transition: opacity 0.3s;
    user-select: none;
    /* 防止拖拽时选中文字 */
}

.link-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* --- 版权信息外层（底色铺满） --- */
.footer-info-outer {
    width: 100%;
    background-color: #0d4ba8;
    /* 深蓝色 */
    padding: 20px 0;
}

.info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 徽章 */
.footer-logo-unit img {
    height: 85px;
}

/* 文字区域 */
.footer-text-area {
    flex: 1;
    text-align: center;
    padding: 0 50px;
}

.footer-text-area p {
    font-size: 13px;
    margin: 8px 0;
    line-height: 1.6;
    opacity: 0.8;
}

/* 二维码区域 */
.footer-qr-group {
    display: flex;
    gap: 30px;
}

.qr-box {
    text-align: center;
}

.qr-box img {
    width: 95px;
    height: 95px;
    background: #fff;
    padding: 3px;
    margin-bottom: 8px;
    display: block;
}

.qr-box span {
    font-size: 12px;
    opacity: 0.7;
}