body {
	margin: 0;
	position: relative;
	overflow-x: hidden;
	font-size: 14px;
	font-family: "Microsoft Yahei", "SimHei", sans-serif, sans-serif, Arial, Helvetica !important;
	color: #333
}

article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary {
	display: block
}

h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

h1,h2,h3,h4,h5,h6,ol,ul,li,div,span,p {
	margin: 0;
	padding: 0;
	border: 0;
}

ol,ul,li {
	list-style: none
}

a {
	color: #333;
	background-color: transparent;
	-webkit-tap-highlight-color: transparent;
	text-decoration: none;
}

a:active,
a:hover {
	outline: 0;
	text-decoration: none
}

a:hover {
	color: #d23626
}

.bz_clear {
	height: 0px;
	clear: both;
	font-size: 1px;
	overflow: hidden;
}

body {}

header {
	position: fixed;
	/* position: absolute; */
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 40px 40px 0 40px;
	height: 160px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	background: url(../images/site_topnavbg.png) top center no-repeat;
}

header .bz_b {
	position: relative;
	width: 1240px;
}

header .bz_b_top {
	position: absolute;
	top: -4px;
	right: 0;
	display: flex;
	justify-content: space-between;
}

header .bz_b_top .link_list {
	display: flex;
	height: 36px;
	line-height: 1;
	align-items: center;
}

header .bz_b_top .link_list ul {
	display: flex;
}

header .bz_b_top .link_list ul li {
	color: #fff;
	font-size: 16px;
	padding: 0 15px;
	position: relative;
	display: flex;
	align-items: center;
	line-height: 1;
	letter-spacing: 2px;
}

header .bz_b_top .link_list ul li::after {
	content: "";
	position: absolute;
	height: 100%;
	width: 6px;
	right: -3px;
	top: 0;
	background: url(../img/line01.png) center center no-repeat;

}

header .bz_b_top .link_list ul li:last-child::after {
	display: none;
}

header .bz_b_top .link_list ul li a {
	color: #fefeff;
}

header .bz_b_top .link_btn {
	margin-left: 30px;
	display: flex;
}

header .bz_b_top .link_btn .english_site {

	box-sizing: border-box;
	width: 60px;
	height: 32px;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	line-height: 1;
}

header .bz_b_top .link_btn .english_site a {
	font-size: 16px;
	color: #fefeff;

}

header .bz_b_top .link_btn img {
	display: flex;
}

header .bz_b_top .link_btn .search {
	display: flex;
	height: 36px;
	align-items: center;
	margin: 0 20px;
}

header .bz_b_top .link_btn .right_nav {
	display: flex;
	height: 36px;
	align-items: center;
	cursor: pointer;
}

header .bz_b .bz_b_bottom {
	position: absolute;
	right: 0;
	top: 50px;
}

header .bz_b .bz_b_bottom ul {
	display: flex;
}

header .bz_b .bz_b_bottom ul li {
	margin-left: 36px;
	line-height: 1;
	position: relative;
	font-weight: bold;
}

header .bz_b .bz_b_bottom ul li a {
	font-size: 18px;
	color: #fefeff;
	font-weight: bold;
    position: relative; /* 确保层级 */
    z-index: 10001; /* 确保在一级菜单中位于最上层，高于 sub_ul */
}


/* 移除 ::before 的绝对定位 top:0，改为 border-top */
header .bz_b .bz_b_bottom ul li .sub_ul {
	width: 120px;
	position: absolute;
	top: 45px; /* 下移，避免遮挡一级菜单 */
	left: 50%;
	margin-left: -60px;
	z-index: 9999;
	display: none;
	box-sizing: border-box;
    /* border-top: 2px solid #fbc641; 移除顶部黄色边框 */
	background-color: rgba(0, 72, 155, 0.8);
}

/* 移除冲突的 ::before */
/* header .bz_b .bz_b_bottom ul li .sub_ul::before {
	width: 100%;
	content: "";
	height: 2px;
	background-color: #fbc641;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 99;
} */

