/* 头部导航样式配置 */
#head_160 {
	width: 100%;
	height: 80px;
	background: var(--bg-base);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}

.headNone {
	width: 100%;
	height: 80px;
}

#head_160 .headCon {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	color: var(--c-text);
	font-size: 16px;
}

#head_160 .tell {
	background: url(/static/images/ZT000001_03.png) no-repeat left center;
	display: flex;
	padding-left: 15px;
	align-items: center;
	margin: 0 30px;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

#head_160 #translateSelectLanguage {
	min-width: 50px;
	border-radius: 5px;
}

#head_160 .logo {
	width: auto;
	padding-right: 80px;
	display: flex;
	justify-content: left;
	align-items: center;
	height: 100%;
}

#head_160 .logo img {
	max-width: 200px;
	max-height: 80%;
}

#head_160 .navMain {
	flex: 1;
	height: 100%;
	display: flex;
	align-items: center;
}

#head_160 .navMain .navTit {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	float: left;
	position: relative;
	height: 100%;
}

#head_160 .navMain .navTit .tit {
	color: var(--c-text);
	text-align: center;
	display: flex;
	align-items: center;
	position: relative;
	height: 100%;
	transition: all .3s;
}

#head_160 .navMain .navTit:hover,
#head_160 .navMain .navTit.active {
	background: var(--bg-nav-hover);
}

#head_160 .navMain .navTit::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background: var(--c-nav-primary);
	transition: all .3s;
}

#head_160 .navMain .navTit:hover::after,
#head_160 .navMain .navTit.active::after {
	width: 100%;
}

#head_160 .navMain .navTit:hover .tit,
#head_160 .navMain .navTit.active .tit {
	font-weight: bold;
	color: var(--c-nav-primary);
}

#head_160 .navTit .levelUl {
	position: absolute;
	top: 80px;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	max-height: 0;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	transition: max-height .35s ease, opacity .25s ease;
	background: var(--bg-base);
	border-radius: 0 0 10px 10px;
	padding: 0 5px;
	box-shadow: 0 8px 20px var(--shadow-color);
	z-index: 999;
}

#head_160 .navTit:hover .levelUl {
	max-height: 300px;
	opacity: 1;
	pointer-events: auto;
	overflow-y: scroll;
}

#head_160 .leveltit i {
	position: relative;
	z-index: 9;
	display: block;
	min-width: 100px;
	padding: 0 20px;
	white-space: nowrap;
	line-height: 35px;
	color: var(--c-text);
}

#head_160 .leveltit {
	width: auto;
	background: var(--bg-base);
	margin: 4px 0;
	border-radius: 5px;
	text-align: center;
	height: 32px;
	line-height: 32px;
	display: block;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}

#head_160 .leveltit::after {
	background: var(--c-nav-primary);
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	transition: all .5s;
	border-radius: 10px;
}

#head_160 .leveltit:hover::after {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

#head_160 .leveltit:hover i {
	color: var(--c-text-inverse);
}

/* 右侧菜单 */
#head_160 #menuClosed {
	position: absolute;
	right: 105px;
	top: 15px;
	font-size: 25px;
	color: var(--c-nav-primary);
	font-weight: bold;
}

#head_160 .menu {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: var(--bg-base);
	z-index: 999999999;
	overscroll-behavior: none;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: visibility 0s ease .4s, opacity .4s ease;
	transition: visibility 0s ease .4s, opacity .4s ease;
	padding: 50px 30px 30px 30px;
}

#head_160 .menu.cur {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: .05s;
	transition-delay: .05s;
}

#head_160 .menu-item {
	border-bottom: var(--bd-nav-sep) 1px solid;
	padding: 5px 20px;
	height: auto;
	display: block;
}

#head_160 .menu-list li .dropdown_menu {
	display: none;
}

#head_160 .menu-list li.active .dropdown_menu {
	display: block;
}

#head_160 .menu-list li .dropdown_menu a {
	display: block;
	height: 30px;
	color: var(--c-text);
	line-height: 30px;
	font-size: 14px;
	padding-left: 20px;
	box-sizing: border-box;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

#head_160 .menu-list li .dropdown_menu a:last-child {
	border: none;
}

#head_160 .menu-title {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	font-weight: bold;
	display: block;
	line-height: 40px;
	color: var(--c-text);
}

#head_160 .menu-title a {
	color: var(--c-text);
}

#head_160 .menu-item.up .menu-title {
	display: flex;
	justify-content: space-between;
}

