/* 导航部分 */
header.pc .bg {
	height: 12rem;
	padding: 2rem 0 2rem;
}

header.pc .bg img {
	display: block;
}

header.pc .logo {
	height: 7rem;
	width: auto;
	max-width: 45rem;
	object-fit: contain;
}

header.pc .rt {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: flex-end;
}

header.pc .rt .lang li {
	margin-left: 3rem;
}

header.pc .rt .lang a {
	font-size: var(--f14);
}

header.pc .rt .lang img {
	height: 1.3rem;
	margin-right: .4rem;
	width: auto;
}

header.pc .ul-bg {
	background: var(--themeColor);
    position: relative;
    z-index:2;
}

header.pc .ul-bg a {
	color: #fff;
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
}

header.pc .ul-bg a {
	line-height: 3em;
	font-size: var(--f18);
}

header.pc .ul-bg li.on,
header.pc .ul-bg li:hover {
	background: var(--themeActColor);
}

header .first-nav>li {
	position: relative;
}

/* 普通二级菜单 */
header .downmenu-normal {
	position: absolute;
	top: 100%;
	bottom: 0;
	width: max-content;
	height: max-content;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	/* display: none; */
	visibility: hidden;
	opacity: 0;
	transition: all .5s;
	padding-top: 1rem;
}

header .first-nav>li:hover .downmenu-normal {
	/* display: block; */
	visibility: visible;
	opacity: 1;
	top: 100%;
}

header .downmenu-normal .list {
	position: relative;
	padding: .6rem 0;
	background: var(--themeColor);
	border-radius: .4rem;
	/* overflow: hidden; */
}

header .downmenu-normal .list::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border: .6rem solid;
	border-color: transparent transparent var(--themeColor) transparent;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-100%);
}

header .downmenu-normal .list li {
	margin-left: 0;
}

header .downmenu-normal .list li a {
	display: flex;
	align-items: center;
	width: 100%;
	text-wrap: nowrap;
	color: #fff;
	padding: 1.4rem 3rem;
	line-height: 1rem;
	font-size: var(--f15);
}

header .downmenu-normal .list li a img {
	width: 2rem;
	height: auto;
	object-fit: contain;
	margin-right: .5rem;
}

/* 顶部搜索框 */
header .search-input {
	width: 24rem;
	height: 3.6rem;
	overflow: hidden;
	border: 1px solid #e5e8e8;
	border-radius: 10rem;
    box-shadow: 0rem 0.2rem .3rem rgba(0,0,0,.1);
}

header .search-input .layui-input-suffix {
	width: auto;
}

header .search-input .layui-input-suffix .btn {
	padding: 0 .88rem;
	background: var(--themeColor);
}

header .search-input .layui-input-suffix .btn svg {
	width: 1.4rem;
	height: 1.4rem;
}

header .search-input .layui-input-group .layui-input {
	padding-left: 1.4rem;
}

/* 导航条 */
header .sp_nav {
	width: 1.3rem;
	height: 1.2rem;
	display: block;
	position: relative;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
	margin-right: var(--mr);
}

header .sp_nav span {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height: 0.12rem;
	background: var(--themeColor);
	font-size: 0;
	font-size: 0;
	line-height: 0;
	display: block;
	transition: width .5s,transform .5s,background .5s;
	/* 防止模糊 */
}

header .sp_nav span:nth-child(2) {
	width: 70%;
	top: 50%;
	transform: translateY(-50%);
}

header .sp_nav span:last-child {
	top: auto;
	bottom: 0;
}

header .sp_nav:hover span:nth-child(2) {
	width: 100%;
}

header .sp_nav.on span:nth-child(1) {
	transform: rotate(45deg);
	top: 0.5rem;
}

header .sp_nav.on span:nth-child(2) {
	background: rgba(0,0,0,0);
}

header .sp_nav.on span:nth-child(3) {
	transform: rotate(-45deg);
	bottom: 0.5rem;
}

/* 导航部分结束 */



/* 文字打印效果开始 */
.cursor {
	display: inline-block;
	width: 2px;
	height: 1em;
	background: black;
	animation: blink 0.5s step-end infinite;
}

@keyframes blink {
	50% {
		opacity: 0;
	}
}

/* 文字打印效果结束 */



/* 通用数字滚动区域 */
.szgd .num {
	font-family: 'num-font' !important;
	color: var(--themeColor);
	display: flex;
	align-items: flex-start;
}

.szgd .num span {
	font-size: var(--f120);
}

.szgd .num em {
	font-size: var(--f100);
	line-height: 1;
}