/* PC端二级菜单顶部小箭头 */
header .bz_b .bz_b_bottom ul li .sub_ul::after {
	content: "";
	position: absolute;
	top: -6px; /* 紧贴顶部边框下方 */
	left: 50%;
	margin-left: -6px; /* 居中 */
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgba(0, 80, 179, 0.95); /* 恢复背景色，与 .sub_ul 背景一致 */
	z-index: 10000; /* 提高 z-index */
    pointer-events: none; /* 避免遮挡交互 */
}

/* 原有的背景遮罩改为使用 background-color */
header .bz_b .bz_b_bottom ul li .sub_ul {
	background-color: rgba(0, 72, 155, 0.8);
}

/* 移除原有的伪元素背景，避免冲突 */
/* header .bz_b .bz_b_bottom ul li .sub_ul::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #00489b;
	opacity: .8;
	z-index: 0;
	overflow: hidden;
} */

header .bz_b .bz_b_bottom ul li .sub_ul p {
	height: 41px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #fff;
	justify-content: center;
	position: relative;
	z-index: 9999;
}

header .bz_b .bz_b_bottom ul li .sub_ul p:first-child {
	margin-top: 5px;
}

header .bz_b .bz_b_bottom ul li .sub_ul p a {
	color: #fff;
	font-size: 16px;
}

header .bz_b .bz_b_bottom ul li .sub_ul p:last-child {
	border: 0;
}

.swiper_banner {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.swiper_banner .swiper-slide {
	height: 100vh;
}

.swiper_banner .banner_bg {
	-webkit-transform: scale(1.1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	transition: 5s;
	background-size: cover !important;
	width: 100%;
}

.swiper_banner .swiper-slide-active .banner_bg {
	-webkit-transform: scale(1);
}

.swiper_banner .swiper-pagination {
	bottom: 20px;
}

.swiper_banner .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	opacity: 1;
	background-color: #d1dbdf;
	margin: 0 12px !important;
}

.swiper_banner .swiper-pagination-bullet-active {
	background-color: #fbc641;
}

.bz_b01 {
	background: url(../img/site_body_bg01.jpg) center top no-repeat;
	position: relative;
	height: 1718px;
	z-index: 2;
}

.bz_wb {
	width: 1440px;
	margin: 0 auto;
	position: relative;
}

.ba_navbox {
	display: flex;
	justify-content: space-between;
}

.ba_navbox {
	height: 80px;
	position: relative;
}

.ba_navbox::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 75px;
	height: 70px;
	background: url(../img/column_bg_icon.png) left top no-repeat;
	z-index: 1;
}

.ba_navbox::before {
	content: "";
	position: absolute;
	left: 0;
	top: 70px;
	width: 50px;
	height: 2px;
	background-color: #00489b;
	z-index: 2;
}

.ba_navbox .title {
	box-sizing: border-box;
	padding-top: 16px;
	position: relative;
	z-index: 99;
}

.ba_navbox .title .cn {
	font-size: 36px;
	line-height: 1;
	display: flex;
	align-items: center;
}

.ba_navbox .title .en {
	color: #00489b;
	font-size: 16px;
	font-family: "Arial";
	padding-left: 62px;
	padding-top: 10px;
	position: relative;
	z-index: 99;
}

.ba_navbox a.more {
	color: #00489b;
	font-size: 16px;
	height: 20px;
	align-items: center;
	line-height: 1;
	display: flex;
	padding-right: 34px;
	background: url(../img/more_icon01.png) center right no-repeat;
	box-sizing: border-box;
	margin-top: 60px;
}

.xydt_box .ba_navbox {
	margin-top: 28px;
}

.xydt_news_box {
	display: flex;
	justify-content: space-between;
}

.xydt_news_pic {
	width: 886px;
	height: 598px;
	position: relative;
	margin-top: 38px;
}