#head_160 .menu-item.up .menu-title i {
	background: url(/static/images/ZT000001_06.png) no-repeat center center;
	background-size: auto 20px;
	width: 30px;
	height: 30px;
}

#head_160 .menu-item.up.active .menu-title i {
	transform: rotate(180deg);
}

#head_160 .menu-list {
	height: calc(100% - 50px);
	overflow: auto;
	width: 100%;
}

#head_160 .menu-contact {
	position: absolute;
	bottom: 30px;
	background: url(/static/images/ZT000001_03.png) no-repeat left center;
	background-size: 13px 13px;
	width: auto;
	height: 30px;
	padding-left: 25px;
	color: var(--c-text);
	display: block;
	line-height: 30px;
	font-weight: bold;
	font-size: 14px;
}

#head_160 .navBtn {
	display: none;
	width: 70px;
	height: 100%;
	cursor: pointer;
	position: absolute;
	right: 20px;
}

#head_160 .navBtn .span_0 {
	position: absolute;
	width: 30px;
	right: 0;
	background: var(--c-nav-primary);
	height: 3px;
	top: 40%;
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

#head_160 .navBtn.cur .span_0 {
	top: 46%;
}

#head_160 .navBtn.cur .span_0.span_1 {
	-webkit-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
}

#head_160 .navBtn.cur .span_0.span_2 {
	opacity: 0;
}

#head_160 .navBtn.cur .span_0.span_3 {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

#head_160 .navBtn .span_0.span_1 {
	top: 35%;
}

#head_160 .navBtn .span_0.span_2 {
	top: 50%;
	width: 30px;
}

#head_160 .navBtn .span_0.span_3 {
	top: 65%;
}

#bananer_160 {
	width: 100%;
	overflow: hidden;
}

#bananer_160 .bannerSwiper {
	width: 100%;
	position: relative;
}

#bananer_160 .bannerSwiper img {
	width: 100%;
	height: 100%;
	/*object-fit: cover;*/
}

#bananer_160 .bannerSwiper img.seo-banner-bg {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center !important;
	z-index: 0 !important;
	pointer-events: none !important;
	display: block !important;
}

@keyframes bigimgani {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

#bananer_160 .bannerSwiper .swiper-slide {
	overflow: hidden;
}

#bananer_160 .bannerSwiper .swiper-slide,
#bananer_160 .bannerSwiper .swiper-wrapper {
	width: 100%;
	height: 100%;
}

#bananer_160 .swiper-pagination {
	bottom: 60px;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#bananer_160 .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	background: var(--bg-base);
	opacity: 0.7;
	border-radius: 50%;
}

#bananer_160 .swiper-pagination-bullet-active {
	background: url(/static/images/ZT000001_05.png) no-repeat;
	background-size: 13px 17px;
	width: 13px;
	height: 17px;
}

#bananer_160 #pcBana {
	display: block;
}

#bananer_160 #wapBana {
	display: none;
}

#bananer_160 .swiper-slide a {
	height: 100%;
	display: block;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

@media screen and (max-width: 1400px) {
	#head_160 .navMain {
		padding-right: 70px;
	}
}

@media screen and (max-width: 1024px) {
	#head_160 .navMain .navTit {
		font-size: 14px;
	}
}

/* 全站固定图文分离 Banner */
#bananer_160 .seo-banner-slide {
	/*height: 100% !important;*/
}

#bananer_160 .seo-banner {
	position: relative;
	width: 100%;
	height: 100% !important;
	min-height: 420px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-image: linear-gradient(135deg, #eef4fb 0%, #c5d6ec 50%, #8fa8d3 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	box-sizing: border-box;
}

#bananer_160 .seo-banner-bg {
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center !important;
	z-index: 0 !important;
	pointer-events: none;
	display: block !important;
}

#bananer_160 .seo-banner--has-bg {
	background-image: none !important;
	background-color: #c5d6ec;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

#bananer_160 .seo-banner--has-bg::before,
#bananer_160 .seo-banner--has-bg::after {
	display: none;
}

#bananer_160 .seo-banner::before {
	content: "";
	position: absolute;
	left: -6%;
	bottom: -20%;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .35);
	pointer-events: none;
}

#bananer_160 .seo-banner::after {
	content: "";
	position: absolute;
	right: 38%;
	top: -15%;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .25);
	pointer-events: none;
}

#bananer_160 .seo-banner-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 40px;
	box-sizing: border-box;
}

