.ro180{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.ro90{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}

.ro270{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}

html{
	color: #333;
}

/*top nav*/
.top-nav-blank{
	height: 90px;
}

.header{
	height: 100px;
	width: 100%;
	background-color: transparent;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	transition: all 0.3s;
}

.header.active{
	background-color: rgba(0,0,0,0.7);
}

.top-nav{
	height: 100%;
	max-width: 1400px;
	margin: 0 auto;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

.top-nav .nav-block{
	height: 100%;
}

.top-nav .nav-block a{
	margin: 0 5px;
	padding: 0 5px;
	font-size: 17px;
	color: #fff;
	height: 100%;
	font-weight: bold;
	position: relative;
	display:-webkit-flex; 
	display:-webkit-box; 
	display:-ms-flexbox; 
	display:-moz-flex; 
	display:flex;
	-webkit-align-items:center; 
	-webkit-box-align:center;
	-ms-flex-align:center;
	-moz-align-items:center; 
	align-items:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.top-nav .nav-block a::after{
	opacity: 0;
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #e97d14;
}

.top-nav .nav-block a:hover,
.top-nav .nav-block .active a{
	color: #e97d14;
}

.top-nav .nav-block a:hover::after,
.top-nav .nav-block .active a::after{
	opacity: 1;
}

.index-lang a{
	display: inline-block;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	line-height: 28px;
	overflow: hidden;
	text-align: center;
	color: #ccc;
	font-size: 14px;
}

.index-lang a:hover{
	color: #e97d14;
}

.index-lang i{
	color: #999;
	font-size: 20px;
	font-weight: normal;
	line-height: 30px;
}

.index-lang a:hover i{
	text-shadow: 0 0 3px #ccc;
}

.menu,.menu_down{
	display: none;
}

/* index banner */
.index-banner img{
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}

/* index product */
.index-product-bg{
	background-image: url("../images/index_product_bg.png");
	background-position: right top;
	background-size: 47% auto;
}

.index-product{
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 0 140px;
}

.index-product .block1{
	margin-bottom: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items: flex-end;
	-webkit-box-align: flex-end;
	-moz-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.index-product .title{
	
}

.index-product .title::before{
	display: block;
	content: "";
	width: 40px;
	height: 1px;
	background-color: #ef590f;
	margin-bottom: 30px;
}

.index-product .title h2{
	font-size: 36px;
	font-weight: bold;
	line-height: 52px;
	margin-top: 15px;
}

.index-product .formbox{
	margin-left: 20px;
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.index-product .formbox select{
	width: 100%;
	height: 52px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-weight: bold;
	color: #999;
	padding: 0 10px;
}

.index-product .formbox button{
	cursor: pointer;
	width: 100%;
	height: 52px;
	line-height: 52px;
	background-color: #e97d14;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.index-product ul{
	position: relative;
	padding-bottom: 100px;
	border-bottom: 2px solid #e6e6e6;
}

.index-product ul::after{
	display: block;
	content: "";
	width: 180px;
	height: 2px;
	background-color: #e97d14;
	position: absolute;
	left: 13%;
	bottom: -2px;
}

.index-product li{
	width: 23.5%;
	margin-right: 2%;
	border: 1px solid #e6e6e6;
	transition: all 0.3s;
}

.index-product li:hover{
	border-color: #e97d14;
}

.index-product li:nth-of-type(4n){
	margin-right: 0;
}

.index-product li a{
	display: block;
}

.index-product li .imgbox{
	height: 240px;
}

.index-product li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.index-product li .textbox{
	position: relative;
	padding: 20px;
	border-top: 1px solid #e6e6e6;
}

.index-product li .textbox::before{
	display: block;
	content: "";
	width: 70px;
	height: 1.5px;
	background-color: #999;
	position: absolute;
	left: 20px;
	top: -1px;
	transition: all 0.3s;
}

.index-product li:hover .textbox::before{
	background-color: #e97d14;
}

.index-product li h2{
	font-size: 20px;
	font-weight: bold;
	transition: all 0.3s;
}

.index-product li:hover h2{
	color: #e97d14;
}

.index-product li p{
	font-size: 17px;
	color: #999;
}


/*index about*/
.index-about-block{
	position: relative;
}

.index-about-block .title{
	color: #e97d14;
	font-size: 50px;
	line-height: 1;
	font-weight: bold;
	max-width: 1400px;
	width: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%,-50%);
}

.index-about-block .imgbox{
	width: 52%;
	height: 800px;
}

.index-about-block .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index-about-block .textbox{
	width: 48%;
	padding: 200px 110px 0;
	background-image: url("../images/index_about_bg.jpg");
	background-position: center;
	background-size: cover;
}

.index-about-block .textbox h3{
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 20px;
}

.index-about-block .editbox{
	font-size: 15px;
	line-height: 2;
	color: #fff;
	margin-bottom: 130px;
}

.index-about-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.index-about-block .textbox a{
	display: block;
	font-size: 12px;
	color: #fff;
	font-weight: bold;
	transition: all 0.3s;
}

.index-about-block .textbox a:hover{
	text-shadow: 0px 0px 3px #333;
}

.index-about-block .textbox i{
	display: inline-block;
	vertical-align: middle;
	margin-top: -2px;
	margin-left: 5px;
	color: #fff;
	font-size: 12px;
}

/*index news*/
.index-news-bg{
	background-image: url("../images/index_news_bg.jpg");
	background-position: center;
	background-size: cover;
}

.index-news{
	max-width: 1400px;
	margin: 0 auto;
	padding: 100px 0 150px;
}

.index-news .title::before{
	display: block;
	content: "";
	width: 40px;
	height: 1px;
	background-color: #ef590f;
	margin-bottom: 30px;
}

.index-news .title h2{
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	margin-top: 15px;
}

.index-news ul{
	margin-left: 7%;
	margin-bottom: 60px;
	border-top: 1px solid #ddd;
}

.index-news li{
	border-bottom: 1px solid #ddd;
}

.index-news li a{
	height: 100px;
	padding: 0 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
}

.index-news li h3{
	font-size: 14px;
	color: #333;
	font-weight: bold;
	transition: all 0.3s;
}

.index-news li p{
	font-size: 15px;
	color: #333;
	font-weight: bold;
	overflow : hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: all 0.3s;
	margin-left: 40px;
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.index-news li:hover h3,
.index-news li:hover p{
	color: #e97d14;
}

.index-news .more{
	display: block;
	text-align: right;
}

.index-news .more a{
	display: inline-block;
	color: #ef590f;
	font-size: 16px;
	font-weight: bold;
}

.index-news .more i{
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	vertical-align: middle;
	text-align: center;
	font-size: 30px;
	color: #fff;
	background-color: #e97d14;
	border-radius: 50%;
	margin-left: 20px;
}

/*index contact*/
.index-contact-bg{
	background-color: #fdf4ed;
}

.index-contact{
	max-width: 1400px;
	margin: 0 auto;
	padding: 160px 0 60px;
	position: relative;
}

.index-contact .title{
	color: #e97d14;
	font-size: 50px;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(0,-50%);
}

.index-contact .form-block{
	width: 43%;
	-webkit-align-items:flex-start;
	-webkit-box-align:flex-start;
	-moz-align-items:flex-start;
	align-items:flex-start;
	-ms-flex-align:flex-start;
}

.index-contact .otherbox{
	width: 49%;
}

.index-contact ul{
	margin-bottom: 20px;
}

.index-contact li{
	width: 50%;
	border-top: 1px solid #ddd;
	height: 94px;
	padding: 0 5px;
	color: #666;
	font-size: 18px;
	line-height: 40px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
}

.index-contact li:last-child{
	width: 100%;
}

.index-contact li i{
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	background-color: #fff;
	font-size: 20px;
	color: #e97d14;
	text-align: center;
	margin-right: 15px;
	flex-shrink:0
}

.index-contact .map{
	height: 200px;
}

/*footer list*/
.footer-list-bg{
	background-color: #333;
	position: relative;
	z-index: 5;
}

.footer-list{
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 0 60px;
}

.footer-list li h2{
	font-size: 20px;
	color: #fff;
	margin-bottom: 25px;
	font-weight: bold;
}

.footer-list a,
.footer-list p{
	display: block;
	font-size: 15px;
	color: #999;
}

.footer-list a:hover{
	color: #fff;
}

.footer-list a+a,
.footer-list p+p{ 
	margin-top: 20px;
}

.footer-list li+li{
	padding-left: 2%;
}

.footer-list li:nth-child(5){
	border: none;
}

.footer-list li:nth-child(5) h2{
	visibility: hidden;
}

.footer-list li img{
	display: block;
}

.footer-list li img+img{
	margin-top: 25px;
}

.footer-list li .flex{
	padding-top: 20px;
	border-top: 1px solid #525252;
	margin-top: 30px;
}

.footer-list li span{
	font-size: 15px;
	color: #999;
	line-height: 2;
}

.copyall{
	position: relative;
	z-index: 4;
	background-color: #000;
}

.copy{
	color: #fff;
}

.copy a{
	color: #fff;
}

.copy a:hover{
	color: #ccc;
}

/*side menu*/
.sidemenu{
	position: fixed;
	z-index: 98;
	right: 0;
	bottom: 100px;
}

.sidemenu a{
	display: block;
	width: 64px;
	height: 64px;
	line-height: 64px;
	text-align: center;
	background-color: #e97d14;
}

.sidemenu a+a{
	margin-top: 5px;
}

.sidemenu i{
	font-size: 26px;
	color: #fff;
}

.menu-msg{
	width: 680px;
	padding: 40px 50px;
}

/*other public*/
.other-banner{
	position: relative;
}

.other-banner img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.shade-text{
	position: absolute;
	width: 100%;
	max-width: 1400px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	text-align: right;
}

.shade-text::before{
	display: inline-block;
	content: "";
	width: 66px;
	height: 4px;
	background-color: #e97d14;
	margin-bottom: 30px;
}

.shade-text h2{
	color: #fff;
	font-size: 60px;
	line-height: 1;
	font-weight: bold;
}

.shade-text h4{
	font-size: 14px;
	color: #fff;
	margin-top: 10px;

}

/****/

.other-nav-bg{
	position: relative;
	z-index: 20;
}

.other-nav{
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 20;
}

.other-nav ul{
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	transform: translateY(50%);
}

.other-nav li{
	text-align: center;
	width: 220px;
	background-color: #fff;
	border-top: 1px solid #e97d14;
}

.other-nav li a{
	padding: 0 10px;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	height: 80px;
	position: relative;
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
}

.other-nav li+li a::before{
	display: block;
	content: "";
	height: 24px;
	border-left: 1px solid #ddd;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -12px;
}

.other-nav li:hover a,
.other-nav li.active a{
	background-color: #e97d14;
	color: #fff;
}

/*about us*/
.about-abo-bg{
	background-image: url("../images/about_bg1.jpg");
	background-position: left top;
	background-repeat: repeat-x;
}

.about-abo-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 130px 0 160px;
}

.about-abo-block .title{
	font-size: 50px;
	font-weight: bold;
	color: #e97d14;
	line-height: 1;
	position: relative;
	margin-bottom: 40px;
}

.about-abo-block .logobox{
	border-left: 1px solid #ef590f;
	padding-left: 50px;
	position: absolute;
	right: 0;
	bottom: 5px;
}

.about-abo-block .editbox{
	font-size: 16px;
	line-height: 2.6;
	color: #666;
}

.about-abo-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.about-qua-bg{
	background-image: url("../images/about_bg2.jpg");
	background-position: center;
	background-size: cover;
}

.about-qua{
	position: relative;
}

.about-qua .title{
	position: absolute;
	left: 0;
	top: 0;
	transform: translateY(-70%);
}

.about-qua .title::before{
	display: block;
	content: "";
	width: 40px;
	height: 1px;
	background-color: #ef590f;
	margin-bottom: 30px;
}

.about-qua .title h2{
	font-size: 36px;
	font-weight: bold;
	line-height: 52px;
	margin-top: 15px;
}

.about-int{
	position: relative;
}

.about-int .title{
	font-size: 50px;
	color: #e97d14;
	font-weight: bold;
	margin-bottom: 30px;
}

.about-dev-block{
	padding: 70px 0 140px;
	max-width: 1200px;
	margin: 0 auto;
}

.about-dev-block .swiper-container{
	height: 600px;
}

.about-dev-block .swiper-slide{
	height: 290px;
}

.about-dev-block .swiper-slide a{
	display: block;
	position: relative;
	height: 100%;
}

.about-dev-block .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-qua .swiper-slide img{
	object-fit: contain;
}

.about-dev-block .swiper-button-next,
.about-dev-block .swiper-button-prev{
    width: 45px;
    height: 45px;
    line-height: 45px;
    top: auto;
    bottom:60px;
    right:0;
    opacity: 1 !important;
    border-radius: 50%;
    background-color: #666;
    color: #fff;
    -webkit-user-select:none;
    -moz-user-select:none;
}
.about-dev-block .swiper-button-prev{
    right: 60px;
    left: auto;
}
.about-dev-block .swiper-button-next:hover,
.about-dev-block .swiper-button-prev:hover{
	background-color: #e97d14;
}
.about-dev-block .swiper-button-next:after,
.about-dev-block .swiper-button-prev:after{
    display: none;
}
.about-dev-block .swiper-button-next i{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

/****/
.other-block-bg{
	background-image: url("../images/about_bg1.jpg");
	background-position: left top;
	background-repeat: repeat-x;
}

.other-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}

.other-right-block{
	width: 74%;
}

.products-left-menu{
	width: 22%;
	line-height: 1.5;
}

.products-left-menu .title{
	margin-bottom: 20px;
}

.products-left-menu h1{
	line-height: 80px;
	padding: 0 25px;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	background-image: url("../images/title_bg01.jpg");
	background-position: center;
	background-size: cover
}

.products-left-nav{
	display: block;
}

.products-left-nav+.products-left-nav{
	border-top: 2px solid #fff;
}

.products-left-nav>div{
	padding: 0 20px 0 30px;
	height: 54px;
	color: #666;
	background-color: #eee;
	cursor: pointer;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav div{
	font-size: 14px;
}

.products-left-nav>div:hover,
.products-left-nav.active>div{
	background-color: #e97d14;
}

.products-left-nav>div i{
	font-size: 16px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav>div::before{
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-left: 4px solid #999;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	margin-right: 10px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav>div:hover::before,
.products-left-nav.active>div::before{
	border-left-color: #fff;
}

a.products-left-nav>div i{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}

a.products-left-nav>div:hover,
a.products-left-nav.active>div{
	background-color: #e97d14;
}

.products-left-nav>div:hover .flex-flex1,
.products-left-nav.active>div .flex-flex1,
.products-left-nav>div:hover i,
.products-left-nav.active>div i{
	color: #fff;
}

.products-left-nav.active>div i{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}

.products-left-nav ul{
	background-color: #fff;
	display: none;
}

.products-left-nav li{
	padding: 0 20px 0 30px;
	font-size: 16px;
	color: #666;
}

.products-left-nav li:hover,
.products-left-nav li.active{
	background-color: #f0f8f8;
}

.products-left-nav li:hover .flex-flex1,
.products-left-nav li.active .flex-flex1{
	color: #6db6bd;
}

.products-left-nav li+li{
	border-top: 1px dashed #ccc;
}

.products-left-nav li a{
	height: 46px;
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
	-webkit-align-items:center;
	-webkit-box-align:center;
	-moz-align-items:center;
	align-items:center;
	-ms-flex-align:center;
}

.products-left-nav li span{
	display: block;
	width: 10px;
	height: 1px;
	background-color: #999;
	margin-right: 10px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav li:hover span,
.products-left-nav li.active span{
	background-color: #fd9314;
}

.products-left-nav li .flex-flex1{
	overflow: hidden;
	font-size: 14px;
	color: #666;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

.products-left-nav dl{
	display: none;
}

.products-left-nav dt{
	border-top: 1px dotted #ccc;
}

.products-left-nav dt a{
	display: block;
	padding-left: 20px;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
}

.products-left-nav dt a:hover{
	color: #fd9314;
}

/* products */
.product-block{

}

.product-block .title{
	font-size: 24px;
	font-weight: bold;
	line-height: 64px;
	margin-bottom: 30px;
	color: #666;
	border-bottom: 1px solid #eee;
}

.product-block li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	border: 1px solid #e6e6e6;
}

.product-block li:nth-of-type(3n){
	margin-right: 0;
}

.product-block li:hover{
	border-color: #e97d14;
}

.product-block li a{
	display: block;
}

.product-block li .imgbox{
	height: 210px;
}

.product-block li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-block li .textbox{
	position: relative;
	padding: 20px;
	border-top: 1px solid #e6e6e6;
}

.product-block li .textbox::before{
	display: block;
	content: "";
	width: 70px;
	height: 1.5px;
	background-color: #999;
	position: absolute;
	left: 20px;
	top: -1px;
	transition: all 0.3s;
}

.product-block li:hover .textbox::before{
	background-color: #e97d14;
}

.product-block li h2{
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s;
}

.product-block li:hover h2{
	color: #e97d14;
}

.product-block li p{
	font-size: 14px;
	color: #999;
}

/*product detail*/
.product-detail{
	padding: 64px 0 0;
}

.product-detail .imgbox{
	width: 56%;
	float: left;
}

.product-detail .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-detail .gallery-top{
	margin-bottom: 20px;
	border: 1px solid #d3d3d3;
	background-color: #fff;
}

.product-detail .gallery-top .swiper-slide{
	height: 390px;
}

.product-detail .gallery-top .swiper-slide a{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.product-detail .gallery-thumbs{
	padding: 0 30px;
}

.product-detail .gallery-thumbs .swiper-slide{
	border: 1px solid #d3d3d3;
	cursor: pointer;
	height: 80px;
}

.product-detail .gallery-thumbs .swiper-button-next,
.product-detail .gallery-thumbs .swiper-button-prev{
    width: 20px;
    height: 100px;
    line-height: 100px;
    top: 0;
    margin-top: 0;
    opacity: 1;
    background-color: #eee;
    color: #0c4695;
    -webkit-user-select:none;
    -moz-user-select:none;
}
.product-detail .gallery-thumbs .swiper-button-prev{
    left: 0;
}
.product-detail .gallery-thumbs .swiper-button-next{
    right:0;
}
.product-detail .gallery-thumbs .swiper-button-prev b,
.product-detail .gallery-thumbs .swiper-button-next b{
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #333;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
}
.product-detail .gallery-thumbs .swiper-button-next:after,
.product-detail .gallery-thumbs .swiper-button-prev:after{
    display: none;
}
.product-detail .gallery-thumbs .swiper-button-next:hover,
.product-detail .gallery-thumbs .swiper-button-prev:hover{
	background-color: #e97d14;
}

.product-detail .gallery-thumbs .swiper-button-next:hover b,
.product-detail .gallery-thumbs .swiper-button-prev:hover b{
	border-left-color: #fff; 
}
.product-detail .gallery-thumbs .swiper-slide-thumb-active{
	border-color: #e97d14;
}

.product-detail .info-box{
	width: 41%;
	float: right;
}

.product-detail .info-box .title{
	font-size: 24px;
	color: #e97d14;
	padding: 0 0 20px;
	font-weight: bold;
	border-bottom: 1px solid #e6e6e6;
}

.product-detail .info-box .editbox{
	padding: 15px 0;
	color: #756273;
	font-size: 20px;
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 20px;
	font-weight: 300;
}

.product-detail .info-box .f-title{
	color: #756273;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 20px;
}

.product-detail .form-block .full-div,
.product-detail .form-block .half-div,
.product-detail .form-block .onethird-div,
.product-detail .form-block .quater-div{
	border-radius: 0;
}

.product-detail .form-block input{
	height: 44px;
	line-height: 44px;
	color: #756273;
	font-weight: 300;
	font-size: 13px;
}

.product-detail .form-block textarea{
	height: 210px;
	font-size: 13px;
	color: #756273;
	font-weight: 300;
}

.product-detail .form-block button{
	height: 46px;
	line-height: 46px;
	font-size: 18px;
	border-radius: 0;
	font-weight: inherit;
    font-family: Arial, sans-serif;
}


.product-detail .subtitle{
	margin: 40px 0;
	background-color: #eee;
}

.product-detail .subtitle span{
	padding: 0 35px;
	line-height: 46px;
	color: #fff;
	font-size: 18px;
	background-color: #e97d14;
	display: inline-block;
	vertical-align: top;
	font-weight: bold;
}

/*news*/
.news-block{
	padding: 60px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.news-block .title{
	color: #e97d14;
	font-size: 60px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}

.news-block li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	border: 1px solid #e6e6e6;
	transition: all 0.3s;
}

.news-block li:hover{
	border-color: #e97d14;
	box-shadow: 0 0 3px #ccc;
}

.news-block li:nth-of-type(3n){
	margin-right: 0;
}

.news-block li a{
	display: block;
	padding: 20px;
}

.news-block li .imgbox{
	height: 260px;
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
}

.news-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-block li h2{
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	color: #444;
	line-height: 30px;
	height: 60px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: all 0.3s;
}

.news-block li:hover h2{
	color: #e97d14;
}

.news-block li h4{
	font-size: 14px;
	color: #999;
}

/*news detail*/
.news-detail-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0;
}

.news-detail-block .title{
	font-size: 24px;
	font-weight: bold;
	color: #444;
	margin-bottom: 20px;
	text-align: center;
}

.news-detail-block .subtitle{
	font-size: 14px;
	color: #999;
	padding-bottom: 30px;
	border-bottom: 1px dotted #e6e6e6;
	margin-bottom: 20px;
	text-align: center;
}

.news-detail-block .edit-box{
	font-size: 16px;
	color: #666;
	line-height: 2.6;
}

/*support*/
.support-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 0 60px;
}

.support-block .title{
	color: #e97d14;
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 30px;
}

.support-block .block1{
	margin-bottom: 30px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -o-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items: flex-end;
	-webkit-box-align: flex-end;
	-moz-align-items: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.support-block .formbox{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.support-block .formbox+.formbox{
	margin-left: 20px;
}

.support-block .formbox select{
	width: 100%;
	height: 52px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-weight: bold;
	color: #999;
	padding: 0 10px;
}

.support-block .formbox button{
	cursor: pointer;
	width: 100%;
	height: 52px;
	line-height: 52px;
	background-color: #e97d14;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.support-block .tablebox{}

.support-block .tablebox table{
	width: 100%;
}

.support-block .tablebox th{
	background-color: #999;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border: 1px solid #fff;
	padding: 10px;
}

.support-block .tablebox td{
	font-size: 16px;
	color: #666;
	border: 1px solid #ccc;
	padding: 10px;
}

/*download*/
.dl-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 0 60px;
}

.dl-block .title{
	color: #e97d14;
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 30px;
}

.dl-block li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	border: 1px solid #e6e6e6;
	transition: all 0.3s;
}

.dl-block li:hover{
	border-color: #e97d14;
}

.dl-block li:nth-of-type(3n){
	margin-right: 0;
}

.dl-block li a{
	display: block;
	padding: 45px 35px;
}

.dl-block li h2{
	color: #444;
	font-size: 26px;
	font-weight: bold;
	line-height: 30px;
	height: 120px;
	overflow: hidden;
	transition: all 0.3s;
}

.dl-block li p{
	color: #999;
	font-size: 18px;
	margin-bottom: 40px;
}

.dl-block li .flex{
	font-size: 15px;
	color: #999;
}

.dl-block li .flex span{
	font-weight: bold;
	text-decoration: underline;
	color: #333;
	transition: all 0.3s;
}

.dl-block li:hover h2,
.dl-block li:hover .flex span{
	color: #e97d14;
}

/*apply*/
.form-block span{
	color: #ff0000;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.form-block button{
	width: 48%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 5px;
	background-color: #0080cc;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.form-block button[type='reset']{
	background-color: #999;
}

.form-block .tip{
	font-size: 14px;
	color: #ff0000;
	margin-top: 45px;
}

/* message */
.form-block .full-div,
.form-block .half-div,
.form-block .onethird-div,
.form-block .quater-div{
	margin-bottom: 20px;
	border: 1px solid #ededed;
	border-radius: 5px;
	box-shadow: 1px 1px 5px #ccc;
	overflow: hidden;
	position: relative;
}

.form-block .full-div{
	width: 100%;
}

.form-block .half-div{
	width: 49%;
}

.form-block .onethird-div{
	width: 32%;
}

.form-block .quater-div{
	width: 24%;
}

.form-block input{
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 10px;
	font-size: 14px;
	color: #428a7b;
}

.form-block textarea{
	width: 100%;
	height: 200px;
	line-height: 30px;
	padding: 5px 10px;
	font-size: 14px;
	color: #428a7b;
	resize: none;
}

.form-block select{
	width: 100%;
	height: 44px;
	line-height: 44px;
	padding: 10px;
	font-size: 14px;
	color: #428a7b;
	cursor: pointer;
}

.form-block button{
	width: 48%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 5px;
	background-color: #ec1010;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.form-block img{
	max-height: 44px;
	vertical-align: bottom;
}

/*change*/
.form-block .full-div,
.form-block .half-div,
.form-block .onethird-div,
.form-block .quater-div{
	background-color: #fff;
	margin-bottom: 10px;
	box-shadow: none;
	border-color: #ddd;
}

.form-block input{
	height: 60px;
	line-height: 60px;
}

.form-block textarea{
	height: 160px;
}

.form-block img{
	max-height: 60px;
}

.form-block button{
	height: 60px;
	line-height: 60px;
	font-size: 22px;
	font-weight: bold;
	background-color: #e97d14;
}

/*contact us*/
.contact-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 70px 0;
}

.contact-block .title{
	text-align: center;
	margin-bottom: 40px;
}

.contact-block .title h2{
	color: #333;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact-block .title i{
	color: #e97d14;
	font-size: 30px;
}

.contact-block .title h4{
	font-size: 18px;
	color: #666;
	margin: 15px auto;
	max-width: 680px;
}

.contact-block .title::after{
	display: inline-block;
	content: "";
	width: 60px;
	height: 8px;
	background-color: #e97d14;
}

.contact-block ul{
	border-right: 1px solid #e6e6e6;
}

.contact-block li{
	width: 25%;
	text-align: center;
	padding: 5px 25px;
	border-left: 1px solid #e6e6e6;
}

.contact-block li i{
	font-size: 30px;
	color: #999;
}

.contact-block li p{
	color: #333;
	font-size: 18px;
	margin-top: 15px;
	font-weight: bold;
}

.map{
	height: 500px;
	background-color: #f7f7f7;
}

/**/
.msg-bg{
	background-color: #fdf4ed;
}

.msg-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0;
}

.msg-block .title{
	color: #e97d14;
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 30px;
}

.msg-block .form-block{
	width: 49%;
}

.msg-block .obox{
	width: 47%;
}

.msg-block .obox h2{
	font-family: fantasy;
	color: #000;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
}

.msg-block .obox h2 b{
	color: #e97d14;
}

.msg-block .obox p{
	color: #444;
	font-size: 18px;
	line-height: 2;
	margin-bottom: 20px;
}
.page {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.page a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span.current {
	background: #5280e0;
	border: 1px solid #5280e0;
	color: #FFFFFF;
	font-weight: bolder;
}

.editbox table{
	
}
.editbox td{
	padding:5px 10px;
}

