@charset "utf-8";

.swiper-banner{
	background: url(load.gif) center no-repeat;
}
.swiper-banner{
	display: block;
	width: 100%;
	height: 912px;
}
.swiper-banner .swiper-slide a{
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.swiper-banner .swiper-pagination{
	position: absolute;
	top: 50%;
	left: 93%;
	width: fit-content;
	height: fit-content;
	transform: translateY(-50%);
}
.swiper-banner .swiper-pagination div{
	position: relative;
	display: block;
	width: 25px;
	height: 35px;
	margin: 8px 0;
	font-size: 18px;
	line-height: 35px;
	color: #fff;
	background: none;
	font-family: 'gothambold';
}
.swiper-banner .swiper-pagination div::after{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 7px;
	height: 7px;
	background-color: #fff;
	border-radius: 50%;
}
.swiper-banner .swiper-pagination div.swiper-pagination-bullet{
	opacity: 1;
}
.swiper-banner .swiper-pagination div.swiper-pagination-bullet b{
	opacity: 0;
}
.swiper-banner .swiper-pagination div.swiper-pagination-bullet::after{
	opacity: 1;
}
.swiper-banner .swiper-pagination div.swiper-pagination-bullet-active b{
	opacity: 1;
}
.swiper-banner .swiper-pagination div.swiper-pagination-bullet-active::after{
	opacity: 0;
}

@media screen and (max-width:1680px) {
	.swiper-banner{
		height: 812px;
	}
}
@media screen and (max-width:1440px) {
	.swiper-banner{
		height: 712px;
	}
}






.header_box{
	position: relative;
	top: 0;
	left: 0;
	z-index: 99;
	min-width: 1300px;
	width: 100%;
	background: #fff;
	transition: none;
}

.header_box .container{
	position: relative;
	z-index: 1;
}


.logo{
	position: absolute;
	top: 22px;
	left: 0;
	z-index: 10;
	display: block;
	width: 180px;
	height: 38px;
	background: url(logo.png) center center/cover no-repeat;
	transition: all 0.5s;
}

.nav{
	float: right;
}
.nav ul li{
	position: relative;
	float: left;
	margin: 0 20px;
}
.nav > ul > li > a{
	position: relative;
	display: block;
	font-size: 16px;
	color: #333;
	font-weight: bold;
	line-height: 80px;
	text-transform: uppercase;
	transition: all 0.4s;
}
.header_bg > .nav > ul > li > a{
	color: #000;
	line-height: 80px;
}
.nav > ul > li > a::after{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	width: 0;
	height: 4px;
	background-color: #bb1c1d;
	border-radius: 30px;
	-webkit-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}
.nav > ul > li > a:hover::after,
.nav > ul > li > a.active::after{
	width: 100%;
	opacity: 1;
}

.header_box.header_color{
	background-color: #fff;
	box-shadow: 0 0 25px 0 rgba(0,0,0,.07);
}
.header_box.active {
    position: fixed;
    top: 0;
    transform: translateY(-101%);
	background-color: #fff;
	box-shadow: 0 0 25px 0 rgba(0,0,0,.07);
}
.header_box.header_color::after,
.header_box.active::after{
	background: none;
}
.header_box.active.slideDown, .header_box.active.slideUp {
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.header_box.active.slidedowm {
    transform: translateY(0);
}
.header_box.header_color .logo,
.header_box.active .logo{
	background-image: url(logo.png);
}
.header_box.header_color .nav > ul > li > a,
.header_box.active .nav > ul > li > a{
	color: #000;
}


.head_search{
	float: right;
	position: relative;
	width: 45px;
	height: 80px;
	transition: all 0.3s;
}
.head_search i{
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	overflow: hidden;
	transform: translate(-50%,-50%);
	cursor: pointer;
	background: url(search.png) center center/24px auto no-repeat;
}
.head_search form {
	display: block;
	position: absolute;
	right: 0;
	top: 80px;
	padding: 0 15px;
	width: 240px;
	height: 0;
	overflow: hidden;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=50);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#7f003065, endColorstr=#7f003065);
	background: rgba(0,0,0,.5);
}
.head_search input[type="text"] {
	display: block;
	float: left;
	width: 160px;
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	border: 1px solid #eee;
	color: #999;
	font-size: 12px;
	padding: 0 10px;
	text-align: left;
}
.head_search input[type="submit"] {
	display: block;
	float: left;
	width: 50px;
	height: 30px;
	background-image: url(search_icon.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 60%;
	cursor: pointer;
	background-color: #bb1c1d;
}

.head_search:hover form {
	height: 60px;
	padding: 15px 15px;
}


.header_bg .head_search,.header_box.header_color{
	height: 80px;
}
.header_bg .head_search i,.header_box.header_color i{
	background-image: url(search.png);
}
.header_bg .head_search form,.header_box.header_color form{
	top: 80px;
}

.search_color.head_search i{
	background: url(search.png) center no-repeat;
}

.header_box.active .head_search i{
	background-image: url(search.png);
}


.nav-product{
	position: fixed;
	top: 80px;
	left: 0;
	width: 100%;
	height: auto;
	background-color: #fff;
	transition: all 0.3s;
	pointer-events: none;
	opacity: 0;
	
}
.nav-pro-menu{
	border-top: 1px solid #eee;
}

.navpro:hover .nav-product{
	box-shadow: 0 20px 20px -20px rgba(0,0,0,0.1);
	pointer-events: auto;
	pointer-events: auto;
	opacity: 1;
}
.productmest .navpro:hover .nav-product{
	display: none;
}


@media screen and (max-width:1680px) {
.nav ul li a{
	font-size: 15px;
}
}
@media screen and (max-width:1440px) {
.nav ul li a{
	font-size: 14px;
}
}





.index-about-box{
	position: relative;
	height: 786px;
	background: url(../images/index-about-bg.jpg) no-repeat center;
	overflow: hidden;
	position: relative;
}



.index-about-left{
	width: 40%;
	padding-top: 2%;
	float: right;
}
.index-about-left h3{
	font-size: 43px;
	line-height: 1;
	color: #000;
	margin-bottom: 4%;
}
.index-about-left p{
	font-size: 18px;
	color: #fff;
	line-height: 1.8;
	margin-bottom: 5%;
}
.index-about-img{
	margin-bottom: 80px;
}


.more{
	display: block;
	width: 190px;
	font-size: 16px;
	text-align: center;
	line-height: 58px;
	color: #fff;
	border-radius: 50px;
	border: 1px solid #fff;
}
.more:hover{
	transform: translateY(-8px);
	box-shadow: 0 8px 25px -12px rgba(0,0,0,.6);
	color: #fff;
	background-color: #bb1c1d;
	border: 1px solid #bb1c1d;
}
.more i{
	display: inline-block;
	width: 20px;
	height: 17px;
	vertical-align: middle;
	margin-left: 10px;
	background: url(more_icon.png) center center/cover no-repeat;
}

.index-about-right{
	width: 50%;
	border-radius: 5px;
	overflow: hidden;
	float: left;
	border-radius: 20px;
}
.index-about-right i,
.about-img i{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 75px;
	height: 75px;
	background: url(../images/video_icon.png) center center/cover no-repeat;
	cursor: pointer;
}
.index-about-num{
	position: absolute;
	left: 0;
	bottom: 10%;
	right: 0;
	width: 80%;
	margin: 0 auto;
	padding: 20px;
}

.image-overlay-blur {
	backdrop-filter: blur(5px);
	border-radius: 30px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s;
}

.index-about-box ol li{
	position: relative;
	float: left;
	margin-right: 4%;
	width: calc(80%/4);
	padding: 50px 20px;
	background-color: rgba(255,255,255,.1);
}
.index-about-box ol li:last-child{
	margin-right: 0;
}

.index-about-box ol li h4{
	font-size: 44px;
	line-height: 1.2;
	color: #fff;
}
.index-about-box ol li h4 em{
	font-style: normal;
	font-size: 16px;
	vertical-align: text-top;
	margin-left: 5px;
}
.index-about-box ol li p{
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
}
.index-service-box{
	width: 100%;
	overflow: hidden;
	padding: 6% 0;
	background: #4a68a6;
}
.index-service-info{
	padding-top: 280px;
}
.index-service-info h2{
	font-size: 55px;
	line-height: 1.2;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 45px;
}
.index-service-info a{
	display: block;
	width: 177px;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 64px;
	background-color: #bb1c1d;
}
.index-service-info a:hover{
	transform: translateY(-8px);
	box-shadow: 0 8px 25px -12px rgba(0,0,0,.6);
}
.index-product-box{
	padding: 90px 0;
}
.index-title{
	padding-bottom: 60px;
}
.index-title h2{
	font-size: 48px;
	color: #000;
	position: relative;
	padding-bottom: 30px;
	text-transform: uppercase;
	font-family: 'gothambold';
}

.index-title h2::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 46px;
    height: 7px;
    background-color: #bb1c1d;
    -webkit-transition: all .3s;
    transition: all .3s;
}


.index-title p{
	font-size: 16px;
	line-height: 1.8;
	color: #585858;
	margin-top: 25px;
	width: 80%;
}
.index-title h2.white,.index-title p.white{
	color: #fff;
}
.index-title h2 span{
	color: #bb1c1d;
}




.index-news-box{
	padding: 90px 0 70px;
	background-color: #fff;
}

.swiper-container-news .swiper-slide{
	width: calc(95%/3);
	margin-right: 2%;
	padding-bottom: 2.5%;
}
.swiper-container-news .swiper-slide:last-child{
	margin-right: 0%;
}
.index-news-box .news_img{
	background-position: center;
	background-image: url(logo.png);
	background-color: #f8f8f8;
	background-size: 45% auto;
	background-repeat: no-repeat;
}
.index-news-box .news_img span{
	display: block;
	padding-bottom: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.5s;
}
.index-news-box .news_text{
	position: relative;
	z-index: -1;
	width: 100%;
	padding: 6%;
	margin: -10px auto 0;
	background-color: #fff;
	transition: all 0.5s;
	
}

.index-news-box .news_text h4{
	font-size: 20px;
	line-height: 2.5;
	font-weight: normal;
}
.index-news-box .news_text p{
	font-size: 16px;
	color: #8b8b8b;
	line-height: 28px;
	height: 56px;
}
.index-news-box .news_text time{
	margin: 3% 0 0;
	display: block;
	width: 100%;
	border-top: 1px solid #e7e5e6;
	font-size: 14px;
	padding-top: 3%;
	color: #8b8b8b;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.index-news-box a:hover .news_img span{
	transform: scale(1.05,1.05);
}
.index-news-box a:hover .news_text{
	background-color: #bb1c1d;
	box-shadow: 0 10px 30px -18px rgba(0,0,0,.15);
}


.index-news-box a:hover h4,
.index-news-box a:hover p,
.index-news-box a:hover time{
	color: #fff;
	border-color: #ef7f37;
}
.news-prev,.news-next,.vi-prev,.vi-next,.brand-prev,.brand-next{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-position: center;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-color: #969696;
	cursor: pointer;
	z-index: 50;
}
.news-prev,.vi-prev,.brand-prev{
	left: -90px;
	background-image: url(../images/brand_prv.png);
}
.news-next,.vi-next,.brand-next{
	right: -90px;
	background-image: url(../images/brand_next.png);
}
.news-prev:hover,.news-next:hover,.vi-prev:hover,.vi-next:hover,.brand-prev:hover,.brand-next:hover{
	background-color: #bb1c1d;
}



.index-product-type ul li{
	margin-bottom: 1%;
	background-color: #f5f5f5;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
.index-product-type ul li a{
	display: block;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
.index-product-img{
	width: 100%;
	overflow: hidden;
}
.index-product-desc{
	width: 30%;
	position: absolute;
	display: flex;
	right: 10%;
	top: 50%;
	 transform: translate(0,-50%);
	z-index: 9;
	justify-content: center;
	align-items: center;
}
.index-product-info h3{
	font-size: 46px;
	line-height: 1;
	font-weight: 800;
	text-transform: uppercase;
	text-align: left;
	position: relative;
	padding-bottom: 40px;
	margin-bottom: 30px;
}
.index-product-info h3 span{
	color: #bb1c1d;
}


.index-product-info h3::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 46px;
    height: 7px;
    background-color: #bb1c1d;
    -webkit-transition: all .3s;
    transition: all .3s;
}



.index-product-info p{
	font-size: 18px;
	line-height: 1.5;
	text-align: left;
}


.index-product-type ol li{
	float: left;
	width: 49.5%;
	min-width: 49.5%;
	margin: 0 1% 1% 0;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}
.index-product-type ol li:nth-child(2n){
	margin-right: 0;
}
.index-product-type ol li .index-pro-img{
	overflow: hidden;
}
.index-product-type ol li h3{
	position: absolute;
	font-size: 36px;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	bottom: 40px;
	font-weight:bolder;
	left: 60px;
	padding-bottom: 25px;
}
.index-product-type ol li h3 span {
    color: #bb1c1d;
}

.index-product-type ol li h3::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    width: 46px;
    height: 7px;
    background-color: #bb1c1d;
    -webkit-transition: all .3s;
    transition: all .3s;
}



.index-product-type ul li:hover{
	background-color: #fff;
	box-shadow: 0 0 25px 0 rgba(0,0,0,.1);
}
.index-product-type ul li:hover img,
.index-product-type ol li:hover img{
	transform: scale(1.05,1.05);
}
.index-contact-box{
	height: 366px;
	background: url(../images/index_contact.jpg) center no-repeat #f5f5f5;
}
.index-contact-box a{
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 85px;
}
.index-contact-box h2{
	font-size: 50px;
	text-transform: uppercase;
	line-height: 1.5;
	color: #000;
}
.index-contact-box p{
	font-size: 20px;
	line-height: 2;
	color: #999;
}
.index-contact-box span{
	margin-top: 25px;
	display: inline-block;
	padding: 20px 40px;
	border-radius: 40px;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	text-transform: uppercase;
	background-color: #bb1c1d;
}



.footer-box{
	padding: 85px 0 70px;
	background-color: #2d2d2d;
	border-bottom: 1px solid #252524;
}
.footer-box-left{
	width: 40%;
}
.footer-box-left h3{
	font-size: 30px;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 30px;
	text-transform: uppercase;
}
.footer-box-left p{
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 16px;
	color: #a8a8a8;
	overflow: hidden;
}
.footer-box-left p span{
	float: left;
	display: inline-block;
	width: 80px;
	color: #fff;
	height: 100%;
}
.footer-box-left p b{
	float: left;
	color: #a8a8a8;
	width: calc(100% - 80px);
	display: inline-block;
	font-weight: normal;
}
.footer-box-msg{
	width: 46%;
}
.msg-name,.msg-email,.msg-tel{
	position: relative;
	width: 30%;
	margin-bottom: 30px;
}
.msg-name,.msg-email{
	margin-right: 5%;
}
.footer-box-msg input[type="text"]{
	width: 100%;
	line-height: 50px;
	background: none;
	border: 0;
	border-bottom: 1px solid #303030;
}
.footer-box-msg textarea{
	width: 100%;
	line-height: 25px;
	height: 100px;
	background: none;
	font-family: "arial";
	border: 0;
	border-bottom: 1px solid #303030;
}
.footer-box-msg input[type="submit"]{
	width: 174px;
	font-size: 16px;
	line-height: 50px;
	border-radius: 30px;
	text-align: center;
	background-color: #bb1c1d;
	color: #fff;
	cursor: pointer;
}
.footer-box-msg em{
	position: absolute;
	left: 0;
	bottom: -30px;
	line-height: 30px;
	font-style: normal;
}
.msg-submit{
	padding-top: 20px;
}

.Validform_wrong {
	color: red;
}
.Validform_right {
	color: green;
}



.foot_link{
	width: 70%;
	display: flex;
	float: left;
	justify-content: center;
}
.foot_link li{
	color: #fff;
	width: 30%;
}
.foot_link li h2{
	color: #fff;
	margin-bottom: 30px;
	text-transform: uppercase;
}


.foot_link li a{
	display: block;
	font-size: 16px;
	line-height: 40px;
	color: #909090;
}
.foot_link li a:hover{
	color: #bb1c1d;
}

.footer-right{
	width: 22.28%;
	float: right;
}
.footer-right img{
	margin-bottom: 50px;
}
.footer-right form{
	background: #fff;
	border-radius: 40px;
	overflow: hidden;
	padding: 3px;
}
.footer-right input[type="text"]{
	float: left;
	width: calc(100% - 60px);
	padding: 0 25px;
	line-height: 38px;
	background: none;
	border: 0;
	color: #8a8a8a;
}
.footer-right input[type="submit"]{
	float: left;
	width: 60px;
	height: 38px;
	border-radius: 20px;
	background:#bb1c1d url(search_icon.png) center no-repeat;
}


.footer-right .share{
	margin-top: 30px;
}






.copy-box{
	font-size: 16px;
	line-height: 70px;
	color: #bebebe;
	background-color: #1a1a1a;
}
.copy-box a{
	color: #bebebe;
}
.copy-box a:hover{
	color: #fff;
}
.share{
	height: 70px;
}
.share a{
	display: inline-block;
	margin-right: 20px;
	opacity: 0.8;
	text-align: center;
	line-height: 32px;
	font-size: 18px;
	background: #2d2d2d;
	width: 32px;
	height: 32px;
	border-radius: 50px;

}
.share a:hover{
	opacity: 1;
	color: #fff;
	background: #bb1c1d;
}

@media screen and (max-width:1680px) {
	.index-about-box{
		padding: 100px 0;
	}
	.index-about-left h3{
		font-size: 38px;
	}
	.index-about-left p{
		font-size: 16px;
	}
	.more{
		width: 175px;
		font-size: 15px;
		line-height: 52px;
	}
	.more i{
		width: 17px;
		height: 15px;
		margin-left: 8px;
	}
	.index-about-right i{
		width: 70px;
		height: 70px;
	}
	.index-about-num{
		width: 94%;
	}
	
	.index-about-box ol li h4{
		font-size: 38px;
	}
	.index-about-box ol li h4 em{
		font-size: 16px;
	}
	.index-about-box ol li p{
		font-size: 16px;
	}
	.index-service-box{
		width: 100%;
		height: 727px;
		background-size: cover;
	}
	.index-service-info{
		padding-top: 260px;
	}
	.index-service-info h2{
		font-size: 50px;
		line-height: 1.2;
		margin-bottom: 45px;
	}
	.index-service-info a{
		width: 170px;
		font-size: 15px;
		line-height: 55px;
	}
	.index-product-box{
		padding: 80px 0;
	}
	.index-title{
		padding-bottom: 70px;
	}
	.index-title h2{
		font-size: 45px;
	}
	.index-title p{
		font-size: 15px;
	}
	.index-product-info h3{
		font-size: 36px;
	}
	.index-product-info p{
		font-size: 17px;
	}
	.index-product-type ol li h3{
		font-size: 32px;
	}
	.index-contact-box{
		height: 316px;
		background-size: cover;
	}
	.index-contact-box a{
		padding-top: 70px;
	}
	.index-contact-box h2{
		font-size: 45px;
	}
	.index-contact-box p{
		font-size: 18px;
	}
	.index-contact-box span{
		margin-top: 20px;
		padding: 16px 36px;
		font-size: 18px;
	}
	.footer-box-left h3{
		font-size: 24px;
		margin-bottom: 26px;
	}
	.footer-box-left p{
		font-size: 17px;
		margin-bottom: 13px;
	}
	.footer-box-left p span{
		width: 75px;
	}
	.footer-box-left p b{
		width: calc(100% - 75px);
	}
	.footer-box-msg input[type="text"]{
		line-height: 46px;
	}
	.footer-box-msg textarea{
		line-height: 22px;
		height: 90px;
	}
	.footer-box-msg input[type="submit"]{
		width: 160px;
		font-size: 15px;
		line-height: 46px;
	}
	.copy-box{
		font-size: 15px;
		line-height: 65px;
	}

}
@media screen and (max-width:1440px) {
	.index-about-box{
		padding: 85px 0;
	}
	.index-about-left h3{
		font-size: 34px;
	}
	.index-about-left p{
		font-size: 14px;
	}
	.more{
		width: 160px;
		font-size: 14px;
		line-height: 46px;
	}
	.more i{
		width: 15px;
		height: 13px;
		margin-left: 6px;
	}
	.index-about-right i{
		width: 65px;
		height: 65px;
	}

	.index-about-num{
		    width: 82%;
	}
	
	.index-about-box ol li {
	    width: calc(88%/4);
	}
	
	.index-about-box ol li h4{
		font-size: 36px;
	}
	.index-about-box ol li h4 em{
		font-size: 14px;
	}
	.index-about-box ol li p{
		font-size: 14px;
	}
	.index-about-img{
		margin-bottom: 50px;
	}
	
	.index-service-box{
		height: 627px;
	}
	.index-service-info{
		padding-top: 230px;
	}
	.index-service-info h2{
		font-size: 45px;
		margin-bottom: 35px;
	}
	.index-service-info a{
		width: 160px;
		font-size: 14px;
		line-height: 54px;
	}
	.index-product-box{
		padding: 70px 0;
	}
	.index-title{
		padding-bottom: 40px;
	}

	.index-title h2{
		font-size: 40px;
	}
	.index-title p{
		font-size: 14px;
	}
	.index-product-info h3{
		font-size: 32px;
	}
	.index-product-info p{
		font-size: 16px;
	}
	.index-product-type ol li h3{
		font-size: 30px;
		left: 42px;
	}
	.index-contact-box{
		height: 266px;
		background-size: cover;
	}
	.index-contact-box a{
		padding-top: 50px;
	}
	.index-contact-box h2{
		font-size: 40px;
	}
	.index-contact-box p{
		font-size: 16px;
	}
	.index-contact-box span{
		margin-top: 18px;
		padding: 13px 30px;
		font-size: 16px;
	}
	.footer-box-left h3{
		font-size: 20px;
		margin-bottom: 22px;
	}
	.footer-box-left p{
		font-size: 16px;
		margin-bottom: 10px;
	}
	.footer-box-left p span{
		width: 70px;
	}
	.footer-box-left p b{
		width: calc(100% - 70px);
	}
	.footer-box-msg input[type="text"]{
		line-height: 42px;
	}
	.footer-box-msg textarea{
		line-height: 20px;
		height: 80px;
	}
	.footer-box-msg input[type="submit"]{
		width: 156px;
		font-size: 14px;
		line-height: 42px;
	}
	.copy-box{
		font-size: 14px;
		line-height: 60px;
	}
	
	.share a{
		margin-right: 14px;
	}

}


.con-banner{
	width: 100%;
	height: 700px;
	background-repeat: no-repeat;
	background-position: center;
}
.about-box{
	padding: 100px 0;
	overflow: hidden;
	background: #f5f5f5;
}
.about-desc{
	width: 80%;
	float: right;
}
.about-desc h2{
	font-size: 48px;
	line-height: 1;
	color: #000;
	margin-bottom: 15px;
}
.about-desc p{
	font-size: 18px;
	line-height: 1.6;
	color: #737373;
}
.about-img{
	position: relative;
	width: 44%;
	border-radius: 10px;
	overflow: hidden;
}

.about-con{
	padding: 80px 0;
}


.about-num ol{
	width: 50%;
	float: right;
}
.about-num ol li{
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding: 45px 30px 0;
	text-align: center;
}
.about-num ol li h4{
	font-size: 52px;
	line-height: 1;
	color: #000;
	padding-bottom: 30px;
	margin-bottom: 20px;
	position: relative;
	font-family: 'gothambold';
}
.about-num ol li h4::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
	right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 46px;
    height: 4px;
    background-color: #bb1c1d;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.about-num ol li em{
	font-size: 20px;
	vertical-align: text-top;
}
.about-num ol li p{
	font-size: 20px;
	line-height: 1;
	color: #585858;
	font-weight: bold;
}
.about-num ol li i{
	display: block;
	float: left;
	width: 70px;
	height: 70px;
	margin-right: 10px;
}
.icon01{
	background: url(../images/icon_01.png) center center/cover no-repeat;
}
.icon02{
	background: url(../images/icon_02.png) center center/cover no-repeat;
}
.icon03{
	background: url(../images/icon_03.png) center center/cover no-repeat;
}
.icon04{
	background: url(../images/icon_04.png) center center/cover no-repeat;
}
.icon05{
	background: url(../images/icon_05.png) center center/cover no-repeat;
}