#bananer_160 .seo-banner-text {
	flex: 1 1 52%;
	min-width: 0;
	color: #333;
	text-align: left;
}

#bananer_160 .seo-banner-inner--text-only {
	justify-content: center;
	align-items: center;
}

#bananer_160 .seo-banner-inner--text-only .seo-banner-text {
	flex: 1 1 100%;
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

#bananer_160 .seo-banner-inner--text-only .seo-banner-desc {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
	text-align: left;
}

#bananer_160 .seo-banner-inner--text-only .seo-banner-tags {
	justify-content: center;
}

#bananer_160 .seo-banner-media {
	flex: 0 0 42%;
	max-width: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#bananer_160 .seo-banner-media img {
	width: 100%;
	height: auto;
	max-height: 340px;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .08));
}

#bananer_160 .seo-banner-title {
	margin: 0 0 18px;
	font-size: 40px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--c-title);
	letter-spacing: 1px;
}

#bananer_160 .seo-banner-desc {
	margin: 0 0 28px;
	max-width: 560px;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
}

#bananer_160 .seo-banner-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 14px;
}

#bananer_160 .seo-banner-tags span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	border: 1px solid var(--bd-float-sep);
	border-radius: 999px;
	background: rgba(255, 255, 255, .55);
	color: var(--c-title);
	font-size: 14px;
	line-height: 1.4;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	#bananer_160 #pcBana {
		display: none;
	}

	#bananer_160 #wapBana {
		display: block;
	}

	#head_160 {
		height: 60px;
	}

	#head_160 .logo img {
		max-height: 60%;
	}

	#head_160 .navMain {
		display: none;
	}

	#head_160 .logo {
		padding-left: 30px;
	}

	#head_160 .navBtn {
		display: block;
	}

	#bananer_160 .seo-banner {
		min-height: auto;
	}

	#bananer_160 .seo-banner::before {
		width: 220px;
		height: 220px;
		left: -20%;
	}

	#bananer_160 .seo-banner::after {
		width: 160px;
		height: 160px;
		right: -10%;
	}

	#bananer_160 .seo-banner-inner {
		flex-direction: column;
		padding: 28px 20px 32px;
		gap: 20px;
	}

	#bananer_160 .seo-banner-media {
		flex: none;
		width: 100%;
		max-width: 280px;
		order: -1;
	}

	#bananer_160 .seo-banner-media img {
		max-height: 180px;
		border-radius: 8px;
	}

	#bananer_160 .seo-banner-text {
		flex: none;
		width: 100%;
		text-align: center;
	}

	#bananer_160 .seo-banner-title {
		font-size: 22px;
		margin-bottom: 12px;
	}

	#bananer_160 .seo-banner-desc {
		margin: 0 auto 18px;
		font-size: 13px;
		line-height: 1.7;
	}

	#bananer_160 .seo-banner-tags {
		justify-content: center;
		gap: 8px;
	}

	#bananer_160 .seo-banner-tags span {
		padding: 6px 12px;
		font-size: 12px;
	}

	#bananer_160 #wapBana .swiper-wrapper,
	#bananer_160 #wapBana .swiper-slide,
	#bananer_160 #wapBana .seo-banner-slide {
		/*height: auto !important;*/
	}

	#bananer_160 #wapBana .seo-banner {
		/*height: auto !important;*/
		/*min-height: auto !important;*/
		overflow: visible;
	}

	#bananer_160 #wapBana .seo-banner-title {
		font-size: 20px;
		line-height: 1.35;
		word-break: break-word;
	}

	#bananer_160 #wapBana .seo-banner-desc {
		max-width: 100%;
		word-break: break-word;
	}

	#bananer_160 #wapBana .swiper-pagination {
		bottom: 16px; /* 原 60px 容易压到文字 */
	}

	#bananer_160 #wapBana {
		/*height: auto !important;*/
		min-height: 0 !important;
	}

	#bananer_160 #wapBana .swiper-wrapper,
	#bananer_160 #wapBana .swiper-slide {
		height: auto !important;
	}

	/* 普通轮播图：不裁剪 */
	#bananer_160 #wapBana .bannerSwiper img,
	#bananer_160 #wapBana .swiper-slide > a img {
		width: 100% !important;
		display: block;
	}

	/* 若 bg 是整张设计稿，也改成不裁切 */
	#bananer_160 #wapBana .seo-banner-bg,
	#bananer_160 #wapBana img.seo-banner-bg {
		position: relative !important;
		width: 100% !important;
		inset: auto !important;
	}
}