.xydt_news_pic .swiper_piclist {
	overflow: hidden;
}

.xydt_news_pic .swiper_piclist {}

.xydt_news_pic .swiper_piclist .swiper-slide .picimg {
	width: 886px;
	height: 498px;
	position: relative;
}

.xydt_news_pic .swiper_piclist .swiper-slide .picimg img {
	width: 886px;
	height: 498px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s linear;
}

.xydt_news_pic .swiper_piclist .swiper-slide:hover img {
	transform: translate(-50%, -50%) scale(1.1);
}



.xydt_news_pic .swiper-button-next {
	background: url(../img/right_btn01.png) center center no-repeat;
	width: 36px;
	height: 36px;
	background-size: 100% 100%;
	margin: 0;
	top: 231px;
}

.xydt_news_pic .swiper-button-prev {
	background: url(../img/left_btn01.png) center center no-repeat;
	width: 36px;
	height: 36px;
	background-size: 100% 100%;
	margin: 0;
	top: 231px;
}

.xydt_news_pic .swiper-button-next::after {
	display: none;
}

.xydt_news_pic .swiper-button-prev::after {
	display: none;
}

.xydt_news_pic .swiper_piclist .pictext {
	height: 100px;
	width: 100%;
	background: #fff;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	border-bottom: 4px solid #00489b;
}

.xydt_news_pic .swiper_piclist .pictext::after {

}

.xydt_news_pic .swiper_piclist .pictext .pictext_top {
	height: auto;
	box-sizing: border-box;
	align-items: center;
	width: 826px;
	margin: 0 auto;
	position: relative;
	margin-top: 28px;
}

.xydt_news_pic .swiper_piclist .pictext .pictext_top::after {
	height: 2px;
	width: 100%;
	content: "";
	z-index: 1;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #dddddd;
}

.xydt_news_pic .swiper_piclist .pictext .pictext_top::before {
	height: 2px;
	width: 0%;
	content: "";
	z-index: 2;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #00489b;
	transition: all 0.5s linear;
}

.xydt_news_pic .swiper_piclist .pictext .pictext_top .title {
	font-size: 22px;
	line-height: 1.5;

}

.xydt_news_pic .swiper_piclist .pictext .pictext_des {
	width: 826px;
	margin: 0 auto;
	font-size: 16px;
	padding-top: 12px;

}

.xydt_news_pic .swiper_piclist .pictext .pictext_des p {
	max-width: 740px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;

}


.bz_news_line {
	position: relative;
	background-image: linear-gradient(#00489b, #00489b);
	background-position: 0 100%;
	background-size: 0 1px;
	background-repeat: no-repeat;
	transition: background-size .5s
}

.bz_wbclass:hover .bz_news_line {
	background-size: 100% 1px;
	color: #00489b
}

.bz_news_line:hover {
	background-size: 100% 1px
}

.bz_wbclass:hover .title a,
.bz_wbclass:hover .pictext_des p,
.bz_wbclass:hover .time {
	color: #00489b;
}

.bz_wbclass:hover .pictext .pictext_top::before {
	width: 100%;
}

.swiper_piclist .swiper-pagination {
	bottom: 136px;
}

.swiper_piclist .swiper-pagination-bullet {
	width: 60px;
	height: 4px;
	opacity: 1;
	background-color: #fff;
	margin: 0 12px !important;
	border-radius: 0;
}

.swiper_piclist .swiper-pagination-bullet-active {
	background-color: #fbc641;
}

.xydt_news_list {
	width: 522px;
	margin-top: 24px;
}

.xydt_news_list ul li {
	height: 88px;
	margin-top: 14px;
	background: #f7fafe;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, .1);	
}

.xydt_news_list ul li .titlebox {
	width: 450px;
	padding-left: 40px;
	padding-right: 32px;
	padding-top: 18px;
}

.xydt_news_list ul li .titlebox span.txt {
	font-size: 20px;
	text-align: justify;
	line-height: 1.2;
}

.xydt_news_list ul li .titlebox span.txt a {


}

.xydt_news_list ul li p.time {
	color: #00489b;
	position: absolute;
	right: 32px;
	bottom: 12px;
	font-size: 14px;
	color: #00489b;
}

.xydt_news_list ul li::after {
	content: "";
	position: absolute;
	right: -4px;
	bottom: -10px;
	opacity: .4;
	width: 69px;
	height: 71px;
	background: url(../img/news_icon_bg.png) center center no-repeat;
}

.xydt_news_list ul li::before {
	content: "";
	position: absolute;
	width: 4px;
	height: 88px;
	left: 0;
	top: 0;
	background-color: #00489b;
}

.xydt_news_list .bz_wbclass:hover .titlebox span.txt {
	color: #00489b;

}

.xydt_news_list .bz_wbclass:hover .titlebox span.txt a {
	color: #00489b;
	font-weight: bold;
}

.xydt_news_list ul li:hover::after {
	transition: all 0.3s linear;
	opacity: 1;
}

.xydt_news_list ul li:hover {
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, .7);
	background-color: #fff;
}

