.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;
}

/*search*/
.search-shade{
	position: fixed;
	z-index: 99999;
	background-color: rgba(0,0,0,0.8);
	left: 0;
	height: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.search-block{
	position: fixed;
	left: 50%;
	top: 20%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	text-align: center;
}

.search-block h1{
	font-size: 30px;
	color: #fff;
	margin-bottom: 30px;
}

.search-block input{
	width: 475px;
	padding: 0 10px;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	color: #333;
	background-color: transparent;
}

.search-block a{
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: block;
	background-color: #308393;
	border-radius: 50%;
	margin: 0 auto;
}

.search-block i{
	font-size: 18px;
	color: #fff;
}

.search-block>div{
	background-color: #fff;
	padding: 0 15px;
	border-radius: 30px;
}

/*top nav*/
.top-nav-blank{
	height: 80px;
	display: none;
}

.header{
	width: 100%;
	background-color: rgba(0,0,0,0.4);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}

.header .logo{
	margin-right: 10%;
	padding-left: 20px;
}

.top-nav{
	height: 100%;
	max-width: 1500px;
	margin: 0 auto;
}

.top-nav .nav-block{
	border-top: 1px solid #6b6ca7;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	transition: all 0.3s;
}

.header.active .top-nav .nav-block{
	height: 100px;
	border-color: transparent;
}

.top-nav .nav-block li{
	height: 100%;
}

.top-nav .nav-block a{
	width: 100%;
	padding: 0 20px;
	font-size: 16px;
	color: #fff;
	height: 100%;
	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{
	display: block;
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 0%;
	height: 4px;
	background-color: #f7881c;
	transition: all 0.3s;
}

.top-nav .nav-block a:hover,
.top-nav .nav-block .active a{
	color: #f7881c;
}

.top-nav .nav-block a:hover::after,
.top-nav .nav-block .active a::after{
	opacity: 1;
	width: 100%;
}

.index-lang{
	overflow: hidden;
	text-align: right;
	padding-right: 20px;
	color: #fff;
	font-size: 16px;
	line-height: 50px;
	height: 50px;
	transition: all 0.3s;
}

.header.active .index-lang{
	height: 0;
}

.index-lang a{
	color: #fff;
	font-size: 16px;
	display: inline-block;
	margin-right: 25px;
}

.index-lang a:hover{
	color: #f7881c;
}

.index-lang i{
	display: inline-block;
	color: #fff;
	font-size: 20px;
	vertical-align: middle;
	margin-top: -4px;
}

.index-lang a:hover i{
	color: #f7881c;
}

.menu,.menu_down{
	display: none;
}

/* index banner */
.index-banner img{
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}

/*index about*/
.index-about-block{
	padding: 80px 4%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-about-block .textbox{
	width: 45%;
}

.index-about-block .textbox h2{
	display: inline-block;
	padding: 5px 25px;
	background-color: #f7881c;
	font-size: 36px;
	color: #fff;
	margin-bottom: 40px;
}

.index-about-block .textbox h4{
	color: #000;
	font-size: 32px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 25px;
}

.index-about-block .editbox{
	font-size: 16px;
	line-height: 2;
	color: #666;
	margin-bottom: 40px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.index-about-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.index-about-block ul{
	display: flex;
	flex-wrap: wrap;
}

.index-about-block li{
	text-align: center;
	flex: 1;
	transition: all 0.3s;
}

.index-about-block li:hover{
	transform: scale(1.2,1.2);
}

.index-about-block li i{
	font-size: 30px;
	color: #999;
	transition: all 0.3s;
}

.index-about-block li:hover i{
	color: #f7881c;
}

.index-about-block li h3{
	font-size: 30px;
	color: #000;
	margin: 10px 0;
}

.index-about-block li p{
	font-size: 14px;
	color: #666;
	transition: all 0.3s;
}

.index-about-block li:hover p{
	color: #f7881c;
}

.index-about-block .imgbox{
	width: 43%;
	
	position: relative;
	transition: all 0.3s ease-in-out;
	background:#f7881c;
}

/* .index-about-block .imgbox:hover{
	box-shadow: 50px 50px 0 #f7881c;
} */

.index-about-block .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
   transition: all 0.3s ease-in-out;
   -webkit-transform: translate(-30px,-30px);
    -ms-transform: translate(-30px,-30px);
    -o-transform: translate(-30px,-30px);
    transform: translate(-30px,-30px);
}



.index-about-block .imgbox a.openvr{
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 160px;
	line-height: 60px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
	transition: all 0.3s ease-in-out;
	-webkit-transform: translate(-30px,-30px);
    -ms-transform: translate(-30px,-30px);
    -o-transform: translate(-30px,-30px);
    transform: translate(-30px,-30px);
}
.index-about-block .imgbox:hover img{
	cursor:pointer;
	filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
	-webkit-transform: translate(-40px,-40px);
    -ms-transform: translate(-40px,-40px);
    -o-transform: translate(-40px,-40px);
    transform: translate(-40px,-40px);
}
.index-about-block .imgbox:hover a.openvr{
	-webkit-transform: translate(-40px,-40px);
    -ms-transform: translate(-40px,-40px);
    -o-transform: translate(-40px,-40px);
    transform: translate(-40px,-40px);
}

.index-about-block .imgbox a:hover{
	text-shadow: 0 0 5px #999;
}


/* index product */
.index-product{
	padding: 70px 4%;
}

.index-product .title{
	margin-bottom: 20px;
	text-align: center;
	color: #333;
	font-size: 42px;
}

.index-product li{
	flex: 1;
	border: 1px solid #eee;
	transition: all 0.3s;
	text-align: center;
}

.index-product li:hover{
	border-color: #f7881c;
}

.index-product li a{
	display: block;
	padding: 80px 20px;
}

.index-product li .imgbox{
	text-align: center;
	height: 130px;
	margin-bottom: 45px;
	overflow: hidden;
}

.index-product li .imgbox img{
	transition: all 0.3s;
	transform: scale(0.9,0.9);
}

.index-product li:hover .imgbox img{
	transform: scale(1,1);
}

.index-product li p{
	color: #333;
	font-size: 16px;
	margin-bottom: 20px;
}

.index-product li span{
	display: block;
	width: 100px;
	line-height: 30px;
	border: 1px solid #eee;
	text-align: center;
	border-radius: 15px;
	margin: 0 auto;
	font-size: 12px;
	color: #666;
	transition: all 0.3s;
}

.index-product li:hover span{
	color: #fff;
	background-color: #f7881c;
	border-color: #f7881c;
}

.product-search{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #eee;
	padding: 40px;
	margin-top: 40px;
}

.product-search select,
.product-search input{
	flex: 1;
	margin-right: 20px;
	min-width: 1px;
	line-height: 48px;
	height: 48px;
	background-color: #fff;
	padding: 0 20px;
	font-size: 16px;
	border-radius: 5px;
}

.product-search button{
	font-size: 16px;
	color: #fff;
	width: 120px;
	line-height: 48px;
	text-align: center;
	background-color: #f7881c;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.3s;
}

.product-search button:hover{
	box-shadow: 0 0 10px #666;
}

/*index achieve*/
.index-achieve{
	display: flex;
	flex-wrap: wrap;
}

.index-achieve .box{
	width: 50%;
}

.index-achieve .box1{
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
	padding: 0 20px;
}

.index-achieve .box1 h3{
	color: #fff;
	font-size: 42px;
	font-weight: bold;
	margin-bottom: 10px;
}

.index-achieve .box1 p{
	color: #fff;
	font-size: 24px;
	max-width: 520px;
	margin: 0 auto 30px;
}

.index-achieve .box1 h4{
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 20px;
}

.index-achieve .box1 h2{
	font-size: 60px;
	color: #fff;
	margin-bottom: 25px;
}

.index-achieve .box1 a{
	display: block;
	width: 200px;
	line-height: 60px;
	margin: 0 auto;
	border: 1px solid #ccc;
	font-size: 16px;
	color: #fff;
	border-radius: 30px;
	transition: all 0.3s;
}

.index-achieve .box1 a:hover{
	background-color: #f7881c;
	border-color: #f7881c;
}

.index-achieve .box2{
	height: 960px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	text-align: center;
}

.index-achieve .box2 .title{
	font-size: 48px;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 5;
	margin-bottom: 70px;
}

.index-achieve .box2 .title span{
	position: relative;
	z-index: 5;
}

.index-achieve .box2 .title::after{
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
	width: 370px;
	height: 20px;
	background-color: #f7881c;
}

.index-achieve .box2 li{
	color: #fff;
	font-size: 28px;
	transition: all 0.3s;
	cursor:pointer;
}

.index-achieve .box2 li:hover{
	transform: scale(1.2,1.2);
}

.index-achieve .box2 li+li{
	margin-top: 10px;
}

.index-achieve .box2 li span{
	color: #f7881c;
	font-size: 72px;
}

.index-achieve .bg1{
	background-image: url(../images/index_ach_bg01.jpg);
	background-position: center;
	background-size: cover;
}

.index-achieve .bg2{
	background-image: url(../images/index_ach_bg02.jpg);
	background-position: center;
	background-size: cover;
}

.index-achieve .bg3{
	background-image: url(../images/index_ach_bg03.jpg);
	background-position: center;
	background-size: cover;
}

/*index advantage*/
.index-adv{
	max-width: 1500px;
	margin: 0 auto;
	padding: 60px 0;
}

.index-adv .title{
	font-size: 42px;
	color: #f7881c;
	text-align: center;
	margin-bottom: 60px;
}

.index-adv ul{
	display: flex;
	flex-wrap: wrap;
}

.index-adv li{
	flex: 1;
	text-align: center;
}

.index-adv li img{
	height: 98px;
	transition: all 0.3s ease-in-out;
}

.index-adv li:hover img{
	cursor:pointer;
	transform: translateY(-15px);
}

.index-adv li p{
	font-size: 18px;
	color: #666;
	margin-top: 30px;
}

/*index why*/
.index-why-bg{
	background-image: url(../images/index_why_bg.jpg);
	background-position: center;
	background-size: cover;
}

.index-why{
	padding: 70px 4%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.index-why .title{
	color: #fff;
	font-size: 42px;
	text-align: center;
	width: 100%;
	margin-bottom: 70px;
}

.index-why ul{
	flex: 1;
}

.index-why li{
	padding: 0 70px;
	height: 100px;
	display: flex;
	align-items: center;
	position: relative;
}

.index-why li::before{
	display: block;
	content: "";
	opacity: 0;
	width: 100%;
	height: 0%;
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
	background-color: #f08519;
	transition: all 0.3s;
}

.index-why li:hover::before{
	opacity: 1;
	height: 100%;
}

.index-why li>*{
	position: static;
	z-index: 4;
}

.index-why li img{
	width: 56px;
	flex-shrink: 0;
}

.index-why li p{
	color: #fff;
	font-size: 16px;
	flex: 1;
	overflow: hidden;
	line-height: 1.8;
	text-align: right;
}

.index-why li img+p,
.index-why li p+img{
	margin-left: 25px;
	text-align: left;
}

.index-why .imgbox{
	width: 30%;
}

/*index service*/
.index-service{
	max-width: 1600px;
	padding: 70px 20px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.index-service .textbox{
	width: 43%;
	margin-right: 2%;
}

.index-service .textbox h3{
	font-size: 52px;
	color: #000;
}

.index-service .textbox h2{
	font-size: 180px;
	color: #f7881c;
	transition: all 0.3s ease-in-out;
}

.index-service .textbox h2:hover{
	padding-left: 3%;
}

.index-service .textbox span{
	font-size: 22px;
}

.index-service .textbox p{
	font-size: 22px;
	color: #666;
	line-height: 2;
}

.index-service .imgbox{
	width: 55%;
}

/*index quality*/
.index-quality{
	display: flex;
	flex-wrap: wrap;
}

.index-quality .box{
	flex: 1;
}

.index-quality .bg1{
	background-image: url(../images/index_qua_img.jpg);
	background-position: center;
	background-size: cover;
}

.index-quality .bg2{
	background-image: url(../images/index_qua_img-02.jpg);
	background-position: center;
	background-size: cover;
}

.index-quality a{
	display: flex;
	height: 500px;
	position: relative;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.index-quality a::before{
	display: block;
	content: "";
	width: 90%;
	height: 90%;
	box-sizing: border-box;
	border: 1px solid #f08519;
	position: absolute;
	left: 5%;
	top: 5%;
	transition: all 0.3s;
	opacity: 0;
}

.index-quality a:hover::before{
	opacity: 1;
}

.index-quality h2{
	color: #fff;
	font-size: 42px;
}

.index-quality h4{
	color: #fff;
	font-size: 18px;
	margin-bottom: 30px;
}

.index-quality span{
	display: block;
	width: 200px;
	line-height: 44px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 22px;
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

.index-quality a:hover span{
	background-color: #f08519;
	border-color: #f08519;
}

/*index contact*/
.index-contact-bg{
	background-image: url(../images/index_contact_bg.jpg);
	background-position: left 5% bottom 10px;
}

.index-contact{
	max-width: 1400px;
	padding: 70px 20px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-contact .title{
	font-size: 42px;
	color: #000;
	margin-bottom: 20px;
	width: 100%;
}

.index-contact .textbox{
	width: 50%;
}

.index-contact .textbox i{
	font-size: 50px;
	color: #f7881c;
	margin-right: 10px;
	transition: all 0.3s;
}

.index-contact .textbox .flex-display:hover i{
	margin-right: 20px;
}

.index-contact .textbox h3{
	color: #f7881c;
	font-size: 22px;
}

.index-contact .textbox h4{
	color: #f08519;
	font-size: 26px;
}

.index-contact .textbox p{
	color: #666;
	font-size: 20px;
	margin-top: 30px;
}

.index-contact .textbox p::before{
	display: inline-block;
	content: "";
	vertical-align: middle;
	border-left: 6px solid #f7881c;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	margin-top: -2px;
	margin-right: 10px;
}

.index-contact .textbox p+p{
	margin-top: 20px;
}

.index-contact .formbox{
	width: 48%;
}

.index-contact .formbox h3{
	font-size: 24px;
	margin-bottom: 25px;
}

.index-contact .form-block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.index-contact .form-block button{
	transition: all 0.3s;
}

.index-contact .form-block button:hover{
	box-shadow: 0 0 5px #ccc;
}

/*footer list*/
.footer-list-bg{
	background-color: #333;
	position: relative;
	z-index: 5;
}

.footer-list{
	max-width: 1600px;
	margin: 0 auto;
	padding: 40px 20px;
}

.footer-list li h2{
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 20px;
}

.footer-list a,
.footer-list p{
	display: block;
	font-size: 16px;
	color: #fff;
}

.footer-list p{
	color: #fff;
}

.footer-list p::before{
	display: none;
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid #017333;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	vertical-align: middle;
	margin-top: -2px;
	margin-right: 5px;
}

.footer-list a:hover{
	text-decoration: underline;
}

.footer-list i{}

.footer-list a+a,
.footer-list p+p{ 
	margin-top: 12px;
}

.footer-list li+li{
	padding-left: 2%;
}

.footer-list li .flex-display{
	margin-top: 35px;
}

.footer-list li .infobox{
	margin-left: 20px;
	text-align: center;
}

.footer-list li .qrbox{
	display: inline-block;
	text-align: center;
}

.footer-list li .qrbox+.qrbox{
	margin-left: 10px;
}

.footer-list li .qrbox img{
	width: 120px;
	height: 120px;
	margin-bottom: 15px;
}

.footer-list li .qrbox span{
	display: block;
	color: #f7881c;
	font-size: 14px;
}

.copyall{
	position: relative;
	z-index: 4;
	background-color: #000;
}

.copy{
	color: #fff;
}

.copy a{
	color: #fff;
}

.copy a:hover{
	color: #ccc;
}

/*other public*/
.other-banner,
.other-banner2{
	position: relative;
}

.other-banner img{
	width: 100%;
	min-height: 200px;
	object-fit: cover;
}

.other-banner2 img{
	width: 100%;
	min-height: 200px;
	object-fit: cover;
}

.shade-text{
	position: absolute;
	width: 100%;
	max-width: 1200px;
	left: 50%;
	bottom: 10%;
	transform: translate(-50%,0%);
	-webkit-transform: translate(-50%,0%);
}

.shade-text h3{
	color: #fff;
	font-size: 48px;
	margin-bottom: 5px;
	text-align: center;
}

.shade-text h4{
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

/**/
.news-nav-bg{
	box-shadow: 0 0 5px #ccc;
}

.news-nav{
	max-width: 1400px;
	margin: 0 auto 0;
	display: flex;
	border-right: 1px solid #eee;
}

.news-nav a{
	height: 60px;
	color: #666;
	font-size: 14px;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: #fff;
}

.news-nav a.active,
.news-nav a:hover{
	color: #f7881c;
}

.news-nav a{
	border-left: 1px solid #eee;
}

/**/
.other-nav-bg{
	box-shadow: 0 0 5px #ccc;
}

.other-nav{
	position: relative;
	z-index: 6;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	padding-top: 10px;
}

.other-nav a{
	display: block;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-around;
	overflow: hidden;
	position: relative;
	height: 60px;
	font-size: 18px;
	color: #016a7d;
}

.other-nav a::after{
	display: none;
	content: "";
	width: 10px;
	height: 10px;
	background-color: #fff;
	border: 1px solid #d8d8d8;
	position: absolute;
	left: 50;
	bottom: 0;
	transform: translateY(50%) rotate(45deg);
}

.other-nav a.active::after,
.other-nav a:hover::after{
	display: block;
}

.other-local{
	color: #666;
	font-size: 14px;
	max-width: 1400px;
	margin: 0 auto;
}

.other-local a{
	line-height: 60px;
	color: #666;
	font-size: 14px;
}

.other-local a:hover,
.other-local a:last-child{
	color: #f7881c;
}

/*about us*/
.about-abo-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 70px 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about-abo-block .title{
	margin-bottom: 10px;
	width: 100%;
}

.about-abo-block .title span{
	color: #fff;
	font-size: 28px;
	display: inline-block;
	padding: 10px 30px;
	background-color: #f7881c;
}

.about-abo-block .editbox{
	width: 50%;
	font-size: 16px;
	line-height: 2.4;
	color: #666;
}

.about-abo-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.about-abo-block .advbox{
	width: 46%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 350px;
}

.about-abo-block .advbox .box{
	width: 33.3%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	border: 1px solid #eee;
}

.about-abo-block .advbox .box1{
	height: 100%;
}

.about-abo-block .advbox .box2{
	height: 50%;
}

.about-abo-block .advbox i{
	font-size: 30px;
	color: #999;
}

.about-abo-block .advbox h4{
	font-size: 30px;
	color: #333;
	margin: 15px 0;
}

.about-abo-block .advbox .box:hover h4{
	color: #f7881c;
}

.about-abo-block .advbox p{
	color: #666;
	font-size: 14px;
}

/**/
.about-his-bg{
	background-image: url(../images/about_his_bg.jpg);
	background-position: center;
	background-size: cover;
}

.about-his-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 70px 20px 140px;
}

.about-his-block .title{
	font-size: 42px;
	color: #000;
	text-align: center;
	margin-bottom: 70px;
}

.about-his-block .gallery-top{
	margin-top: 70px;
}

.about-his-block .gallery-top .swiper-slide{
	
}

.about-his-block .gallery-top .swiper-slide p{
	color: #666;
	font-size: 20px;
	line-height: 2;
	padding: 0 30px;
	text-align: center;
}

.about-his-block .thumbs-block{
	position: relative;
}

.about-his-block .thumbs-block::after{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-1px);
	display: block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #ccc;
}

.about-his-block .gallery-thumbs{
	position: relative;
	padding-bottom: 9px;
}

.about-his-block .gallery-thumbs::before{
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	z-index: 5;
	bottom: 21px;
	left: 0;
	background-color: #ccc;
}

.about-his-block .gallery-top .swiper-wrapper{
	height: auto;
}

.about-his-block .gallery-thumbs .swiper-wrapper{
	z-index: 10;
	height: auto;
}

.about-his-block .gallery-thumbs .swiper-slide{
	cursor: pointer;
	padding-top: 3px;
}

.about-his-block .gallery-thumbs .swiper-slide.swiper-slide-thumb-active{
	padding-top: 0;
}

.about-his-block .gallery-thumbs .swiper-slide p{
	color: #666;
	font-size: 26px;
	text-align: center;
}

.about-his-block .gallery-thumbs .swiper-slide.swiper-slide-thumb-active p{
	color: #f7912d;
	font-size: 30px;
	font-weight: bold;
}

.about-his-block .gallery-thumbs .swiper-slide::after{
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #ccc;
	margin: 20px auto 0;
	background-color: #fff;
}

.about-his-block .gallery-thumbs .swiper-slide.swiper-slide-thumb-active::after{
	border: 8px solid #f7912d;
	margin-top: 10px;
}

.about-his-block .swiper-button-prev,
.about-his-block .swiper-button-next{
	top: auto;
	bottom: 0;
	opacity: 1 !important;
	width: auto;
}

.about-his-block .swiper-button-prev i,
.about-his-block .swiper-button-next i{
	padding: 5px;
	font-size: 20px;
	color: #ccc;
	background-color: #fff;
	display: block;
	border-radius: 50%;
	border: 1px solid #ccc;
}

.about-his-block .swiper-button-prev::after,
.about-his-block .swiper-button-next::after{
	display: none;
}

.about-his-block .swiper-button-prev{
	left: 0;
}

.about-his-block .swiper-button-next{
	right: 0;
}

/**/
.about-adv-block{
	padding: 100px 4%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about-adv-block .box{
	flex: 1;
	overflow: hidden;
	display: flex;
	height: 500px;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 20px;
}

.about-adv-block .box+.box{
	margin-left: 40px;
}

.about-adv-block .bg1{
	background-image: url(../images/about_adv_bg1.jpg);
	background-position: center;
	background-size: cover;
}

.about-adv-block .bg2{
	background-image: url(../images/about_adv_bg2.jpg);
	background-position: center;
	background-size: cover;
}

.about-adv-block h2{
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}

.about-adv-block p{
	color: #fff;
	font-size: 22px;
	margin-bottom: 40px;
}

.about-adv-block a{
	display: block;
	width: 160px;
	line-height: 60px;
	margin: 0 auto;
	font-size: 16px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 30px;
}

.about-adv-block a:hover{
	background-color: #f7912d;
	border-color: #f7912d;
}

.shade-block{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
}

.AA-layer{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	padding: 20px;
	max-width: 90%;
	max-height: 90%;
	width: 500px;
	border-radius: 20px;
	background-color: #fff;
}

.AA-layer h2{
	text-align: center;
	font-size: 28px;
	color: #333;
	margin-bottom: 20px;
}

.AA-layer .editbox{
	font-size: 22px;
	line-height: 2;
	color: #666;
	text-align: center;
}

/**/
.about-mng-bg{
	background-image: url(../images/about_mng_bg.jpg);
	background-position: center;
	background-size: cover;
}

.about-mng-block{
	padding: 90px 20px;
	max-width: 1400px;
	z-index: 5;
	margin: 0 auto;
}

.about-mng-block h2{
	color: #fff;
	font-size: 42px;
	margin-bottom: 40px;
}

.about-mng-block .editbox{
	margin-bottom: 40px;
	color: #fff;
	font-size: 16px;
	line-height: 2;
	max-width: 600px;
}

.about-mng-block a{
	display: block;
	width: 160px;
	line-height: 60px;
	font-size: 16px;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 30px;
	text-align: center;
}

.about-mng-block a:hover{
	background-color: #f7912d;
	border-color: #f7912d;
}

/**/
.about-net-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 20px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.about-net-block .textbox{
	width: 31%;
}

.about-net-block h2{
	font-size: 180px;
	color: #f7881c;
}

.about-net-block h3{
	color: #000;
	font-size: 42px;
	margin-bottom: 10px;
}

.about-net-block h4{
	color: #666;
	font-size: 24px;
}

.about-net-block p{
	font-size: 18px;
	color: #999;
	line-height: 1.8;
}

.about-net-block .imgbox{
	width: 69%;
}

/**/
.about-service-bg{
	background-image: url(../images/about_service_bg.jpg);
	background-position: center;
	height: 790px;
}

.about-service-block{
	text-align: center;
	max-width: 460px;
	margin: 0 auto;
	padding-top: 120px;
}

.about-service-block h2{
	color: #f7881c;
	font-size: 38px;
	font-weight: bold;
	margin: 30px 0 20px;
}

.about-service-block p{
	font-size: 18px;
	color: #999;
}

.about-service-block .num{
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	margin-top: 75px;
}

.about-service-block i{
	font-size: 36px;
	font-weight: normal;
	color: #fff;
}


/****/
.other-block{
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0 70px;
}

.other-right-block{
	width: 77.5%;
}

.products-left-menu{
	width: 17.5%;
	line-height: 1.5;
}

.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>div{
	padding: 0 20px 0 10px;
	height: 60px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	border-bottom: 1px dashed #d9d9d9;
}

.products-left-nav div{
	font-size: 15px;
}

.products-left-nav>div:hover,
.products-left-nav.active>div{
	background-color: #26499d;
}

.products-left-nav>div i{
	font-size: 16px;
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
}

a.products-left-nav>div i{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}

.products-left-nav>div b{
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-left: 6px solid #01af84;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	margin-right: 10px;
}

a.products-left-nav>div:hover,
a.products-left-nav.active>div{
	background-color: #26499d;
	border-bottom: 1px solid #26499d;
}

.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>div:hover b,
.products-left-nav.active>div b{
	border-left-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{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 20px;
}

.product-block .title{
	font-size: 30px;
	color: #f7881c;
	margin-bottom: 20px;
	text-align: center;
}

.product-pclasses{
	margin: 20px 0;
}

.product-pclasses ul{
	display: flex;
	flex-wrap: wrap;
}

.product-pclasses li{
	flex: 1;
	text-align: center;
	position: relative;
}

.product-pclasses li a{
	display: block;
	padding: 25px 20px;
}

.product-pclasses li a::after{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid #eee;
}

.product-pclasses li a:hover::after{
	border: 2px solid #f7881c;
}

.product-pclasses li img{
	height: 90px;
}

.product-pclasses li p{
	font-size: 14px;
	color: #333;
	margin-top: 20px;
}

.product-pclasses li:hover p{
	color: #f7881c;
	font-weight: bold;
}

.product-cclasses{
	margin-bottom: 40px;
}

.product-cclasses ul+ul{
	margin-top: 20px;
}

.product-cclasses ul{
	display: flex;
	flex-wrap: wrap;
}

.product-cclasses li{
	padding: 5px;
	border-bottom: 1px solid #eee;
}

.product-cclasses a{
	display: inline-block;
	padding: 5px 20px;
	border-radius: 5px;
	color: #666;
	font-size: 14px;
}

.product-cclasses a:hover{
	color: #f7881c;
}

.product-cclasses li.active a{
	background-color: #f7881c;
	color: #fff;
}

.product-cclasses li:first-child a{
	color: #f7881c;
	font-weight: bold;
	background-color: transparent;
	padding: 5px 0;
}

.product-list ul{
	display: flex;
	flex-wrap: wrap;
}

.product-list li{
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
}

.product-list li:nth-of-type(4n){
	margin-right: 0;
}

.product-list li a{
	display: block;
	position: relative;
	padding: 10px 10px 0;
}

.product-list li .imgbox{
	padding: 40px;
	height: 320px;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	border: 1px solid #e4e4e4;
}

.product-list li:hover .imgbox{
	box-shadow:  0 0 10px #ccc;
}

.product-list li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-list li .textbox{
	padding: 20px 0;
	font-size: 16px;
	color: #666;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

/**/
.product-new ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.product-new li{
	width: 49%;
	margin-bottom: 20px;
	border: 1px solid #eee;
	transition: all 0.3s;
}

.product-new li:hover{
	box-shadow: 0 0 10px #ccc;
}

.product-new li a{
	display: flex;
	padding: 30px;
}

.product-new li .imgbox{
	width: 270px;
	height: 250px;
	flex-shrink: 0;
}

.product-new li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-new li .textbox{
	flex: 1;
	overflow: hidden;
	margin-left: 30px;
	line-height: 2;
}

.product-new li h4{
	font-size: 14px;
	color: #999;
	margin-top: 10px;
}

.product-new li h3{
	font-size: 14px;
	color: #666;
	font-weight: bold;
	transition: all 0.3s;
}

.product-new li:hover h3{
	color: #f7881c;
}

.product-new li p{
	color: #666;
	font-size: 14px;
}

/**/
.product-dl ul{
	display: flex;
	flex-wrap: wrap;
}

.product-dl li{
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
	border: 1px solid #eee;
	padding: 25px;
}

.product-dl li:nth-of-type(3n){
	margin-right: 0;
}

.product-dl li h2{
	color: #333;
	font-size: 24px;
	margin-bottom: 20px;
}

.product-dl li h4{
	color: #999;
	font-size: 14px;
	line-height: 2;
}

.product-dl li a{
	display: block;
	width: 100px;
	line-height: 40px;
	border: 1px solid #eee;
	border-radius: 20px;
	text-align: center;
	color: #999;
	font-size: 14px;
	transition: all 0.3s;
	margin-top: 50px;
}

.product-dl li a:hover{
	color: #fff;
	background-color: #f7881c;
	border-color: #f7881c;
}

.code-shade{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
}

.code-block{
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 99;
	width: 550px;
	padding: 40px 20px;
	background-color: #fff;
	border-radius: 20px;
	text-align: center;
}

.code-block h2{
	color: #000;
	font-size: 22px;
	margin-bottom: 20px;
}

.code-block h4{
	color: #f7881c;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}

.code-block .form-block{
	max-width: 310px;
	margin: 0 auto;
}

.code-block .form-block input{
	text-align: center;
}

.code-block .form-block button{
	width: 100%;
	background-color: #f7881c;
}

/*product detail*/
.product-detail{
	max-width: 1400px;
	margin: 0 auto;
	padding: 60px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.product-detail .imgbox{
	width: 40%;
}

.product-detail .infobox{
	width: 50%;
}

.product-detail .title{
	font-size: 30px;
	color: #f7881c;
	margin-bottom: 40px;
	padding: 10px 0;
	border-bottom: 1px solid #ccc;
}

.product-detail .title span{
	color: #999;
	font-size: 14px;
}

/**/
.service-block{
	max-width: 1400px;
	padding: 90px 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.service-block .imgbox{
	width: 45%;
}

.service-block .gallery-top{
	margin-bottom: 40px;
}

.service-block .gallery-top .swiper-slide{
	padding: 40px;
	padding-top: 0;
}

.service-block .gallery-top .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-block .gallery-thumbs{
	padding: 0 40px 0px 40px;
}

.service-block .gallery-thumbs .swiper-slide{
	cursor: pointer;
	height: 120px;
	border: 1px solid #eee;
}

.service-block .gallery-thumbs .swiper-slide.swiper-slide-thumb-active,
.service-block .gallery-thumbs .swiper-slide:hover{
	border-color: #999;
}

.service-block .gallery-thumbs .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.service-block .swiper-button-prev,
.service-block .swiper-button-next{
	opacity: 1 !important;
	height: 120px;
	transform: translate(0,0);
	top: 0;
	margin: 0;
	background-color: #fff;
	width: 40px;
}

.service-block .swiper-button-prev{
	left: 0;
}

.service-block .swiper-button-next{
	right: 0;
}

.service-block .swiper-button-prev::after,
.service-block .swiper-button-next::after{
	display: none;
}

.service-block .swiper-button-prev i,
.service-block .swiper-button-next i{
	color: #555;
	font-size: 20px;
}

.service-block .infobox{
	width: 45%;
}

.service-block .infobox .title{
	color: #f7881c;
	font-size: 30px;
	margin-bottom: 30px;
}

.service-block .infobox .subtitle{
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	font-size: 0;
	padding-bottom: 10px;
}

.service-block .infobox .subtitle span{
	font-size: 12px;
	display: inline-block;
	padding: 5px 10px;
	color: #666;
	background-color: #fafafa;
	cursor: pointer;
	user-select: none;
}

.service-block .infobox .subtitle span+span{
	margin-left: 5px;
}

.service-block .infobox .subtitle span.active{
	background-color: #f7881c;
	color: #fff;
}

.service-block .infobox .editbox{
	color: #666;
	font-size: 16px;
	line-height: 2.6;
	display: none;
}

.service-block .infobox .editbox.active{
	display: block;
}

/*quelity*/
.qua-block{
	max-width: 1400px;
	padding: 90px 0;
	margin: 0 auto;
}

.qua-block .title{
	text-align: center;
	color: #f7881c;
	font-size: 30px;
	margin-bottom: 25px;
}

.que-nav{
	text-align: center;
	white-space: nowrap;
	overflow-x: auto;
	font-size: 0;
	padding: 20px 0;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 20px;
}

.que-nav::-webkit-scrollbar {  
  width: 14px;  
  height: 14px;  
}  
  
.que-nav::-webkit-scrollbar-track,  
.que-nav::-webkit-scrollbar-thumb {  
  border-radius: 999px;  
  border: 5px solid transparent;  
}  
  
.que-nav::-webkit-scrollbar-track {  
  box-shadow: 1px 1px 5px rgba(0,0,0,0) inset;  
}  
  
.que-nav::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;
}  
  
.que-nav::-webkit-scrollbar-corner {  
  background: transparent;  
} 

.que-nav a{
	display: inline-block;
	font-size: 14px;
	color: #666;
}

.que-nav a.active{
	color: #f7881c;
	/* text-decoration: line-through; */
}

.que-nav a:hover{
	color: #f7881c;
}

.que-nav span{
	display: inline-block;
	font-size: 14px;
	color: #ccc;
	margin: 0 20px;
}

.que-nav span:last-child{
	display: none;
}

.qua-block .editbox{
	text-align: center;
	color: #666;
	font-size: 16px;
	line-height: 2;
	margin-bottom: 20px;
}

.qua-block .imgbox{
	display: flex;
	justify-content: space-between;
}

.qua-block .gallery-top{
	width: 84%;
	height: 670px;
}

.qua-block .gallery-top .swiper-slide{
	
}

.qua-block .gallery-top .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qua-block .gallery-thumbs{
	width: 14%;
	height: 670px;
	padding: 40px 0;
}

.qua-block .gallery-thumbs .swiper-slide{
	cursor: pointer;
	border: 1px solid #eee;
}

.qua-block .gallery-thumbs .swiper-slide.swiper-slide-thumb-active,
.qua-block .gallery-thumbs .swiper-slide:hover{
	border-color: #999;
}

.qua-block .gallery-thumbs .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qua-block .swiper-button-prev,
.qua-block .swiper-button-next{
	opacity: 1 !important;
	height: 40px;
	transform: translate(0,0);
	top: 0;
	margin: 0;
	background-color: #fff;
	width: 100%;
}

.qua-block .swiper-button-prev{
	left: 0;
	top: 0;
}

.qua-block .swiper-button-next{
	right: 0;
	top: auto;
	bottom: 0;
}

.qua-block .swiper-button-prev::after,
.qua-block .swiper-button-next::after{
	display: none;
}

.qua-block .swiper-button-prev i,
.qua-block .swiper-button-next i{
	color: #555;
	font-size: 20px;
}

/*news*/
.news-block{
	padding: 50px 0;
}

.news-block .title{
	color: #f7881c;
	font-size: 30px;
	text-align: center;
	margin-bottom: 25px;
}

.news-block .hlist{
	background-color: #eee;
	padding: 60px 0 40px;
}

.news-block .hlist ul{
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.news-block .hlist li{
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
	transition: all 0.3s;
}

.news-block .hlist li:nth-of-type(4n){
	margin-right: 0;
}

.news-block .hlist li:hover{
	box-shadow: 0 0 10px #ccc;
}

.news-block .hlist a{
	display: block;
	position: relative;
	padding: 10px 10px 20px;
	background-color: #fff;
}

.news-block .hlist a::after{
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #f7881c;
	transition: all 0.3s;
	opacity: 0;
}

.news-block .hlist a:hover::after{
	opacity: 1;
}

.news-block .hlist .imgbox{
	margin-bottom: 20px;
	height: 240px;
}

.news-block .hlist img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-block .hlist h4{
	color: #999;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.news-block .hlist h2{
	font-size: 22px;
	color: #000;
	margin-bottom: 10px;
	transition: all 0.3s;
}

.news-block .hlist li:hover h2{
	color: #f7881c;
}

.news-block .hlist p{
	color: #666;
	font-size: 14px;
	line-height: 2;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


.news-block .vlist{
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 0 0;
}


.news-block .vlist li{
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	transition: all 0.3s;
}

.news-block .vlist li:hover{
	border-color: #f7881c;
}

.news-block .vlist li a{
	display: block;
	padding: 30px;
	display:-webkit-flex;
	display:-webkit-box;
	display:-ms-flexbox;
	display:-moz-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	-webkit-box-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	flex-wrap:wrap;
	align-items: center;
}

.news-block .vlist li .textbox{
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
	margin-left: 30px;
}

.news-block .vlist li h4{
	color: #999;
	font-size: 16px;
	margin-bottom: 10px;
}

.news-block .vlist li h2{
	font-size: 20px;
	color: #333;
	margin-bottom: 10px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.3s;
}

.news-block .vlist li:hover h2{
	color: #f7881c;
}

.news-block .vlist li p{
	font-size: 14px;
	color: #666;
	line-height: 2;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.news-block .vlist li .imgbox{
	width: 200px;
	height: 150px;
	overflow: hidden;
}

.news-block .vlist li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*news detail*/
.news-detail-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 70px 0;
}

.news-detail-block .title{
	font-size: 30px;
	color: #f7881c;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.news-detail-block .subtitle{
	font-size: 14px;
	color: #777;
	text-align: center;
	margin-bottom: 25px;
	padding: 15px 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.news-detail-block .edit-box{
	font-size: 16px;
	color: #666;
	line-height: 2.6;
	max-width: 1200px;
	margin: 0 auto;
}

.news-detail-block .detail-nav{
	margin-top: 40px;
	padding: 20px 10px 0;
	border-top: 1px solid #ccc;
}

.news-detail-block .left-nav{
	overflow: hidden;
}

.news-detail-block .left-nav a{
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #777;
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0;
}

.news-detail-block .left-nav a:hover{
	color: #f7881c;
}

.news-detail-block .left-nav span{
	color: #666;
}

.news-detail-block .right-nav{
	width: 180px;
	line-height: 60px;
	text-align: center;
	border-radius: 30px;
	color: #999;
	font-size: 16px;
	margin-left: 20px;
	flex-shrink: 0;
	transition: all 0.3s;
	border: 1px solid #ccc;
}

.news-detail-block .right-nav:hover{
	background-color: #f7881c;
	border-color: #f7881c;
	color: #fff;
}

/*jobs*/
.jobs-block{
	padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.jobs-block .title{
	
	margin-bottom: 25px;
	text-align: center;
}

.jobs-block .title h2{
	color: #f7881c;
	font-size: 30px;
	margin-bottom: 10px;
}

.jobs-block .title h3{
	color: #666;
	font-size: 18px;
	font-weight: bold;
}

.jobs-block li{
	border: 1px solid #dcdcdc;
	margin-bottom: 10px;
}

.jobs-block .cont-switch{
	padding: 10px 30px;
	color: #666;
	font-size: 15px;
	cursor: pointer;
}

.jobs-block li:hover,
.jobs-block li.active{
	box-shadow: 0 0 5px #999;
}

.jobs-block .cont-switch .flex-flex1{
	margin-right: 10px;
}
.jobs-block .cont-switch div:nth-child(2){
	flex: 0 1 250px;
	-webkit-flex: 0 1 250px;
}
.jobs-block .cont-switch div:nth-child(3){
	-webkit-flex: 0 1 250px;
	flex: 0 1 250px;
}


.jobs-block .switch-btn{
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border-radius: 3px;
	background-color: #999;
	color: #fff;
}

.jobs-block .switch-btn i{
	display: inline-block;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	font-size: 20px;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
}

.jobs-block li.active .switch-btn{
	background-color: #2f318b;
}

.jobs-block li.active .switch-btn i{
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}

.jobs-block .cont-box{
	display: none;
}

.jobs-block .textbox{
	border-top: 1px solid #dcdcdc;
	padding: 30px 35px;
	color: #666;
	box-sizing: content-box;
}

.jobs-block .cont-box h1{
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #dcdcdc;
	color: #555;
	font-size: 20px;
	font-weight: bold;
	position: relative;
}

.jobs-block .cont-box a{
	position: absolute;
	right: 0;
	top: 0;
	color: #ffa800;
	opacity: 0.7;
}

.jobs-block .cont-box a:hover{
	opacity: 1;
}

.jobs-block .cont-box .editbox{
	font-size: 16px;
	line-height: 2;
}

.jobs-block .cont-box p+p{
	margin-top: 20px;
}

/*apply*/
.apply-block{
	padding: 60px 0;
	max-width: 640px;
	margin: 0 auto;
}

.apply-block .title{
	color: #555;
	font-size: 32px;
	margin-bottom: 35px;
	text-align: center;
	font-weight: bold;
}

.apply-block .form-block span{
	color: #ff0000;
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}

.apply-block .form-block button{
	width: 48%;
	height: 46px;
	line-height: 46px;
	text-align: center;
	border-radius: 5px;
	background-color: #f7881c;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.apply-block .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: #f7881c;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

.form-block img{
	max-height: 44px;
	vertical-align: bottom;
}


/*contact us*/
.contact-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.contact-block .title{
	text-align: center;
	margin-bottom: 25px;
}

.contact-block .title h2{
	color: #f7881c;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contact-block .title i{
	font-size: 20px;
	color: #999;
}

.contact-block .title h4{
	margin-top: 10px;
	font-size: 22px;
	color: #333;
}

.contact-block ul{
	border: 1px solid #eee;
	margin-bottom: 30px;
}

.contact-block li{
	text-align: center;
	padding: 30px 10px;
	-webkit-flex:1;
	-webkit-box-flex:1;
	-ms-flex:1;
	-moz-flex:1;
	flex:1;
}

.contact-block li+li{
	border-left: 1px solid #eee;
}

.contact-block li i{
	font-size: 40px;
	color: #999;
}

.contact-block li h4{
	color: #999;
	font-size: 14px;
	margin-top: 10px;
}

.contact-block li p{
	font-size: 16px;
	color: #333;
	margin-top: 10px;
}

.map{
	height: 550px;
	background-color: #f7f7f7;
}

.message-block{
	max-width: 1200px;
	padding: 0 0 50px;
	margin: 0 auto;
}

.message-block .title{
	text-align: center;
	margin-bottom: 30px;
}

.message-block .title h2{
	color: #000;
	font-size: 42px;
	margin-bottom: 10px;
}

.message-block .title h4{
	color: #999;
	font-size: 14px;
}

.message-block .form-block{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.message-block button{
	width: 33%;
}


.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;
}


/**/
.list-block{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.list-block li{
	height: 500px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	background-image: url(../images/list_li_bg01.png);
	background-position: right center;
}

.list-block li:nth-of-type(2n){
	background-image: url(../images/list_li_bg02.png);
	background-position: left center;
}

.list-block li+li{
	margin-top: 40px;
}

.list-block li .imgbox{
	width: 47%;
	height: 400px;
}

.list-block li .swiper-container{
	padding-bottom: 50px;
	height: 100%;
}

.list-block .swiper-slide{
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.list-block .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-block li .textbox{
	width: 53%;
	height: 400px;
	padding: 20px 3% 20px;
}

.list-block li h3{
	font-size: 48px;
	color: #f7881c;
	margin-bottom: 50px;
	line-height: 70px;
	background-image: url(../images/list_title_bg.png);
	background-position: left center;
	padding: 0 15px;
}

.list-block li .editbox{
	color: #666;
	font-size: 22px;
	line-height: 1.6;
	overflow-y: auto;
	height: 240px;
}

.list-block li .editbox>*{
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.list-block li .editbox::-webkit-scrollbar {  
  width: 14px;  
  height: 14px;  
}  
  
.list-block li .editbox::-webkit-scrollbar-track,  
.list-block li .editbox::-webkit-scrollbar-thumb {  
  border-radius: 999px;  
  border: 5px solid transparent;  
}  
  
.list-block li .editbox::-webkit-scrollbar-track {  
  box-shadow: 1px 1px 5px rgba(0,0,0,.2) inset;  
}  
  
.list-block li .editbox::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;
}  
  
.list-block li .editbox::-webkit-scrollbar-corner {  
  background: transparent;  
} 

/**/
.list-block2{
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 0;
}

.list-block2 li{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.list-block2 li+li{
	margin-top: 40px;
}

.list-block2 li .imgbox{
	width: 47%;
	height: 350px;
	border-radius: 10px;
	overflow: hidden;
}

.list-block2 .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-block2 li .textbox{
	width: 53%;
	height: 350px;
	padding: 20px 3% 20px;
}

.list-block2 li h3{
	font-size: 48px;
	color: #f7881c;
	margin-bottom: 50px;
	line-height: 70px;
	background-image: url(../images/list_title_bg.png);
	background-position: left center;
	padding: 0 15px;
}

.list-block2 li .editbox{
	color: #666;
	font-size: 22px;
	line-height: 1.6;
	overflow-y: auto;
	height: 190px;
}

.list-block2 li .editbox>*{
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.list-block2 li .editbox::-webkit-scrollbar {  
  width: 14px;  
  height: 14px;  
}

.list-block2 li .editbox::-webkit-scrollbar-track,
.list-block2 li .editbox::-webkit-scrollbar-thumb {  
  border-radius: 999px;  
  border: 5px solid transparent;  
}

.list-block2 li .editbox::-webkit-scrollbar-track {  
  box-shadow: 1px 1px 5px rgba(0,0,0,.2) inset;  
}
  
.list-block2 li .editbox::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;
}

.list-block2 li .editbox::-webkit-scrollbar-corner {  
  background: transparent;  
}