.about-brand{
	background: #4a68a6;
	overflow: hidden;
	position: relative;
	margin-top: 15px;
}


.about-brand-con{
	padding: 100px 150px 0 100px;	
	width: 50%;
	box-sizing: border-box;
}
.swiper-brand{
	width: 30%;
	overflow: hidden;
	left: calc(50% + 100px);
	bottom: 50px;
	position: absolute;
}

.swiper-brand .swiper-slide-thumb-active img{
	border: 3px solid #bb1c1d!important;
	opacity: 1!important;
}
.swiper-brand img{
	border: 3px solid #fff;
	opacity: .7;
}

.swiper-brand-icon{
	width: 50%;
	float: left;
	overflow: hidden;
	background: #fff;
}
.swiper-brand-icon img{
	width: 100%;
}







.about-honor{
	width: 100%;
	height:786px;
	padding-top: 100px;
	box-sizing: border-box;
	background: url(../images/about-honor.jpg) left no-repeat;
	background-size: cover;
}

.about-honor .fl{
	width: 60%;
}


.honor_list li{
	width: calc((100% - 50px )/5);
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}



.about-factory{
	padding: 100px 0;
	background-color: #f0f0f0;
}
.about-factory-img{
	margin-bottom: 1.5%;
}
.about-factory ul li{
	float: left;
	width: calc(95.5%/4);
	margin-right: 1.5%;
}
.about-factory ul li:last-child{
	margin-right: 0;
}

