/* 头部导航样式配置 */
/*$$
{
  "color": [
    { "val": "#000000", "title": "导航文字默认色" },
    { "val": "#0052cc", "title": "导航激活色" },
    { "val": "#ffffff", "title": "二级菜单文字/分页点色" }
  ],
  "background": [
    { "val": "#ffffff", "title": "头部/二级导航背景" },
    { "val": "#f6f8fa", "title": "导航项悬停背景" },
    { "val": "#0052cc", "title": "二级导航项悬停背景" }
  ],
  "border": [
    { "val": "#dfe0e1", "title": "移动端菜单分隔线" }
  ]
}
$$*/
#head_160{
	width: 100%;
	height: 80px;
	background: #ffffff;
}
#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: #000000;
	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;
}
#head_160 #translateSelectLanguage{
	border: solid 1px #d1dae5;
	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: #000000;
	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: #f6f8fa;
}
#head_160 .navMain .navTit::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height:2px;
	background: #0052cc;
	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: #0052cc;
}
#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: #ffffff;
	border-radius: 0 0 10px 10px;
	padding: 0 5px;
	box-shadow: 0 8px 20px rgba(0,0,0,.1);
	z-index: 999;
}
#head_160 .navTit:hover .levelUl{
	max-height: 300px;
	opacity: 1;
	pointer-events: auto;
}
#head_160 .leveltit i{
	position: relative;
	z-index: 9;
	display: block;
	min-width: 100px;
	padding: 0 20px;
	white-space: nowrap;
	line-height: 35px;
	color:#000000;
}
#head_160 .leveltit{
	width: auto;
	background:#ffffff;
	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:#0052cc;
	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:#ffffff;
}
/* 右侧菜单 */
#head_160 #menuClosed{
	position: absolute;
	right:15px;
	top:15px;
	font-size:25px;
	color: #0052cc;
	font-weight: bold;
}
#head_160 .menu{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background:#ffffff;
	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:#dfe0e1 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:#000000;
	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:#000000;
}
#head_160 .menu-title a{
	color:#000000;
}
#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:#000000;
	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:100px;
}
#head_160 .navBtn .span_0{
	position: absolute;
	width: 30px;
	right: 0;
	background: #0052cc;
	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;
}
@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: #ffffff;
	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: 1024px){
	#head_160 .navMain .navTit{ font-size: 14px; }
}
@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; }
}
