html {
	font-size: 16px
}
body {
	background-color: #fff;
	overflow-x: hidden
}
* {
	font-family: "Microsoft YaHei",sans-serif;
	padding: 0px;
	margin: 0px;
	box-sizing: border-box
}
::-moz-selection {
	background: #12a034;
	color: #fff;
	text-shadow: none
}
::selection {
	background: #12a034;
	color: #fff;
	text-shadow: none
}
.pl-wht::-webkit-input-placeholder {
	color: #fff
}
.pl-wht:-moz-placeholder {
	color: #fff
}
.pl-wht::-moz-placeholder {
	color: #fff
}
.pl-wht:-ms-input-placeholder {
	color: #fff
}
.justify {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	text-align: justify
}
.justify::after {
	content: "";
	display: inline-block;
	width: 100%;
	overflow: hidden;
	height: 0
}
textarea::-webkit-input-placeholder {
	font-size: 14px;
	text-align: left;
	color: #999
}
input::-webkit-input-placeholder {
	font-size: 14px;
	text-align: left;
	color: #999
}
a {
	color: #000
}
a:link {
	color: #000;
	text-decoration: none
}
a:hover {
	color: #058925 !important;
	text-decoration: none
}
input {
	outline: none
}
ul,li {
	list-style: none
}
p {
	line-height: 28px;
	color: #666
}
h1,h2,h3,h4,h5 {
	font-family: "Microsoft YaHei",sans-serif;
	font-weight: 700;
	line-height: 1.5;
	color: #333;
	position: relative
}
h1 {
	font-size: 32px
}
h2 {
	font-size: 28px
}
h3 {
	font-size: 24px
}
h4 {
	font-size: 20px
}
h5 {
	font-size: 16px
}
.clear:after {
	content: "";
	clear: both;
	display: block
}
img:hover {
	opacity: 0.95
}
.flex {
	display: flex
}
.flex-between {
	display: flex;
	justify-content: space-between
}
.flex-start {
	display: flex;
	justify-content: flex-start
}
.flex-end {
	display: flex;
	justify-content: flex-end
}
.box {
	width: 1200px;
	margin: 0 auto
}
.header .top {
	background-color: #f4f4f4
}
.header .top .info {
	line-height: 30px;
	font-size: 14px
}
.header .top .info>span {
	color: #979797
}
.header .top .info>ul {
	display: flex
}
.header .top .info>ul li {
	position: relative
}
.header .top .info>ul li a {
	padding: 0 20px;
	color: #979797;
	text-decoration: none
}
.header .top .info>ul li:after {
	content: "";
	width: 1px;
	background-color: #979797;
	position: absolute;
	right: 0;
	top: 8px;
	bottom: 8px
}
.header .top .info>ul li:last-child:after {
	display: none
}
.header .middle {
	padding: 25px 0
}
.header .middle>.logo {
	position: relative
}
.header .middle>.logo>a.logo {
	padding-left: 85px
}
.header .middle>.logo>a.logo .icon {
	position: absolute;
	left: 0;
	top: 5px;
	width: 70px
}
.header .middle>.logo>a.logo .icon img {
	width: 100%
}
.header .middle>.logo>a.logo span {
	display: block;
	font-size: 14px;
	color: #9d9d9d
}
.header .middle>.logo>a.logo span.top {
	text-align: left;
	font-size: 37px;
	color: #12a034;
	background-color: #fff;
	font-weight: 700;
	margin-bottom: 5px;
	padding-bottom: 5px;
	border-bottom: #979797 1px solid
}
.header .middle>.logo>.phone {
	padding-left: 70px;
	position: relative;
	padding-top: 20px
}
.header .middle>.logo>.phone .icon {
	position: absolute;
	left: 0;
	top: 20px;
	width: 62px
}
.header .middle>.logo>.phone .icon img {
	width: 100%
}
.header .middle>.logo>.phone span {
	font-size: 18px;
	color: #333;
	display: block;
	font-weight: 700
}
.header .middle>.logo>.phone span.ph {
	color: #12a034;
	font-size: 26px;
	font-weight: 700
}
.header .menubox {
	background-color: #12a034
}
.header .menubox .menu ul {
	display: flex;
	justify-content: flex-start
}
.header .menubox .menu ul li a {
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
	padding: 15px 45px;
	color: #fff;
	display: block
}
.header .menubox .menu ul li.active a,.header .menubox .menu ul li:hover a {
	color: #fff !important;
	background-color: #058925
}
/*add by feng*/
.sub-menu { position: absolute; background: #12a034; box-shadow: 0 0 8px rgba(0,0,0,0.1); opacity: 0; z-index: 999; visibility: hidden; 
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -ms-transition: all 0.5s;
            -o-transition: all 0.5s; 
            transition: all 0.5s; 
            -webkit-transform-origin: 0 0;
            -moz-transform-origin: 0 0;
            -ms-transform-origin: 0 0;
            -o-transform-origin: 0 0;
            transform-origin: 0 0; 
            -webkit-transform:scaleY( 0 );
            -moz-transform:scaleY( 0 );
            -ms-transform:scaleY( 0 );
            -o-transform:scaleY( 0 );
            transform:scaleY( 0 ); }
