@charset "utf-8";

@font-face {
	font-family: 'iconfont';
	src: url('/fonticon/iconfont.woff2?t=1686537789806') format('woff2'),
		url('/fonticon/iconfont.woff?t=1686537789806') format('woff'),
		url('/fonticon/iconfont.ttf?t=1686537789806') format('truetype');
}

/* 专题专栏 */
.special-box { 
    padding: 0px 0px 34px 0px; 
    margin-top: 0px;
}
.special-box .title {
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
    font-size: 18px;
    padding: 15px 0;
    padding-left: 15px;
}
.special-box .title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 15px;
    background: #2E78C9;
    border-radius: 2px;
}
.topics-swiper { overflow: hidden; }
.topics-swiper .swiper-container { width: 100%; overflow: hidden; }
.topics-swiper .swiper-slide {
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.topics-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.topics-swiper .swiper-button-prev,
.topics-swiper .swiper-button-next { color: #666; }
.topics-swiper .swiper-button-prev:hover,
.topics-swiper .swiper-button-next:hover { color: #2E78C9; }

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ===== 基础样式重置 ===== */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* 强制最小宽度，覆盖所有其他规则 */
html, body {
    min-width: 1600px !important;
    overflow-x: auto !important;
}

.container {
    min-width: 1600px !important;
}

/* 确保所有主要容器都有最小宽度 */
.top, .banner, .nav,  .footer {
    min-width: 1600px !important;
}
body {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-family: "微软雅黑", "黑体";
	color: #898989;
	line-height: 1;
	background: rgb(246, 249, 254);
	min-width: 1600px; /* 添加这一行 */
    overflow-x: auto; /* 添加这一行，允许水平滚动 */
}
html {
    min-width: 1600px !important;
    overflow-x: auto !important;
}
/* 重置默认样式 */
ul, li, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, ol, form, input {
	margin: 0;
	padding: 0;
}

ul, li {
	list-style: none;
}

input, textarea {
	font-family: "微软雅黑";
	border: none;
	outline: none;
	background: none;
}

img {
	border: 0;
	padding: 0;
	display: block;
}

a {
	color: #5c5c5c;
	text-decoration: none;
}

h2, h3, h4, b, strong {
	font-weight: normal;
}

em, i {
	font-style: normal;
}

/* ===== 动画效果 ===== */
@keyframes enter {
	0% {
		width: 0;
		background: rgba(0, 0, 0, 0);
		transform: translate(-50%, -50%) scale(0);
	}
	50% {
		width: 50%;
		background: rgba(0, 0, 0, 0.15);
		transform: translate(-50%, -50%) scale(0.5);
	}
	100% {
		width: 150%;
		background: rgba(0, 0, 0, 0);
		transform: translate(-50%, -50%) scale(1);
	}
}


/* ===== 通用下拉菜单工具类 ===== */
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 200px;
	height: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	border: 1px solid #e0e0e0;
	padding: 8px 0;
	overflow: visible;
}
.dropdown-menu ul{
	display: block !important;
	position: relative;
	width: 100% !important;
	padding: 0;
	margin: 0;
	list-style: none;
}
.dropdown-menu li {
	padding: 0;
	border-bottom: 1px solid #f0f0f0;
	display: block;
	width: 100%;
	margin: 0;
	list-style: none;
}

.dropdown-menu li:last-child {
	border-bottom: none;
}

.dropdown-menu li a {
	color: #333;
	font-size: 14px;
	font-weight: normal;
	padding: 12px 20px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1.4;
}

.dropdown-menu li a:hover {
	color: #0d5eff;
	background: rgba(13, 94, 255, 0.05);
}

/* 悬停显示下拉菜单 */
.dropdown-trigger:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 下拉箭头 */
.dropdown-arrow::after {
	content: '▼';
	font-size: 10px;
	margin-left: 5px;
	color: #999;
	transition: transform 0.3s ease;
}

.dropdown-trigger:hover .dropdown-arrow::after {
	transform: rotate(180deg);
	color: #0d5eff;
}

/* 强制主导航下拉菜单垂直排列 - 最高优先级 */
.top .nav ul li .dropdown {
	display: block !important;
	width: auto !important;
	min-width: 200px !important;
	height: auto !important;
	overflow: visible !important;
}

.top .nav ul li .dropdown ul {
	display: block !important;
	width: 100% !important;
	padding: 0 !important;
	margin: 0 !important;
	list-style: none !important;
	height: auto !important;
	overflow: visible !important;
}

.top .nav ul li .dropdown li {
	display: block !important;
	width: 100% !important;
	float: none !important;
	clear: both !important;
	position: relative !important;
	padding: 0 !important;
	height: auto !important;
	margin: 0 !important;
	list-style: none !important;
	line-height: normal !important;
	overflow: visible !important;
}

/* 确保下拉菜单内容能够撑开容器 */
.top .nav ul li .dropdown,
.news-box2 .title-tab ul li .category-dropdown,
.dropdown-menu {
	/* 移除可能限制高度的属性 */
	max-height: none !important;
	overflow: visible !important;
	white-space: normal !important;
	text-overflow: initial !important;
}

/* 确保菜单项能够正常显示 */
.top .nav ul li .dropdown li,
.news-box2 .title-tab ul li .category-dropdown li,
.dropdown-menu li {
	/* 确保每个菜单项都能正常显示 */
	min-height: auto !important;
	max-height: none !important;
	overflow: visible !important;
	white-space: normal !important;
}

/* 确保链接能够正常显示 */
.top .nav ul li .dropdown li a,
.news-box2 .title-tab ul li .category-dropdown li a,
.dropdown-menu li a {
	/* 确保链接内容能够正常显示 */
	min-height: auto !important;
	max-height: none !important;
	overflow: visible !important;
	white-space: normal !important;
	text-overflow: initial !important;
}
.clear {
	zoom: 1;
}

.clear:after {
	content: '';
	display: block;
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.hidden {
	display: none;
	background: url() no-repeat center;
}

.w1300 {
	width: 1300px;
	margin: 0 auto;
}

/* ===== 主要布局 ===== */
.top {
	background: url('/images/benner-bg.png') repeat-x center center;
	width: 100%;
	height: 1014px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
}

.top .header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}

.top .header .header-logo {
	width: 100px;
}

.top .header .header-tools {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}

.top .header .header-tools .links ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}

.top .header .header-tools .links ul li a {
	color: #021f58;
	font-size: 16px;
}

.top .header .header-tools .links ul li:last-child {
	margin-left: 20px;
}

.top .nav {
	/* background: -ms-linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.7) 100%); */
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.889) 100%);
	border-radius: 10px;
	margin-bottom: 50px;
}