.xydt_news_list ul li:hover::before {

	transition: all 0.1s linear;
	background-color: #fbc641;
}


.bz_mt_tzgg {

	position: relative;

}

.bz_mt_tzgg .bz_wb {
	display: flex;
	justify-content: space-between;
}

.bz_mt_tzgg .mtlgbox {
	width: 1044px;
	height: 324px;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
}

.mtlgbox .ba_navbox {
	margin-top: 60px;
	height: 264px;
	display: flex;
	position: relative;
	width: 180px;
}

.mtlgbox .ba_navbox a.more {
	position: absolute;
	left: 0;
	bottom: 40px;
}

.mtlist {
	width: 788px;
	height: 240px;
	position: relative;
	display: flex;
	margin-top: 40px;
}

.mtlist ul {
	display: flex;
	flex-wrap: wrap;

}

.mtlist ul li {
	width: 376px;
	height: 80px;
	margin-right: 18px;
	box-sizing: border-box;
	padding-left: 40px;
	background: url(../img/media_icon.png) -4px -6px no-repeat;
	cursor: pointer;
	margin-top: 40px;
}

.mtlist ul li .mini_title {
	color: #00489b;
	font-size: 16px;
	margin-bottom: 6px;
	margin-left: -6px;
}

.mtlist ul li .title {
	font-size: 16px;
	line-height: 1.5;
	padding: 2px 0;
}

.mtlist ul li:hover .title {}

.mtlist ul li:hover .title a {
	color: #00489b;
}

.right_ttgg {
	height: 396px;
	width: 376px;
	background-color: #f7fafe;
	overflow: hidden;
}

.right_ttgg .ba_navbox {
	width: 320px;
	height: 124px;
	position: relative;
	margin-left: 36px;
	margin-top: 64px;
}

.right_ttgg .ba_navbox a.more {
	position: absolute;
	right: 0;
	top: -36px;
	margin: 0;
}

.tzgg_newslist {
	width: 314px;
	margin-left: 36px;
}

.tzgg_newslist ul li {
	display: flex;
	justify-content: space-between;
	height: 72px;
	cursor: pointer;
}

.tzgg_newslist ul li span.title {
	width: 240px;
	font-size: 16px;
	line-height: 1.5;

}

.tzgg_newslist ul li span.title a {
	padding: 2px 0;
}

.tzgg_newslist ul li span.time {
	color: #00489b;
	width: 57px;
	height: 28px;
	box-sizing: border-box;
	background: url(../img/time_icon_bg.png) center top no-repeat;
	display: flex;
	margin-top: 2px;
	font-size: 16px;
	font-family: "Microsoft Yahei";
	line-height: 1;
	padding: 4px 0 0 8px;
}

.tzgg_newslist ul li:hover span.time {
	background: url(../img/time_icon_bg_active.png) center top no-repeat;
	color: #fff;
}

