.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: 125px;
}

.header{
	height: 125px;
	width: 100%;
	background-color: #fff;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	box-shadow: 0 0 5px #888;
}

.top-subnav{
	height: 45px;
	background-color: #00763d;
}

.top-subnav>div{
	height: 100%;
	max-width: 1360px;
	margin: 0 auto;
}

.top-subnav div{
	color: #fff;
	font-size: 14px;
}

.top-subnav a{
	margin-left: 30px;
}

.top-subnav i{
	font-size: 20px;
	color: #fff;
}

.top-nav{
	height: 80px;
	max-width: 1360px;
	margin: 0 auto;
}

.top-nav .nav-block{
	height: 100%;
}

.top-nav .nav-block a{
	margin: 0 5px;
	padding: 0 22px;
	font-size: 16px;
	color: #666;
	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{
	opacity: 0;
	display: none;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background-color: #1f439a;
}

.top-nav .nav-block a:hover,
.top-nav .nav-block .active a{
	color: #00763d;
}

.top-nav .nav-block a:hover::after,
.top-nav .nav-block .active a::after{
	opacity: 1;
}

.index-lang{
	color: #00753c;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	height: 100%;
	line-height: 80px;
	cursor: pointer;
	margin-left: 30px;
}

.index-lang a{
	color: #666;
	font-size: 16px;
	display: block;
	line-height: 2;
	text-align: center;
}

.index-lang a:hover{
	color: #1f439a;
}

.index-lang i{
	display: inline-block;
	color: #00753c;
	font-size: 20px;
	font-weight: normal;
	vertical-align: middle;
	margin-top: -4px;
}

.index-lang .langbox{
	background-color: rgba(255,255,255,0.5);
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	display: none;
}

.index-lang:hover .langbox{
	display: block;
}

.menu,.menu_down{
	display: none;
}

/*search*/
.search-block{
	background-color: #00763d;
}

.search-block>div{
	max-width: 1360px;
	margin: 0 auto;
	padding: 40px 0;
}

.search-block h2{
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 15px;
}

.search-block .flex-flex1+.flex-flex1{
	margin-left: 10px;
}

.search-block select{
	height: 40px;
	background-color: #fff;
	width: 100%;
}

.search-block a{
	display: block;
	line-height: 40px;
	text-align: center;
	color: #fff;
	background-color: #ff7e00;
}

.sub-block{
	padding: 40px 0;
	background-image: url("../images/index_sub_bg.jpg");
	background-position: center;
	background-size: cover;
}

.sub-block a{
	border-radius: 5px;
	line-height: 50px;
}

.search-block input{
	height: 50px;
	background-color: #e6f1ec;
	width: 100%;
	border-radius: 5px;
	padding: 0 20px;
}

/* index banner */
.index-banner{
	position: relative;
}

.index-banner img{
	width: 100%;
	min-height: 400px;
	object-fit: cover;
}

.index-banner-text{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 5vw;
	color: #fff;
	z-index: 99;
	white-space: nowrap;
	text-shadow: 0 0 5px #fff;
}

.index-banner-text.text1{
	opacity: 0;
	animation: bannertextone 5s;
}

.index-banner-text.text2{
	opacity: 0;
	animation: bannertexttwo 5s 4s;
}

@keyframes bannertextone{
	0% { opacity: 0; top: 50%; }
	25% { opacity: 1; top: 50%; }
	75% { opacity: 1; top: 50%; }
	100% { opacity: 0; top: 0; }
}

@keyframes bannertexttwo{
	0% { opacity: 0; top: 100%; }
	25% { opacity: 1; top: 50%; }
	75% { opacity: 1; top: 50%; }
	100% { opacity: 0; top: 0; }
}

/*index about*/
.index-about-block{
	max-width: 1360px;
	margin: 70px auto;
	position: relative;
}

.index-about-bg{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 4;
}

.index-about-block .fr{
	float: right;
	max-width: 50%;
	position: relative;
	z-index: 5;
}

.index-about-block .title{
	padding: 0 0 0 250px;
}

.index-about-block .title h3{
	font-size: 32px;
	color: #00763d;
}

.index-about-block .title h2{
	color: #ff7e00;
	font-size: 180px;
}

.index-about-block .textbox{
	background-color: #00763d;
	padding: 30px 40px;
	background-image: url("../images/index_about_bg2.png");
	background-position: left bottom;
	background-size: 100% auto;
}

.index-about-block .textbox h4{
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 40px;
}

.index-about-block .textbox .editbox,
.index-about-block .textbox .editbox>*{
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
}

.index-about-block .morebox{
	background-color:#00763d;
	text-align:right;
	padding:20px;
}

.index-about-block .morebtn{
	color:#fff
}

.index-about-block .morebtn:hover{
	text-shadow: 0 0 3px #ccc;
}

/* index product */
.index-product-bg{
	background-image: url("../images/index_product_bg.jpg");
	background-position: center;
	background-size: cover;
}

.index-product{
	max-width: 1360px;
	margin: 0 auto;
	padding: 70px 0;
}

.index-product .title{
	margin-bottom: 40px;
	text-align: center;
}

.index-product .title h2{
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 30px;
}

.index-product .title h3{
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
}

.index-product li{
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
	background-color: #fff;
}

.index-product li:nth-of-type(4n){
	margin-right: 0;
}

.index-product li a{
	display: block;
	padding: 25px;
}

.index-product li .imgbox{
	height: 225px;
	margin-bottom: 10px;
}

.index-product li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.index-product li h2{
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 0 10px;
	line-height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #b2b2b2;
	box-shadow: 0 0 5px #ccc;
	transition: all 0.3s;
}

.index-product li:hover h2{
	background-color: #00763d;
}

.index-product .morebtn{
	text-align: center;
	margin-top: 20px;
}

.index-product .morebtn a{
	font-size: 14px;
	color: #fff;
}

.index-product .morebtn a:hover{
	text-decoration: underline;
}

/*index news*/
.index-news{
	max-width: 1360px;
	margin: 0 auto;
	padding: 60px 0;
}

.index-news .title{
	margin-bottom: 40px;
	text-align: center;
}

.index-news .title h2{
	font-size: 48px;
	font-weight: bold;
	color: #00763d;
	margin-top: 10px;
}

.index-news li{
	width: 32%;
	margin-right: 2%;
	transition: all 0.3s;
	background-color: #fff;
	margin-bottom: 20px;
	box-shadow: 0 0 5px #ccc;
}

.index-news li:nth-of-type(3n){
	margin-right: 0;
}

.index-news li a{
	display: block;
	padding: 20px;
}

.index-news li .imgbox{
	height: 290px;
	margin-bottom: 30px;
}

.index-news li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index-news li .editbox{
	font-size: 20px;
	color: #666;
	font-weight: bold;
	line-height: 30px;
	height: 90px;
	margin-bottom: 20px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.index-news li span{
	color: #00763d;
	font-weight: bold;
	font-size: 13px;
}

.index-news li:hover span{
	text-decoration: underline;
}

.index-news li i{
	color: #00763d;
	font-size: 13px;
	font-weight: normal;
}

.index-news .morebtn{
	text-align: center;
	margin-top: 20px;
}

.index-news .morebtn a{
	font-size: 14px;
	color: #666;
}

.index-news .morebtn a:hover{
	text-decoration: underline;
}

/*index coop*/
.index-coop{
	max-width: 1360px;
	margin: 0 auto;
	padding: 60px 0;
}

.index-coop .title{
	margin-bottom: 40px;
	text-align: center;
}

.index-coop .title h2{
	font-size: 48px;
	font-weight: bold;
	color: #00763d;
	margin-top: 10px;
}

.index-coop .swiper-slide a{
	display: block;
	height: 100%;
}

.index-coop .swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.cooper_img{
	position: relative;
}
.cooper_img .swiper-container{
	max-width: 1180px;
    --swiper-theme-color: #DBDBD9;/* 设置Swiper风格 */
    --swiper-navigation-color: #DBDBD9;/* 单独设置按钮颜色 */
    --swiper-navigation-size: 30px;/* 设置按钮大小 */
}
.cooper_img .swiper-button-prev, .cooper_img .swiper-button-next{
	width: 20px;
	height:15px;
	top: 61%;
}
.cooper_img .swiper-pagination-bullet-active{
	background: #4C4A3F;
}
.cooper_img .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after{
	width: 20px;
	height:15px;
	font-size: 25px;
	color: #000;
	opacity: 100;
}
.cooper_img .swiper-button-next:after{
	font-size: 25px;
	color: #000;
	opacity: 100;
}

/*footer list*/
.footer-list-bg{
	background-color: #121212;
	position: relative;
	z-index: 5;
}

.footer-list{
	max-width: 1360px;
	margin: 0 auto;
	padding: 50px 0;
	border-bottom: 1px solid #666;
}

.footer-list li h2{
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 25px;
}

.footer-list li h2::after{
	display: block;
	content: "";
	width: 60px;
	height: 3px;
	border-radius: 2px;
	background-color: #00763d;
	margin-top: 15px;
}

.footer-list a,
.footer-list p{
	display: block;
	font-size: 15px;
	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{
	color: #fff;
}

.footer-list i{
	display: block;
	width: 36px;
	height: 36px;
	line-height: 34px;
	text-align: center;
	border: 1px solid #666;
	border-radius: 5px;
	color: #999;
	font-size: 24px;
}

.footer-list a+a,
.footer-list p+p{ 
	margin-top: 12px;
}

.footer-list li:first-child a+a{
	margin-top: 0;
	margin-left: 15px;
}

.footer-list li+li{
	padding-left: 2%;
}

.footer-list li .flex-display{
	margin-top: 35px;
}

.copyall{
	position: relative;
	z-index: 4;
	background-color: #121212;
}

.copy{
	color: #999;
}

.copy a{
	color: #999;
}

.copy a:hover{
	color: #fff;
}

/*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%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}

.shade-text h2{
	color: #fff;
	font-size: 48px;
	font-weight: bold;
	text-align: center;
}

/*about us*/
.about-why-block{
	max-width: 1360px;
	margin: 60px auto 0;
	border-radius: 100px 0 100px 0;
	overflow: hidden;
	box-shadow: 0 0 5px #ccc;
	background-image: url("../images/about_why_bg.jpg");
	background-position: left bottom;
}

.about-why-block .textbox{
	width: 56%;
	padding: 60px 30px;
}

.about-why-block .textbox .title{
	font-size: 32px;
	color: #00763d;
	font-weight: bold;
	margin-bottom: 30px;
}

.about-why-block .textbox .editbox{
	color: #666;
	font-size: 16px;
	line-height: 2;
}

.about-why-block .imgbox{
	width: 44%;
}

.about-why-block .imgbox img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/**/
.about-hor-block{
	max-width: 1360px;
	margin: 0 auto;
	padding: 60px 0;
}

.about-hor-block .title{
	color: #00763d;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.about-hor-block li{
	width: 32%;
	margin-right: 2%;
	background-color: #00763d;
	padding: 25px;
}

.about-hor-block li:nth-of-type(3n){
	margin-right: 0;
}

.about-hor-block li h3{
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 15px;
}

.about-hor-block li .editbox{
	color: #fff;
	font-size: 14px;
	line-height: 2;
}

.about-hor-block li .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/**/
.about-abo-bg{
	background-color: #eee;
}

.about-abo-block{
	max-width: 1360px;
	margin: 0 auto;
	padding: 60px 0;
}

.about-abo-block .title{
	color: #00763d;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.about-abo-block .editbox{
	font-size: 14px;
	line-height: 2.6;
	color: #666;
}

.about-abo-block .editbox>*{
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

/**/
.about-dev-block{
	padding: 60px 0;
	max-width: 1360px;
	margin: 0 auto;
}

.about-dev-block .title{
	color: #00763d;
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.about-dev-block li{
	height: 325px;
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
}

.about-dev-block li:nth-of-type(4n){
	margin-right: 0;
}

.about-dev-block li a{
	display: block;
	height: 100%;
}

.about-dev-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/****/
.other-block{
	max-width: 1360px;
	margin: 0 auto;
	padding: 30px 0 60px;
}

.other-right-block{
	width: 80%;
}

.products-left-menu{
	width: 18.5%;
	line-height: 1.5;
}

.products-left-menu h2{
	line-height: 54px;
	text-align: center;
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	background-color: #00763d;
}

.products-left-nav{
	display: block;
}

.products-left-nav>div{
	padding: 0 20px 0 20px;
	height: 46px;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	margin-top: 2px;
	background-color: #eee;
	font-size: 14px;
}

.products-left-nav div{
	font-size: 15px;
}

.products-left-nav>div:hover,
.products-left-nav.active>div{
	background-color: #999;
}

.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: #999;
	color: #fff;
}

.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;
}

/* product default */
.product-default{
	max-width: 1360px;
	margin: 0 auto;
	padding: 35px 0;
}

.product-default .defaultBox{
	margin-bottom: 30px;
}

.product-default .defaultBox h3{
	color: #666;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 25px;
}

.product-default .defaultBox a{
	display: block;
	border: 1px solid #ccc;
	padding: 10px 30px;
	color: #666;
	font-size: 14px;
	margin-right: 10px;
	margin-bottom: 10px;
	flex-shrink: 0;
}

.product-default .defaultBox a:hover{
	background-color: #00763d;
	border-color: #00763d;
	color: #fff;
}

/* products */
.product-block{
}

.product-block .title{
	margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
	height: 54px;
}

.product-block .title>div{
	color: #999;
	font-size: 14px;
}

.product-block .title .flex-flex1{
	font-size: 24px;
	color: #666;
	font-weight: bold;
}


.product-block .title a{
	color: #999;
	font-size: 14px;
}

.product-block .title a:last-child{
	color: #00763d;
	font-weight: bold;
}

.product-block li{
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 20px;
	background-color: #fff;
	box-shadow: 0 0 5px #ccc;
}

.product-block li:nth-of-type(4n){
	margin-right: 0;
}

.product-block li a{
	display: block;
	padding: 20px;
}

.product-block li .imgbox{
	height: 160px;
	margin-bottom: 10px;
}

.product-block li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-block li h2{
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 0 10px;
	line-height: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: #b2b2b2;
	box-shadow: 0 0 5px #ccc;
	transition: all 0.3s;
}

.product-block li:hover h2{
	background-color: #00763d;
}


/*product detail*/
.product-detail{
	
}

.product-detail .title{
	margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
	height: 54px;
}

.product-detail .title>div{
	color: #999;
	font-size: 14px;
}

.product-detail .title .flex-flex1{
	font-size: 24px;
	color: #666;
	font-weight: bold;
}

.product-detail .title a{
	color: #999;
	font-size: 14px;
}

.product-detail .title a:last-child{
	color: #00763d;
	font-weight: bold;
}

.product-detail .imgbox{
	width: 52%;
	/* height: 420px; */
	float: left;
	border: 1px solid #888;
}
.product-detail .imgbox .swiper-container{
	height:inherit;
}
.product-detail .imgbox  .swiper-wrapper{
	
}
.product-detail .imgbox .swiper-slide{
	height:inherit;
}
.product-detail .imgbox img{
	width: 100%;
	height:inherit;
	object-fit: contain;
}

.product-detail .infobox{
	width: 45%;
	float: right;
}

.product-detail .infobox p{
	color: #666;
	font-size: 14px;
}

.product-detail .infobox p+p{
	margin-top: 20px;
}

.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: #00763d;
	display: inline-block;
	vertical-align: top;
	font-weight: bold;
}

/*news*/
.news-block{
	padding: 50px 0;
	max-width: 1360px;
	margin: 0 auto;
}

.news-block .title{
	color: #666;
	font-size: 15px;
	margin-bottom: 40px;
}

.news-block .title span{
	color: #00763d;
	font-size: 32px;
	font-weight: bold;
}

.news-block .title a{
	color: #666;
	font-size: 15px;
}

.news-block .title a:hover,
.news-block .title a.active{
	color: #ff7e00;
}

.news-block li{
	width: 32%;
	margin-right: 2%;
	transition: all 0.3s;
	background-color: #fff;
	margin-bottom: 20px;
	box-shadow: 0 0 5px #ccc;
}

.news-block li:nth-of-type(3n){
	margin-right: 0;
}

.news-block li a{
	display: block;
	padding: 20px;
	position: relative;
}

.news-block li a::before{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border: 2px solid #00763d;
	opacity: 0;
}

.news-block li:hover a::before{
	opacity: 1;
}

.news-block li .imgbox{
	height: 290px;
	margin-bottom: 30px;
}

.news-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-block li .editbox{
	font-size: 20px;
	color: #666;
	font-weight: bold;
	line-height: 30px;
	height: 90px;
	margin-bottom: 20px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news-block li span{
	color: #00763d;
	font-weight: bold;
	font-size: 13px;
}

.news-block li:hover span{
	text-decoration: underline;
}

.news-block li i{
	color: #00763d;
	font-size: 13px;
	font-weight: normal;
}

/*news detail*/
.news-detail-block{
	max-width: 1360px;
	margin: 0 auto;
	padding: 50px 0;
}

.news-detail-block .flex-flex1{
	margin-right: 45px;
	padding-right: 45px;
	overflow: hidden;
	border-right: 1px solid #eee;
}

.news-detail-block .subtitle{
	font-size: 16px;
	color: #666;
	margin-bottom: 25px;
}

.news-detail-block .title{
	font-size: 28px;
	color: #00763d;
	font-weight: bold;
	margin-bottom: 20px;
}

.news-detail-block .edit-box{
	font-size: 16px;
	color: #666;
	line-height: 2.6;
}

.news-detail-block .list-title{
	color: #00763d;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
}

.news-detail-block ul{
	width: 260px;
}

.news-detail-block li{
	transition: all 0.3s;
	background-color: #fff;
	margin-bottom: 30px;
}

.news-detail-block li a{
	display: block;
	position: relative;
}

.news-detail-block li .imgbox{
	height: 190px;
	margin-bottom: 15px;
}

.news-detail-block li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-detail-block li .editbox{
	font-size: 20px;
	color: #666;
	font-weight: bold;
	line-height: 30px;
	height: 90px;
	margin-bottom: 20px;
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news-detail-block li span{
	color: #00763d;
	font-weight: bold;
	font-size: 13px;
}

.news-detail-block li:hover span{
	text-decoration: underline;
}

.news-detail-block li i{
	color: #00763d;
	font-size: 13px;
	font-weight: normal;
}


/* 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;
}


/*contact us*/
.contact-block{
	max-width: 1360px;
	margin: 0 auto;
	padding: 50px 0;
}

.contact-block .title{
	text-align: center;
	margin-bottom: 25px;
}

.contact-block .addbox{
	width: 49%;
	margin-right: 2%;
	margin-bottom: 20px;
	padding: 30px;
	box-shadow: 0 0 5px #ccc;
}

.contact-block .addbox:nth-of-type(2n){
	margin-right: 0
}

.contact-block .addbox h2{
	font-size: 24px;
	color: #666;
	margin-bottom: 25px;
}

.contact-block .addbox p{
	font-size: 15px;
	color: #666;
}

.contact-block .addbox p::before{
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid #999;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	vertical-align: middle;
	margin-top: -2px;
	margin-right: 10px;
}

.contact-block .addbox p+p{
	margin-top: 15px;
}

.map{
	height: 550px;
	background-color: #f7f7f7;
}

/**/
.msg-block{
	background-color: #f2f2f2;
	padding: 70px 0;
}

.msg-block .title{
	text-align: center;
	margin-bottom: 30px;
}

.msg-block .title h2{
	font-size: 36px;
	color: #00763d;
	font-weight: bold;
	margin-bottom: 20px;
}

.msg-block .title h3{
	font-size: 22px;
	color: #666;
}

.msg-block .form-block{
	max-width: 1360px;
	margin: 0 auto;
}

.msg-block button{
	background-color: #ff7e00;
}


/*-search_parts-*/
.search_parts{
	max-width:1360px;
	margin:0 auto;
	overflow:hidden;
	overflow-x:scroll;
}
.search_parts::-webkit-scrollbar {  
  width: 14px;  
  height: 14px;  
}  
  
.search_parts::-webkit-scrollbar-track,  
.search_parts::-webkit-scrollbar-thumb {  
  border-radius: 999px;  
  border: 5px solid transparent;  
}  
  
.search_parts::-webkit-scrollbar-track {  
  box-shadow: 1px 1px 5px rgba(255,255,255,.2) inset;  
}  
  
.search_parts::-webkit-scrollbar-thumb {
  min-height: 20px;
  background-clip: content-box;
  box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;
}  
  
.search_parts::-webkit-scrollbar-corner {  
  background: transparent;  
} 
.search_parts table{
	width:100%;
}
.search_parts table td{
	padding:15px;
	font-size:12px;
}
.search_parts table tr:first-child{
	background:#eeeeee;
	font-weight:bold;
}

.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;
}

.imgbox iframe{
	width: 100%;
	height: 100%;
	border: none;
}