.top .nav ul {
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 60px;
}

.top .nav ul li {
	position: relative;
	padding: 0 20px;
	height: 100%;
	display: flex;
	align-items: center;
}

.top .nav ul li a {
	color: #021f58;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	padding: 12px 16px;
	display: block;
	width: 100%;
}

.top .nav ul li:hover a {
	color: #0d5eff;
}

/* 激活状态 - 简单底部边框 */
.top .nav ul li.active {
	border-bottom: 3px solid #0d5eff;
}

.top .nav ul li.active a {
	color: #0d5eff;
	font-weight: bold;
}

/* 二级分类下拉菜单 */
.top .nav ul li .dropdown {
	position: absolute;
	top: 106%;
	left: 0;
	background: #ffffffDD;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%,  rgba(255, 255, 255, 1) 100%);
	min-width: 200px;
	height: auto;
	/* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) ; */
	border-radius: 6px;
	/* border-top-right-radius: 0px;
	border-top-left-radius: 0px; */
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000; 
	padding: 8px 0;
}

.top .nav ul li:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* 下拉菜单项 - 确保每行一个 */
.top .nav ul li .dropdown li {
	position: relative;
	padding: 0;
	height: auto;
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	list-style: none;
	float: none !important;
	clear: both !important;
}

.top .nav ul li .dropdown li a {
	color: #333;
	font-size: 16px;
	font-weight: normal;
	padding: 12px 20px;
	display: block !important;
	width: 100% !important;
	box-sizing: border-box; 
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1.4;
	float: none !important;
}

.top .nav ul li .dropdown li:last-child a {
	border-bottom: none;
}

.top .nav ul li .dropdown li a:hover {
	color: #0d5eff;
	background: rgba(13, 94, 255, 0.05);
}