.bz_xsky {
	height: 541px;
}

.bz_xsky .ba_navbox {
	width: 488px;
	height: 109px;
	margin-top: -18px;
}

.xskybox {
	display: flex;
	justify-content: space-between;
}

.xsky_left {
	height: 432px;
	width: 534px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.xsky_left::after {
	content: "";
	z-index: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #d4dbe4;
	opacity: .5;
}

.xsky_left p {
	position: relative;
	padding: 0 50px;
	text-align: justify;
	font-size: 20px;
	line-height: 1.6;
	text-indent: 2em;
	z-index: 9;
}

.xsky_right {
	width: 906px;
	height: 486px;
	box-sizing: border-box;
	border: 1px solid #d1dbdf;
	background-color: #fff;
	margin-top: -27px;
}

.bz_b02 {
	background: url(../img/site_body_bg02.jpg) center top no-repeat;
	height: 800px;
	position: relative;
	z-index: 1;

}

.bz_b02::after {}

.xsky_right .box {
	width: 840px;
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	padding: 35px 0 37px 0;
	box-sizing: border-box;
	border-bottom: 2px solid #d1dbdf;
	cursor: pointer;
}

.xsky_right .box .pic {
	width: 302px;
	height: 170px;
	position: relative;
	overflow: hidden;
}

.xsky_right .box .pic img {
	width: 302px;
	height: 170px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s linear;
}

.xsky_right .text {
	width: 520px;
}

.xsky_right .text .title {
	font-size: 20px;
	line-height: 1.4;
	margin-top: -5px;
}

.xsky_right .text .time {
	margin-top: 4px;
}

.xsky_right .text .des {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.xsky_right .box:hover img {
	transform: translate(-50%, -50%) scale(1.1);
}

.xsky_right .box:last-child {
	border: 0;
}

.lgqxbox {
	position: relative;
	z-index: 9;
}

.lgqxbox .ba_navbox {
	width: 580px;
	margin-top: 124px;
}

.lgqxbox .ba_navbox .title .cn {
	color: #fff;
}

.lgqxbox .ba_navbox .title .en {
	color: #fff;
}

.lgqxbox a.more {
	color: #fff;
	background: url(../img/more_icon02.png) center right no-repeat;
}

.lgqxbox .ba_navbox::before {
	background-color: #fff;
}

.lgqxbox .ba_navbox::after {
	background: url(../img/column_bg_icon01.png) left top no-repeat;
}

.lgqx_pic_list {
	height: 538px;
	position: relative;
}

.lgqx_pic_list ul {}

.lgqx_pic_list ul li {
	position: absolute;
	width: 400px;
	height: 252px;
	overflow: hidden;

}

.lgqx_pic_list ul li:first-child {
	position: absolute;
	width: 584px;
	height: 390px;
	position: absolute;
	left: 0;
	bottom: 0;
}

.lgqx_pic_list ul li .pic {
	overflow: hidden;
	width: 400px;
	height: 252px;
}

.lgqx_pic_list ul li p {
	position: absolute;
	left: 0;
	bottom: -48px;
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#000000, endcolorstr=#000000);
	background: rgba(0, 0, 0, 0.6);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	font-size: 14px;
	color: #ffffff;
	width: 100%;
	height: 40px;
	z-index: 9;
	transition: all 0.5s linear;
}

.lgqx_pic_list ul li:first-child .pic {
	width: 584px;
	height: 390px;
	overflow: hidden;
}

.lgqx_pic_list ul li:first-child p {
	bottom: -60px;
	font-size: 18px;
	height: 60px;

}

.lgqx_pic_list ul li .pic img {
	width: 100%;
	height: 100%;
}

.lgqx_pic_list ul li:nth-child(2) {
	left: 614px;
	top: 0;
}

.lgqx_pic_list ul li:nth-child(3) {
	right: 0;
	top: 0;
}

.lgqx_pic_list ul li:nth-child(4) {
	left: 614px;
	bottom: 0;
}

.lgqx_pic_list ul li:nth-child(5) {
	right: 0;
	bottom: 0;
}

.lgqx_pic_list ul li .pic img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s linear;
	z-index: 1;
}

.lgqx_pic_list ul li:hover .pic img {
	transform: translate(-50%, -50%) scale(1.05);
}

.lgqx_pic_list ul li:hover p {
	bottom: 0;
}

.bz_b03 {
	background: url(../img/site_body_bg03.jpg) center top no-repeat;
	height: 2614px;
	position: relative;
	z-index: 1;

}

.zyjybox {
	height: 727px;
	position: relative;
}

.zyjybox .ba_navbox {
	margin-top: 96px;
}




.ztzlbox {
	height: 438px;
	position: relative;
}

.ztzlbox .ba_navbox {
	margin-top: 42px;
}

.zt_swiper_list {
	width: 1440px;
	overflow: hidden;
	margin-top: 40px;
}

.zt_swiper_list .swiper-slide {
	width: 327px;
	height: 185px;
	overflow: hidden;
	position: relative;
}

.zt_swiper_list .swiper-slide img {
	width: 327px;
	height: 185px;
}

.zt_swiper_list .swiper-slide img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s linear;
	z-index: 1;
}