.szgd .li p {
	font-size: var(--f18);
	color: var(--gary);
}

.szgd.cont {
	padding: 5rem 0;
}

/* 通用数字滚动区域结束 */



/* 双圆环样式 */
.yuanhuan.img {
	width: 40%;
	background: rgba(0, 65, 142, .1);
	border-radius: 100%;
	height: auto;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.yuanhuan .img2 {
	width: 80%;
	background: var(--themeColor);
	border-radius: 100%;
	height: auto;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* 双圆环样式结束 */



/* 轮播按钮组 */
.swiper-btn {
	display: flex;
	right: calc(var(--wpPaddingNum));
	bottom: 0;
}

.swiper-btn div {
	position: static;
	background: #fff;
	width: 2.6rem;
	border-radius: 100%;
	height: auto;
	aspect-ratio: 1/1;
	margin-left: 1rem;
}

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
	font-size: var(--f20);
	color: #000;
}

.swiper-5 .swiper-slide {
	width: calc(20% - 2rem);
	margin-right: 2rem;
}

/* 轮播按钮组结束 */



/* 面包屑开始 */
.mbx,
.mbx a {
	color: #7d7d7d;
	font-size: var(--f16);
}

.top-nav {
	padding: 2rem 0 1rem;
}

.top-nav .mbx {
	margin-bottom: 1.8rem;
}

/* 面包屑结束 */


/* tab标签页开始 */
/* .slide-nav{
} */
.nav-slide-nav {}

.nav-slide-nav ul {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #eeedf2;

}

.nav-slide-nav ul li {
	position: relative;
}

.nav-slide-nav ul li a {
	padding: 0.8rem 1rem;
	color: var(--themeColor2);
	font-size: var(--f20);
	display: block;
}

.nav-slide-nav.nav2 ul li a {
	color: #75787c;
	font-weight: bold;
	padding: 0.8rem 0;
}

.nav-slide-nav ul li::after {
	position: absolute;
	bottom: -1px;
	content: '';
	display: block;
	height: 1px;
	width: 0;
	background: var(--themeColor);
	left: 50%;
	transform: translate(-50%, 0);
}

.nav-slide-nav ul li.on a,
.nav-slide-nav ul li:hover a {
	color: var(--themeColor);
}

.nav-slide-nav ul li.on::after,
.nav-slide-nav ul li:hover::after {
	width: 120%;
}

.nav-slide-nav.nav2 ul li.on::after,
.nav-slide-nav.nav2 ul li:hover::after {
	width: 100%;
}

.slide-for {
	position: relative;
}

.slide-for .li {
	position: relative;
	transition: .5s;
	opacity: 1;
	visibility: visible;
}

.slide-for .li.hide {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

.slide-for .li+.li {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	/* height: 100%; */
}

/* tab标签页结束 */



/* 圆形进度条动画开始 */
svg.drawcircle {
	position: absolute;
	top: 0;
	left: 0;
	overflow: inherit;
	display: block;
	pointer-events: none
}

svg.drawcircle circle {
	fill: none;
	box-sizing: border-box;
	stroke-width: 2;
	stroke: none;
	stroke-dasharray: 0, 188.49;
	stroke-dashoffset: 188.49;
	transition: all .3s linear 0s
}

@-webkit-keyframes svgrotate {
	0% {
		stroke: var(--themeColor);
		stroke-dasharray: 0, 390%;
		stroke-dashoffset: 390%;
	}

	100% {
		stroke: var(--themeColor);
		stroke-dasharray: 390%, 0;
		stroke-dashoffset: 390%;
	}
}

@keyframes roll {
	from {
		transform: rotate(0deg)
	}

	to {
		transform: rotate(359deg)
	}
}

/* 圆形进度条动画开结束/






/* 通用banner开始 */
.n-banner {
	background-size: cover;
	width: 100%;
	aspect-ratio: 1297/136;
	color: #fff;
	height: auto;
}

/* .n-banner h3{
	font-size: var(--f60);
	margin-bottom: 1rem;
} */
.n-banner h4 {
	font-size: var(--f38);
	text-align: center;
	margin-bottom: .4rem;
	font-weight: normal;
	letter-spacing: .2rem;
}

.n-banner p {
	font-size: var(--f16);
	text-align: center;
	letter-spacing: .2rem;
	text-transform: uppercase;
}

/* 通用banner结束 */






/* 通用标题开始 */
/* 通用链接 */
.ljgd {
	color: #8dc21f;
	font-size: var(--f20);
}

.n-zhead {
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: var(--wpPadding);
}

.n-zhead .lt h4 {
	color: #000;
	font-size: var(--f40);
	margin-bottom: 0.7rem;
	line-height: 1em;
	position: relative;
}

.n-zhead .lt h4::after {
	content: '';
	display: block;
	background: url(../images/line.png) no-repeat center;
	position: absolute;
	height: 100%;
	width: auto;
	aspect-ratio: 9/38;
	transform: translateX(-1.7rem);
	left: 0;
	top: 0;
}

.n-zhead .lt h4.biao2::after {
	background: url(../images/line2.png) no-repeat center;
}

.n-zhead .lt p {
	color: var(--gary);
	font-size: var(--f20);
	font-weight: lighter;
	line-height: 1.8;
}

.t-head {
	display: flex;
	align-items: center;
	height: 4rem;
}

.t-head .bg {
	flex: 1;
	height: 100%;
	/* opacity: .3; */
	background: linear-gradient(90deg, var(--themeGradColor), #fff 60%);
	text-align: right;
	display: flex;
	align-items: center;
	justify-content: end;
	padding-right: 1rem;
}

.t-head .bg a {
	color: #7e7e7e;
	font-size: var(--f14);
}

.t-head .bg a:hover {
	color: var(--themeActColor);
}

.t-head .title {
	display: flex;
	align-items: center;
	color: #fff;
	font-size: var(--f18);
	background-color: var(--themeColor);
	height: 100%;
	padding: 0 1rem;
}

.t-head .title img {
	height: 40%;
	margin-right: 1rem;
}

.t-head .title span {
	font-size: var(--f18);
	font-weight: bold;
}

.t-head2 {
	display: flex;
	align-items: end;
	justify-content: space-between;
	border-bottom: .25rem solid #eeeeee;
	padding: .6rem 1rem;
}

.t-head2 div {
	font-size: var(--f18);
	color: var(--themeColor);
	font-weight: bold;
	position: relative;
}

.t-head2 div::before {
	content: '';
	bottom: -0.78rem;
	background: var(--themeColor);
	position: absolute;
	height: .25rem;
	left: 50%;
	transform: translateX(-50%);
	width: 130%;
}

.t-head2 a {
	font-size: var(--f14);
	color: #c2c2c2;
}

/* 通用标题结束 */





/* 分页开始 */
.page .box {
	display: flex;
	margin-top: 0.3rem;
	flex-wrap: wrap;
}

/* .page a {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.05s;
	font-size: var(--f16);
	color: #3a3a3a;
	margin-right: 0.0625rem;
	border: 1px solid #e0e0e0;
	flex-shrink: 0;
	min-width: 0.25rem;
	height: 0.25rem;
	background-color: #fff;
	border-radius: .02rem;
}
.page a:hover {
	color: #fff;
	border: 1px solid #3a3a3a;
	background-color: #3a3a3a;
	border-radius: .02rem;
}

.page a span {
	padding: 0 0.1rem;
	white-space: nowrap;
}

.page a.on {
	border: 1px solid #353535;
	background: #353535;
	color: #fff;
} */

.page .centers {
	justify-content: center;
}

/* 分页结束 */





/* 走马灯效果 */
.gd-list {
	margin-top: 0.28rem;
	position: relative;
}

.gd-list::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 20%;
	background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	z-index: 9;
}

.gd-list::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 20%;
	background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
	z-index: 1;
}

.marquee .swiper-wrapper,
.marquee-revert .swiper-wrapper {
	transition-timing-function: linear !important;
}

.marquee img,
.marquee-revert img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 走马灯效果结束 */


/* tab导航区 */
.wzkind-slide-nav {
	display: flex;
	align-items: center;
	gap: 0.4625rem;
	justify-content: center;
	margin: 0.25rem 0 0.15rem;
}

.wzkind-slide-nav a {
	color: #7d7d7d;
	font-size: var(--f18);
	line-height: 1.5;
	transition: all .5s;
	position: relative;
}

.wzkind-slide-nav a::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0.03rem;
	background: #c7000a;
	border-radius: 3px;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: -.075rem;
}