/* 三级分类（如果有） */
.top .nav ul li .dropdown li .sub-dropdown {
	position: absolute;
	left: 100%;
	top: 0;
	background: #fff;
	min-width: 180px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: all 0.3s ease;
	z-index: 1001;
	border: 1px solid #e0e0e0;
	padding: 8px 0;
}

.top .nav ul li .dropdown li:hover .sub-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* 三级菜单项 */
.top .nav ul li .dropdown li .sub-dropdown li {
	padding: 0;
	display: block;
	width: 100%;
	margin: 0;
	list-style: none;
}

.top .nav ul li .dropdown li .sub-dropdown li a {
	color: #333;
	font-size: 13px;
	font-weight: normal;
	padding: 10px 16px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-bottom: 1px solid #f0f0f0;
	transition: all 0.2s ease;
	text-decoration: none;
}

.top .nav ul li .dropdown li .sub-dropdown li:last-child a {
	border-bottom: none;
}

.top .nav ul li .dropdown li .sub-dropdown li a:hover {
	color: #0d5eff;
	background: rgba(13, 94, 255, 0.05);
}

/* 下拉菜单箭头指示器 */
.top .nav ul li.has-dropdown > a::after {
	content: '▼';
	font-size: 10px;
	margin-left: 5px;
	color: #999;
	transition: transform 0.3s ease;
}

.top .nav ul li.has-dropdown:hover > a::after {
	transform: rotate(180deg);
	color: #0d5eff;
}

.top .news-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
}

.top .news-box .left {
	max-width: 600px;
	flex-shrink: 0;
}

.top .news-box .left .foucs {
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
}

.top .news-box .left .foucs .focus-swiper {
	width: 100%;
	height: 100%;
}

.top .news-box .left .foucs .focus-swiper .swiper-container {
	width: 100%;
	height: 100%;
}

.top .news-box .left .foucs .focus-swiper .swiper-slide {
	position: relative;
	width: 100%;
	height: 100%;
}

.top .news-box .left .foucs .focus-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.top .news-box .left .foucs .focus-swiper .swiper-slide .focus-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: -ms-linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	padding: 20px;
	color: #fff;
}

.top .news-box .left .foucs .focus-swiper .swiper-slide .focus-content .focus-title {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 8px 0;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.top .news-box .left .foucs .focus-swiper .swiper-slide .focus-content .focus-desc {
	font-size: 14px;
	margin: 0;
	opacity: 0.9;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.top .news-box .left .foucs .focus-swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	width: 8px;
	height: 8px;
}

.top .news-box .left .foucs .focus-swiper .swiper-pagination-bullet-active {
	background: #0d5eff;
}

.top .news-box .left .foucs .focus-swiper .swiper-button-prev,
.top .news-box .left .foucs .focus-swiper .swiper-button-next {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
	width: 40px;
	height: 40px;
	margin-top: -20px;
}

.top .news-box .left .foucs .focus-swiper .swiper-button-prev:after,
.top .news-box .left .foucs .focus-swiper .swiper-button-next:after {
	font-size: 20px;
}

.top .news-box .right {
	flex: 1;
	min-width: 0;
}

.top .news-box .right .news-head {
	font-weight: bold;
	font-size: 22px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 20px;
	padding: 5px 0px 15px 0;
	border-bottom: 2px solid #ffffff;
	margin-bottom: 8px;
}

.top .news-box .right .news-head span {
	float: right;
}

.top .news-box .right .news-head span a {
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
}

.top .news-box .right .news-top-list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 35px;
	margin-top: 15px;
}

