/*pubilc start*/
* {margin: 0;padding: 0;font-family: "MicrosoftYaHei";-webkit-tap-highlight-color: rgba(0, 0, 0, 0);box-sizing: border-box;}
body,ol,ul,li,dl,dt,dd,form,p,h1,h2,h3,h4,h5,img{margin: 0;padding: 0;}
ol,ul,li{list-style: none;padding: 0;margin: 0;}
img{border: none;max-width: 100%;vertical-align: middle;}
a{text-decoration: none;border: none;margin: 0;padding: 0;}
input,textarea,button{outline: 0;resize: none;border: none;_border: 0;margin: 0;padding: 0;background: none;}
input::-webkit-search-cancel-button {display: none;}
input::-webkit-input-placeholder{font-size: 12px;color: #999999;}
table,table td {border-collapse: collapse;} 
select{border: 0;outline: none;}
select::-ms-expand {display: none;}
body{overflow-x:hidden;}
.clear {clear: both;}
.clearfix::after{content: '';clear: both;display: block;}
.fl{float: left;}
.fr{float: right;}
.container{width: 1200px;margin: 0 auto;}
.wrap {width: 100%;_zoom: 1;position: relative;transition: all .4s;margin: 0 auto;}
.line_1{overflow: hidden;text-overflow: ellipsis;display: -webkit-box !important;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
.line_2{overflow: hidden;text-overflow: ellipsis;display: -webkit-box !important;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.line_3{overflow: hidden;text-overflow: ellipsis;display: -webkit-box !important;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}
.line_4{overflow: hidden;text-overflow: ellipsis;display: -webkit-box !important;-webkit-line-clamp: 4;-webkit-box-orient: vertical;}
.line_11{overflow: hidden;text-overflow: ellipsis;display: -webkit-box !important;-webkit-line-clamp: 11;-webkit-box-orient: vertical;}
/*pubilc end*/

.flex{
	display: flex;
	display: -webkit-flex;
}

/*header*/
header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	z-index: 9999;
}
.header-top{
	background-color: #ffffff;
	position: relative;
}
.header-top .container{
	position: relative;
	justify-content: space-between;
	align-items: center;
	width: 96%;
}
.logo{
	/*position: absolute;
	left: 0;
	top: 0;*/
	line-height: 100px;
}
.logo img.pc-logo{
	height: 50px;
}
.ph-logo{
	max-height: 50px;
	display: none;
}
.header-logo{
	height: 100%;
	align-items: center;
	justify-content: center;
	height: 80px;
	line-height: 80px;
}
.header-logo span{
	font-weight: bold;
	font-size: 24px;
	margin-right: 10px;
}
.header-logo img{
	height: 50px;
}
.header-search{
	/*position: absolute;
	right: 0;
	top: 0;*/
	height: 100%;
	align-items: center;
	justify-content: center;
}
.header-search form{
	height: 20px;
	border: 1px solid #cccccc;
	padding: 0 5px;
	align-items: center;
	border-radius: 5px;
}
.header-search input[type=text]{
	height: 18px;
	color: #666;
	font-size: 12px;
}
.header-search .inp-submit{
	width: 14px;
	height: 14px;
	cursor: pointer;
	background-image: url(../images/search.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.language img{
	height: 20px;
	display: block;
}
.language ul{
	margin-left: 5px;
	gap: 5px;
}
.phone-menu{
	width: 36px;
	height: 24px;
	display: none;
	position: relative;
}
.phone-menu span {
	display: block;
	width: 100%;
	height: 4px;
	background-color: #2e2e2e;
	border-radius: 2px;
	position: absolute;
	top: 0;
	transition: 0.3s;
}
.phone-menu span:nth-child(1){
	top: 0;
}
.phone-menu span:nth-child(2){
	top: 10px;
}
.phone-menu span:nth-child(3){
	top: 20px;
}
.phone-menu.active span:nth-child(1){
	opacity: 0;
}
.phone-menu.active span{
	top: 50%;
}
.phone-menu.active span:nth-child(2) {
	transform: translateY(-50%) rotate(45deg);
}
.phone-menu.active span:nth-child(3) {
	transform: translateY(-50%) rotate(-45deg);
}
.header-nav-ul{
	justify-content: space-around;
}
.header-nav-ul>li{
	padding: 20px 0;
	position: relative;
}
.header-nav-ul>li.dropdown>a{
	padding-right: 20px;
	position: relative;
}
.header-nav-ul>li.dropdown>a:after{
	content: "";
	position: absolute;
	top: 5px;
	right: 3px;
	width: 5px;
	height: 5px;
	border-top: 2px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	transform: rotate(-45deg);
	box-shadow: -1px 1px 1px #333;
}
.header-nav-ul>li>a{
	display: block;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	padding: 0 5px;
	text-shadow: 1px 1px #333;
}
.header-nav-ul>li>ul{
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(255, 255, 255, 0.8);
	display: none;
	padding: 5px 0;
	min-width: 120px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.header-nav-ul>li>ul>li>a{
	display: block;
	padding: 5px 10px;
	white-space: nowrap;
	font-size: 14px;
	color: #333333;
}
header.active .header-nav{
	background-color: rgba(255, 255, 255, 1.0);
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
header.active .header-nav-ul>li.dropdown>a:after{
	border-bottom: 2px solid #333;
	border-left: 2px solid #333;
	box-shadow: -1px 1px 1px #fff;
}
header.active .header-nav-ul>li>a{
	color: #333;
	text-shadow: 1px 1px #fff;
}
/*header*/

/*footer*/
footer{
	background: url(../images/footer_bg.jpg) center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 30px 0 50px;
}

.footer-logo{
/*	text-align: center;*/
}
.footer-content{
	justify-content: space-between;
	margin-top: 200px;
}
.footer-nav{
	margin-bottom: 50px;
	width: 70%;
}
.footer-nav>ul{
	justify-content: space-around;
	align-items: center;
}
.footer-nav>ul>li{
	position: relative;
}
.footer-nav>ul>li>a{
	display: block;
	padding: 0 5px;
	font-size: 12px;
	color: #ffffff;
	font-weight: bold;
	text-shadow: 1px 1px #000;
}
.footer-nav>ul>li.dropdown>a{
	padding-right: 20px;
	position: relative;
}
.footer-nav>ul>li.dropdown>a:after{
	content: "";
	position: absolute;
	top: 2px;
	right: 3px;
	width: 4px;
	height: 4px;
	border-top: 2px solid transparent;
	border-right: 2px solid transparent;
	border-bottom: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	transform: rotate(-45deg);
	box-shadow: -1px 1px 1px #333;
}
.footer-nav>ul>li>ul{
	position: absolute;
	top: 100%;
	left: 0;
	background-color: rgba(255, 255, 255, 0.8);
	display: none;
	padding: 5px 0;
	min-width: 120px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.footer-nav>ul>li>ul>li>a{
	display: block;
	padding: 5px 10px;
	white-space: nowrap;
	font-size: 14px;
	color: #333333;
}
.footer-box{
	width: 25%;
}
.footer-contact {
}
.footer-contact ul li{
	margin-bottom: 6px;
}
.footer-contact ul li a{
	display: block;
	font-size: 14px;
	line-height: 1.7;
	font-weight: bold;
	color: #fff;
}

.footer-link {
	margin-top: 20px;
}
.footer-link ul{
	justify-content: flex-start;
	gap: 20px;
}
.footer-link ul li a{
	display: block;
	width: 25px;
}
.copyright{
	margin-top: 20px;
}
.copyright p,.copyright p a{
	color: #fff;
	font-size: 12px;
}
/*footer*/
/*main*/
main{
	margin-top: 100px;
}
main.index{
	margin-top: 100px;
}
/*main*/
/*index*/
.banner{
	position: relative;
}
.banner-logo{
	position: absolute;
/*	width: 600px;*/
	left: 50%;
	transform: translateX(-50%);
	top: 100px;
	display: none;
}
.banner-img{
	width: 100%;
}
.banner-img>img{
	height: 900px;
	object-fit: cover;
	object-position: top;
	width: 100%;
}
.banner-text{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
/*	align-items: center;*/
	justify-content: center;
/*	background-color: rgba(255, 255, 255, 0.1);*/
}
.banner-text h2{
	font-size: 34px;
	color: #F1541D;
	font-weight: normal;
	padding-top: 240px;
	line-height: 1.75;
/*	font-family: "楷体", "KaiTi", serif;*/
}
.banner-icon{
	position: absolute;
	bottom: -8%;
	left: 50%;
	width: 330px;
	height: 330px;
}
.banner-icon img{
	width: 100%;
	animation: imgrotate 2s linear infinite;
}
@keyframes imgrotate {
	0% {
		transform: rotateY(0deg);
	}

	50% {
		transform: rotateY(180deg);
	}

	100% {
		transform: rotateY(360deg);
	}
}
section{
	overflow: hidden;
	padding: 80px 0 80px;
}
.section-title{
	text-align: center;
	overflow: hidden;
}
.section-title span{
	display: block;
	text-transform: uppercase;
	font-size: 16px;
	color: #aaaaaa;
	font-weight: bold;
	letter-spacing: 8px;
}
.section-title h3{
	margin-top: 10px;
	font-size: 36px;
	color: #000000;
	letter-spacing: 2px;
}
.title-left{
	text-align: left;
}
.title-line{
	padding-bottom: 10px;
	border-bottom: 1px solid #f5f7fa;
}
.about-section{
	margin-top: 120px;
}
.about-section .container{
	justify-content: space-between;
	align-items: center;
}
.about-img{
	width: 46%;
	padding-right: 100px;
	padding-bottom: 80px;
	position: relative;
}
.about-img:after{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	width: 330px;
	height: 330px;
	background: url(../images/about_bg.png) center;
	background-size: cover;
	background-repeat: no-repeat;
}
.about-text{
	width: 46%;
	padding-bottom: 80px;
}
.about-text-txt{
	margin-top: 50px;
}
.about-text-txt p{
	font-size: 16px;
	color: #262626;
	line-height: 1.75;
}
.about-more{
	margin-top: 50px;
}
.about-more a{
	display: inline-block;
	padding: 15px 50px;
	border: 2px solid #cccccc;
	font-size: 12px;
	color: #444444;
}
.about-more a:hover{
	border-color: #ff6b00;
	background-color: #ff6b00;
	color: #ffffff;
}
.product-wrap{
	margin-top: 50px;
	flex-wrap: wrap;
	gap: 2%;
}
.product-item{
	width: 23.5%;
	text-align: center;
	margin-bottom: 2%;
	border: 1px solid #eeeeee;
}
.product-item-img{
	overflow: hidden;
}
.product-item-img img{
	transition: all 0.5s;
}
.product-item-text{
	padding: 0 10px 10px;
}
.product-item-text h2{
	margin-top: 5px;
	line-height: 50px;
	font-size: 16px;
	color: #262626;
	font-weight: normal;
}
.product-item-text p{
	font-size: 12px;
	color: #888888;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.contact-wrap{
	margin-top: 50px;
	justify-content: space-between;
	gap: 4%;
	align-items: center;
}
.contact-img{
	width: 48%;
}
.contact-img img{
	width: 100%;
}
.contact-text{
	width: 48%;
}
.contact-text ul li{
	line-height: 40px;
	align-items: center;
	margin-bottom: 20px;
}
.contact-text ul li i{
	text-align: center;
	font-style: normal;
	width: 40px;
	margin-right: 15px;
}
.contact-text ul li p{
	width: calc(100% - 55px);
	font-size: 16px;
	color: #262626;
	line-height: 40px;
}
.message-wrap{
	justify-content: space-between;
	align-items: center;
	gap: 4%;
	margin-top: 50px;
}
.message-img{
	width: 48%;
}
.message-form{
	width: 48%;
}
.form-item{
	width: 100%;
	align-items: center;
	margin-bottom: 10px;
	justify-content: space-between;
}
.form-item.flex-start{
	align-items: self-start;
}
.form-item-label{
	width: 90px;
	font-size: 16px;
	color: #262626;
	font-weight: bold;
}
.form-item-label em{
	color: red;
	font-style: normal;
}
.form-item-input{
	width: calc(100% - 100px);
	height: 40px;
}
.form-item-textarea{
	height: 100px;
}
.form-input{
	border: 1px solid #cccccc;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	padding: 0 10px;
	font-size: 14px;
	color: #666666;
}
.form-input:focus{
	border-color: #ff6b00;
}
.form-textarea{
	padding: 10px;
}
.form-item-btn{
	justify-content: flex-end;
	align-items: center;
}
.form-btn{
	width: 100px;
	height: 40px;
	background-color: #ff6b00;
	color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
}
.form-item-code .form-input{
	width: 70%;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.form-item-code img{
	width: 30%;
}
.news-wrap{
	margin-top: 50px;
	columns: 3;
	column-gap: 20px;
}
.news-item{
	break-inside: avoid;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}
.news-item-img{
	overflow: hidden;
}
.news-item-img:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}
.news-item-img img{
	transition: all 0.5s;
	width: 100%;
}
.news-item-title{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 25px;
	z-index: 9;
}
.news-item-title h2{
	color: #ffffff;
	font-weight: normal;
	font-size: 18px;
}
.news-item-desc{
/*	display: none;*/
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	padding: 60px 25px 25px;
	transition: all 0.5s;
}
.news-item-desc p{
	color: #ffffff;
	font-size: 14px;
}
.news-phone-more{
	display: none;
	text-align: center;
}
.news-phone-more a {
	display: inline-block;
	padding: 15px 50px;
	border: 2px solid #cccccc;
	font-size: 12px;
	color: #444444;
}
.brand-section{
	background-color: transparent;
	background-image: url(../images/brand_bg.png);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.brand-wrap{
	margin-top: 50px;
	gap: 2%;
}
.brand-item{
	width: 32%;
	background-color: #ffffff;
	padding: 22px 22px 30px;
}
.brand-item-img img{
	width: 100%;
}
.brand-item-text{
	margin-top: 5px;
	text-align: center;
	padding-top: 25px;
}
.brand-item-text h4{
	font-size: 18px;
	color: #262626;
	font-weight: normal;
}
.brand-item-text p{
	margin-top: 15px;
	font-size: 14px;
	color: #888888;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box !important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.devel-section{
	background-color: rgb(243, 243, 243);
}
.devel-wrap{
	justify-content: space-between;
	align-items: center;
}
.devel-text{
	width: 40%;
}
.devel-desc{
	margin-top: 50px;
}
.devel-desc h4{
	font-size: 24px;
	margin-bottom: 20px;
	font-weight: normal;
}
.devel-desc p{
	font-size: 16px;
	color: #262626;
	line-height: 1.75;
}
.devel-img{
	width: 55%;
}
.honors-section{
	background-color: transparent;
	background-image: url(../images/honors_bg.png);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}
.honors-wrap{
	margin-top: 50px;
	position: relative;
}
.swiper-thumbs{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 10px 200px;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 9;
}
.honors-wrap .gallery-thumbs .swiper-slide{
	opacity: 0.6;
}
.honors-wrap .gallery-thumbs .swiper-slide-thumb-active{
	opacity: 1;
}
.swiper-button{
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
}
.swiper-button .swiper-button-next:after, 
.swiper-button .swiper-button-prev:after{
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
}
.swiper-button .swiper-button-prev{
	left: 0;
}
.swiper-button .swiper-button-next{
	right: 0;
}
/*index*/
/*ny*/
.nybanner .banner-text{
	width: 1200px;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0);
	justify-content: center;
	align-items: center;
}


.nybanner .banner-text h2{
	color: #ffffff;
	font-style: normal;
	padding-bottom: 0;
	font-weight: bold;
	font-family: initial;
}
.nybanner .banner-img>img{
	height: 700px;
	object-position: center;
}
.nybanner .banner-logo{
	left: auto;
	right: 0;
	width: 200px;
}
.nynav-section{
	padding-top: 5px;
	padding-bottom: 0;
}
.nynav{
	border-bottom: 1px solid #f2f2f2;
}
.nynav .swiper-container{
	padding: 0 30px;
}
.nynav>div>ul{
	justify-content: center;
}
.nynav.nyslide>div>ul{
	justify-content: flex-start;
}
.nynav>div>ul>li{
	width: auto;
}
.nynav>div>ul>li>a{
	display: block;
	padding: 20px 30px;
	font-size: 18px;
	color: #262626;
	border-bottom: 2px solid transparent;
}
.nynav>div>ul>li.cur>a{
	border-bottom: 2px solid #ff6b00;
}
.nynav .swiper-button-next:after , 
.nynav .swiper-button-prev:after{
	font-size: 16px;
	font-weight: bold;
	color: #262626;
}
.nynav .swiper-button-next{
	background-color: #fff;
	right: 0px;
}
.nynav .swiper-button-prev{
	background-color: #fff;
	left: 0px;
}
.nynav-section{
	overflow: visible;
}
.nynav>div>ul>li.nydropdown{
	position: relative;
}
.nynav>div>ul>li.nydropdown>a:after{
	display: inline-block;
	content: '';
	border-color: transparent;
	border-style: solid;
	opacity: .95;
	border-top-color: #333333;
	border-top-color: ;
	border-width: 5px 4px 0 4px;
	margin-left: 4px;
	position: relative;
	top: -2px;
}
.nydropdown-menu{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 100%;
	z-index: 9;
	border: 1px solid #eeeeee;
	box-shadow: 0 4px 8px rgba(0, 0, 0, .05);
	background: #ffffff;
	padding: 10px 0;
	display: none!important;
}
.nydropdown-menu.active{
	display: block!important;
}
.nydropdown-menu:after{
	content: '';
	width: 12px;
	height: 12px;
	border: 1px solid #eeeeee;
	border-right: 0;
	border-bottom: 0;
	background: #ffffff;
	position: absolute;
	top: -7px;
	left: 50%;
	margin-left: -7px;
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.nydropdown-menu>li>a{
	white-space: nowrap;
	display: block;
	padding: 0 20px;
	line-height: 35px;
	font-size: 14px;
	color: #333333;
}
/*ny*/
/*about*/
.about .nybanner .banner-text{
	justify-content: flex-start;
	align-items: flex-end;
}
.about .nybanner .banner-text h2{
	padding-top: 0;
	padding-bottom: 50px;
	font-size: 70px;
	color: #1EE0BE;
}
.about-title h1{
	font-size: 24px;
	color: #262626;
	font-weight: normal;
}
.about-details{
	margin-top: 30px;
	font-size: 16px;
	color: #262626;
	line-height: 1.75;
}
.about-details p{
	font-size: 16px;
	color: #262626;
	line-height: 1.75;
}
/*about*/
/*department*/
.department .nybanner .banner-text{
	align-items: flex-end;
	justify-content: flex-end;
}
.department .banner-text h2{
	color: #FE961C;
	padding-top: 0;
	padding-bottom: 10px;
	font-size: 70px;
}
/*department*/
/*product*/
.product .banner-text h2{
	padding-top: 0;
	padding-bottom: 0px;
	font-size: 70px;
}
.product .product-wrap{
	padding-top: 0;
}
/*product*/
/*pages*/
.pages ul{
	justify-content: center;
	align-items: center;
	gap: 3px;
}
.pages ul li a{
	display: block;
	font-size: 12px;
	color: #888888;
	padding: 8px 15px;
	border: 1px solid #dddddd;
	border-radius: 2px;
}

.pages ul li.current a{
	color: #ffffff;
	border-color: #ff6b00;
	background-color: #ff6b00
}
/*pages*/

/*department*/
.department-wrap{
}
.department-img{
	width: 50%;
	background-size: cover;
	background-position: center;
	min-height: 450px;
}
.department-img>img{
	width: 100%;
	display: none;
}
.department-text{
	width: 50%;
	background-color: #e7e5dd;
	padding: 30px;
}
.department-text-title h3{
	font-size: 20px;
	color: #262626;
	margin-bottom: 20px;
}
.department-text-detail{
	font-size: 14px;
	color: #333333;
	line-height: 1.75;
}
.department-text-detail p{
	font-size: 14px;
	color: #333333;
}
/*department*/
/*breadcrumb*/
.breadcrumb{
	padding: 20px 0 5px;
}
.breadcrumb nav{
	line-height: 32px;
}
.breadcrumb nav a{
	font-size: 14px;
	color: #767676;
}
.breadcrumb nav i{
	display: inline-block;
	font-size: 16px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	top: -2px;
	word-spacing: 1px;
	position: relative;
	text-align: center;
	vertical-align: middle;
	max-width: 100%;
}
.breadcrumb nav i:after{
	content: "";
	display: inline-block;
	width: 32px;
	height: 32px;
	background-image: url(../images/breadcrumb.png);
	background-position: center;
	background-size: 12px 12px;
	background-repeat: no-repeat;
}
/*breadcrumb*/
/*product*/
.prodet-section{
	padding-top: 10px;
}
.prodet-wrap{
	justify-content: space-between;
}
.prodet-slide{
	width: 40.5%;
	position: relative;
}
.prodet-slide .prodet-magnifier{
	position: absolute;
	right: 10px;
	top: 10px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, .08);
	-webkit-transition: all .45s cubic-bezier(.15,.2,.1,1);
	border-radius: 50px !important;
	background-color: #fff !important;
	z-index: 1000;
	width: 36px;
	height: 36px;
}
.prodet-slide .prodet-magnifier:before{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border: 2px solid #000;
	border-radius: 100%;
	position: absolute;
	top: 9px;
	left: 9px;
	box-sizing: content-box;
}
.prodet-slide .prodet-magnifier:after{
	content: "";
	display: block;
	width: 2px;
	height: 8px;
	background: #000;
	border-radius: 6px;
	position: absolute;
	top: 19px;
	left: 22px;
	transform: rotate(-45deg);
	box-sizing: content-box;
}
.prodet-slide .gallery-top{
/*	z-index: 9999;*/
}
.ZoomContainer:not(:nth-child(4)){
	display: none;
}
.prodet-text{
	width: 57.5%;
}
.prodet-slide .gallery-thumbs{
	margin-top: 10px;
}
.prodet-slide .gallery-thumbs .swiper-slide{
	opacity: 0.5;
}
.prodet-slide .gallery-thumbs .swiper-slide-thumb-active{
	opacity: 1;
}
.prodet-text-title h1{
	font-size: 30px;
	color: #444444;
	margin-bottom: 5px;
}
.prodet-text-desc{
	margin-top: 30px;
	font-size: 15px;
	color: #676767;
	line-height: 1.75;
}
.prodet-text-down{
	margin-top: 30px;
}
.prodet-text-down a{
	display: inline-block;
	text-align: center;
	line-height: 31px;
	width: 300px;
	height: 35px;
	border: 2px solid #f47021;
	border-radius: 4px 4px 4px 4px;
	background-color: #f47021;
	box-shadow: 0px 0px 2px 0px #333333;
	color: #ffffff;
}
.prodet-detail{
	margin-top: 70px;
}
.prodet-detail-nav-wrap{
	justify-content: center;
}
.prodet-detail-nav-item a{
	padding-bottom: 5px;
	font-size: 15px;
	color: #5e5e5e;
	border-bottom: 2px solid #000000;
}
.prodet-detail-text{
	margin-top: 50px;
	font-size: 15px;
	color: #676767;
	line-height: 1.75;
}
.prodet-detail table td{
	padding: 5px 5px;
}
.related-title{
	margin-top: 25px;
	border-top: 1px solid #ccc;
}
.related-title h2{
	font-size: 30px;
	line-height: 1.5;
	margin-top: 20px;
	font-weight: normal;
}
/*product*/
/*imgWrap*/
.imgWrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 1.0);
	z-index: 10000;
	display: none;
}
.imgContainer{
	height: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.imgContainer .swiper-container{
	height: 80%;
}
.imgContainer img{
	max-height: calc(100% - 40px);
	transition: all 0.7s;
	/*position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 100%;*/
}
.imgContainer p{
	position: absolute;
	width: 100%;
	bottom: 0;
	font-size: 13px;
	color: #ccc;
	line-height: 3;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
}
.imgContainer .swiper-slide{
	display: flex;
	justify-content: center;
	align-items: center;
}
.imgContainer .swiper-slide-active  p{
	opacity: 1;
}
.imgContainer .swiper-button-prev,
.imgContainer .swiper-button-next{
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .4);
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 24px;
	margin-top: 0;
	opacity: 1;
	transition: all .35s cubic-bezier(.12,.75,.4,1);
	-webkit-transition: all .35s cubic-bezier(.12,.75,.4,1);
}
.imgContainer .swiper-button-prev{
	left: 40px;
}
.imgContainer .swiper-button-next{
	right: 40px;
}
.imgContainer .swiper-button-prev:after,
.imgContainer .swiper-button-next:after{
	font-size: 18px;
	font-weight: bold;
	color: #ffffff;
}
.imgWrap-topbar{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 44px;
	z-index: 99;
	justify-content: space-between;
	align-items: center;
}
.imgWrap-topbar .swiper-pagination{
	color: #ccc;
	width: auto;
	bottom: 0;
	left: 10px;
	line-height: 44px;
	font-size: 12px;
}
.imgWrap-topbar .swiper-pagination span{
	padding: 0 3px;
}
.imgWrap-btn{
	background-image: url(../images/default-skin.png) !important;
	width: 44px;
	height: 44px;
	position: relative;
	background: 0 0;
	cursor: pointer;
	overflow: visible;
	-webkit-appearance: none;
	display: block;
	border: 0;
	padding: 0;
	margin: 0;
	float: right;
	opacity: .75;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.imgWrap-btn:hover{
	background-color: transparent !important;
	opacity: 1;
}
.imgWrap-btn-close {
	background-position: 0 -44px;
}
.imgWrap-btn-close:hover {
	background-position: 0 -44px;
}
.imgWrap-btn-zoom {
	background-position: -88px 0;
}
.imgWrap-btn-zoom:hover {
	background-position: -88px 0;
}
.imgWrap-fs .imgWrap-btn-fs{
	background-position: -44px 0;
}
.imgWrap-zoom .imgContainer img{
	max-height: initial;
	transform: scale(1.2);
}
.imgWrap-zoom .imgWrap-btn-zoom {
	background-position: -132px 0;
}
.imgWrap-fs .imgWrap-btn-zoom{
	display: none;
}
/*imgWrap*/
/*news*/
.news .nybanner .banner-text h2{
	padding-top: 0;
	font-size: 70px;
	color: #0945A5;
}
.news-list-item{
	justify-content: space-between;
	padding-bottom: 35px;
	border-bottom: 1px dotted #ddd;
	margin-bottom: 35px;
}
.news-list-item-img{
	width: 30%;
	overflow: hidden;
}
.news-list-item-img img{
	transition: all 0.5s;
}
.news-list-item-text{
	width: 67%;
}
.news-list-item-tit h3{
	line-height: 50px;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	color: #404040;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-list-item-desc{
	margin-top: 5px;
}
.news-list-item-desc p{
	line-height: 22px;
	font-size: 12px;
	color: #999999;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news-list-item-date span{
	margin-top: 5px;
	display: inline-block;
	line-height: 50px;
	font-size: 12px;
	color: #888888;
}
.newsdet-title{
	text-align: center;
}
.newsdet-title h1{
	font-size: 24px;
	color: #404040;
	margin-bottom: 20px;
}
.newsdet-title p{
	font-size: 14px;
	color: #999999;
}
.newsdet-title p span{
	padding: 0 10px;
}
.newsdet-detail{
	margin-top: 50px;
	font-size: 16px;
	color: #404040;
	line-height: 1.75;
}
/*news*/
/*post-nav*/
.post-nav{
	margin-top: 50px;
}
.post-nav-prev a,
.post-nav-next a{
	display: block;
	font-size: 12px;
	color: #666666;
	padding-left: 20px;
	position: relative;
	line-height: 1.5;
}
.post-nav-prev a:after,
.post-nav-next a:after{
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #666666;
	border-right: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-left: 1px solid #666666;
}
.post-nav-prev a:after{
	transform: rotate(-45deg);
}
.post-nav-next a:after{
	left: -3px;
	transform: rotate(135deg);
}
.post-nav-next{
	margin-top: 15px;
}
/*post-nav*/
/*contact*/
.contact .nybanner .banner-text{
	justify-content: flex-start;
	align-items: flex-end;
}
.contact .nybanner .banner-text h2{
	padding-top: 0;
	padding-bottom: 10px;
	font-size: 70px;
	color: #67EBF3;
}
.map-section{
	padding-top: 0;
}
/*contact*/

/*message*/
.message .nybanner .banner-text{
	justify-content: flex-start;
	align-items: flex-start;
}
.message .nybanner .banner-text h2{
	padding-top: 200px;
	font-size: 70px;
	color: #A0E2FA;
}
/*message*/

.black .header-nav-ul>li>a{
	color: #333;
	text-shadow: 1px 1px #fff;
}
.black .header-nav-ul>li.dropdown>a:after{
	border-bottom: 2px solid #333;
	border-left: 2px solid #333;
	box-shadow: -1px 1px 1px #ffffff;
}