.wzkind-slide-nav li.on a,
.wzkind-slide-nav li a:hover {
	color: #c7000a;
}

.wzkind-slide-nav a:hover::before,
.wzkind-slide-nav li.on a::before {
	width: 110%;
}

/* tab导航区结束 */


/* 鼠标动画效果 */
.shubiao {
	color: #fff;
}

.shubiao i {
	margin-bottom: 0.08rem;
	animation: shubiao 1s linear infinite;
}

@keyframes shubiao {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(0.04rem);
	}

	100% {
		transform: translateY(0.06rem);
		opacity: 0;
	}
}

/* 鼠标动画效果结束 */


/* 搜索框开始 */
.search {
	background: #3d3e3f;
	width: 20rem;
	padding: .6rem 1rem .6rem 2rem;
	overflow: hidden;
	border-radius: 1rem 0 1rem 0;
	display: flex;
}

.search input {
	/* height: 100%; */
	width: 100%;
	background: transparent;
	font-size: var(--f16);
	color: #fff;
}

.search i {
	font-size: var(--f20);
	color: #b8b8b8;
}

.search-input {
	border: .2rem solid var(--themeColor);
	border-radius: .5rem;
	/* overflow: hidden; */
	width: 70rem;
	margin: 0 auto;
	height: 4.6rem;
}