.sub-menu > li > a { display: block; padding: 8px; text-align: center; font-size: 14px; color: #FFF; background: #12a034;}
.sub-menu > li + li > a { border-top: 1px solid #12a034; }
.sub-menu > li:hover > a { background: #000; }
.menu > ul > li:hover .sub-menu { opacity: 1; visibility: visible;
    -webkit-transform:scaleY( 1 );
    -moz-transform:scaleY( 1 );
    -ms-transform:scaleY( 1 );
    -o-transform:scaleY( 1 );
    transform:scaleY( 1 );  }
.main .home-banner .swiper-container .swiper-wrapper {
	height: 585px
}
.main .home-banner .swiper-container .swiper-wrapper .swiper-slide {
	position: relative;
	width: 100%;
	height: 585px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%
}
.main .home-banner .swiper-container .swiper-wrapper .swiper-slide .link {
	position: absolute;
	width: 100%;
	height: 100%
}
.main .home-banner .swiper-container .swiper-pagination {
	bottom: 20px
}
.main .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
	width: 80px;
	height: 5px;
	border-radius: 10px;
	background-color: #fff;
	opacity: .6
}
.main .home-banner .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #058925
}
.main .inner-banner .swiper-container .swiper-wrapper {
	height: 351px
}
.main .inner-banner .swiper-container .swiper-wrapper .swiper-slide {
	position: relative;
	width: 100%;
	height: 351px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: auto 100%
}
.main .inner-banner .swiper-container .swiper-wrapper .swiper-slide .link {
	position: absolute;
	width: 100%;
	height: 100%
}
.main .inner-banner .swiper-container .swiper-pagination {
	bottom: 20px
}
.main .inner-banner .swiper-container .swiper-pagination .swiper-pagination-bullet {
	width: 80px;
	height: 5px;
	border-radius: 10px;
	background-color: #fff;
	opacity: .6
}
.main .inner-banner .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #058925
}
.main .keyword {
	background-color: #f4f4f4;
	padding: 15px 0
}
.main .keyword ul li {
	margin-right: 20px
}
.main .crumbs {
	padding: 10px 0
}
.main .crumbs .box>span {
	width: 100px;
	font-weight: 700;
	padding-left: 10px;
	position: relative
}
.main .crumbs .box>span:before {
	content: "";
	background-color: #676767;
	position: absolute;
	left: 0;
	top: 3px;
	bottom: 3px;
	width: 2px
}
.main .crumbs .box>ul {
	display: flex
}
.main .crumbs .box>ul li {
	margin: 0 10px 0 0;
	position: relative;
	color: #6b6b6b
}
.main .crumbs .box>ul li:after {
	content: ">";
	position: absolute;
	right: 0;
	top: 0
}
.main .crumbs .box>ul li a {
	color: #6b6b6b;
	padding: 0 5px;
}
.main .crumbs .box>ul li:last-child:after {
	display: none
}
.main .key {
	line-height: 39px;
	height: 39px
}
.main .search {
	background-color: #12a034;
	padding: 10px 15px
}
.main .search input {
	color: #fff;
	height: 100%;
	line-height: 100%;
	border: none;
	background-color: #12a034
}
.main .search button {
	height: 100%;
	line-height: 100%;
	border: none;
	background-color: #12a034
}
.main .product-center .menu {
	width: 288px
}
.main .product-center .menu h2 {
	padding: 20px 0;
	text-align: center;
	font-size: 28px;
	background-color: #12a034;
	margin-bottom: 5px;
	color: #fff
}
.main .product-center .menu ul li {
	margin-bottom: 5px
}
.main .product-center .menu ul li a {
	padding: 12px 0;
	text-align: center;
	display: block;
	background-color: #f4f4f4
}
.main .product-center .menu .phone {
	background-color: #12a034
}
.main .product-center .menu .phone .title {
	background-color: #12a034;
	padding: 10px 10px 20px 10px;
	width: 100%;
	position: relative;
	padding-top: 20px;
	padding-left: 80px
}
.main .product-center .menu .phone .title .icon {
	width: 51px;
	position: absolute;
	left: 18px;
	top: 22px
}
.main .product-center .menu .phone .title span {
	text-align: left;
	margin: 0;
	padding: 0
}
.main .product-center .menu .phone .title span.ph {
	font-size: 25px;
	font-weight: 700;
	margin-top: 0px
}
.main .product-center .menu .phone .rqcode img {
	display: block;
	margin: 0 auto
}
.main .product-center .menu .phone span {
	display: block;
	color: #fff;
	padding: 15px 0;
	text-align: center
}
.main .product-center .pro-list {
	flex: 1;
	padding: 0 0 0 20px
}
.main .product-center .pro-list ul {
	display: flex;
	flex-wrap: wrap
}
.main .product-center .pro-list ul li {
	width: 33.3%;
	padding: 10px
}
.main .product-center .pro-list ul li .img {
	width: 100%;
	display: block;
	position: relative;
	box-sizing: border-box;
	z-index: 100
}
.main .product-center .pro-list ul li .img:before {
	display: none;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border: #12a034 4px solid;
	z-index: 200;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.main .product-center .pro-list ul li .img:hover:before {
	display: block
}
.main .product-center .pro-list ul li .img img {
	height: 100%;
	width: 100%
}
.main .product-center .pro-list ul li .name {
	display: block;
	padding: 10px 0;
	text-align: center;
	background-color: #f4f4f4;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .advantage {
	position: relative;
	height: 810px;
	background: url("../images/advantage-bg.jpg") center center no-repeat
}
.main .advantage .advantage-info {
	position: absolute;
	padding-left: 75px;
	width: 480px;
	height: 200px
}
.main .advantage .advantage-info span {
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 48px;
	color: #666666
}
.main .advantage .advantage-info h4 {
	font-size: 24px;
	color: #12a034;
	margin-bottom: 20px
}
.main .advantage .advantage-info p {
	width: 100%;
	font-size: 14px;
	color: #3e3e3e
}
.main .advantage .advantage-info.lt {
	left: 0;
	top: 40px
}
.main .advantage .advantage-info.rt {
	right: 0;
	top: 40px
}
.main .advantage .advantage-info.lb {
	left: 0;
	bottom: 40px
}
.main .advantage .advantage-info.rb {
	right: 0;
	bottom: 40px
}
.main .advantage-phone .phone {
	text-align: center;
	width: 460px;
	display: block;
	margin: 0 auto;
	padding: 8px 10px;
	border-radius: 10px;
	background: url("../images/advantage-phone-bg.jpg") left center repeat-x;
	background-size: auto 100%;
	font-size: 30px;
	color: #fff
}
.main .advantage-phone .phone .icon {
	vertical-align: middle;
	margin-right: 10px
}
.main .aboutus {
	margin: 50px 0;
	background-color: #f4f4f4;
	height: 465px
}
.main .aboutus .box {
	padding: 20px 20px;
	padding-left: 483px;
	position: relative
}
.main .aboutus .box .img {
	position: absolute;
	top: 0;
	left: -390px;
	width: 834px;
	height: 465px
}
.main .aboutus .box .img img {
	width: 100%;
	height: 100%
}
.main .aboutus .box .h2 {
	position: relative
}
.main .aboutus .box .h2 span {
	color: #ddd;
	font-size: 72px;
	font-weight: 700;
	margin: 0;
	padding: 0
}
.main .aboutus .box .h2 h1 {
	font-size: 28px;
	color: #12a034;
	position: absolute;
	left: 20px;
	top: 25px;
	font-weight: normal
}
.main .aboutus .box>span {
	font-size: 26px;
	color: #12a034
}
.main .aboutus .box .content {
	margin: 10px 0
}
.main .aboutus .box .content p {
	margin-bottom: 5px;
	text-indent: 2em;
	line-height: 1.7em;
	font-size: 14px
}
.main .aboutus .box .btns {
	margin-top: 20px
}
.main .aboutus .box .btns .btn {
	color: #fff;
	margin-right: 10px;
	display: block;
	padding: 8px 20px;
	background-color: #12a034
}
.main .aboutusinner {
	margin: 50px 0 0 0;
	padding: 20px 0;
	background-color: #f4f4f4;
	height: 560px
}
.main .aboutusinner .box {
	padding: 20px 20px;
	padding-right: 483px;
	position: relative
}
.main .aboutusinner .box .img {
	position: absolute;
	top: 30px;
	right: -390px;
	width: 834px;
	height: 465px
}
.main .aboutusinner .box .img img {
	width: 100%;
	height: 100%
}
.main .aboutusinner .box>span {
	font-size: 26px;
	color: #12a034
}
.main .aboutusinner .box .content {
	margin: 10px 0
}
.main .aboutusinner .box .content h1 {
	color: #0c0d12;
	font-size: 30px;
	margin-bottom: 60px;
	position: relative
}
.main .aboutusinner .box .content h1:after {
	content: "";
	width: 60px;
	height: 3px;
	background-color: #12a034;
	position: absolute;
	left: 0;
	bottom: -30px
}
.main .aboutusinner .box .content p {
	margin-bottom: 5px;
	text-indent: 2em;
	line-height: 1.7em;
	font-size: 14px
}
.main .aboutusinner .box .btns {
	margin-top: 45px
}
.main .aboutusinner .box .btns .btn {
	color: #fff;
	margin-right: 10px;
	display: block;
	padding: 8px 20px;
	background-color: #12a034
}
.main .aboutusinner .box .btns .btn:hover {
	background-color: #058925 !important;
	color: #fff !important
}
.main .case #caseBanner {
	margin: 40px 0;
	margin-left: -30px;
	margin-right: -30px;
	padding-left: 30px;
	padding-right: 30px
}
.main .case #caseBanner .swiper-wrapper .swiper-slide {
	position: relative
}
.main .case #caseBanner .swiper-wrapper .swiper-slide .link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0
}
.main .case #caseBanner .swiper-wrapper .swiper-slide .img img {
	width: 100%;
	height: 100%;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.5)
}
.main .case #caseBanner .swiper-wrapper .swiper-slide .img:hover img {
	box-shadow: 0px 1px 10px #12a034
}
.main .case #caseBanner .swiper-wrapper .swiper-slide>span {
	display: block;
	text-align: center;
	padding: 8px 0
}
.main .case #caseBanner .swiper-wrapper .swiper-slide:hover>span {
	color: #12a034
}
.main .case #caseBanner .swiper-wrapper .swiper-slide:hover .img img {
	box-shadow: 0px 1px 10px #12a034
}
.main .case #caseBanner .swiper-button-next {
	color: #fff;
	right: 0px;
	background-color: #12a034;
	padding-top: 40px;
	padding-bottom: 40px;
	background-image: url("../images/right-angle.png");
	background-size: auto;
	margin-top: -60px
}
.main .case #caseBanner .swiper-button-prev {
	color: #fff;
	left: 0px;
	background-color: #12a034;
	padding-top: 40px;
	padding-bottom: 40px;
	background-image: url("../images/left-angle.png");
	background-size: auto;
	margin-top: -60px
}
.main .service-process {
	background-color: #f4f4f4;
	padding: 40px 0
}
.main .service-process.inner {
	background-color: #fff
}
.main .service-process .title {
	margin-bottom: 20px
}
.main .service-process .title h1 {
	text-align: center;
	font-size: 28px;
	color: #12a034;
	margin-bottom: 10px
}
.main .service-process .title span {
	display: block;
	text-align: center
}
.main .service-process .list {
	margin: 40px 0 0 0
}
.main .service-process .list ul li {
	flex: 1;
	position: relative
}
.main .service-process .list ul li .iconbox .icon {
	line-height: 130px;
	text-align: center;
	display: block;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: #12a034 2px solid;
	margin: 0 auto;
	margin-bottom: 15px;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
	cursor: pointer
}
.main .service-process .list ul li .iconbox .icon img {
	margin-top: 25px
}
.main .service-process .list ul li .iconbox .icon:hover {
	transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	-o-transform: rotate(360deg)
}
.main .service-process .list ul li .iconbox h5 {
	font-size: 18px;
	text-align: center;
	color: #7a7a7a;
	margin-bottom: 5px
}
.main .service-process .list ul li .iconbox span {
	display: block;
	text-align: center;
	font-size: 14px;
	color: #7a7a7a
}
.main .service-process .list ul li:after {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	background: url("../images/service-process-angle.png") center center no-repeat;
	background-size: 100% 100%;
	right: -15px;
	bottom: 90px
}
.main .service-process .list ul li:last-child:after {
	display: none
}
.main .customer-case {
	padding: 40px 0
}
.main .customer-case .title {
	margin-bottom: 20px
}
.main .customer-case .title h1 {
	text-align: center;
	font-size: 28px;
	color: #12a034;
	margin-bottom: 10px
}
.main .customer-case .title span {
	display: block;
	text-align: center
}
.main .customer-case .list {
	background-color: #fff;
	box-shadow: 0px 3px 18px rgba(0,0,0,0.1);
	position: relative
}
.main .customer-case .list:after {
	content: "";
	background-color: #e3e3e3;
	height: 1px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 200
}
.main .customer-case .list:before {
	content: "";
	background-color: #e3e3e3;
	width: 1px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 200
}
.main .customer-case .list ul {
	flex-wrap: wrap
}
.main .customer-case .list ul li {
	width: 20%;
	position: relative
}
.main .customer-case .list ul li a {
	width: 100%;
	display: block;
	position: relative
}
.main .customer-case .list ul li a img {
	width: 100%;
	position: relative;
	z-index: 100
}
.main .customer-case .list ul li a:before {
	display: none;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	border: #12a034 1px solid;
	z-index: 300;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.main .customer-case .list ul li a:hover:before {
	display: block
}
.main .customer-case .list ul li:after {
	content: "";
	background-color: #e3e3e3;
	width: 1px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100
}
.main .customer-case .list ul li:before {
	content: "";
	background-color: #e3e3e3;
	height: 1px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100
}
.main .news .box>.left {
	flex: 1
}
.main .news .box>.left .type-link {
	background-color: #f4f4f4
}
.main .news .box>.left .type-link ul li {
	cursor: pointer;
	margin-right: 1px;
	display: block;
	padding: 10px 30px;
	background-color: #f4f4f4;
	color: #333;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.main .news .box>.left .type-link ul li:hover {
	color: #fff !important;
	background-color: #12a034
}
.main .news .box>.left .type-link ul li.active {
	color: #fff;
	background-color: #12a034
}
.main .news .box>.left .type-link .more {
	line-height: 100%;
	padding: 0 20px;
	line-height: 41px;
	color: #12a034
}
.main .news .box>.left .news-list {
	border: #f4f4f4 7px solid;
	margin-top: 30px
}
.main .news .box>.left .news-list .newsbox {
	display: none
}
.main .news .box>.left .news-list .newsbox .first {
	width: 290px;
	padding: 10px;
	border-right: #f4f4f4 7px solid
}
.main .news .box>.left .news-list .newsbox .first .img {
	display: block;
	width: 100%
}
.main .news .box>.left .news-list .newsbox .first .img img {
	width: 100%
}
.main .news .box>.left .news-list .newsbox .first .name {
	margin: 10px 0;
	padding: 0 10px;
	color: #12a034;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .news .box>.left .news-list .newsbox .first p {
	font-size: 14px;
	padding: 0 10px;
	color: #999999;
	line-height: 1.5em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 2
}
.main .news .box>.left .news-list .newsbox .first .detail {
	margin: 20px 0;
	padding: 0 10px;
	display: block;
	font-size: 14px;
	color: #12a034;
	text-decoration: underline
}
.main .news .box>.left .news-list .newsbox .list {
	flex: 1;
	padding: 0 20px 10px 20px
}
.main .news .box>.left .news-list .newsbox .list ul li {
	display: flex;
	width: 100%;
	padding: 0px 0;
	margin: 8px 0;
	color: #999999
}
.main .news .box>.left .news-list .newsbox .list ul li>.left {
	width: 100px
}
.main .news .box>.left .news-list .newsbox .list ul li>.left.date {
	text-align: center;
	color: #999999
}
.main .news .box>.left .news-list .newsbox .list ul li>.left.date span {
	line-height: 1em;
	font-size: 50px;
	display: block
}
.main .news .box>.left .news-list .newsbox .list ul li>.right {
	flex: 1
}
.main .news .box>.left .news-list .newsbox .list ul li>.right a {
	display: block;
	margin: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1;
	color: #333
}
.main .news .box>.left .news-list .newsbox .list ul li>.right p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1;
	color: #999999
}
.main .news .box>.left .news-list .newsbox .list ul li:nth-child(1),.main .news .box>.left .news-list .newsbox .list ul li:nth-child(2) {
	border-bottom: #a8a8a8 1px solid;
	padding: 10px 0;
	margin-bottom: 5px
}
.main .news .box>.left .news-list .newsbox .list ul li>a {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1;
	color: #999
}
.main .news .box>.left .news-list .newsbox .list ul li>a>.icon {
	font-style: normal;
	margin-right: 5px
}
.main .news .box>.left .news-list .newsbox .list ul li>.date-line {
	color: #999;
	width: 120px;
	text-align: right
}
.main .news .box>.left .news-list .newsbox .list .more {
	display: block;
	text-align: right;
	margin-top: 20px
}
.main .news .box>.left .news-list .newsbox .list .more a {
	color: #12a034
}
.main .news .box>.left .news-list .newsbox.active {
	display: flex
}
.main .news .box>.right {
	width: 345px;
	padding-left: 20px
}
.main .news .box>.right>.title {
	padding: 20px 0;
	background-color: #12a034;
	text-align: center
}
.main .news .box>.right>.title h4 {
	font-size: 24px;
	text-align: center;
	color: #fff
}
.main .news .box>.right>.title p {
	font-size: 14px;
	text-align: center;
	color: #fff
}
.main .news .box>.right>.list {
	padding: 10px 20px;
	border: #f4f4f4 1px solid
}
.main .news .box>.right>.list ul li {
	border-bottom: #bfbfbf 1px solid;
	padding: 10px 0
}
.main .news .box>.right>.list ul li:last-child {
	border-bottom: none
}
.main .news .box>.right>.list ul li>.title {
	display: flex;
	margin-bottom: 8px
}
.main .news .box>.right>.list ul li>.title>span {
	display: block;
	text-align: center;
	color: #fff;
	width: 25px;
	line-height: 25px;
	background-color: #12a034
}
.main .news .box>.right>.list ul li>.title>.title {
	flex: 1;
	color: #12a034;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1;
	padding-left: 15px
}
.main .news .box>.right>.list ul li .content {
	display: flex
}
.main .news .box>.right>.list ul li .content>span {
	margin-top: 3px;
	display: block;
	text-align: center;
	color: #fff;
	width: 25px;
	height: 25px;
	line-height: 25px;
	background-color: #666666
}
.main .news .box>.right>.list ul li .content>p {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 2;
	padding-left: 15px
}
.main .news .box>.right>.list .more {
	margin: 3px 0;
	text-align: right
}
.main .news .box>.right>.list .more a {
	color: #12a034
}
.main .inner-tabnews {
	padding: 30px 0
}
.main .inner-tabnews .box #innerTab ul {
	display: flex;
	justify-content: center
}
.main .inner-tabnews .box #innerTab ul li {
	padding: 12px 50px;
	text-align: center;
	background-color: #f5f5f5;
	color: #676767;
	cursor: pointer;
	font-size: 20px;
	position: relative
}
.main .inner-tabnews .box #innerTab ul li.active {
	background-color: #12a034;
	color: #fff
}
.main .inner-tabnews .box #innerTab ul li.active:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -4px;
	width: 0;
	height: 0;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 8px solid #fff
}
.main .inner-tabnews .box #innerTabContent .content {
	width: 100%;
	padding: 30px 0;
	display: none
}
.main .inner-tabnews .box #innerTabContent .content.active {
	display: block
}
.main .inner-tabnews .box #innerTabContent .content>ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap
}
.main .inner-tabnews .box #innerTabContent .content>ul>li {
	width: 33.3%;
	padding: 0 15px;
	margin-bottom: 40px
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .img {
	width: 100%
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .img img {
	width: 100%
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .name {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-size: 22px;
	color: #676767;
	margin: 5px 0
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .desc {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #676767;
	line-height: 1.6em;
	margin-bottom: 15px
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .btn {
	padding: 5px 0;
	height: 46px
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .btn .details {
	padding: 10px 20px;
	background-color: #f4f4f4;
	color: #676767;
	border-radius: 20px;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .btn .details:hover {
	background-color: #12a034;
	color: #fff !important
}
.main .inner-tabnews .box #innerTabContent .content>ul>li .btn-name a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li {
	width: 33.3%;
	padding: 0 15px;
	margin-bottom: 40px
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .img {
	display: block;
	width: 100%;
	padding: 15px;
	border: #ebe9e9 1px solid;
	position: relative;
	z-index: 100
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .img img {
	width: 100%
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .img .mask {
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3) url("../images/icon-pro-link.png") center center no-repeat
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .img:hover .mask {
	opacity: 1
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .btn-name {
	padding: 15px 0;
	border-bottom: #cecece 1px solid;
	padding-right: 40px;
	position: relative
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .btn-name a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .btn-name:after {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	content: ">";
	text-align: center;
	line-height: 18px;
	top: 50%;
	margin-top: -10px;
	right: 0;
	background-color: #cecece;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li .btn-name:hover:after {
	background-color: #129f35;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li:hover .img {
	border: #12a034 1px solid
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li:hover .btn-name a {
	color: #12a034
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li:hover .btn-name:after {
	background-color: #12a034;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li:hover .name {
	color: #12a034
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li:hover .desc p {
	color: #12a034
}
.main .inner-tabnews .box #innerTabContent .content.pro>ul>li:hover .btn .details {
	background-color: #12a034;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.case>ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li {
	width: 33.3%;
	padding: 0 15px;
	margin-bottom: 40px
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .img {
	display: block;
	width: 100%;
	padding: 0px;
	position: relative;
	z-index: 100
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .img img {
	border: #ebe9e9 1px solid;
	width: 100%
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .img .mask {
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3) url("../images/icon-pro-link.png") center center no-repeat
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .img:hover .mask {
	opacity: 1
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .btn-name {
	padding: 15px 0;
	border-bottom: #cecece 1px solid;
	padding-right: 40px;
	position: relative
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .btn-name a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .btn-name:after {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	content: ">";
	text-align: center;
	line-height: 18px;
	top: 50%;
	margin-top: -10px;
	right: 0;
	background-color: #cecece;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li .btn-name:hover:after {
	background-color: #129f35;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li:hover .btn-name a {
	color: #12a034
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li:hover .btn-name:after {
	background-color: #12a034;
	color: #fff
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li:hover .name {
	color: #12a034
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li:hover .desc p {
	color: #12a034
}
.main .inner-tabnews .box #innerTabContent .content.case>ul>li:hover .btn .details {
	background-color: #12a034;
	color: #fff
}
.main .inner-tabnews .box .details .title {
	padding: 20px 0;
	border-bottom: #cecece 1px solid
}
.main .inner-tabnews .box .details .title span {
	padding: 20px 0px;
	font-weight: 700;
	position: relative;
	font-size: 20px
}
.main .inner-tabnews .box .details .title span:after {
	content: "";
	height: 5px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #12a034
}
.main .inner-tabnews .box .details h2 {
	line-height: 2em;
	margin-bottom: 10px;
	text-align: center
}
.main .inner-tabnews .box .details .info {
	display: flex;
	justify-content: center;
	border-bottom: #cecece 1px solid;
	padding: 15px 0
}
.main .inner-tabnews .box .details .info span {
	margin: 0 10px;
	color: #6b6b6b
}
.main .inner-tabnews .box .details .details-content {
	padding: 20px 10px
}
.main .inner-tabnews .box .details .details-content p {
	margin-bottom: 15px;
	text-indent: 2em
}
.main .inner-tabnews .box .details .details-content p img {
	display: block;
	max-width: 100%;
	margin: 20px auto
}
.main .inner-tabnews .box .details .pages .share {
	text-align: right;
	color: #6b6b6b;
	padding: 10px 0;
	border-bottom: #cecece 1px solid
}
.main .inner-tabnews .box .details .pages .page {
	padding: 10px 0;
	color: #6b6b6b
}
.main .inner-tabnews .box .details .pages .page a {
	color: #6b6b6b
}
.main .inner-tabnews .box .details .prodetails-content {
	display: flex;
	margin: 50px 0
}
.main .inner-tabnews .box .details .prodetails-content .proimg {
	width: 540px
}
.main .inner-tabnews .box .details .prodetails-content .proinfog {
	flex: 1;
	padding-left: 30px
}
.main .inner-tabnews .box .details .prodetails-content .proinfog h1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: #12a034;
	margin-bottom: 10px;
	font-size: 24px
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .desc {
	margin: 20px 0;
	line-height: 1.6em;
	font-size: 16px;
	min-height: 220px
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .conactbtn .conact {
	font-size: 40px;
	font-weight: 700;
	color: #12a034
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .conactbtn .conact span {
	font-size: 20px;
	color: #333
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .conactbtn .btns {
	margin-top: 20px;
	display: flex;
	justify-content: flex-start
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .conactbtn .btns .btn {
	margin-right: 20px;
	color: #fff;
	padding: 6px 30px;
	background-color: #999999;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .conactbtn .btns .btn.contact {
	background-color: #12a034
}
.main .inner-tabnews .box .details .prodetails-content .proinfog .conactbtn .btns .btn:hover {
	background-color: #12a034;
	color: #fff !important
}
.main .inner-tabnews .box .pro-tj {
	margin: 30px 0
}
.main .inner-tabnews .box .pro-tj .title {
	margin-bottom: 20px;
	font-size: 18px
}
.main .inner-tabnews .box .pro-tj .title h5 {
	padding-left: 20px;
	color: #676767;
	border-left: #676767 3px solid
}
.main .inner-tabnews .box .pro-tj .contentpro>ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li {
	width: 33.3%;
	padding: 0 15px;
	margin-bottom: 40px
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .img {
	display: block;
	width: 100%;
	padding: 15px;
	border: #ebe9e9 1px solid;
	position: relative;
	z-index: 100
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .img img {
	width: 100%
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .img .mask {
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 200;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3) url("../images/icon-pro-link.png") center center no-repeat
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .img:hover .mask {
	opacity: 1
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .btn-name {
	padding: 15px 0;
	border-bottom: #cecece 1px solid;
	padding-right: 40px;
	position: relative
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .btn-name a {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .btn-name:after {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	content: ">";
	text-align: center;
	line-height: 18px;
	top: 50%;
	margin-top: -10px;
	right: 0;
	background-color: #cecece;
	color: #fff
}
.main .inner-tabnews .box .pro-tj .contentpro>ul>li .btn-name:hover:after {
	background-color: #129f35;
	color: #fff
}
.main .inner-tabnews .box .pro-tj .contentnew>ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%
}
.main .inner-tabnews .box .pro-tj .contentnew>ul li {
	width: 50%;
	padding: 0 30px 10px 0px
}
.main .inner-tabnews .box .pro-tj .contentnew>ul li:nth-child(odd) {
	padding: 0 30px 10px 0px
}
.main .inner-tabnews .box .pro-tj .contentnew>ul li:nth-child(even) {
	padding: 0 0px 10px 30px
}
.main .inner-tabnews .box .pro-tj .contentnew>ul li .newbox {
	display: flex;
	justify-content: space-between;
	border-bottom: #999999 1px solid;
	padding: 10px 0
}
.main .inner-tabnews .box .pro-tj .contentnew>ul li .newbox .link {
	flex: 1;
	color: #676767;
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 1
}
.main .inner-tabnews .box .pro-tj .contentnew>ul li .newbox .date {
	text-align: right;
	color: #676767;
	font-size: 18px;
	width: 130px
}
.main .inner-tabnews #innerTabContent .content.news {
	width: 100%;
	padding: 0px 0;
	display: none
}
.main .inner-tabnews #innerTabContent .content.news.active {
	display: block
}
.main .inner-tabnews #innerTabContent .content.news>ul>li {
	width: 100%
}
.main .inner-tabnews #innerTabContent .content.news>ul>li:nth-child(odd) {
	background-color: #fff
}
.main .inner-tabnews #innerTabContent .content.news>ul>li:nth-child(even) {
	background-color: #f5f5f5
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box {
	padding: 30px 0
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .img {
	width: 266px
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .img a {
	width: 100%;
	display: block
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .img a img {
	width: 100%
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info {
	flex: 1;
	padding-left: 30px
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info>h5 a {
	font-size: 18px;
	font-weight: 700;
	color: #333
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info>span {
	font-size: 14px;
	color: #999999;
	display: block;
	padding: 10px 0
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info>p {
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	display: -moz-box;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-moz-box-orient: vertical;
	-webkit-line-clamp: 2
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info .def {
	display: block;
	margin-top: 20px
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info .def a {
	padding: 5px 20px;
	color: #333
}
.main .inner-tabnews #innerTabContent .content.news>ul>li .box .info .def a:hover {
	color: #fff !important;
	background-color: #12a034
}
.footer {
	margin-top: 40px;
	background-color: #000000
}
.footer .box {
	padding: 40px 0 0 0
}
.footer .box .links {
	flex: 1;
	display: flex
}
.footer .box .links .link {
	flex: 1
}
.footer .box .links .link h5 {
	color: #fff;
	margin-bottom: 20px;
	position: relative;
	font-size: 20px
}
.footer .box .links .link h5:before {
	content: "";
	position: absolute;
	left: -20px;
	top: 5px;
	bottom: 5px;
	width: 3px;
	background-color: #fff
}
.footer .box .links .link ul li a {
	font-size: 14px;
	color: #fff;
	line-height: 2.5em
}
.footer .box .contact {
	width: 450px
}
.footer .box .contact .rqcode {
	display: flex
}
.footer .box .contact .rqcode .code {
	width: 100px;
	height: 100px
}
.footer .box .contact .rqcode .code img {
	width: 100%;
	height: 100%
}
.footer .box .contact .rqcode .info {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	flex-wrap: wrap
}
.footer .box .contact .rqcode .info p {
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	line-height: 1.8em
}
.footer .box .contact .rqcode .logo {
	flex: 1
}
.footer .box .contact .rqcode .logo img {
	width: 100%
}
.footer .box .contact .phone {
	margin: 20px 0;
	padding: 20px 0;
	border-top: #fff 1px solid;
	border-bottom: #fff 1px solid;
	padding-left: 70px;
	position: relative
}
.footer .box .contact .phone .icon {
	position: absolute;
	left: 5px;
	top: 22px;
	width: 50px;
	height: 50px
}
.footer .box .contact .phone .icon img {
	width: 100%
}
.footer .box .contact .phone p,.footer .box .contact .phone span {
	display: block;
	color: #fff
}
.footer .box .contact .phone span {
	font-size: 18px;
	margin-bottom: 5px
}
.footer .box .contact .phone p {
	font-size: 32px;
	font-weight: 700
}
.footer .box .contact .addr p,.footer .box .contact .addr p a {
	color: #fff
}
.adbar {
	margin:0
}
.adbar .img {
	width: 100%;
	height: 100%;
	display: block;
	background-repeat: no-repeat;
	background-position: center center
}
.adbar .img .box {
	position: relative
}
.adbar .img .box .link {
	position: absolute;
	width: 100%;
	height: 100%;
	padding-left: 250px;
	padding-top: 35px
}
.adbar .img .box .link em {
	width: 100%;
	font-size: 20px;
	color: #fff;
	display: block;
	font-style: normal
}
.adbar .img .box .link span {
	color: #fff;
	font-size: 38px;
	font-weight: 700;
	width: 100%;
	color: #fff;
	display: block
}
.main-title {
	margin: 30px 0;
	background: url("../images/maintitle-bg.jpg") top 12px center no-repeat
}
.main-title h1,.main-title span {
	display: block;
	text-align: center
}
.main-title h1 {
	color: #12a034;
	font-size: 28px;
	margin: 0 0 10px 0
}
.main-title span {
	color: #656565
}
.pagination {
	margin-top: 40px
}
.pagination>ul {
	width: 100%;
	display: flex;
	justify-content: center
}
.pagination>ul>li {
	margin: 0 10px
}
.pagination>ul>li a {
	padding: 10px 20px;
	border: #bfbfbf 1px solid;
	background-color: #fff
}
.pagination>ul>li.active a,a.page-num-current {
	color: #12a034;
	background-color: #efefef
}
.tab-link {
	margin-bottom: 30px
}
.tab-link ul {
	display: flex;
	justify-content: center
}
.tab-link ul li {
	padding: 12px 50px;
	text-align: center;
	background-color: #f5f5f5;
	color: #676767;
	cursor: pointer;
	font-size: 20px;
	position: relative;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.tab-link ul li a {
	color: #676767;
	text-decoration: none;
	transition-property: all;
	transition-timing-function: ease-out;
	transition-duration: 0.3s
}
.tab-link ul li:hover {
	background-color: #12a034;
	color: #fff
}
.tab-link ul li:hover a {
	color: #fff !important
}
.tab-link ul li:hover:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -4px;
	width: 0;
	height: 0;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 8px solid #fff
}
.tab-link ul li.active {
	background-color: #12a034;
	color: #fff
}
.tab-link ul li.active a {
	color: #fff
}
.tab-link ul li.active:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -4px;
	width: 0;
	height: 0;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	border-bottom: 8px solid #fff
}
.title-about {
	font-size: 28px;
	padding: 15px 0;
	text-align: center;
	font-weight: 700;
	color: #12a034;
	background: url("../images/title-bgline.png") center bottom no-repeat
}
.title-about span {
	margin-top: 20px;
	text-align: center;
	display: block;
	font-size: 14px;
	color: #7a7a7a
}
.title-about.center {
	background: url("../images/title-bgline.png") center top 60px no-repeat
}
.aboutBox {
	margin: 50px 0;
	display: flex
}
.aboutBox .img {
	width: 680px
}
.aboutBox .img img {
	width: 100%
}
.aboutBox .info {
	flex: 1;
	padding: 0 0 0 60px
}
.aboutBox .info h3 {
	position: relative;
	margin-bottom: 40px
}
.aboutBox .info h3:after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 0;
	height: 3px;
	width: 30px;
	background-color: #12a034
}
.aboutBox .info .content p {
	color: #494949;
	margin-bottom: 10px;
	word-wrap: break-word;
	word-break: break-all;
	font-size: 14px
}
.contactUsBox {
	display: flex;
	margin: 30px 0
}
.contactUsBox .item {
	flex: 1;
	padding: 0 10px
}
.contactUsBox .item .boxinner {
	height: 100%;
	padding: 20px;
	background-color: #f9f9f9
}
.contactUsBox .item .boxinner .icon {
	width: 108px;
	height: 108px;
	display: block;
	margin: 0 auto
}
.contactUsBox .item .boxinner h5 {
	text-align: center
}
.contactUsBox .item .boxinner p {
	text-align: center;
	line-height: 1.2em;
	word-wrap: break-word;
	word-break: break-all
}
.contactUsMap {
	background-color: #ddd;
	height: 645px;
	border-top: #ddd 1px solid;
	border-bottom: #ddd 1px solid
}
#proGallery {
	width: 100%;
	margin-left: auto;
	margin-right: auto
}
#proGallery .gallery-top {
	width: 100%
}
#proGallery .gallery-top .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 400px;
	background-size: 100% 100%
}
#proGallery .gallery-thumbs {
	box-sizing: border-box;
	padding: 10px 0;
	height: 94px
}
#proGallery .gallery-thumbs .swiper-wrapper .swiper-slide {
	width: 25%;
	height: 100%;
	background-size: 100% 100%;
	cursor: pointer
}
#proGallery .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
	border: #12a034 5px solid
}
#proGallery .swiper-button-next,#proGallery .swiper-button-prev {
	background-size: 70%;
	padding: 30px 0
}
#proGallery .swiper-button-next:hover,#proGallery .swiper-button-prev:hover {
	background-color: #12a034
}
.scale {
	position: relative;
	transition: all 0.3s ease-out;
	z-index: 100
}
.scale:hover {
	cursor: pointer;
	z-index: 200;
	transform: scale(1.2)
}
.scale.s1:hover {
	transform: scale(1.05)
}
.scale.s2:hover {
	transform: scale(1.1)
}
.text-center {
	text-align: center;
}