.top .news-box .right .news-top-list .date-block {
	width: 65px;
	height: 60px;
	margin-top: 5px;
	text-align: center;
	background: -ms-linear-gradient(360deg, #ffffff 0%, #c3ddff 95%);
	background: linear-gradient(360deg, #ffffff 0%, #c3ddff 95%);
}

.top .news-box .right .news-top-list .date-block .day {
	font-size: 16px;
	font-weight: bold;
	color: #0d44b1;
	border-bottom: #0d44b18f 1px solid;
	line-height: 30px;
}

.top .news-box .right .news-top-list .date-block .month {
	font-size: 13px;
	font-weight: bold;
	color: #0d44b1;
	line-height: 30px;
}

.top .news-box .right .news-top-list .news-content {
	margin-left: 10px;
	flex: 1;
	min-width: 0;
}

.top .news-box .right .news-top-list .news-content .news-title {
	padding: 10px 0;
	padding-bottom: 15px;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.top .news-box .right .news-top-list .news-content .news-abstract {
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	color: #ffffffAA;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.top .news-box .right .news-list {
	margin-top: 16px;
}

.top .news-box .right .news-list ul {
	margin: 0;
	padding: 0;
}

.top .news-box .right .news-list ul li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
}

.top .news-box .right .news-list ul li:last-child {
	border-bottom: none;
}

.top .news-box .right .news-list ul li a {
	order: 1;
	flex: 1;
	color: #ffffff;
	font-size: 17px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 3PX;
}

.top .news-box .right .news-list ul li span {
	order: 2;
	flex: none;
	color: #ffffff;
	font-size: 14px;
	margin-left: 12px;
	opacity: 0.9;
	white-space: nowrap;
	text-align: right;
}

.top .news-box .right .news-list ul li:hover a {
	color: #cfe1ff;
	text-decoration: underline;
}
 

/* Policy Box 专用样式 */
.policy-box .title-tab {
	background-color: #E0EEF9;
}

.policy-box .title-tab ul li {
	background: #E0EEF9;
	color: #666; 
	margin-right: 2px;
	position: relative;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.policy-box .title-tab ul li:hover {
	color: #2E78C9;
}

.policy-box .title-tab ul li.active {
	background: #2E78C9;
	color: #fff;
}

.policy-box .title-tab ul li.active::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #2E78C9;
	z-index: 10;
}

.policy-box .news-list ul li {
	background: none;
	padding-left: 15px;
	position: relative;
}

.policy-box .news-list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: #999; 
}

.policy-box .news-list ul li span {
	order: 2;
	width: 100px;
	text-align: right;
	color: #666;
	font-size: 13px;
}

/* 移除:has()选择器，使用通用样式替代 */
.policy-box .news-list ul li {
	display: flex;
	align-items: center;
	color: #333;
	font-size: 16px;
	line-height: 1.4;
	cursor: pointer;
	transition: color 0.3s ease;
}

.policy-box .news-list ul li:hover {
	color: #0a3589;
}

/* News Notice 样式 */
.news-notice {
	background: #fff;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.news-notice .notice-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid #2E78C9;
}

.news-notice .notice-header .notice-title {
	font-size: 18px;
	font-weight: bold;
	color: #2E78C9;
	margin: 0;
}

.news-notice .notice-header .more-link {
	color: #999;
	font-size: 14px;
	text-decoration: none;
}

.news-notice .notice-header .more-link:hover {
	color: #2E78C9;
	text-decoration: underline;
}

.news-notice .notice-list .notice-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}

.news-notice .notice-list .notice-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.news-notice .notice-list .notice-item .date-block {
	flex-shrink: 0;
	width: 60px;
	background: #E0EEF9; 
	padding: 8px 6px;
	text-align: center;
	margin-right: 15px;
}

.news-notice .notice-list .notice-item .date-block .day {
	font-size: 20px;
	font-weight: bold;
	color: #2E78C9;
	line-height: 1;
	margin-bottom: 2px;
}

.news-notice .notice-list .notice-item .date-block .month {
	font-size: 12px;
	color: #666;
	line-height: 1;
}

.news-notice .notice-list .notice-item .notice-content {
	flex: 1;
	min-width: 0;
}

.news-notice .notice-list .notice-item .notice-content a {
	color: #333;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
}

.news-notice .notice-list .notice-item .notice-content a:hover {
	color: #2E78C9;
}

/* ===== 搜索框和轮播 ===== */
.banner {
	position: relative;
	padding: 160px;
}

.benner-swiper {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.benner-swiper .swiper-container {
	width: 100%;
	height: 1014px;
}

.benner-swiper .swiper-slide {
	width: 100%;
	height: 100%;
}

.benner-swiper .swiper-slide img {
	width: 100%;
	height: 1014px;
	object-fit: cover;
	display: block;
}

.benner-swiper .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.8);
	opacity: 1;
}