.search-input input {
	border: none;
	font-size: var(--f16);
	height: 100%;
}

.search-input .layui-input:focus {
	box-shadow: none;
}

.search-input .layui-input-prefix {
	width: 12rem;
	padding-left: .5rem;
	background: #fff;
	border-radius: .5rem;
	/* overflow: hidden; */
	/* margin-left: .5rem; */
}

.search-input .layui-input-suffix {
	padding-right: 0;
	width: 10rem;
}

.search-input .layui-form-select,
.search-input .layui-select-title {
	height: 100%;
	border-radius: .5rem;
}

.search-input .layui-form-select .layui-edge {
	border-top-color: #000;
}

.search-input .layui-form-select .layui-input {
	padding-left: 2rem;
	font-size: var(--f18);
	color: #000;
}

.search-input .btn {
	background: var(--themeColor);
	color: #fff;
	justify-content: center;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.search-input .layui-form-select dl {
	top: 5rem;
	bottom: auto;
}

.search-input .layui-form-selectup dl {
	bottom: 5rem;
	top: auto;
}

/* 搜索框结束 */


/* 新闻模块 */
.news-list {
	padding: 1rem;
}

.news-list ul li {
	/* list-style: disc; */
	border-bottom: 1px dashed #efefef;
}

.news-list ul li:last-child {
	border: none;
}

.news-list ul li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .8rem 0;
}

.news-list ul li a:hover p {
	color: var(--themeActColor);
}

.news-list ul li a::before {
	content: '•';
	color: var(--themeColor);
	font-size: var(--f24);
	margin-right: 1rem;
	transition: none;
}

.news-list ul li a * {
	font-size: var(--f15);
}

.news-list ul li a p {
	flex: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	text-wrap: nowrap;
	color: #6a6a6a;
}

.news-list ul li .date {
	color: #8d8d8d;
	padding-left: 2rem;
}

/* 新闻模块结束 */



/* 视频统一弹窗开始 */
.vwrap {
	display: none;
	z-index: 1040000;
	width: 100%;
	position: fixed;
	transition: none !important;
}

.vwrap .videobtg {
	z-index: 900;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.8;
	filter: alpha(opacity=80);
	overflow: hidden;
}

.vwrap .videobox {
	z-index: 1200;
	width: 60vw;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -30vw;
	object-fit: cover;
	transform: translateY(-50%)
}

.vwrap .videobox #videobox {
	width: 100%;
	display: inline-block;
	background: #000;
}

.vwrap .videobox #videobox .img-hezi {
	padding-bottom: 60% !important
}

.vwrap .videobox #videobox video {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#videobox_wrapper {
	height: 100% !important;
}

.vwrap .close {
	z-index: 999;
	width: 31px;
	height: 31px;
	cursor: pointer;
	position: absolute;
	top: 0px;
	right: -42px;
	text-align: center;
}

.vwrap .close i {
	display: block;
	width: 31px;
	height: 31px;
	-webkit-transition: 400ms;
	transition: 400ms;
}

.vwrap .close i svg {
	transition: .6s
}

.vwrap .close:hover i svg {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* 视频统一弹窗开始结束 */



/* 底部开始 */
footer {
	background: var(--themeColor);
	padding: 2rem 0 3rem;
}

footer * {
	color: #fff;
	font-size: var(--f14);
	text-align: center;
	line-height: 1.8;
}

footer .link {
	display: flex;
	justify-content: center;
	padding-bottom: 1.6rem;
	padding-top: 1rem;
	border-bottom: 1px solid #0055c9;
	flex-wrap: wrap;
}

footer .link a:first-child{
    padding-left: 0.2rem;

}

footer .link a {
	padding: 0 1rem;
	border-right: 1px solid #fff;
	white-space: nowrap;
}

footer .link a:hover {
	color: #fff;
}

footer .link a:last-child {
	border: none;
}

/* 底部结束 */