.zt_swiper_list .swiper-slide:hover img {
	transform: translate(-50%, -50%) scale(1.05);
}

.ywsjbox {
	height: 744px;
	position: relative;
}

.ywsjbox .ba_navbox {
	margin-top: 82px;
}

.ywsjboxpiclist {
	height: 540px;
	margin-top: 40px;
}

.ywsjboxpiclist ul {
	display: flex;
}

.ywsjboxpiclist ul li {
	width: 360px;
	height: 540px;
	overflow: hidden;
	position: relative;
}

.ywsjboxpiclist ul li p {
	width: 140px;
	position: absolute;
	left: 50%;
	margin-left: -70px;
	font-size: 18px;
	color: #fff;
	bottom: 60px;
	z-index: 9;
	display: flex;
	text-align: center;
	justify-content: center;
	padding: 12px 0;
	transition: all 0.3s ease-out;
}

.ywsjboxpiclist ul li p::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fff;
	left: 0;
	bottom: 0;
	position: absolute;
}

.ywsjboxpiclist ul li img {
	position: absolute;
	width: 360px;
	height: 540px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s linear;
	z-index: 1;
}

.ywsjboxpiclist ul li:hover img {
	transform: translate(-50%, -50%) scale(1.05);
}

.ywsjboxpiclist ul li:hover p {
	bottom: 80px;
}

.sjmtbox {
	height: 705px;
	position: relative;
}

.sjmtbox .ba_navbox {
	margin-top: 108px;
}

.sjmtlistbox {
	display: flex;
	justify-content: space-between;
	margin-top: 14px;
}

.sjmtlistbox .weixin {
	width: 527px;
}

.sjmtlistbox .weibo {
	width: 527px;
}

.sjmtlistbox .video {
	width: 270px;
}