.benner-swiper .swiper-pagination-bullet-active {
	background: #0d5eff;
}

.benner-swiper .swiper-button-prev,
.benner-swiper .swiper-button-next {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* 保持大图高度固定为 1014 */


.search-box {
	width: 100%;
	padding: 0 20px;
}

.search {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	height: 56px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.search-icon {
	color: #bdbdbd;
	font-size: 22px;
	margin-left: 18px;
}

.search-input {
	flex: 1;
	height: 100%;
	padding: 0 16px;
	font-size: 16px;
	color: #333;
}

.search-input::placeholder {
	color: #bdbdbd;
}

.search-btn {
	height: 100%;
	padding: 0 28px;
	background: -ms-linear-gradient(90deg, #0d5eff 0%, #1160ff 100%);
	background: linear-gradient(90deg, #0d5eff 0%, #1160ff 100%);
	color: #fff;
	font-size: 16px;
	border: none;
	cursor: pointer;
	white-space: nowrap;
}

.search-btn:hover {
	filter: brightness(1.03);
}

/* 圆角按钮右上阴影突出效果 */
.search {
	position: relative;
}

.search:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 140px;
	height: 100%;
	background: -ms-linear-gradient(90deg, rgba(13, 94, 255, 0) 0%, rgba(13, 94, 255, 0.1) 60%, rgba(13, 94, 255, 0.15) 100%);
	background: linear-gradient(90deg, rgba(13, 94, 255, 0) 0%, rgba(13, 94, 255, 0.1) 60%, rgba(13, 94, 255, 0.15) 100%);
	pointer-events: none;
	border-top-right-radius: 12px;
	border-bottom-right-radius: 12px;
}


@media (max-width: 768px) {
	.search {
		height: 48px;
	}

	.search-btn {
		padding: 0 18px;
		font-size: 14px;
	}
}



.news-box2 {
	background: #fff;
	padding: 20px; 
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.news-box2 .title-tab {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 0px;
	margin-bottom: 20px;
}

.news-box2 .title-tab ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-box2 .title-tab ul li {
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	padding: 12px 20px;
	border-bottom: 3px solid transparent;
	color: #666;
	position: relative;
	margin-bottom: -1px;
}

.news-box2 .title-tab ul li:hover {
	color: #1765B6;
}

.news-box2 .title-tab ul li.active {
	color: #ffffff;
	background-color: #1765B6;
	border-bottom-color: #1765B6;
	font-weight: bold;
}

/* 新闻分类下拉菜单 */
.news-box2 .title-tab ul li .category-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 180px;
	height: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	border: 1px solid #e0e0e0;
	padding: 8px 0;
	overflow: visible;
}

.news-box2 .title-tab ul li:hover .category-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.news-box2 .title-tab ul li .category-dropdown li {
	padding: 0;
	border-bottom: 1px solid #f0f0f0;
	display: block;
	width: 100%;
	margin: 0;
	list-style: none;
}

.news-box2 .title-tab ul li .category-dropdown li:last-child {
	border-bottom: none;
}

.news-box2 .title-tab ul li .category-dropdown li a {
	color: #333;
	font-size: 14px;
	font-weight: normal;
	padding: 10px 16px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	transition: all 0.2s ease;
	text-decoration: none;
	line-height: 1.4;
}

.news-box2 .title-tab ul li .category-dropdown li a:hover {
	color: #1765B6;
	background: rgba(23, 101, 182, 0.05);
}

.news-box2 .title-tab .more .more-link {
	color: #0846c2;
	font-size: 14px;
	text-decoration: none;
	font-weight: normal;
}

.news-box2 .title-tab .more .more-link:hover {
	text-decoration: underline;
}

.news-box2 .news-list {
	margin-top: 0;
	padding-left: 5px;
}

.news-box2 .news-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-box2 .news-list ul li {
	display: flex;
	align-items: center;
	padding: 12px 0; 
	transition: background-color 0.3s ease;
	background: url('/images/dot.png') no-repeat left center;
	padding-left: 20px;
}

.news-box2 .news-list ul li:last-child {
	border-bottom: none;
}

.news-box2 .news-list ul li a {
	flex: 1;
	color: #333;
	font-size: 18px;
	text-decoration: none;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-right: 15px;
}

.news-box2 .news-list ul li a:hover {
	color: #0a3589; 
}

.news-box2 .news-list ul li span {
	flex-shrink: 0;
	width: 100px;
	text-align: right;
	color: #999;
	font-size: 16px;
	order: 2;
}

.news-box2 .tab-content {
	display: none;
}

.news-box2 .tab-content.active {
	display: block;
}

.news-box2 .video-section .featured-video {
	position: relative; 
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.news-box2 .video-section .featured-video img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.news-box2 .video-section .featured-video .video-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: -ms-linear-gradient(transparent, rgba(0,0,0,0.7));
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	padding: 15px;
	color: #fff;
}

.news-box2 .video-section .featured-video .video-overlay h3 {
	margin: 0;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
}



/* News Notice 样式 - 优化版本 */
.news-notice {
	background: #fff;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.news-notice .notice-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 13px;
	line-height: 25px;
	padding-bottom: 10px;
	border-bottom: 3px solid #2E78C9;
}

.news-notice .notice-header .notice-title {
	font-size: 18px;
	font-weight: bold;
	color: #2E78C9;
	margin: 0;
}

.news-notice .notice-header .more-link {
	color: #999;
	font-size: 14px;
	text-decoration: none;
}

.news-notice .notice-header .more-link:hover {
	color: #2E78C9;
	text-decoration: underline;
}

.news-notice .notice-list .notice-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 11px;
	padding: 15px 15px;
 
	border-bottom: 1px solid #f0f0f0;
}

.news-notice .notice-list .notice-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.news-notice .notice-list .notice-item .date-block {
	flex-shrink: 0;
	width: 60px;
	background: #E0EEF9; 
	padding: 8px 6px;
	text-align: center;
	margin-right: 15px;
}

.news-notice .notice-list .notice-item .date-block .day {
	font-size: 20px;
	font-weight: bold;
	color: #2E78C9;
	line-height: 1;
	margin-bottom: 5px;
}

.news-notice .notice-list .notice-item .date-block .month {
	font-size: 12px;
	color: #666;
	line-height: 1;
}

.news-notice .notice-list .notice-item .notice-content {
	flex: 1;
	min-width: 0;
}

.news-notice .notice-list .notice-item .notice-content a {
	color: #333;
	font-size: 18px;
	line-height: 1.6;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
}

.news-notice .notice-list .notice-item .notice-content a:hover {
	color: #2E78C9;
}

/* ===== 页脚样式 ===== */
.footer {
    background: #006DDB;
    padding: 40px 20px;  
}

.footer .footer-content {
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 24px;
}

.footer .links {
    text-align: right;
	padding-top: 30px;
}

.footer .links ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.footer .links ul li {
	margin-left: 20px;
	width: 100px;
	text-align: center;
	line-height: 24px;
}

.footer .links ul li .img {
	width: 100px;
	height: 100px;
}

.footer .links ul li .text {
	color: #fff;
	font-size: 16px;
	line-height: 35px;
	font-weight: bold;
}

.footer .company-name {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: bold;
	text-align: left;
	padding: 20px 0;
}

.footer-content{
	text-align: left;
	font-family: '微软雅黑';
}

.footer .ftext {
	color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 24px;
	text-align: left;
	padding: 5px 0;
}

.footer .ftext a {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 24px;
}

.body{
	background: url(/images/footerbg.png) no-repeat center bottom;
	background-size: 100% auto;
}

/* ===== 公众号二维码弹出层样式 ===== */
.wechat-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.wechat-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.wechat-modal-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wechat-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.wechat-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.wechat-modal-close:hover {
    color: #333;
}

.wechat-modal-body {
    padding: 30px 20px;
    text-align: center;
}

.wechat-qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wechat-qr-code {
    width: 200px;
    height: 200px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wechat-tip {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 480px) {
    .wechat-modal-content {
        width: 95%;
        margin: 20% auto;
    }
    
    .wechat-qr-code {
        width: 150px;
        height: 150px;
    }
    
    .wechat-modal-header {
        padding: 15px;
    }
    
    .wechat-modal-body {
        padding: 20px 15px;
    }
}