.about-customized-top{
	width: 100%;
	height: 947px;
	background: url(../images/about_customized.jpg) center no-repeat;
	background-size: cover;
}
.about-customized-info{
	width: 50%;
	padding-top: 205px;
}
.about-customized-info h3{
	font-size: 48px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 15px;
}
.about-customized-info p{
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}
.about-customized-bottom{
	padding: 100px 0;
	background-color: #fff;
}
.about-customized-bottom ul li{
	float: left;
	width: calc(90%/3);
	margin-right: 5%;
}
.about-customized-bottom ul li:last-child{
	margin-right: 0;
}
.about-customized-bottom ul li h4{
	margin: 10px 0 5px;
	font-size: 26px;
	color: #353535;
	line-height: 1.8;
}
.about-customized-bottom ul li p{
	font-size: 16px;
	line-height: 1.8;
	color: #7c7c7c;
}
.about-certification{
	padding: 100px 0;
	overflow: hidden;
}

.about-certification-img{
	padding: 65px 75px;
	background-color: #fff;
	box-shadow: 0 0 40px 0 rgba(0,0,0,.1);
}
.about-certification-img img{
	border: 3px solid #eee;
}
.about-copy{
	font-size: 16px;
	line-height: 70px;
}
.about-share{
	height: 70px;
}
.about-share a{
	display: inline-block;
	margin-left: 8px;
	width: 34px;
	height: 34px;
	background-size: cover;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.about-facebook{
	background-image: url(../images/about_icon01.png);
}
.about-linkedin{
	background-image: url(../images/about_icon02.png);
}
.about-whatsapp{
	background-image: url(../images/about_icon04.png);
}
.about-instagram{
	background-image: url(../images/about_icon03.png);
}
.about-tiktok{
	background-image: url(../images/about_icon05.png);
}



@media screen and (max-width:1680px) {
	.con-banner{
		height: 720px;
		background-size: cover;
	}
	.about-box{
		padding: 90px 0;
	}
	.about-desc h2{
		font-size: 44px;
	}
	.about-desc p{
		font-size: 16px;
	}
	.about-num{
		padding-top: 70px;
	}
	.about-num ol li h4{
		font-size: 38px;
	}
	.about-num ol li em{
		font-size: 18px;
	}
	.about-num ol li p{
		font-size: 13px;
	}
	.about-num ol li i{
		width: 62px;
		height: 62px;
	}
	.about-factory,.about-customized-bottom,.about-certification{
		padding: 90px 0;
	}
	.about-customized-top{
		height: 820px;
		background-size: cover;
	}
	.about-customized-info{
		padding-top: 140px;
	}
	.about-customized-info h3{
		font-size: 44px;
	}
	.about-customized-info p{
		font-size: 18px;
	}
	.about-customized-bottom ul li h4{
		font-size: 23px;
	}
	.about-customized-bottom ul li p{
		font-size: 15px;
	}
	.about-certification::after{
		height: 545px;
		background-size: cover;
	}
	.about-copy{
		font-size: 15px;
		line-height: 65px;
	}
	.about-share{
		height: 65px;
	}
	.about-share a{
		width: 32px;
		height: 32px;
	}
	.about-honor{
		height: 654px;
	}
	
}
@media screen and (max-width:1440px) {
	.con-banner{
		height: 650px;
		background-size: cover;
	}
	.about-box{
		padding: 80px 0;
	}
	.about-desc h2{
		font-size: 40px;
	}
	.about-desc p{
		font-size: 15px;
	}
	.about-num{
		padding-top: 60px;
	}
	.about-num ol li h4{
		font-size: 34px;
	}
	.about-num ol li em{
		font-size: 16px;
	}
	.about-num ol li p{
		font-size: 12px;
	}
	.about-num ol li i{
		width: 55px;
		height: 55px;
		margin-right: 5px;
	}
	.about-factory,.about-customized-bottom,.about-certification{
		padding: 80px 0;
	}
	
	
	.about-customized-top{
		height: 672px;
		background-size: cover;
	}
	.about-customized-info{
		padding-top: 110px;
	}
	.about-customized-info h3{
		font-size: 40px;
	}
	.about-customized-info p{
		font-size: 16px;
	}
	.about-customized-bottom ul li h4{
		font-size: 20px;
	}
	.about-customized-bottom ul li p{
		font-size: 14px;
	}
	.about-certification::after{
		height: 485px;
		background-size: cover;
	}
	.about-copy{
		font-size: 14px;
		line-height: 60px;
	}
	.about-share{
		height: 60px;
	}
	.about-share a{
		width: 30px;
		height: 30px;
	}
	
	.about-honor{
		height: 592px;
	}
	
	
}


.support-banner{
	width: 100%;
	height: 770px;
	background: url(../images/support.jpg) center no-repeat
}

.service-one{
	background: url(../images/service-one.jpg) center no-repeat;
	background-size: cover;
	width: 100%;
	height: 785px;
}

.service-info{
	width: 42%;
	padding-top: 205px;
}
.service-info h3{
	font-size: 48px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 15px;
}
.service-info p{
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}



.support-oem{
	padding: 90px 0;
	background: url(../images/support-oem.jpg) no-repeat;
	background-size: cover;
	width: 100%;
}
.support-oem .index-title{
	width: 54%;
	color: #fff;
}
.support-oem ul{
	background: #8689c0;
	width: 810px;
	text-align: center;
	box-sizing: border-box;
	padding: 50px 80px;
	border-radius: 20px;
}


.support-oem ul li{
	float: left;
	width: calc(88%/4);
	text-align: center;
	margin: 3% 4% 3% 0;

}
.support-oem ul li:nth-child(4n){
	margin-right: 0;
}
.support-img{
	width: 100%;
	padding-bottom: 49%;
}
.support-01{
	background: url(../images/support_01.png) center no-repeat ;
}
.support-02{
	background: url(../images/support_02.png) center no-repeat ;
}
.support-03{
	background: url(../images/support_03.png) center no-repeat ;
}
.support-04{
	background: url(../images/support_04.png) center no-repeat ;
}
.support-05{
	background: url(../images/support_05.png) center no-repeat ;
}
.support-06{
	background: url(../images/support_06.png) center no-repeat ;
}
.support-07{
	background: url(../images/support_07.png) center no-repeat ;
}

.support-desc{
	margin-top: 10px;
	height: 40px;
	color: #fff;
}
.support-desc h4{
	font-size: 16px;
	color: #fff;
	line-height: 22px;
	font-weight: normal;
	margin-bottom: 8%;
}
.support-desc p{
	font-size: 20px;
	line-height: 32px;
	height: 256px;
	color: #989898;
}


.support-throughput{
	padding: 80px 0;
}
.support-throughput .index-title p{
	width: 100%;
}




.projects-banner{
	width: 100%;
	height: 734px;
	background: url(../images/projects.jpg) center no-repeat
}

.projects-advantage{
	width: 100%;
	padding: 90px 0;
}

.projects-advantage-inner{
	background: #a3bddd;
	display: flex;
	justify-content: center;
}

.projects-advantage-tab{
	float: left;
	width: 30%;
	box-sizing: border-box;
	padding: 80px 100px;
    display: flex;
    flex-direction: column;
    text-align: center
	
}

.projects-advantage-tab img{
	width: 178px;
}

.projects-advantage-tab h2{
	color: #fff;
	font-size: 30px;
	margin-bottom: 20px;
}
.projects-advantage-tab p{
	color: #fff;
	font-size: 18px;
}



.projects-service{
	margin-bottom: 50px;
}


.projects-service-top{
	background: url(../images/projects-service.jpg) top center no-repeat;
	height: 542px;
	margin-top: -150px;
}

.service-top-con{
	padding-top: 250px;
	padding-left: 100px;
	width: 50%;
}

.service-top-con h2{
	font-size: 28px;
	color: #333;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.service-top-con p{
	font-size: 18px;
	color: #666;
	line-height: 1.4;
}

.projects-service-bottom{
	display: flex;
	justify-content: center;
	margin-top: 15px;
}
.service-bottom-tab{
	float: left;
	width: 50%;
	box-sizing: border-box;
    display: flex;
    flex-direction: column;
	background: #8689c0;
	
}
.service-bottom-tab div{
	padding: 40px 50px 40px 50px;
	color: #fff;
}
.service-bottom-tab div h2{
	font-size: 28px;
	margin-bottom: 20px;
}
.service-bottom-tab div p{
	font-size: 18px;
	line-height: 1.4;
	width: 80%;
}

.service-bottom-tab.fl{
	margin-right: 15px;
	background: #4a68a6;
}




.projects-case{
	padding: 90px 0 70px;
	background-color: #fff;
}

.projects-case .swiper-container-case .swiper-slide{
	width: calc(96%/5);
	margin-right: 1%;
	padding-bottom: 2.5%;
}
.projects-case .swiper-container-case .swiper-slide:last-child{
	margin-right: 0%;
}
.projects-case .news_img{
	background-position: center;
	background-image: url(logo.png);
	background-color: #f8f8f8;
	background-size: 45% auto;
	background-repeat: no-repeat;
}
.projects-case .news_img span{
	display: block;
	padding-bottom: 120%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.5s;
}
.projects-case .news_text{
	position: relative;
	width: 100%;
	padding: 6% 0;
}

.projects-case .news_text h4{
	font-size: 18px;
	line-height: 1.2;
	text-transform: uppercase;
}

.projects-case .swiper-slide:hover .news_img span {
    transform: scale(1.05,1.05);
}




@media screen and (max-width:1680px) {
	.support-banner{
		height: 625px;
		background-size: cover;
	}
	.projects-banner{
		height: 610px;
		background-size: cover;
	}
	
	.support-oem{
		padding: 80px 0;
	}


	.support-desc p{
		font-size: 18px;
		line-height: 28px;
		height: 224px;
	}
	.projects-advantage-tab {
	    padding: 80px 45px;
	}
	
	.projects-advantage-tab h2 {
	    font-size: 28px;
	    margin-bottom: 20px;
	}
	
	.service-bottom-tab div h2 {
	    font-size: 26px;
	}
	.service-bottom-tab div p{
		width: 100%;
		font-size: 17px;
	}
	
	
	
}
@media screen and (max-width:1440px) {
	.support-banner{
		height: 552px;
		background-size: cover;
	}
	.projects-banner {
	    height: 530px;
	    background-size: cover;
	}
	
	.support-oem{
		padding: 70px 0;
	}

	.support-desc p{
		font-size: 16px;
		line-height: 24px;
		height: 192px;
	}
	
	.service-one{
		height: 645px;
	}
	.service-info {
	    padding-top: 160px;
	}
	
	.projects-advantage-tab {
	    padding: 80px 35px;
	}
	
	.projects-advantage-tab h2 {
	    font-size: 26px;
	    margin-bottom: 16px;
	}
	
	.service-top-con {
	    padding-left: 66px;
	}
	
	.service-bottom-tab div h2 {
	    font-size: 24px;
	    margin-bottom: 20px;
	}
	.service-bottom-tab div p{
		width: 100%;
		font-size: 16px;
	}
	
	.service-bottom-tab div {
	    padding: 40px 40px 40px 40px;
	    color: #fff;
	}
	
	.projects-case .news_text h4 {
	    font-size: 14px;
	}
	
	
	
}






.contact-banner{
	width: 100%;
	height: 700px;
	background: url(../images/contact.jpg) center no-repeat;
}
.contact-online{
	background: #eee;
	position: relative;
	overflow: hidden;
	padding: 100px 0;
}

.online-list{
	width: 72%;
	float: right;
	border-radius: 12px 12px 0 0;
	
}
.online-list ul{
    display: flex;
}
.online-list ul li{
	width: 25%;
	float: left;
	padding: 0 30px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	text-align: center;

	
}
.oneline-img{
	width: 50%;
	margin: 0 auto 5%;
	border-radius: 50%;
	overflow: hidden;
	box-shadow:  0 10px 25px -10px rgba(0,0,0,.25);
}
.oneline-img img{
	width: 100%;
}
.online-list ul li h4{
	font-size: 20px;
	line-height: 1;
	color: #000;
	margin-bottom: 5%;
}
.online-list ul li p{
	font-size: 16px;
	line-height: 2;
	color: #393939;
}
.online-list ul li p strong{
	color: #000;
}





.contact-box{
	padding: 90px 0;
	background-color: #fff;
}

.contact-box .container {
	background: #f4f4f4;
	overflow: hidden;
	border-radius: 20px;
}

.contact-desc{
	position: relative;
	width: 570px;
	padding: 3% 4%;
	box-sizing: border-box;
	background: #4a68a6;
	overflow: hidden;
}

.contact-desc h3{
	font-size: 24px;
	line-height: 1.4;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 8%;
}

.contact-desc ul{
	display: flex;
	flex-wrap: wrap;
}

.contact-desc ul li{
	position: relative;
	margin-bottom: 5%;
	width: 80%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.contact-desc ul li:nth-child(1) {
   width: 50%;
}
.contact-desc ul li:nth-child(2) {
  width: 50%;
}
.contact-desc ul li i{
	width: 50px;
	height: 50px;
}
.contact-desc ul li h5{
	font-size: 18px;
	line-height: 1.8;
	font-weight: normal;
	color: #fff;
}
.contact-desc ul li p{
	font-size: 16px;
	line-height: 1.8;
	color: #fff;
}
.icon-email{
	background: url(../images/con_email_white.png) center center/cover no-repeat;
}
.icon-tel{
	background: url(../images/con_tel_white.png) center center/cover no-repeat;
}
.icon-add{
	background: url(../images/con_add_white.png) center center/cover no-repeat;
}

.contact-qr{
	display: flex;
	flex-wrap: wrap;
	margin-top: 25px;
}

.contact-qr-list{
	position: relative;
	width: 100px;
	margin-right: 25px;
	display: flex;
	flex-direction: column;
	text-align: center;
}
.contact-qr-list img{
	width: 80px;
	margin: 0 auto;
}
.contact-qr-list p {
    margin-top: 10px;
	color: #acb7d2;
}


.contact-msg{
	padding: 7% 8%;
	box-sizing: border-box;
	width: calc(100% - 570px);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.contact-msg form{
	width: 100%;
}

.contact-msg input[type="text"]{
	width: 100%;
	line-height: 50px;
	background: none;
	border: 0;
	color: #333;
	border-bottom: 1px solid #d2d2d2;
}


.contact-msg input[type="text"]::placeholder{
	color: #000;
}
.contact-msg textarea{
	width: 100%;
	line-height: 25px;
	height: 100px;
	background: none;
	font-family: "arial";
	border: 0;
	border-bottom: 1px solid #d2d2d2;
}
.contact-msg input[type="submit"]{
	margin-top: 4%;
	width: 174px;
	font-size: 16px;
	line-height: 50px;
	border-radius: 30px;
	text-align: center;
	background-color: #2d2d2d;
	color: #fff;
	transition: all 0.4s;
	cursor: pointer;
}
.contact-msg input[type="submit"]:hover{
	background-color: #bb1c1d;
}
.contact-msg em{
	position: absolute;
	left: 0;
	bottom: -20px;
	line-height: 1;
	font-style: normal;
}


@media screen and (max-width:1680px) {
	.contact-banner{
		height: 580px;
		background-size: cover;
	}
	.contact-online{
		padding: 70px 0;
	}
	.online-list ul li h4{
		font-size: 17px;
	}
	.online-list ul li p{
		font-size: 14px;
	}
	.contact-box{
		padding: 80px 0;
	}
	.contact-desc h3{
		font-size: 22px;
	}

	.contact-desc ul li i{
		width: 45px;
		height: 45px;
	}
	.contact-desc ul li h5{
		font-size: 17px;
	}
	.contact-desc ul li p{
		font-size: 15px;
	}
	.contact-msg input[type="text"]{
		line-height: 48px;
	}
	.contact-msg textarea{
		line-height: 24px;
		height: 96px;
	}
	.contact-msg input[type="submit"]{
		margin-top: 3%;
		width: 168px;
		font-size: 15px;
		line-height: 48px;
	}
	.online-list ul li {
	    padding: 0 10px;
	}
	
	
}
@media screen and (max-width:1440px) {
	.contact-banner{
		height: 480px;
		background-size: cover;
	}
	.contact-online{
		padding: 60px 0;
	}
	.online-list ul li h4{
		font-size: 16px;
	}
	.online-list ul li p{
		font-size: 13px;
	}
	.contact-box{
		padding: 70px 0;
	}
	.contact-desc h3{
		font-size: 20px;
	}

	.contact-desc ul li i{
		width: 40px;
		height: 40px;
	}
	.contact-desc ul li h5{
		font-size: 16px;
	}
	.contact-desc ul li p{
		font-size: 14px;
	}
	.contact-msg input[type="text"]{
		line-height: 46px;
	}
	.contact-msg textarea{
		line-height: 22px;
		height: 90px;
	}
	.contact-msg input[type="submit"]{
		margin-top: 3%;
		width: 160px;
		font-size: 14px;
		line-height: 46px;
	}
	
	.online-list ul li {
	    padding: 0 10px;
	}
	
}



.news-box{
	padding: 80px 0;
	overflow: hidden;
}
.news-list ol li{
    position: relative;
    margin-bottom: 25px;
    background: #fff;
	overflow: hidden;
	transition: all 0.5s;
}
.news-list ol li a{
	position: relative;
    display: block;
    width: 100%;
    height: 100%;
	padding: 25px;
    overflow: hidden;
	box-sizing: border-box;
}
.news-list ol li .news-img{
    float: left;
    width: 25%;
    height: 180px;
	background: url(logo02.png) center no-repeat #f4f4f4;
    background-size: 150px;
	overflow: hidden;
	border-radius: 10px;
}
.news-list ol li .news-img div{
    width: 100%;
    height: 100%;
	background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	overflow: hidden;
	transition: all 0.5s;
}
.news-list ol li .news-info{
	position: absolute;
	top: 50px;
	left: 30%;
    width: 50%;
	transition: all 0.5s;
}
.news-list ol li .news-info h3{
    display: block;
    width: 100%;
    padding-bottom: 15px;
	font-size: 26px;
	text-overflow: ellipsis;
	white-space: nowrap;
    color: #333;
	overflow: hidden;
}
.news-list ol li .news-info p{
	font-size: 15px;
    height: 50px;
    line-height: 25px;
	color: #999;
    overflow: hidden;
}
.news-list ol li .news-date{
	position: absolute;
	top: 50px;
	right: 50px;
    width: 100px;
    height: 150px;
	text-align: right;
    overflow: hidden; 
}
.news-list ol li .news-date span{
	display: block;
	font-family: "arial";
	font-size: 36px;
	transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.news-list ol li .news-date font{
    display: block;
    font-family: "arial";
	font-size: 32px;
	color: #333;
	transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.news-list ol li .news-date item{
	position: absolute;
	bottom: -50px;
	right: 5px;
    display: block;
    width: 13px;
    height: 26px;
	background: url(../images/r_arrow.png) no-repeat center;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
}
.news-list ol li:hover{
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, .1);
}
.news-list ol li:hover .news-img div{
    transform: scale(1.1, 1.1);
}
.news-list ol li:hover .news-info{
    left: calc(30% + 20px);
}
.news-list ol li:hover .news-date item{
    bottom: 30px;
}
.news-list ol li:hover .news-info h3{
	color: #bb1c1d;
}



.news_show_left{
	float: left;
	width: 27%;
	padding: 30px;
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	overflow: hidden;
}
.news_show_left h2 {
	font-size: 1.5em;
	font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
	color: #000;
    text-align: left;
}
.news_info{
	padding-bottom: 25px;
	line-height: 30px;
	font-size: 16px;
	color: #999;
	border-bottom: 1px solid #eee;
}
.news_info a{
	display: block;
	width: 180px;
	padding: 16px 10px;
	margin-top: 30px;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	color: #fff;
	background: #bb1c1d;
	border-radius: 40px;
	cursor: pointer;
}
.news_content{
	float: right;
	width: 70%;
	font-size: 16px;
	padding: 50px 30px;
	line-height: 28px;
	color: #555;
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	overflow: hidden;
}
.news_show_content p {
	margin_-bottom: 10px;
}
.news_info a:hover{
	background-color: #bb1c1d;
}
.light {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 100;
    display: none;
    padding: 25px 10px 13px;
    background-color: #fff;
    border: 4px solid #ddd;
    transform: translate(-50%,-50%);
}
.light i {
    position: absolute;
    right: 8px;
    top: 8px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(closed_02.png) center no-repeat;
    background-size: cover;
    cursor: pointer;
}
.light img {
    width: 250px;
}
.light p {
    text-align: center;
}

@media screen and (max-width:1680px) {
	.news-box{
		padding: 70px 0;
	}
	.news_list ol li a{
		padding: 23px;
	}
	.news_list ol li .news-img{
		height: 210px;
	}
	.news_list ol li .news-info h3{
		font-size: 20px;
	}
	.news_list ol li .news-info p{
		font-size: 14px;
	}
	.news_list ol li .news-date font{
		font-size: 29px;
	}
	.news_list ol li .news-date{
		top: 48px;
	}
	.news_info{
		font-size: 15px;
	}
	.news_info a{
		padding: 15px 8px;
		font-size: 15px;
		width: 170px;
	}
}
@media screen and (max-width:1440px) {
	.news-box{
		padding: 60px 0;
	}
	.news_list ol li a{
		padding: 20px;
	}
	.news_list ol li .news-img{
		height: 200px;
	}
	.news_list ol li .news-info h3{
		font-size: 18px;
	}
	.news_list ol li .news-info p{
		font-size: 13px;
	}
	.news_list ol li .news-date font{
		font-size: 27px;
	}
	.news_list ol li .news-date{
		top: 45px;
	}
	.news_info{
		font-size: 14px;
	}
	.news_info a{
		padding: 13px 8px;
		font-size: 14px;
		width: 160px;
	}
}


/* expage */
.curr {
	display: inline-block;
	padding:0 12px;
	margin-right: 1px;
	font-size: 16px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	background: #cecece;
	border-radius: 4px;
}
a.page {
	display: inline-block;
	padding:0 12px;
	margin-right: 1px;
	font-size: 16px;
	line-height: 35px;
	text-align: center;
	color: #fff;
	background: #bb1c1d;
	border-radius: 4px;
}
a.page:visited {
	line-height: 42px;
	text-decoration: none;
	color: #fff;
}
.ra {
	color: #666;
}
.ra a,
.ra a:link {
	text-decoration: none;
	color: #666;
}
.ra a:hover {
	text-decoration: underline;
	color: #666;
}
.red {
	color: #ff3330;
}
.yrr {
	color: #FF9900;
}
.bb {
	font-weight: bold;
}
.expage {
	width: 100%;
	padding-top: 30px;
	margin-left: 0px;
	line-height: 30px;
	text-align: center;
}
.error {
	border: 1px #f40 solid;
}
.right {
	border: 1px #44b549 solid;
}



.pro-type{
	font-size: 0;
	display: flex;
	justify-content: center;
}
.pro-type .pro-item{
	width: 160px;
}
.pro-type .pro-item > a{
	position: relative;
	display: inline-block;
	padding: 20px 0;
}
.pro-type .pro-img{
	width: 60px;
	height: 60px;
	margin: 0 auto 8px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.pro-type .pro-item > a h3{
	font-size: 16px;
	font-weight: normal;
	color: #000;
}
.pro-type .pro-item > a::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	margin: 0 auto;
	display: block;
	width:  0;
	height: 2px;
	background-color: #bb1c1d;
	transition: 0.3s all;
}
.pro-type .pro-item > a.on::after,
.pro-type .pro-item > a:hover::after{
	width: 100%;
}

.pro-type .pro-item > a:hover h3,
.pro-type .pro-item > a.on h3{
	color: #bb1c1d;
}



.item-menu{
	position: absolute;
	top: 141px;
	left: 50%;
	z-index: 10;
	height: 0;
	min-height: 0;
	max-height: 0;
	margin-left: -100px;
	width: 200px;
	background-color: #fff;
	box-shadow: 0 12px 20px -10px rgba(0,0,0,.15);
	overflow: hidden;
}
.item-menu a{
	display: block;
	font-size: 14px;
	line-height: 40px;
	text-align: center;
	border-bottom: 1px solid #eee;
}
.item-menu a:hover{
	color: #fff;
	background-color: #bb1c1d;
}

.pro-type .pro-item:hover .item-menu{
	height: auto;
	min-height: auto;
	max-height: 400px;
}


.product-box{
	padding: 90px 0;
}
.pro-show{
	width: 100%;
	margin-bottom: 3%;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pro-show-img{
	width: 60%;
	border-radius: 8px;
	overflow: hidden;
}
.pro-show-img .big-pagination{
	position: absolute;
	z-index: 2;
	width: 100%;
	padding: 0 20px;
	left: 0;
	bottom: 20px;
}
.pro-show-img .big-pagination span.swiper-pagination-bullet-active{
	background-color: #fff;
}
.pro-show-desc{
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pro-show-desc h3{
    font-size: 36px;
	line-height: 1.5;
	text-transform: uppercase;
	color: #000;
	text-align: center;
}
.pro-show-desc p{
	font-size: 15px;
	line-height: 1.5;
	color: #999;
	text-transform: uppercase;
	text-align: center;
}

@media screen and (max-width:1680px) {
	.pro-type .pro-item{
		width: 135px;
	}
	.pro-type .pro-img{
		width: 55px;
		height: 55px;
	}
	.pro-type .pro-item > a h3{
		font-size: 13px;
	}

	.pro-show-desc h3{
		font-size: 33px;
	}
	.pro-show-desc p{
		font-size: 14px;
	}
	.item-menu{
		top: 118px;
	}
}
@media screen and (max-width:1440px) {
	.pro-type .pro-item{
		width: 120px;
	}
	.pro-type .pro-img{
		width: 50px;
		height: 50px;
	}
	.pro-type .pro-item > a h3{
		font-size: 12px;
	}

	.pro-show-desc h3{
		font-size: 30px;
	}
	.pro-show-desc p{
		font-size: 13px;
	}
	.item-menu{
		top: 112px;
	}
}



.product-banner{
	position: relative;
	width: 100%;
	padding-bottom: 38.229%;
	background: url(../images/product.jpg) center center/cover no-repeat;
}
.product-serach{
	position: relative;
	z-index: 1;
	transform: translateY(-50%);
}
.product-serach form{
	display: block;
	margin: 0 auto;
	overflow: hidden;
	width: 70%;
	padding: 4px;
	border-radius: 27px;
	background-color: #fff;
	box-shadow: 0 2px 65px 0 rgba(0,0,0,.25);
}
.product-serach form input[type="text"]{
	float: left;
	width: 85%;
	padding: 0 30px;
	font-size: 18px;
	line-height: 66px;
	border: 0;
	color: #666;
	border-radius: 24px;
}
.product-serach form input[type="text"]::placeholder{
	color: #666;
}

.product-serach form input[type="submit"]{
	float: right;
	width: 15%;
	font-size: 18px;
	line-height: 66px;
	border-radius: 24px;
	background: url(../images/pro_search.png) center center/60% auto no-repeat #bb1c1d;
	cursor: pointer;
}



.pro-menu{
	position: relative;
	z-index: 20;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 50px;
}
.pro-menu ul li{
	position: relative;
	float: left;
	margin-right: 5px;
}
.pro-menu > ul > li > a{
	display: block;
	font-size: 18px;
	line-height: 55px;
	padding: 0 30px;
	color: #8d8d8d;
	border-radius: 5px 5px 0 0;
}
.pro-menu > ul > li > a:hover,
.pro-menu > ul > li > a.on{
	color: #fff;
	background-color: #bb1c1d;
}
.pro-menu-down{
	position: absolute;
	top: 55px;
	left: 0;
	width: max-content;
	opacity: 0;
	visibility: hidden;
	background-color: #3a3a3a;
	border-radius: 0 0 5px 5px;
	overflow: hidden;
}
.pro-menu ul li:hover .pro-menu-down{
	opacity: 1;
	visibility: visible;
}
.pro-menu-down > a{
	display: block;
	font-size: 16px;
	padding: 0 18px;
	line-height: 50px;
	color: #fff;
}
.pro-menu-down > a:hover,
.pro-menu-down > a.on{
	background-color: #202020;
}

@media screen and (max-width:1680px) {
	.product-serach form input[type="text"]{
		padding: 0 26px;
		font-size: 17px;
		line-height: 62px;
	}
	.product-serach form input[type="submit"]{
		line-height: 62px;
	}
	.pro-menu ul li{
		margin-right: 4px;
	}
	.pro-menu > ul > li > a{
		font-size: 18px;
		line-height: 60px;
		padding: 0 26px;
	}
	.pro-menu-down{
		top: 60px;
	}
	.pro-menu-down > a{
		font-size: 14.5px;
		line-height: 45px;
		padding: 0 18px;
	}
}
@media screen and (max-width:1440px) {
	.product-serach form input[type="text"]{
		padding: 0 22px;
		font-size: 16px;
		line-height: 58px;
	}
	.product-serach form input[type="submit"]{
		line-height: 58px;
	}
	.pro-menu ul li{
		margin-right: 3px;
	}
	.pro-menu > ul > li > a{
		font-size: 16px;
		line-height: 55px;
		padding: 0 22px;
	}
	.pro-menu-down{
		top: 55px;
	}
	.pro-menu-down > a{
		font-size: 13px;
		line-height: 40px;
		padding: 0 15px;
	}
}



















.pro_title{
	padding-bottom: 30px;
}
.pro_title h2{
	font-size: 30px;
	font-weight: normal;
	color: #000;
}
.product_menu{
	margin-bottom: 35px;
}
.product_menu li{
	position: relative;
	margin-right: 5px;
	float: left;
}
.product_menu li:last-child{
	margin-right: 0;
}

.product_menu ul > li > a{
	display: block;
	padding: 0 20px;
	font-size: 18px;
	line-height: 50px;
	position: relative;
	color: #8d8d8d;
	background-color: #fff;
	border-radius: 5px;
}


.product_menu ul > li:hover > a,
.product_menu ul > li.on > a{
	color: #fff;
	background-color: #bb1c1d;
}

.pro-small-type{
	margin-bottom: 3%;
}
.pro-small-type ul li{
	float: left;
	margin-right: 8px;
	margin-bottom: 4px;
	border-radius: 4px;
	overflow: hidden;
}
.pro-small-type ul li a{
	display: block;
	font-size: 16px;
	padding: 15px 25px;
	background-color: #fff;
	
}
.pro-small-type ul li a:hover,
.pro-small-type ul li a.on{
	color: #fff;
	background-color: #bb1c1d;
}


.product_menu li .menu_down{
	position: absolute;
	top: 53px;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: #3a3a3a;
	opacity: 0;
	visibility: hidden;
	border-radius: 5px;
	overflow: hidden;
}
.product_menu ul li .menu_down a{
	display: block;
	padding: 0 18px;
	font-size: 14px;
	line-height: 45px;
	color: #fff;
}
.product_menu ul li .menu_down a:hover,
.product_menu ul li .menu_down a.on{
	background-color: #202020;
}
.product_menu ul li:hover .menu_down{
	opacity: 1;
	visibility: visible;
}

.product_list ul li{
	position: relative;
	float: left;
	width: calc(92%/5);
	margin: 0 2% 1.5% 0;
	transition: all 0.5s;
	border: 1px solid #eee;
	background-color: #fff;
}
.product_list ul li:nth-child(5n){
	margin-right: 0;
}
.product_list ul li img{
	width: 100%;
}
.product_list ul li h3{
	margin-top: 15px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: normal;
	text-align: center;
	color: #000;
}
.product_list ul li p{
	font-size: 14px;
	text-align: center;
	margin-bottom: 30px;
	margin-top: 10px;
}
.product_list ul li:hover{
	transform: translateY(-5px);
	box-shadow: 0 20px 35px -15px rgba(0,0,0,.25);
}
.product_list ul li em{
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	padding: 4px 15px;
	color: #fff;
	background-color: #bb1c1d;
	border-radius: 35px;
	font-style: normal;
}
.product_mext{
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 50px;
}
.product_mext a{
	margin: 0 8px;
}
.product_mext a:hover{
	text-decoration: underline;
}
.product_left {
    width: 30%;
    height: auto;
}
.product_left .product-img {
    border: 1px solid #d5d5d5;
}
.product_left .product-img img{
	width: 100%;
}
.product_left .swiper-pagination{
	padding: 0 20px;
	text-align: left;
	bottom: 15px;
}
.product_left .swiper-pagination span.swiper-pagination-bullet-active{
	background-color: #000;
}
.product_info{
	padding: 30px 0 15px;
	border-bottom: 1px solid #e5e5e5;
}
.product_info h2{
	font: bold 28px/1.5 "arial";
	color: #000;
}
.product_info p{
	font: 18px/1.5 "微软雅黑";
	color: #666;
}
.product_desc{
	padding: 35px 0 15px;
	border-bottom: 1px solid #e5e5e5;
}
.product_desc h2,
.product_recom h2 {
	margin-bottom: 20px;
	font: 24px/1 '微软雅黑';
	color: #000;
}
.product_desc ul li{
	font-size: 16px;
	line-height: 1.8;
	font-family: arial,'微软雅黑';
	color: #999;
}
.product_recom{
	padding-top: 30px;
}
.product_recom ul li{
	width: 100%;
	margin-bottom: 12px;
	background-color: #fff;
	transition: all 0.5s;
}
.product_recom ul li:hover{
	box-shadow: 0 0 25px 0 rgba(0,0,0,.15);
}
.product_recom ul li a{
	position: relative;
	display: block;
	width: 100%;
	padding: 12px;
	overflow: hidden;
	box-sizing: border-box;
	background: #fff;
}
.product_recom ul li em{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 9;
	display: block;
	width: 45px;
	line-height: 20px;
	font-size: 14px;
	font-style: normal;
	text-align: center;
	color: #fff;
	border-radius: 20px;
	background-color: #000;
	transform: translateY(-50%);	
}
.product_recom ul li a .img {
    width: 110px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}
.product_recom ul li a .text{
	float: left;
	width: 58%;
	padding-top: 30px;
}
.product_recom ul li a .text h3{
	font-size: 16px;
	line-height: 2;
	color: #000;
	width: 70%;
}
.product_recom ul li a .text p{
	font-size: 14px;
	color: #adadad;
}
.product_right{
	width: 66%;
	padding: 2%;
	text-align: center;
	background-color: #fff;
	box-sizing: border-box;
}
.product_detailed {
	min-height: 700px;
	text-align: center;
}
.product_detailed img{
	width: auto;
	max-width: 100%;
}


.mask_bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: none;
	background: #000;
	opacity: 0;
	-webkit-animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
	-o-animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
	-ms-animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
	animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
}

@-webkit-keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

@-o-keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

@-ms-keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

@keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

.video_show {
	width: 1000px;
	height: 680px;
	position: fixed;
	left: 50%;
	margin-left: -500px;
	top: -1000px;
	margin-top: -340px;
	opacity: 0;
	z-index: 10001;
	border-radius: 5px;
	display: none;
	-webkit-animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
	-o-animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
	-ms-animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
	animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
}

@-webkit-keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

@-o-keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

@-ms-keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

@keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

.video_show i{
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: -17px;
    top: 18px;
	line-height: 40px;
	font-size: 20px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-size: 22px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	font-weight: bold;
	background: url(closed.png);
	background-size: cover;
}

.video_show i:hover {
	transform: rotate(90deg);
}

.video_show .content {
	width: 90%;
	margin: 20px 5%;
}

.video_show .content h2 {
	line-height: 50px;
	color: #4c321c;
}

.video_show .content .show_date {
	width: 100%;
	height: 25px;
	margin: 10px 0;
	background: #F9F9F9;
	line-height: 25px;
	color: #666;
	text-indent: 2em;
}

.video_show .content .show_intro {
	width: 100%;
	text-align: left;
	font-size: 14px;
	border: 10px solid #fff;
	background-color: #fff;
    display: grid;
}

.video_show iframe,
.video_show video{
	width: 100%;
	max-height: 500px;
}


.video_ise {
    display: inline-block!important;
    margin: 0 auto;
    width: 81px;
    height: 81px;
    cursor: pointer;
    line-height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    opacity: 1;
    margin-top: -40px;
	z-index: 99;
}
.pro_video:hover .video_ise{
	transform: scale(1.1,1.1);
}


.pro_video{
	background-color: #000;
}

.node{
	padding: 150px 0;
	text-align: center;
}
.node h4{
	font-size: 30px;
	font-weight: normal;
	color: #000;
}






.cookie-box{
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 40;
	padding: 40px 45px;
	border-radius: 20px;
	background-color: #fff;
	box-shadow: 0 0 30px 0 rgba(0,0,0,0.1);
	opacity: 0;
	z-index: 999;
	visibility: hidden;
}
.cookie-content{
	width: 385px;
}
.cookie-content h5{
	font-size: 16px;
	line-height: 1;
	font-weight: normal;
	color: #000;
	margin-bottom: 30px;
}
.cookie-content p{
	font-size: 16px;
	line-height: 1.6;
	color: #7f7f7f;
	margin-bottom: 50px;
}
.cookie-content a.accept{
	float: right;
	display: inline-block;
	width: 96px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	background-color: #bb1c1d;
	border-radius: 40px;
}
.cookie-box.cookie-out{
	opacity: 1;
	visibility: visible;
	animation: cookieOut 300ms ease-in-out forwards;
}

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


.product-info{
	float: left;
	width: 42%;
}
.proise{
	position: fixed;
	left: 42%;
	top: 0;
	display: block;
	width: 1px;
	height: 100%;
	background-color: #ebebeb;
}
.product-right{
	width: 58%;
}
.product-right img{
	width: 100%;
}
.pro-back{
	width: 100%;
	font-size: 16px;
	line-height: 2;
	padding: 3.5% 5%;
}
.pro-back a{
	cursor: pointer;
}
.pro-back i{
	display: inline-block;
	width: 32px;
	height: 32px;
	margin-right: 10px;
	vertical-align: middle;
	background: url(back.png) center center/cover no-repeat;
}
.pro-left-info{
	padding: 1% 9% 5%;
}
.pro-tailored{
	width: 64%;
	max-width: 520px;
	margin: 0 auto;
}
.pro-title{
	margin-bottom: 3%;
}
.pro-title h3{
	font-size: 28px;
	line-height: 1.6;
	color: #000;
}
.pro-title p{
	font-size: 15px;
}
.product-desc{
	margin-top: 9%;
	padding-top: 8%;
	border-top: 2px solid #e5e5e5;
}
.product-desc h3{
	font-size: 22px;
	line-height: 1;
	font-weight: normal;
	color: #494949;
	margin-bottom: 4%;
}
.product-desc ul li{
	float: left;
	width: 49%;
	color: #3d3d3d;
	line-height: 2;
	font-size: 16px;
	margin-right: 1%;
}
.product-desc ol li{
	float: left;
	width: 50%;
	font-size: 20px;
	color: #3d3d3d;
	line-height: 2;
	margin-bottom: 1.5%;
}
.product-desc ol li a{
	color: #3d3d3d;
}
.product-desc ol li i{
	width: 39px;
	height: 39px;
	display: inline-block;
	background: url(../images/pro-dowm.png) center center/cover no-repeat;
	border-radius: 50%;
	border: 1px solid #1b2833;
	vertical-align: middle;
	margin-right: 10px;
}



@media screen and (max-width:1680px) {
	.video_ise{
		width: 70px;
		height: 70px;
	}
	.pro-back{
		font-size: 15px;
	}
	.pro-back i{
		width: 28px;
		height: 28px;
	}
	.pro-title h3 {
		font-size: 24px;
	}
	.pro-title p{
		font-size: 14px;
	}
}
@media screen and (max-width:1440px) {
	.video_ise{
		width: 60px;
		height: 60px;
	}
	.pro-back{
		font-size: 14px;
	}
	.pro-back i{
		width: 24px;
		height: 24px;
	}
	.pro-title h3 {
		font-size: 20px;
	}
	.pro-title p{
		font-size: 13px;
	}
}

.white-bg{
	background-color: #fff;
}

.cerbox{
	padding: 90px 0;
}
.cer-list li {
    float: left;
	text-align: center;
    width: calc(96%/4);
    margin: 0 1% 1% 0;
	background-color: #fff;
}
.cer-list li .cer-img {
	border-bottom: 1px solid #eee;
	position: relative;
}
.cer-list li .cer-img::after{
	content: "";
	display: block;
	height: 50%;
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	background: #eee;
	transform: translateY(-50%);
	
}

.cer-list li .cer-img img{
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
}
.cer-list li:nth-child(4n) .cer-img::after{
	width: 0px;
}

.cer-list li:nth-last-child(-n+2) .cer-img{
	border-bottom: 0px solid #eee;
}


.cer-list li p {
    font-size: 16px;
    text-align: center;
    line-height: 3;
}
.cer-list li:hover div {
    border-color: #fff;
	border-radius: 10px;
    box-shadow: 0 0 21px 1px rgba(0, 0, 0, 0.15);
}


.cer_title{
	padding-bottom: 45px;
}
.cer_title h2{
	font-size: 30px;
	text-transform: uppercase;
	color: #333;
}


.cer-menu {
    width: 100%;
    line-height: 35px;
    overflow: hidden;
    padding-bottom: 20px;
}
.cer-menu a {
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
    line-height: 40px;
}
.cer-menu a:first-child {
    margin-left: 0;
}
.cer-menu .room_link a:hover {
    text-decoration: underline;
    color: #333;
}
.cer-menu .menu_back {
    float: right;
    width: 120px;
    height: 40px;
    cursor: pointer;
    background: #000;
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.cer-menu .menu_back:hover{
	 text-decoration: underline;
}
.cer-top {
    clear: both;
    padding: 25px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
}
.cer-top .fl {
	width: 300px;
    border: 1px solid #ddd;
}
.cer-top .fr {
    width: calc(100% - 350px);
	padding-top: 10px;
}
.cer-top .fr h3 {
	font-weight: normal;
    font-size: 24px;
    line-height: 2;
    margin-bottom: 5px;
}
.cer-top .fr p {
    font-size: 14px;
    line-height: 1.8;
}
.recom-list li {
	position: relative;
    float: left;
    width: calc(94%/5);
    margin: 0 1.5% 1.5% 0;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    box-sizing: border-box;
    overflow: hidden;
}
.recom-list li em{
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 9;
	display: block;
	width: 45px;
	line-height: 20px;
	font-size: 14px;
	font-style: normal;
	color: #f32b2b;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #f32b2b;
	background-color: #fff;
}
.recom-list li div {
    width: 100%;
    height: auto;
    overflow: hidden;
	margin-bottom: 10px;
}
.recom-list li a {
    display: block;
    padding-bottom: 10px;
	background-color: #fff;
}
.recom-list li h3{
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	font-weight: normal;
}
.recom-list li p{
	font-size: 14px;
	color: #999;
	line-height: 2;
}
.recom-list li:nth-child(5n) {
    margin-right: 0;
}
.recom-list li:hover{
	box-shadow: 0 0 25px 0 rgba(0,0,0,.1);
}





.register-box,.loging-box{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.register-left,.loging-left{
	float: left;
	width: 66.25%;
	height: 100%;
	background: url(../images/register_bg.jpg) center center/cover no-repeat;
}

.register-logo,.loging-logo{
	position: fixed;
	left: 3.6%;
	top: 7%;
	display: block;
	width: 174px;
	height: 34px;
	background: url(logo.png) center no-repeat;
}

.register-right,.loging-right{
	float: right;
	display: flex;
	width: 33.75%;
	height: 100%;
	background-color: #fff;
	align-items: center;
	justify-content: center;
}
.register-content,.loging-content{
	width: 62%;
	max-width: 400px;
}
.register-content h3,.loging-content h3{
	font-size: 36px;
	line-height: 2.3;
	color: #000000;
	text-transform: uppercase;
}
.register-content p,.loging-content p{
	font-size: 16px;
	line-height: 1.6;
	color: #b5b5b5;
	margin-bottom: 8%;
}
.formitem{
	position: relative;
	margin-bottom: 30px;
}
.formitem input[type="text"],
.formitem input[type="password"]{
	width: 100%;
	padding: 0 20px;
	line-height: 50px;
	border: 0;
	background-color: #f5f5f5;
	border-radius: 3px;
}
.formitem em{
	position: absolute;
	display: block;
	left: 20px;
	bottom: -20px;
	line-height: 1;
	font-style: normal;
	font-size: 14px;
}
.user_sub input[type="submit"]{
	margin-top: 3%;
	width: 100%;
	font-size: 16px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	background-color: #a70016;
	border-radius: 3px;
}

.info-box{
	padding-top: 10%;
	font-size: 16px;
	margin-bottom: 16%;
	color: #7b7b7b;
}
.info-box a{
	color: #666;
}

@media screen and (max-width:1680px) {
	.register-logo,
	.loging-logo{
		width: 160px;
		height: 30px;
		background-size: cover;
	}
	.register-content h3,
	.loging-content h3{
		font-size: 33px;
	}
	.register-content p,
	.loging-content p,
	.info-box{
		font-size: 15px;
	}
	.formitem input[type="text"],
	.user_sub input[type="submit"]{
		line-height: 45px;
		font-size: 15px;
	}
	.formitem{
		margin-bottom: 25px;
	}
	.formitem em{
		font-size: 13px;
		bottom: -18px;
	}
}
@media screen and (max-width:1440px) {
	.register-logo,
	.loging-logo{
		width: 150px;
		height: 26px;
		background-size: cover;
	}
	.register-content h3,
	.loging-content h3{
		font-size: 30px;
	}
	.register-content p,
	.loging-content p,
	.info-box{
		font-size: 14px;
	}
	.formitem input[type="text"],
	.user_sub input[type="submit"]{
		line-height: 42px;
		font-size: 12px;
	}
	.formitem{
		margin-bottom: 20px;
	}
	.formitem em{
		font-size: 12px;
		bottom: -14px;
	}
}


.prologin-box{
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 10001;
	width: 26%;
	max-width: 490px;
	min-width: 400px;
	height: 100%;
	background-color: #fff;
	padding: 3%;
	overflow-y: auto;
}
.prologin-close{
	float: right;
	cursor: pointer;
}
.prologin-close i{
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	transform: rotate(45deg);
	vertical-align: middle;
}
.prologin-close i::before{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #171717;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.prologin-close i::after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	background-color: #171717;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.prologin-box H3{
	font-size: 32px;
	line-height: 2;
	text-transform: uppercase;
	color: #000;
	margin: 8% 0 3%;
}
.prologin-box p{
	font-size: 16px;
	line-height: 1.6;
	color: #9f9f9f;
	margin-bottom: 7%;
}
.prologin-info{
	padding: 8% 0;
	text-align: center;
}
.prologin-info a{
	font-size: 14px;
	color: #7f7f7f;
}
.prologin-register{
	border-top: 1px solid #e5e5e5;
}
.prologin-register p{
	font-size: 14px;
	color: #737373;
	margin: 4% 0;
	text-transform: uppercase;
}
.prologin-register a{
	display: block;
	text-align: center;
	border: 1px solid #000;
	line-height: 48px;
	color: #000;
}

.prologin-box.on{
	right: 0;
}


.consult-top{
	bottom: calc(4% + 60px);
	right: 2%;
	position: fixed;
	width: 375px;
	height: 575px;
	padding: 30px 35px 50px;
	margin-bottom: 25px;
	border-radius: 10px;
	overflow: hidden;
	background-color: #bb1c1d;
	box-shadow: 0 15px 30px -10px rgba(0,0,0,.3);
	opacity: 0;
	visibility: hidden;
	z-index: 200;
}
.consult-top.on{
	opacity: 1;
	visibility: inherit;
	bottom: calc(4% + 80px);
}
.consult-top::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 110px;
	background-color:;
	border-radius: 10px 0 0 0;
}
.consult-top i{
	float: right;
	position: relative;
	z-index: 1;
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	cursor: pointer;
}
.consult-top h3{
	margin-top: 25px;
	font-size: 30px;
	line-height: 2;
	color: #fff;
}
.consult-top p{
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	margin-bottom: 45px;
}
.consult-top h5{
	font-size: 14px;
	line-height: 1.5;
	font-weight: normal;
	color: #fff;
}
.consult-top input[type="text"]{
	width: 100%;
	color: #fff;
	line-height: 40px;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,.2);
	background: none;
}
input[type="text"]::placeholder{
	color: #fff;
	opacity: .5;
}

.consult-name{
	position: relative;
	margin-bottom: 35px;
}
.consult-email{
	position: relative;
	margin-bottom: 70px;
}
.consult-top em{
	position: absolute;
	left: 0;
	bottom: -30px;
	line-height: 30px;
	font-style: normal;
}
.consult-submit{
	position: relative;
	z-index: 1;
	
	border-radius: 10px;
	box-shadow: 0 10px 18px -6px rgba(0,0,0,.25);
}
.consult-top input[type="submit"]{
	width: 100%;
	color: #fff;
	font-size: 16px;
	line-height: 50px;
	font-weight: bold;
	border: 0;
	background-color: #cf7380;
	border-radius: 5px;
}
.consult-bottom{
	text-align: right;
	height: 80px;
}
.consult-info{
	position: fixed;
	right: calc(2% + 70px);
	bottom: 4%;
	z-index: 200;
	display: inline-block;
	width: 280px;
	height: 80px;
	padding: 20px 25px;
	text-align: left;
	margin-right: 10px;
	border-radius: 5px 5px 0 5px;
	box-sizing: border-box;
	background-color: #fff;
	box-shadow: 0 10px 18px -6px rgba(0,0,0,.25);
}
.consult-info::after{
	content: "";
	position: absolute;
	bottom: 0;
	right: -10px;
	display: block;
	width: 10px;
	height: 14px;
	background: url(../images/consult_img.png) center no-repeat;
}
.consult-info h4,.consult-info p{
	font-size: 14px;
	color: #656565;
	line-height: 1.5;
}
.consult-info i{
	position: absolute;
	top: 15px;
	right: 20px;
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #e3e5e7;
	cursor: pointer;
	transform: rotate(45deg);
}
.consult-info i::before{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 1px;
	height: 65%;
	background-color: #6d737a;
	
}
.consult-info i::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 65%;
	height: 1px;
	background-color: #6d737a;
}
.consult-icon{
	position: fixed;
	right: 2%;
	bottom: 4%;
	z-index: 200;
	display: inline-block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: #bb1c1d;
	cursor: pointer;
}



@media screen and (max-width:1680px) {
	.prologin-close{
		font-size: 13px;
	}
	.prologin-close i{
		width: 14px;
		height: 14px;
	}
	.prologin-box H3{
		font-size: 28px;
	}
	.prologin-box p{
		font-size: 14px;
	}
	.prologin-info a,.prologin-register p{
		font-size: 13px;
	}
	.prologin-register a{
		line-height: 45px;
	}
}
@media screen and (max-width:1440px) {
	.prologin-close{
		font-size: 12px;
	}
	.prologin-close i{
		width: 12px;
		height: 12px;
	}
	.prologin-box H3{
		font-size: 24px;
	}
	.prologin-box p{
		font-size: 13px;
	}
	.prologin-info a,.prologin-register p{
		font-size: 12px;
	}
	.prologin-register a{
		line-height: 42px;
	}
}



.pro-container{
	width: 1250px;
	margin: 0 auto;
}

.pro-mest{
	margin-bottom: 70px;
}
.pro-mext{
	font-size: 15px;
	line-height: 35px;
}

.pro-type{
	font-size: 20px;
	line-height: 35px;
	color: #000;
}


.product-left{
	width: 640px;
}
.swiper-bigpro{
	width: 515px;
	height: 515px;
	border: 1px solid #eee;
	overflow: hidden;
	border-radius: 10px;
}
.swiper_smallpro{
	width: 60px;
	height: 515px;
}
.swiper_smallpro .swiper-slide{
	border: 1px solid #e5e5e5;
	box-sizing: border-box;
	cursor: pointer;
	overflow: hidden;
	padding: 5px;
	border-radius: 10px;
}
.swiper_smallpro .swiper-slide.swiper-slide-thumb-active{
	border-color: #bb1c1d;
}
.swiper-bigpro i{
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 2;
	display: block;
	width: 27px;
	height: 27px;
	background: url(../images/pro_img.png) center center/cover no-repeat;
}
.myswiper-box{
	width: 60px;
	height: 515px;
}

.myswiper-box .product-prev,
.myswiper-box .product-next{
	position: absolute;
	left: 50%;
	margin-left: -15px;
	display: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	cursor: pointer;
}
.myswiper-box .product-prev.on,
.myswiper-box .product-next.on{
	display: block;
}
.myswiper-box .product-prev{
	transform: rotateZ(90deg);
	top: -40px;
	background: url(ab_prv.png) top center/100% auto no-repeat;
}
.myswiper-box .product-next{
	transform: rotateZ(90deg);
	bottom: -40px;
	background: url(ab_next.png) top center/100% auto no-repeat;
}

.product-right{
	width: 490px;
}
.product-right h2{
	font-size: 34px;
	line-height: 1.2;
	margin-top: 10px;
	color: #191919;
}
.product-right p{
	line-height: 2;
	font-size: 18px;
	color: #686868;
	margin-bottom: 35px;
}
.product-right ul{
	margin-bottom: 60px;
}
.product-right ul li{
	font-size: 16px;
	line-height: 1.7;
}
a.ansicht{
	display: block;
	width: 70%;
	line-height: 48px;
	font-size: 18px;
	color: #545454;
	border: 1px solid #545454;
	text-align: center;
	background-color: #fff;
}
a.ansicht i{
	display: inline-block;
	width: 26px;
	height: 21px;
	vertical-align: middle;
	margin-right: 8px;
	background: url(../images/360.png) center center/cover no-repeat;
}
a.ansicht:hover{
	transform: translateY(-3px);
	box-shadow:  0 14px 20px -10px rgba(0,0,0,0.15);
}

.product-ansicht-box{
	position: fixed;
	left: 0;
	top: 20%;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 100001;
	margin: auto;
	width: 1100px;
	height: 620px;
	padding: 20px;
	background-color: #fff;
	transition: all 0.5s;
}
.product-ansicht-box.show{
	top: 0;
	opacity: 1;
	visibility: visible;
}
.product-ansicht-box iframe{
	width: 100%;
	height: 100%;
	border: 0;
}

.product-ansicht-box i{
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: -45px;
    top: 0;
	line-height: 40px;
	font-size: 20px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-size: 22px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	font-weight: bold;
	background: url(closed.png);
	background-size: cover;
}
.product-ansicht-box i:hover{
	transform: rotateZ(90deg);
}



.pro-mesu{
	padding-bottom: 45px;
	text-align: center;
}
.pro-mesu a{
	display: inline-block;
	padding: 12px 25px;
	font-size: 16px;
	border-radius: 50px;
	margin: 0 8px;
}
.pro-mesu a.on{
	color: #fff;
	background-color: #bb1c1d;
}

.product-highlights ul,
.product-features ul{
	padding: 6%;
	background-color: #fff;
}
.product-highlights ul li,
.product-features ul li{
	font-size: 16px;
	line-height: 3;
	color: #494949;
}
.product-highlights ul li i,
.product-features ul li i{
	display: inline-block;
	width: 17px;
	height: 17px;
	margin-right: 12px;
	background: url(../images/pro_icon.png) center center/cover no-repeat;
	vertical-align: middle;
}

.product-dowm,
.product-features{
	display: none;
}

.product-highlights h3,
.product-features h3,
.product-dowm h3{
	font-size: 36px;
	line-height: 3;
	text-align: center;
	margin: 130px 0;
	text-transform: uppercase;
	color: #333;
}

.product-dowm ol li{
	float: left;
	width: 48%;
	margin: 0 4% 2% 0;
	font-size: 20px;
	color: #3d3d3d;
	line-height: 50px;
	background-color: #fff;
}
.product-dowm ol li:nth-child(2n){
	margin-right: 0;
}
.product-dowm ol li a{
	position: relative;
	display: block;	
	padding: 0.4% 1.5% 0.4% 4%;
	color: #3d3d3d;
}
.product-dowm ol li i{
	float: right;
	width: 36px;
	height: 36px;
	opacity: 0.7;
	display: inline-block;
	background: url(../images/pro-dowm.png) center center/cover no-repeat;
	border-radius: 50%;
	margin-top: 10px;
	transition: all 0.4s;
}
.product-dowm ol li:hover{
	background-color: #bb1c1d;
}
.product-dowm ol li:hover a{
	color: #fff;
}
.product-dowm ol li:hover i{
	opacity: 1;
	background-image: url(../images/pro-dowm02.png);
}

.product-recom h3{
	font-size: 30px;
	line-height: 2;
	margin-bottom: 40px;
	color: #000;
}
.swiper-recom .swiper-slide a{
	display: block;
	background-color: #fff;
	border: 1px solid #eee;
	transition: all 0.4s;
	text-align: center;
	padding: 8%;
}
.swiper-recom .swiper-slide a .img{
	overflow: hidden;
	margin-bottom: 8%;
}
.swiper-recom .swiper-slide:hover a{
	border-color: #eee;
}
.swiper-recom .swiper-slide a h4{
	font-size: 20px;
	line-height: 1.7;
	color: #000;
	font-weight: normal;
}
.swiper-recom .swiper-slide a p{
	font-size: 15px;
	color: #999;
}

.recom-prev,
.recom-next{
	position: absolute;
	display: block;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid #333f48;
	opacity: 0.4;
	cursor: pointer;
	display: flex;
}
.recom-next{
	top: 0;
	right: 0;
}
.recom-next::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -6.5px 0 0 -8px;
	display: block;
	width: 12px;
	height: 12px;
	border-top: 1px solid #333f48;
	border-right: 1px solid #333f48;
	transform: rotateZ(45deg);
}
.recom-prev{
	top: 0;
	right: 60px;
}
.recom-prev::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -6.5px 0 0 -3px;
	display: block;
	width: 12px;
	height: 12px;
	border-left: 1px solid #333f48;
	border-bottom: 1px solid #333f48;
	transform: rotateZ(45deg);
}
.recom-prev:hover,.recom-next:hover{
	opacity: 1;
	background: #bb1c1d;
	border-color: #bb1c1d;
}
.recom-prev:hover::after{
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.recom-next:hover::after{
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}



@media screen and (max-width:1680px) {
	.product-box {
	    padding: 80px 0;
	}
	.pro-container{
		width: 1200px;
	}
	.pro-mest{
		margin-bottom: 60px;
	}
	.pro-mext{
		font-size: 14px;
	}
	.product-share a{
		width: 28px;
		height: 28px;
		font-size: 15px;
		line-height: 28px;
		margin-left: 6px;
	}
	.product-right{
		width: 475px;
	}
	.product-right h2{
		font-size: 25px;
	}
	.product-right p{
		font-size: 16px;
		margin-bottom: 30px;
	}
	.product-right ul{
		margin-bottom: 55px;
	}
	.product-right ul li{
		font-size: 15px;
	}
	a.ansicht{
		font-size: 17px;
		line-height: 45px;
	}
	a.ansicht i{
		width: 24px;
		height: 19px;
	}
	.product-left{
		width: 610px;
	}
	.myswiper-box,
	.swiper_smallpro{
		width: 56px;
		height: 483px;
	}
	.swiper-bigpro{
		width: 483px;
		height: 483px;
	}
	.pro-mesu a{
		font-size: 15px;
		padding: 11px 21px;
	}
	.product-highlights ul {
	    padding: 5%;
	}
	.product-highlights ul li,
	.product-features ul li{
		font-size: 15px;
		font-size: 2.8;
	}
	.product-highlights ul li i,
	.product-features ul li i{
		width: 15px;
		height: 15px;
	}
	.product-dowm ol li{
		font-size: 16px;
		line-height: 46px;
	}
	.product-dowm ol li i{
		margin-top: 6px;
	}
	.product-recom h3{
		font-size: 27px;
	}
	.swiper-recom .swiper-slide a h4{
		font-size: 17px;
	}
	.swiper-recom .swiper-slide a p{
		font-size: 14px;
	}
}
@media screen and (max-width:1440px) {
	.product-box {
	    padding: 70px 0;
	}
	.pro-container{
		width: 1150px;
	}
	.pro-mest{
		margin-bottom: 50px;
	}
	.pro-mext{
		font-size: 13px;
	}
	.product-share a{
		width: 26px;
		height: 26px;
		line-height: 26px;
		font-size: 14px;
		margin-left: 4px;
	}
	.product-right{
		width: 460px;
	}
	.product-right h2{
		font-size: 22px;
	}
	.product-right p{
		font-size: 12px;
		margin-bottom: 25px;
	}
	.product-right ul li{
		font-size: 14px;
	}
	.product-right ul{
		margin-bottom: 50px;
	}
	a.ansicht{
		font-size: 16px;
		line-height: 42px;
	}
	.product-left{
		width: 585px;
	}
	.myswiper-box,
	.swiper_smallpro{
		width: 52px;
		height: 451px;
	}
	.swiper-bigpro{
		width: 483px;
		height: 451px;
	}
	.pro-mesu a{
		font-size: 14px;
		padding: 10px 18px;
	}
	.product-highlights ul li,
	.product-features ul li{
		font-size: 14px;
		font-size: 2.6;
	}
	.product-highlights ul li i,
	.product-features ul li i{
		width: 14px;
		height: 14px;
	}
	.product-dowm ol li{
		font-size: 15px;
		line-height: 42px;
	}
	.product-dowm ol li i{
		margin-top: 3px;
	}
	.product-recom h3{
		font-size: 24px;
	}
	.swiper-recom .swiper-slide a h4{
		font-size: 16px;
	}
	.swiper-recom .swiper-slide a p{
		font-size: 13px;
	}
}

#pos{
	width: 100%;
	height: 100%;
}

.signin-logo{
	width: 174px;
}

.signin-logo h1{
	font-size: 36px;
	display: block;
	margin-bottom: 20px;
	color: #000;
	text-transform: uppercase;
}





.product_mext{
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 46px;
}
.product_mext a{
	margin: 0 8px;
}
.product_mext a:hover{
	text-decoration: underline;
}
.product_left {
    width: 30%;
    height: auto;
}
.product_left .product-img {
    border: 1px solid #d5d5d5;
}
.product_left .product-img img{
	width: 100%;
}
.product_left .swiper-pagination{
	padding: 0 20px;
	text-align: left;
	bottom: 15px;
}
.product_left .swiper-pagination span.swiper-pagination-bullet-active{
	background-color: #000;
}
.product_info{
	padding: 30px 0 15px;
	border-bottom: 1px solid #e5e5e5;
}
.product_info h2{
	font: bold 28px/1.5 "arial";
	color: #000;
}
.product_info p{
	font: 18px/1.5 "微软雅黑";
	color: #666;
}
.product_desc{
	padding: 35px 0 15px;
	border-bottom: 1px solid #e5e5e5;
}
.product_desc h2,
.product_recom h2 {
	margin-bottom: 20px;
	font: 24px/1 '微软雅黑';
	color: #000;
}
.product_desc ul li{
	font-size: 16px;
	line-height: 1.8;
	font-family: arial,'微软雅黑';
	color: #999;
}
.product_recom{
	padding-top: 30px;
}
.product_recom ul li{
	width: 100%;
	margin-bottom: 12px;
	background-color: #fff;
	transition: all 0.5s;
}
.product_recom ul li:hover{
	box-shadow: 0 0 25px 0 rgba(0,0,0,.15);
}
.product_recom ul li a{
	position: relative;
	display: block;
	width: 100%;
	padding: 12px;
	overflow: hidden;
	box-sizing: border-box;
	background: #fff;
}
.product_recom ul li em{
	position: absolute;
	top: 50%;
	right: 20px;
	z-index: 9;
	display: block;
	width: 45px;
	line-height: 20px;
	font-size: 14px;
	font-style: normal;
	text-align: center;
	color: #fff;
	border-radius: 2px;
	background-color: #bf9f62;
	transform: translateY(-50%);	
}
.product_recom ul li a .img {
    width: 110px;
    float: left;
    overflow: hidden;
    margin-right: 30px;
}
.product_recom ul li a .text{
	float: left;
	width: 58%;
	padding-top: 30px;
}
.product_recom ul li a .text h3{
	font-size: 16px;
	line-height: 2;
	color: #000;
	width: 70%;
}
.product_recom ul li a .text p{
	font-size: 14px;
	color: #adadad;
}
.product_right{
	width: 66%;
	padding: 2%;
	text-align: center;
	background-color: #fff;
	box-sizing: border-box;
}
.product_detailed {
	min-height: 700px;
	text-align: center;
}
.product_detailed img{
	width: auto;
	max-width: 100%;
}


.mask_bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	display: none;
	background: #000;
	opacity: 0;
	-webkit-animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
	-o-animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
	-ms-animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
	animation: maskShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1s forwards;
}

@-webkit-keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

@-o-keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

@-ms-keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

@keyframes maskShow {
	from {
		opacity: 0;
	}
	to {
		opacity: 0.7;
	}
}

.video_show {
	width: 1000px;
	height: 680px;
	position: fixed;
	left: 50%;
	margin-left: -500px;
	top: -1000px;
	margin-top: -340px;
	opacity: 0;
	z-index: 10001;
	border-radius: 5px;
	display: none;
	-webkit-animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
	-o-animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
	-ms-animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
	animation: introShow cubic-bezier(0.68, -0.55, 0.27, 1.55) 1.2s 0.5s forwards;
}

@-webkit-keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

@-o-keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

@-ms-keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

@keyframes introShow {
	from {
		opacity: 0;
		top: -1000px;
	}
	to {
		opacity: 1;
		top: 50%;
	}
}

.video_show i {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	right: -17px;
    top: 18px;
	line-height: 40px;
	font-size: 20px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-size: 22px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	font-weight: bold;
	background: url(closed.png);
	background-size: cover;
}

.video_show i:hover {
	transform: rotate(90deg);
}

.video_show .content {
	width: 90%;
	margin: 20px 5%;
}

.video_show .content h2 {
	line-height: 50px;
	color: #4c321c;
}

.video_show .content .show_date {
	width: 100%;
	height: 25px;
	margin: 10px 0;
	background: #F9F9F9;
	line-height: 25px;
	color: #666;
	text-indent: 2em;
}

.video_show .content .show_intro {
	width: 100%;
	text-align: left;
	font-size: 14px;
	border: 10px solid #fff;
	background-color: #fff;
    display: grid;
}

.video_show iframe,
.video_show video{
	width: 100%;
	max-height: 500px;
}


.video_ise {
    display: inline-block!important;
    margin: 0 auto;
    width: 81px;
    height: 81px;
    cursor: pointer;
    line-height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    opacity: 1;
    margin-top: -40px;
	z-index: 99;
}
.video_ise img{
	width: 100%;
}
.pro_video:hover .video_ise{
	width: 100px;
	height: 100px;
	margin-top: -50px;
}

.pro_video:hover .video_img{
	opacity: .9;
}

.pro_video{
	background-color: #000;
}

.node{
	padding: 150px 0;
	text-align: center;
}
.node h4{
	font-size: 30px;
	font-weight: normal;
	color: #000;
}

@media screen and (max-width:1680px) {
	.pro_title h2{
		font-size: 27px;
	}
	.product_menu ul > li > a{
		padding: 0 30px;
		font-size: 16px;
		line-height: 55px;
	}
	.product_menu li .menu_down{
		top: 65px;
	}
	.product_menu ul li .menu_down a{
		font-size: 13px;
		line-height: 40px;
		padding: 0 14px;
	}
	.searchbox input[type="text"]{
		font-size: 15px;
		line-height: 42px;
	}
	.searchbox input[type="submit"]{
		height: 42px;
	}
	.product_list ul li em{
		top: 8px;
		right: 8px;
		padding: 6px 12px;
		font-size: 13px;
		border-radius: 4px;
	}
	.product_list ul li h3{
		font-size: 20px;
	}
	.product_list ul li p{
		font-size: 14.5px;
	}
	.product_mext{
		font-size: 15px;
		line-height: 44px;
	}
	.product_info h2{
		font-size: 25px;
	}
	.product_info p{
		font-size: 16px;
	}
	.product_desc h2,
	.product_recom h2 {
		margin-bottom: 15px;
		font-size: 22px;
	}
	.product_desc ul li{
		font-size: 14px;
	}
	.product_recom ul li a .img{
		width: 100px;
		margin-right: 25px;
	}
	.product_recom ul li a .text{
		padding-top: 25px;
	}
}
@media screen and (max-width:1440px) {
	.pro_title h2{
		font-size: 24px;
	}
	.product_menu ul > li > a{
		font-size: 14px;
		padding: 0 20px;
		line-height: 45px;
	}
	.product_menu li .menu_down{
		top: 55px;
	}
	.product_menu ul li .menu_down a{
		font-size: 12px;
		line-height: 35px;
		padding: 0 10px;
	}
	.searchbox input[type="text"]{
		font-size: 14px;
		line-height: 38px;
	}
	.searchbox input[type="submit"]{
		height: 38px;
	}
	.product_list ul li em{
		top: 6px;
		right: 6px;
		padding: 5px 10px;
		font-size: 12px;
		border-radius: 3px;
	}
	.product_list ul li h3{
		font-size: 16px;
	}
	.product_list ul li p{
		font-size: 13px;
	}
	.product_mext{
		font-size: 14px;
		line-height: 42px;
	}
	.product_info h2{
		font-size: 22px;
	}
	.product_info p{
		font-size: 14px;
	}
	.product_desc h2,
	.product_recom h2 {
		margin-bottom: 14px;
		font-size: 20px;
	}
	.product_desc ul li{
		font-size: 12px;
	}
	.product_recom ul li a .img{
		width: 90px;
		margin-right: 15px;
	}
	.product_recom ul li a .text{
		padding-top: 20px;
	}
}

/*zc修改*/
.swiper-container-zt{
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.swiper-container-zt img{
    width: 100%;
}
.swiper-container-zt .zt-swiper-pagination{
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    bottom: 20px;
    justify-content: center;
    left: 0;
    z-index: 999;
}
.swiper-container-zt .zt-swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: block;
    opacity: 1;
    margin: 0 10px;
}

.swiper-container-zt .zt-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #bb1c1d;
    opacity: 1;
}