.topbox {
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbox .title {
	font-size: 28px;
	line-height: 1;
	color: #00489b;
	padding-left: 58px;
	box-sizing: border-box;
}

.weixin .title {
	background: url(../img/weixin_icon.png) 18px center no-repeat;
}

.weibo .title {
	background: url(../img/weibo_icon.png) 18px center no-repeat;
}

.video .title {
	background: url(../img/sph_icon.png) 18px center no-repeat;
}

.topbox .djgz {
	width: 88px;
	height: 30px;
	border-radius: 15px;
	background-color: #00489b;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	position: relative;
}


.sjmtlistbox .pic {
	width: 527px;
	height: 295px;
	position: relative;
	overflow: hidden;
}

.sjmtlistbox p {
	height: 60px;
	background-color: #00489b;
	display: flex;
	align-items: center;
	line-height: 1;
	text-align: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	margin-top: 6px;
}

.sjmtlistbox .pic img {
	position: absolute;
	width: 527px;
	height: 295px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s linear;
	z-index: 1;
}

.sjmtlistbox .code {
	position: absolute;
	width: 120px;
	height: 120px;
	right: 50%;
	margin-right: -60px;
	top: -130px;
	display: none;
}

.sjmtlistbox .video .pic {
	width: 270px;
	height: 360px;
}

.sjmtlistbox .video .pic img {
	width: 270px;
	height: 360px;
}

.sjmtlistbox .box:hover .pic img {
	transform: translate(-50%, -50%) scale(1.05);
}

.sjmtlistbox .djgz:hover {
	background-color: #fbc641;
}

.sjmtlistbox .djgz:hover .code {
	display: block;
}

footer {
	height: 327px;
	background: url(../img/footer_bg.jpg) center top no-repeat;
	display: flex;
}

footer .bz_wb {
	display: flex;
	justify-content: space-between;
}

.footer_left {
	width: 628px;
}

.footer_left .logo {
	padding: 50px 0 24px 0;
	border-bottom: 1px solid #fff;
	margin-bottom: 12px;
}

.footer_left p {
	font-size: 16px;
	color: #fff;
	line-height: 2;
}

.footer_right {
	width: 380px;
	display: flex;
	align-items: center;
}

.footer_right ul {
	display: flex;
	justify-content: right;
}

.footer_right ul li {
	font-size: 16px;
	line-height: 2.2;
	margin-left: 12px;
}

.footer_right ul li a {
	color: #fff;
}

@media screen and (max-width: 1700px) {

	header .bz_b .bz_b_bottom ul li {
		margin-left: 30px;
	}
}

@media screen and (max-width: 1580px) {

	header .bz_b .bz_b_bottom ul li {
		margin-left: 26px;
	}
}

@media screen and (max-width: 1499px) {

	header .bz_b .bz_b_bottom ul li {
		margin-left: 22px;
	}
}

@media screen and (max-width: 1439px) {

	header .bz_b .bz_b_bottom ul li {
		margin-left: 18px;
	}
}

@media screen and (max-width: 1399px) {

	header .bz_b .bz_b_bottom ul li {
		margin-left: 18px;
	}

	header .bz_b .bz_b_bottom ul li a {
		font-size: 15px;
	}
}

.zyjycontent_mobile {
	display: none;
}

/* PC端二级菜单交互与样式补充 */
header .bz_b .bz_b_bottom ul li .sub_ul {
    display: none;
    height: auto;
    background: rgba(0, 80, 179, 0.95);
    padding: 10px 0;
    border-radius: 4px;
    overflow: visible;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin-top: -5px; /* 向上移动，减少间隙 */
    padding-top: 5px; /* 增加顶部内边距，保持内容位置 */
}

/* 增加透明伪元素连接一级菜单和二级菜单，防止鼠标移出消失 */
header .bz_b .bz_b_bottom ul li .sub_ul::before {
    content: '';
    position: absolute;
    top: -30px; /* 增加覆盖范围，填补下移产生的间隙 */
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
    display: block !important; /* 强制显示 */
}

header .bz_b .bz_b_bottom ul li:hover .sub_ul {
    display: block;
    height: auto;
}

header .bz_b .bz_b_bottom ul li .sub_ul li {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 0;
    display: block;
}

header .bz_b .bz_b_bottom ul li .sub_ul li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    font-weight: normal;
}

header .bz_b .bz_b_bottom ul li .sub_ul li a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* 移除 site.css 原有的装饰 - 不再隐藏，因为我们需要 ::after 显示箭头 */
/* header .bz_b .bz_b_bottom ul li .sub_ul::before,
header .bz_b .bz_b_bottom ul li .sub_ul::after {
    display: none;
} */

/* 默认隐藏移动端箭头 */
.mobile-arrow {
    display: none;
}