﻿/*首页*/
.main {
	overflow: hidden;
}
.header {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	width: 66px;
	z-index: 1024;
	background-color: #fff;
	box-shadow: 0px 0px 15px rgba(0,0,0,.1);
}
.logo {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	bottom: 33px;
	text-align: center;
}
.logo img {
	display: inline-block;
}
.nav {
	margin-top: 28px;
}
.nav li {
	text-align: center;
	padding-bottom: 35px;
}
.nav li:last-child {
	padding-bottom: 0;
}
.nav li .v1 {
	display: block;
	font-size: 16px;
	color: #000;
	position: relative;
}
.nav li i {
	display: block;
	height: 35px;
	position: relative;
	margin-bottom: 2px;
	background-position: center center;
	background-repeat: no-repeat;
}
.nav .i1 i {
	background-image: url(../images/i-01.png);
}
.nav .i2 i {
	background-image: url(../images/i-02.png);
}
.nav .i3 i {
	background-image: url(../images/i-03.png);
}
.nav .i4 i {
	background-image: url(../images/i-04.png);
}
.nav .i5 i {
	background-image: url(../images/i-05.png);
}
.nav .i6 i {
	background-image: url(../images/i-06.png);
}
.nav li i:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 0;
	background-position: bottom center;
	background-repeat: no-repeat;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.nav .i1 i:after {
	background-image: url(../images/i-01-on.png);
}
.nav .i2 i:after {
	background-image: url(../images/i-02-on.png);
}
.nav .i3 i:after {
	background-image: url(../images/i-03-on.png);
}
.nav .i4 i:after {
	background-image: url(../images/i-04-on.png);
}
.nav .i5 i:after {
	background-image: url(../images/i-05-on.png);
}
.nav .i6 i:after {
	background-image: url(../images/i-06-on.png);
}
.nav li:hover i:after {
	height: 100%;
}
.nav-sub {
	position: fixed;
	top: 0;
	left: 66px;
	right: 0;
	z-index: -110;
	height: 100vh;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-out 0s;
}
.nav-sub .close {
	width: 31px;
	height: 31px;
	position: absolute;
	right: 18px;
	top: 18px;
	cursor: pointer;
	background: url(../images/i-close1.png) no-repeat center center;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.nav-sub .close:hover {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.nav-sub .col-l {
	width: 540px;
	height: 100vh;
	background-color: rgb(208,167,90);
	box-shadow: 5px 0px 20px rgba(0,0,0,.16);
}
.nav-sub .col-r {
	overflow: hidden;
	float: none;
	height: 100vh;
	background: rgb(255,255,255);
}
.m-scheme {
	overflow: hidden;
	padding: 0 7px;
}
.m-scheme li {
	width: 50%;
	height: 33.333vh;
	float: left;
	position: relative;
	transform: translateX(50px);
	opacity: 0;
	transition: all 0.5s ease-out 0s;
}
.m-scheme .con {
	display: block;
	color: #fff;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 23px;
	right: 23px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.m-scheme h4 {
	font-size: 22px;
	font-weight: normal;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 13px;
}
.m-scheme h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	height: 1px;
	width: 40px;
	background-color: #fff;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-scheme p {
	font-size: 14px;
	line-height: 24px;
	height: 72px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.m-scheme li span {
	display: block;
	height: 80px;
	margin-bottom: 20px;
	background-position: center;
	background-repeat: no-repeat;
}
/*.m-scheme .i1 span{background-image: url(../images/i-n1.png);}
.m-scheme .i2 span{background-image: url(../images/i-n2.png);}
.m-scheme .i3 span{background-image: url(../images/i-n3.png);}
.m-scheme .i4 span{background-image: url(../images/i-n4.png);}
.m-scheme .i5 span{background-image: url(../images/i-n5.png);}
.m-scheme .i6 span{background-image: url(../images/i-n6.png);}*/
.m-scheme li:hover h4:after {
	width: 80px;
}
.nav-sub.open {
	opacity: 1;
	visibility: visible;
	transition-duration: 0.5s;
	z-index: 110;
}
.nav-sub.open dl, .nav-sub.open .m-scheme li {
	transform: none;
	opacity: 1;
}
.nav-sub.open dl:nth-child(2), .nav-sub.open .m-scheme li:nth-child(2) {
	transition-delay: 0.3s;
}
.nav-sub.open dl:nth-child(3), .nav-sub.open .m-scheme li:nth-child(3) {
	transition-delay: 0.4s;
}
.nav-sub.open dl:nth-child(4), .nav-sub.open .m-scheme li:nth-child(4) {
	transition-delay: 0.5s;
}
.nav-sub.open dl:nth-child(5), .nav-sub.open .m-scheme li:nth-child(5) {
	transition-delay: 0.6s;
}
.nav-sub.open dl:nth-child(6), .nav-sub.open .m-scheme li:nth-child(6) {
	transition-delay: 0.6s;
}
.nav-two {
	overflow: hidden;
}
.nav-two dl {
	float: left;
	width: 14%;
	padding-left: 30px;
	padding-top: 58px;
	height: calc( 100vh - 138px );
	border-right: 1px solid #dbdbdb;
	transform: translateX(50px);
	opacity: 0;
	transition: all 0.5s ease-out 0s;
}
.nav-two .dl-1 {
	padding-left: 40px;
}
.nav-two .dl-2 {
	width: 43%;
}
.nav-two .dl-3 {
	width: 15%;
}
.nav-two .dl-5 {
	border-right: 0;
}
.nav-two dt {
	margin-bottom: 12px;
	overflow: hidden;
}
.nav-two dt a {
	display: block;
	font-size: 1.849vw;
}
.nav-two .dl-2 dt a {
	float: left;
}
.nav-two .dl-2 dt a.a2 {
	margin-left: 80px;
}
.nav-two dd .v1 {
	font-size: 18px;
	line-height: 52px;
	display: block;
}
.nav-two h4 a {
	font-size: 18px;
	line-height: 40px;
}
.nav-two h4 {
	margin-bottom: 10px;
}
.nav-two dd {
	overflow: hidden;
}
.nav-two dd .v2 {
	font-size: 16px;
	line-height: 36px;
	width: 33.33%;
	float: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.nav-two .dl-2 dd {
	margin-bottom: 18px;
}
.nav-two .dl-2 dt {
	margin-bottom: 18px;
}
.nav-sub .fd-tel {
	padding: 28px 0;
}
.nav-sub .fd-tel .tit {
	font-size: 1.414vw;
	padding: 0 20px 0 80px;
}
.nav-sub .fd-tel .con span {
	font-size: 1.958vw;
}
.nav-sub .fd-tel .con {
	padding-left: 23px;
}
.nav-sub .fd-tel li {
	padding-left: 45px;
}
.main {
	margin-left: 66px;
}
.g-top {
	position: absolute;
	top: 15px;
	right: 25px;
	z-index: 100;
	line-height: 30px;
}
.g-top .lang {
	float: left;
	color: #fff;
	position: relative;
	margin-right: 45px;
}
.g-top .lang dt {
	cursor: pointer;
	font-size: 14px;
	padding: 0 17px 0 25px;
	position: relative;
	background: url(../images/i-lang.png) no-repeat left center;
}
.g-top .lang dt:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 10px;
	background: url(../images/i-08.png) no-repeat right center;
}
.g-top .lang dd {
	position: absolute;
	top: 120%;
	left: 0;
	right: 0;
	font-size: 14px;
	padding: 10px 0;
	text-align: center;
	border-radius: 8px;
	line-height: 26px;
	background-color: #fff;
	visibility: hidden;
	transition: .3s;
	opacity: 0;
}
.g-top .lang:hover dd {
	top: 100%;
	opacity: 1;
	visibility: visible
}
.so {
	float: left;
	height: 30px;
}
.so-btn, .so .btn {
	width: 30px;
	height: 30px;
	cursor: pointer;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	background: url(../images/i-so.png) no-repeat center center;
}
.so .inp {
	width: 100%;
	height: 30px;
	display: block;
	padding: 0 28px 0 10px;
	background: #fff;
	border: 0;
	border-radius: 30px;
}
.so .btn {
	position: absolute;
	right: 0;
	top: 0;
	background-image: url(../images/i-so1.png);
	font-size: 0;
	text-indent: 9999px;
	border: 0;
}
.so .con {
	width: 0;
	overflow: hidden;
	position: relative;
	right: 0;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.so.open .con {
	width: 150px;
}
.so.open .so-btn {
	display: none;
}
.m-header {
	display: none;
}
.ms-mask-frame, .ms-slide, .ms-view {
	height: 100vh !important;
}
.banner {
	position: relative;
}
.banner .ms-slide {
	margin-left: 66px;
}
.banner .ms-slide a {
	background-position: center center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.mo-banner {
	display: none !important;
}
.ban-loading {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	z-index: 103;
	background: #fff;
}
.ban-loading .con {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.ban-loading .pic {
	max-height: 595px;
	width: 80%;
	margin: 0 auto 30px;
}
.ban-loading .pic img {
	width: 100%;
	display: block;
}
.ban-loading .icon {
	width: 40px;
	height: 40px;
	margin: 0 auto;
	background: url(../images/bars.svg) no-repeat center center;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.ban-list {
	overflow: hidden;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	background-color: rgba(0,0,0,.2);
}
.ban-list li {
	width: 25%;
	float: left;
}
.ban-list li a {
	display: block;
	text-align: center;
	height: 83px;
	line-height: 82px;
	font-size: 1.305vw;
	color: #fff;
	border-top: 1px solid rgba(255,255,255,.2);
	border-right: 1px solid rgba(255,255,255,.2);
	transition: .3s;
}
.ban-list li:last-child a {
	border-right: 0;
}
.ban-list li i {
	width: 36px;
	height: 36px;
	display: inline-block;
	vertical-align: middle;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	top: -2px;
	margin-right: 15px;
}
.ban-list li .icon1 {
	background-image: url(../images/i-ban1.png);
}
.ban-list li .icon2 {
	background-image: url(../images/i-ban2.png);
}
.ban-list li .icon3 {
	background-image: url(../images/i-ban3.png);
}
.ban-list li .icon4 {
	background-image: url(../images/i-ban4.png);
}
.ban-list li:hover a {
	background-color: rgba(0,0,0,.2);
}
.btn-down, .js-down1 {
	display: block;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	transition: all 0.3s ease 0.6s;
	cursor: pointer;
	position: absolute;
	right: 30px;
	bottom: 110px;
	z-index: 100;
	overflow: hidden;
}
.btn-down-4 {
	right: 50%;
	margin-right: 570px;
	bottom: 42px;
}
.body_home .btn-down {
	z-index: 2;
}
.btn-down i, .js-down1 i {
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/ico_16.png) no-repeat center;
	position: absolute;
	left: 0;
	top: 0;
	animation: downico 1.5s ease-out infinite;
}
@keyframes downico {
 0% {
 top: 0;
 opacity: 1;
}
 35% {
 top: 50%;
 opacity: 0;
}
 65% {
 top: -50%;
 opacity: 0;
}
 100% {
 top: 0;
 opacity: 1;
}
}
.g-t1 {
	text-align: center;
	padding: 75px 0 0;
}
.g-t1 h3 {
	font-size: 2.72vw;
	font-weight: normal;
	color: #000;
	margin-bottom: 5px;
}
.g-t1 p {
	font-size: 16px;
	color: #333;
	letter-spacing: 1px;
}
.m-list1 {
	padding-top: 58px;
	margin-bottom: 35px;
}
.m-list1 .con {
	text-align: center;
}
.m-list1 .icon {
	display: block;
	height: 120px;
	margin-bottom: 30px;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
}
.m-list1 .icon i {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background-position: bottom center;
	background-repeat: no-repeat;
	transition: 2s;
	-ms-transition: 2s;
	-moz-transition: 2s;
	-webkit-transition: 2s;
	-o-transition: 2s;
}
.m-list1 .icon em {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-position: center;
	background-repeat: no-repeat;
	transition: 2s;
	-ms-transition: 2s;
}
/*.m-list1 .icon1{background-image: url(../images/i-a1.png);}
.m-list1 .icon2{background-image: url(../images/i-a2.png);}
.m-list1 .icon3{background-image: url(../images/i-a3.png);}
.m-list1 .icon4{background-image: url(../images/i-a4.png);}
.m-list1 .con:hover .icon1{background-image: url(../images/i-a1-on.png);}
.m-list1 .con:hover .icon2{background-image: url(../images/i-a2-on.png);}
.m-list1 .con:hover .icon3{background-image: url(../images/i-a3-on.png);}
.m-list1 .con:hover .icon4{background-image: url(../images/i-a4-on.png);}
.m-list1 .icon1:after{background-image: url(../images/i-a1.png);}
.m-list1 .icon2:after{background-image: url(../images/i-a2.png);}
.m-list1 .icon3:after{background-image: url(../images/i-a3.png);}
.m-list1 .icon4:after{background-image: url(../images/i-a4.png);}*/
.m-list1 h4 {
	font-size: 1.632vw;
	color: #000;
	font-weight: normal;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 14px;
}
.m-list1 h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	height: 1px;
	width: 45px;
	background-color: #8c8c8c;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list1 p {
	font-size: 16px;
	line-height: 27px;
	color: #333;
	margin: 0 80px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.m-list1 .con:hover h4:after {
	width: 100px;
}
.m-list1 .con:hover .icon {
	background-image: none !important;
}
.m-list1 .con:hover .icon i {
	height: 120px;
}
.btn-down.btn-down-mm {
	display: none;
}
.row-a2 {
	padding-top: 100px;
	background: url(../images/bg-1.png) no-repeat top center;
}
.m-list2 {
	position: relative;
	padding: 55px 0 295px;
}
.m-list2 .con {
	display: block;
	margin: 0 37px;
	text-align: center;
	padding: 61px 30px 65px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 30px rgba(7,18,101,.09);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list2 h4 {
	font-size: 1.632vw;
	color: #000;
	font-weight: normal;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 14px;
}
.m-list2 h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	height: 1px;
	width: 45px;
	background-color: #8c8c8c;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list2 p {
	font-size: 16px;
	line-height: 27px;
	color: #333;
	height: 54px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.m-list2 .icon {
	display: block;
	height: 100px;
	margin-bottom: 40px;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
}
.m-list2 .icon em {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-position: center center;
	background-repeat: no-repeat;
}
.m-list2 .icon i {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background-position: bottom center;
	background-repeat: no-repeat;
	transition: 2s;
	-ms-transition: 2s;
	-moz-transition: 2s;
	-webkit-transition: 2s;
	-o-transition: 2s;
}
.m-list2 .con:hover .icon {
	background-image: none !important;
}
.m-list2 .con:hover .icon i {
	height: 100px;
}
/*.m-list2 .icon1{background-image: url(../images/i-b1.png);}
.m-list2 .icon2{background-image: url(../images/i-b2.png);}
.m-list2 .icon3{background-image: url(../images/i-b3.png);}
.m-list2 .icon4{background-image: url(../images/i-b4.png);}
.m-list2 .icon5{background-image: url(../images/i-b5.png);}
.m-list2 .icon6{background-image: url(../images/i-b6.png);}
.m-list2 .con:hover .icon1{background-image: url(../images/i-b1-on.png);}
.m-list2 .con:hover .icon2{background-image: url(../images/i-b2-on.png);}
.m-list2 .con:hover .icon3{background-image: url(../images/i-b3-on.png);}
.m-list2 .con:hover .icon4{background-image: url(../images/i-b4-on.png);}
.m-list2 .con:hover .icon5{background-image: url(../images/i-b5-on.png);}
.m-list2 .con:hover .icon6{background-image: url(../images/i-b6-on.png);}
.m-list2 .icon1:after{background-image: url(../images/i-b1.png);}
.m-list2 .icon2:after{background-image: url(../images/i-b2.png);}
.m-list2 .icon3:after{background-image: url(../images/i-b3.png);}
.m-list2 .icon4:after{background-image: url(../images/i-b4.png);}
.m-list2 .icon5:after{background-image: url(../images/i-b5.png);}
.m-list2 .icon6:after{background-image: url(../images/i-b6.png);}*/
.m-list2 .swiper-pagination {
	bottom: 205px !important;
}
.m-list2 .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}
.m-list2 .swiper-pagination-bullet-active {
	background-color: #000;
}
.m-list2 .swiper-button-next, .m-list2 .swiper-button-prev {
	width: 60px;
	height: 30px;
	top: auto;
	bottom: 199px;
	z-index: 12;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.m-list2 .swiper-button-next {
	right: 50%;
	margin: 0 -170px 0 0;
	background-image: url(../images/i-r.png);
}
.m-list2 .swiper-button-prev {
	left: 50%;
	margin: 0 0 0 -170px;
	bottom: 205px;
	background-image: url(../images/i-l.png);
}
.m-list2 .swiper-button-next:after, .m-list2 .swiper-button-prev:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list2 .swiper-button-next:after {
	right: 0;
	background: url(../images/i-r-on.png) no-repeat right center;
}
.m-list2 .swiper-button-prev:after {
	left: 0;
	background: url(../images/i-l-on.png) no-repeat left center;
}
.m-list2 .swiper-button-next:hover:after, .m-list2 .swiper-button-prev:hover:after {
	width: 100%;
}
.m-list2 .swiper-slide {
	opacity: .4;
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity= 40)';
 filter:progid:DXImageTransform.Microsoft.Alpha(Opacity= 40);
}
.m-list2 .swiper-slide-active, .m-list2 .swiper-slide-prev, .m-list2 .swiper-slide-next {
	opacity: 1;
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity= 100)';
 filter:progid:DXImageTransform.Microsoft.Alpha(Opacity= 100);
}
.m-list2 .con:hover {
	box-shadow: 0px 0px 30px rgba(7,18,101,.4);
}
.m-list2 .con:hover h4:after {
	width: 100px;
}
.m-list2 .con:hover .icon i {
	height: 100px;
}
.case-list ul {
	height: auto;
	overflow: hidden;
	width: 100%
}
.case-list li .tag {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	transition: 0.5s;
	z-index: 99;
	opacity: 0;
	font-size: 18px
}
.case-list li .tag span {
	margin: 0 6px
}
.case-list li:hover .tag {
	bottom: 35px;
	opacity: 1
}
.case-list li {
	width: 33.3333%;
	float: left;
	overflow: hidden
}
.case-list .con {
	padding-top: 72%;
	height: 0;
	position: relative;
	overflow: hidden;
}
.case-list li a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative
}
.case-list li a:before {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(0, 0, 0, 0)), to(#d0a75a));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 20%, #d0a75a 100%);
background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 20%, #d0a75a 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #d0a75a 100%);
	z-index: 99;
	content: '';
	opacity: 0;
	filter: alpha(opacity=0);
	transition: 0.5s
}
.case-list li .img {
	width: 100%;
	height: 100%
}
.case-list li .p-logo {
	max-width: 55%;
	opacity: 0;
	filter: alpha(opacity=0);
	z-index: 9999;
	transition: 0.7s;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-40%, -50%);
	transform: translate(-40%, -50%)
}
.case-list li:hover a:before {
	opacity: 1;
	filter: alpha(opacity=100)
}
.case-list li:hover .p-logo {
	opacity: 1;
	filter: alpha(opacity=100);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}
.case-list {
	padding-bottom: 0
}
.case-list li {
	overflow: hidden;
	position: relative
}
.case-list li:hover .item a::before {
	opacity: 0
}
.case-list li:hover .item a::before {
	opacity: 1
}
.case-list .item {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}
.case-list .item.active {
	z-index: 99
}
.case-list a {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}
.row-a3 .g-t1 {
	padding-top: 0;
}
.m-tab1 {
	text-align: center;
	margin: 25px 0 48px;
	position: relative;
}
.m-tab1 li {
	display: inline-block;
	font-size: 0;
	margin: 0 8px;
}
.m-tab1 li span {
	display: block;
	height: 40px;
	padding: 0 29px;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	color: #000;
	cursor: pointer;
	border-radius: 40px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.case-list {
	position: relative;
}
.case-list .more, .tab-show2 .more {
	position: absolute;
	right: 60px;
	padding-left: 30px;
	height: 40px;
	line-height: 40px;
	top: -87px;
	font-size: 16px;
	color: #000;
	overflow: hidden;
	background: url(../images/i-more1.png) no-repeat left center;
}
.tab-show2 {
	position: relative;
}
.m-tab1 li a::before {
	position: absolute;
	top: 0;
	left: 30px;
	height: 40px;
	overflow: hidden;
	max-width: 0;
	color: #d0a75a;
	text-align: left;
	content: attr(data-hover);
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	transition: 0.8s;
}
.m-tab1 li a::after {
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	overflow: hidden;
	max-width: 0;
	width: 40px;
	content: '';
	background: url(../images/i-more1-on.png) no-repeat left center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.m-tab1 li a:hover::before, .m-tab1 li a:hover::after {
	max-width: 100%;
}
.m-tab1 li span:hover, .m-tab1 li.on span {
	color: #fff;
	background-color: #d0a75a;
}
.m-tab1 li.on .more {
	display: block;
}
.row-a4 {
	padding: 10px 0 65px;
}
.m-news {
	max-width: 1505px;
	margin: 0 auto;
	padding-top: 23px;
}
.m-news .col-l {
	width: 33.33%;
	padding: 0 16px;
}
.m-news .col-r {
	width: 66.66%;
}
.m-news .col-r .item {
	width: 50%;
	float: left;
}
.m-news .new {
	margin: 0 32px 58px 0;
}
.m-news .new .con {
	padding-top: 90%;
	display: block;
	height: 0;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.m-news .new .pic {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.m-news .new .pic img {
	width: 100%;
	height: 100%;
	display: block;
}
.m-news .new .txt {
	position: absolute;
	bottom: 0;
	left: 18px;
	right: 18px;
	background-color: #fff;
	color: #333;
	padding: 25px 32px 0;
	z-index: 2;
}
.m-news .new .txt h4 {
	font-size: 1.305vw;
	font-weight: normal;
	margin-bottom: 15px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-news .new .txt p {
	font-size: 16px;
	margin-bottom: 20px;
	line-height: 25px;
	height: 50px;
	overflow: hidden;
}
.m-news .new .txt .date {
	font-size: 18px;
	color: #666
}
.m-news .new .con:hover .txt h4 {
	color: #d0a75a;
}
.m-news .item {
	padding: 0 16px;
	margin-top: -40px;
}
.m-news .item a {
	padding: 39px 32px 55px;
	display: block;
	background-color: #fff;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-news .item .txt {
	border-top: 1px solid #000;
	padding-top: 22px;
	position: relative;
}
.m-news .item h4 {
	font-size: 1.305vw;
	font-weight: normal;
	margin-bottom: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-news .item p {
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 20px;
	color: #333;
	line-height: 25px;
	height: 50px;
	overflow: hidden;
}
.m-news .item .date {
	font-size: 18px;
	color: #666
}
.m-news .item .txt:after {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	height: 1px;
	width: 0;
	background-color: #d0a75a;
	transition: 1s;
	-ms-transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	-o-transition: 1s;
}
.m-news .item:hover .txt:after {
	width: 100%;
}
.m-news .item:hover a {
	box-shadow: 0px 16px 43px rgba(7,18,101,.13);
	position: relative;
	z-index: 2;
}
.m-news .col-l .item {
	padding: 0;
	margin-left: -32px;
}
.row-a5 {
	overflow: hidden;
	padding-bottom: 135px;
	background-position: center center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-a5 .cont {
	max-width: 1505px;
	margin: 0 auto;
}
.right-map {
	float: right;
	width: 679px;
	height: 306px;
	position: relative;
	margin-right: -40px;
	margin-top: 140px;
	background: url(../images/bgq1.png) center center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.right-map .point-area {
	text-align: center;
	position: absolute;
	width: 80px;
	height: 80px;
	transition: opacity .5s ease-out
}
.right-map .point-area:before {
	position: absolute;
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	display: inline-block;
	margin-left: -5px;
	margin-top: -5px;
	top: 50%;
	left: 50%
}
.right-map .point-area .txt {
	width: 60px;
	position: absolute;
	left: 50px;
	top: 40%;
	color: #fff
}
.right-map .point {
	position: absolute;
	width: 100%;
	height: 100%
}
.right-map .point:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	border: 1px solid #fff;
	opacity: 0
}
.right-map .point.point-10:after {
	animation: 4.5s ease-out 225ms infinite ripple
}
.right-map .point.point-40:after {
	animation: 4.5s ease-out .9s infinite ripple
}
.right-map .point.point-80:after {
	animation: 4.5s ease-out 1.8s infinite ripple
}
.right-map .point.point-shadow:after {
	box-shadow: inset 0 0 5em rgba(255,255,255,.16)
}
@keyframes ripple {
0% {
opacity:0;
transform:scale(.1)
}
5% {
opacity:1
}
to {
opacity:0;
transform:scale(1)
}
}
@-moz-keyframes ripple {
0% {
opacity:0;
transform:scale(.1)
}
5% {
opacity:1
}
to {
opacity:0;
transform:scale(1)
}
}
@-ms-keyframes ripple {
0% {
opacity:0;
transform:scale(.1)
}
5% {
opacity:1
}
to {
opacity:0;
transform:scale(1)
}
}
@-webkit-keyframes ripple {
0% {
opacity:0;
transform:scale(.1)
}
5% {
opacity:1
}
to {
opacity:0;
transform:scale(1)
}
}
@-o-keyframes ripple {
0% {
opacity:0;
transform:scale(.1)
}
5% {
opacity:1
}
to {
opacity:0;
transform:scale(1)
}
}
.m-you {
	float: left;
	width: 705px;
	color: #fff;
	padding-top: 122px;
}
.m-you h3 {
	font-size: 2.72vw;
	font-weight: normal;
	position: relative;
	padding-bottom: 24px;
	margin-bottom: 33px;
}
.m-you h3 a {
	color: #fff;
}
.m-you h3:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 60px;
	background-color: #fff;
}
.m-you .txt {
	line-height: 28px;
	font-size: 16px;
}
.m-you .txt p {
	margin-bottom: 20px;
}
.ul-num {
	clear: both;
	margin: 0 -50px 0 -95px;
	padding-top: 60px;
}
.ul-num li {
	float: left;
	width: 25%;
	color: #fff;
}
.ul-num span {
	font-size: 6.5288vw;
	font-family: 'gabo';
	position: relative;
	line-height: 1;
	margin-bottom: 5px;
}
.ul-num span:after {
	content: '+';
	vertical-align: top;
	position: relative;
	top: 5px;
	font-size: 2.176vw;
	font-family: arial;
	margin-left: 10px;
}
.ul-num p {
	font-size: 18px;
}
.ul-num .txt {
	overflow: hidden;
}
.ul-num i {
	width: 80px;
	height: 80px;
	float: left;
	margin-right: 15px;
	background-position: center center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	-webkit-transition: all 2s;
	-moz-transition: all 2s;
	-ms-transition: all 2s;
	-o-transition: all 2s;
	transition: all 2s;
}
.ul-num .i1 i {
	background-image: url(../images/i-c1.png);
}
.ul-num .i2 i {
	background-image: url(../images/i-c2.png);
}
.ul-num .i3 i {
	background-image: url(../images/i-c3.png);
}
.ul-num .i4 i {
	background-image: url(../images/i-c4.png);
}
.ul-num :hover i {
	-webkit-transform: rotateZ(180deg);
	-moz-transform: rotateZ(180deg);
	-ms-transform: rotateZ(180deg);
	-o-transform: rotateZ(180deg);
	transform: rotateZ(180deg);
}
.footer {
	background-color: #fff;
}
.fd-top {
	overflow: hidden;
	padding: 70px 0 65px;
}
.footer .wp {
	max-width: 1505px;
}
.fd-nav {
	float: left;
}
.fd-nav dl {
	float: left;
	margin-right: 80px;
}
.fd-nav dt {
	color: #000;
	font-size: 1.4145vw;
	margin-bottom: 18px;
}
.fd-nav dd {
	line-height: 36px;
}
.fd-nav dd a {
	display: block;
	font-size: 18px;
}
.fd-about {
	float: right;
	width: 380px;
}
.fd-about .tit {
	margin-bottom: 18px;
}
.fd-about .tit h3 {
	display: inline-block;
	color: #000;
	font-size: 1.4145vw;
	font-weight: normal;
}
.fd-about .tit .qr {
	display: inline-block;
	width: 20px;
	height: 20px;
	position: relative;
	margin-left: 8px;
}
.fd-about .tit span {
	width: 20px;
	height: 20px;
	display: block;
	cursor: pointer;
	background: url(../images/i-qr.png) no-repeat center center;
}
.fd-about .qr .pic {
	position: absolute;
	top: 35px;
	left: 50%;
	width: 172px;
	background-color: #fff;
	border: 1px solid #dedede;
	text-align: center;
	opacity: 0;
	z-index: -1;
	padding: 5px 0;
	box-shadow: 0px 0px 34px rgba(72,72,72,.2);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.fd-about .qr .pic img {
	width: 148px;
	display: block;
	margin: 0 auto;
}
.fd-about .qr:hover .pic {
	opacity: 1;
	z-index: 1;
}
.fd-about .qr p {
	font-size: 13px;
	color: #000;
}
.fd-about .txt {
	font-size: 16px;
	line-height: 30px;
}
.fd-tel {
	overflow: hidden;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 33px 0 30px;
}
.fd-tel ul {
	max-width: 1505px;
	margin: 0 auto;
}
.fd-tel li {
	width: 50%;
	float: left;
}
.fd-tel .tit {
	float: left;
	height: 80px;
	padding-left: 90px;
	padding-right: 40px;
	font-size: 1.5233vw;
	line-height: 80px;
	border-right: 1px solid #ccc;
	background-position: left center;
	background-repeat: no-repeat;
}
.fd-tel .con {
	overflow: hidden;
	padding-top: 2px;
	padding-left: 33px;
}
.fd-tel .con span {
	font-size: 2.28vw;
	font-family: 'gabo';
	color: #000;
	line-height: 1;
	display: block;
	margin-bottom: 6px;
}
.fd-tel .con p {
	font-size: 16px;
}
.fd-link {
	padding: 33px 0 18px;
}
.fd-link dl {
	overflow: hidden;
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 15px;
}
.fd-link dt {
	float: left;
}
.fd-link dd {
	overflow: hidden;
}
.fd-link dd .tempWrap {
	width: 100% !important;
}
.fd-link dd li {
	float: left;
	width: auto !important;
}
.fd-link dd a {
	display: inline-block;
	margin-right: 5px;
}
.fd-copr {
	background-color: #1a1a1a;
	font-size: 16px;
	color: #fff;
	position: relative;
	z-index: 2;
	/*overflow: hidden;*/padding: 19px 0;
*zoom:1;
}
.fd-copr:after, .fd-copr:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.fd-copr a {
	color: #fff;
}
.fd-copr .c-btn:hover {
	text-decoration: underline;
}
.fd-copr .c-btn {
	display: inline-block;
	vertical-align: middle;
	padding-left: 28px;
	margin-left: 15px;
	position: relative;
	background: url(../images/i-cheng.png) no-repeat left center;
}
.fd-copr .c-qr {
	position: absolute;
	left: 50%;
	bottom: 100%;
	width: 172px;
	display: none;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.fd-copr .c-qr img {
	width: 100%;
	display: block;
}
.fd-copr .c-btn:hover .c-qr {
	display: block;
}
.fix-right {
	z-index: 101;
	right: 10px;
	position: fixed;
	top: 50%;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%)
}
.fix-right li {
	margin-bottom: 1px;
	height: 58px;
	width: 58px;
	transition: 0.5s;
	position: relative
}
.fix-right .txt {
	position: absolute;
	right: 0;
	height: 58px;
	overflow: hidden;
	transition: 0.5s;
	width: 58px;
	line-height: 58px;
	font-size: 16px;
	color: #ffffff;
	padding-right: 58px;
	text-align: center;
	background: rgba(208,167,90,0.8);
	border-radius: 5px
}
.fix-right .ico {
	transition: 0.5s;
	position: absolute;
	right: 0;
	top: 0;
	display: inline-block;
	height: 58px;
	width: 58px;
	border-radius: 5px;
	background-color: #d0a75a;
	background-repeat: no-repeat;
	background-position: center center;
}
.fix-right .ico-phone {
	/*background-position:0 -70px*/
	background-image: url(../images/i-fix1.png);
}
.fix-right .ico-zx {
	background-image: url(../images/i-fix2.png);
}
.fix-right .ico-top {
	background-image: url(../images/i-fix3.png);
}
.fix-right li:hover .txt {
	width: 190px
}
.fix-right li:hover .ico {
	background-color: #d0a75a
}
.pop-seek {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1026;
	display: none;
}
.pop-seek .bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,.3);
}
.pop-seek .inner {
	width: 690px;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #d0a75a;
	padding: 24px 30px;
	color: #fff;
	border-radius: 5px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.pop-seek h4 {
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 35px;
}
.pop-seek .tel {
	font-size: 22px;
	overflow: hidden;
	margin-bottom: 15px;
}
.pop-seek .tel p {
	width: 50%;
	float: left;
}
.pop-seek .tel span {
	font-size: 2.176vw;
	font-family: 'gabo';
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;
	margin-left: 8px;
}
.pop-seek .tel .p2 {
	text-align: right;
}
.pop-seek .inp {
	overflow: hidden;
	position: relative;
	margin-bottom: 7px;
}
.pop-seek .inp input {
	width: 100%;
	display: block;
	height: 52px;
	border: 0;
	font-size: 18px;
	color: #000;
	padding: 0 150px 0 19px;
}
.pop-seek .inp button {
	width: 130px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	background: #c1984c;
	cursor: pointer;
	font-size: 20px;
	color: #fff;
	border: 0;
}
.pop-seek .inp button:hover, .pop-seek .btn:hover {
	background-color: #c1984c;
}
.pop-seek .tips {
	padding-left: 19px;
	font-size: 14px;
	color: #fff;
	margin-bottom: 37px;
	background: url(../images/i-07.png) no-repeat left center;
}
.pop-seek .btn {
	display: block;
	height: 52px;
	text-align: center;
	line-height: 50px;
	font-size: 20px;
	color: #fff;
	border-left: 2px solid #d0a75a;
	background-color: #c1984c;
}
.pop-seek .btn i {
	width: 24px;
	height: 24px;
	display: inline-block;
	vertical-align: middle;
	background: url(../images/ico-qq.png) no-repeat center center;
	position: relative;
	top: -2px;
	margin-right: 8px;
}
.pop-seek .wx {
	font-size: 0;
	line-height: 52px;
	text-align: center;
}
.pop-seek .wx span {
	float: left;
	font-size: 22px;
	padding-left: 34px;
	margin-right: 7px;
	background: url(../images/ico-qr1.png) no-repeat left center;
}
.pop-seek .qr {
	float: left;
	font-size: 18px;
	position: relative;
	cursor: pointer;
	margin-right: 10px;
}
.pop-seek .qr em {
	display: block;
	padding-left: 23px;
	background: url(../images/ico-qr2.png) no-repeat left center;
}
.pop-seek .qr .pic {
	width: 117px;
	height: 118px;
	position: absolute;
	bottom: 52px;
	left: 0%;
	display: none;
	background-color: #fff;
	box-shadow: 0px 16px 43px rgba(7,18,101,.3);
}
.pop-seek .qr .img {
	display: block;
	width: 100%;
	height: 100%;
}
.pop-seek .qr1 {
	margin-right: 20px;
}
.pop-seek .close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 22px;
	right: 28px;
	cursor: pointer;
	transition: 0.5s;
	background: url(../images/i-close.png) no-repeat center center;
}
.pop-seek .close:hover {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.pop-seek .bot {
	height: 52px;
	background-color: #c1984c;
}
.pop-seek .wx {
	width: 440px;
	float: left;
}
.pop-seek .btn {
	overflow: hidden;
}
.mo-btn {
	height: 40px;
	line-height: 40px;
	width: 220px;
	display: none;
	margin: 0 auto;
	border-radius: 40px;
	font-size: 15px;
	color: #fff;
	background-color: #d0a75a;
	text-align: center;
}
/*******************************
	-------[=军事专题]-------
********************************/
.row-special-1, .row-special-2, .row-special-3, .row-special-4 {
	background-color: #006352;
	position: relative;
	background-position: center top;
	background-repeat: no-repeat;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.row-special-2 {
	background-color: #061d4f;
}
.row-special-3 {
	background-color: #0b1f51;
	position: relative;
}
.row-special-4 {
	background-color: #f9f9f9;
	position: relative;
}
.m-t1 {
	text-align: center;
	max-width: 1200px;
	width: 75%;
	margin: 0 auto;
	color: #fff;
	margin-top: 22.9vh;
	position: relative;
	z-index: 2;
}
.m-t1 h3 {
	font-size: 80px;
	font-weight: normal;
	position: relative;
	padding-bottom: 38px;
	margin-bottom: 50px;
}
.m-t1 h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 136px;
	height: 1px;
	margin-left: -68px;
	background-color: #fff;
}
.m-t1 p {
	font-size: 24px;
	line-height: 1.67;
}
.m-t1-1 {
	margin-top: 26.3vh;
}
.m-t1-1 p {
	font-size: 18px;
	line-height: 1.67;
	color: #f2f5f6;
	margin-bottom: 100px;
}
.m-t1-1 h3 {
	padding-bottom: 0;
	margin-bottom: 20px;
}
.m-t1-1 h3:after {
	display: none;
}
.m-t1-1 span {
	height: 60px;
	line-height: 60px;
	display: inline-block;
	padding: 0 58px;
	font-size: 22px;
	color: #fff;
	background-color: #0b1f51;
	border-radius: 60px;
}
.m-t2 {
	text-align: center;
	max-width: 1200px;
	width: 75%;
	margin: 0 auto;
	color: #fff;
	margin-top: 31vh;
	position: relative;
	z-index: 2;
}
.m-t2 h3 {
	font-size: 66px;
	font-weight: normal;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.m-t2 h3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 136px;
	height: 1px;
	margin-left: -68px;
	background-color: #fff;
}
.m-t2 p {
	font-size: 18px;
	line-height: 1.67;
	color: #f2f5f6;
}
.g-btn-down {
	display: block;
	width: 30px;
	height: 35px;
	margin: 130px auto 80px;
	position: relative;
	z-index: 2;
	background: url(../images/i-down.png) no-repeat center center;
}
.btn-down-2 {
	position: relative;
	margin: 130px auto 80px !important;
	z-index: 2;
	right: auto !important;
	bottom: auto !important;
}
.btn-down-3 {
	position: relative;
	margin: 320px auto 80px !important;
	z-index: 2;
	right: auto !important;
	bottom: auto !important;
}
.row-b1 {
	position: relative;
}
.row-b1:after {
	content: '';
	position: absolute;
	left: 94px;
	right: 0;
	top: -172px;
	height: 333px;
	background: url(../images/i-t1.png) no-repeat center top;
}
.m-inter {
	background-color: #fff;
	border-radius: 3px;
	padding-bottom: 77px;
	box-shadow: 0px 16px 43px rgba(7,18,101,.3);
	position: relative;
	z-index: 1;
}
.m-inter .pic {
	width: 343px;
	height: 453px;
	float: left;
	padding: 40px;
	border-radius: 3px;
	margin: -98px 89px 0;
	margin-top: -98px;
	background-color: #fff;
	box-shadow: 0px 16px 43px rgba(7,18,101,.3);
}
.m-inter .con {
	overflow: hidden;
}
.m-inter .tit {
	padding-top: 69px;
	margin-bottom: 9px;
}
.m-inter .tit em {
	font-size: 20px;
	font-family: arial;
	text-transform: uppercase;
	color: #000;
	display: block;
	margin-bottom: -2px;
}
.m-inter .tit h3 {
	font-size: 60px;
	color: #006352;
	font-weight: normal;
}
.m-list3 {
	overflow: hidden;
	margin-bottom: 28px;
}
.m-list3 li {
	float: left;
}
.m-list3 li a {
	display: block;
	font-size: 22px;
	color: #000;
	padding-left: 32px;
	line-height: 56px;
	height: 56px;
	overflow: hidden;
	background: url(../images/i-d1.png) no-repeat 4px center;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.m-list3 li a:hover {
	color: #006352;
}
.m-list3 li:nth-child(1) {
	width: 31%;
}
.m-list3 li:nth-child(2) {
	width: 38%;
}
.m-list3 li:nth-child(3) {
	width: 31%;
}
.g-btn1 {
	width: 207px;
	height: 53px;
	display: block;
	line-height: 53px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	border-radius: 3px;
	background-color: #006352;
}
.g-t2 {
	text-align: center;
	color: #fff;
}
.g-t2 h3 {
	font-size: 66px;
	font-weight: normal;
}
.g-t2 p {
	font-size: 18px;
	margin-top: 15px;
}
.g-t2-1 {
	margin-bottom: 30px;
}
.g-t2-1 h3 {
	position: relative;
	padding-bottom: 30px;
}
.g-t2-1 h3:after {
	content: '';
	width: 40px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -20px;
	background-color: #fff;
}
.g-t2-2 h3 {
	color: #000;
}
.g-t2-2 p {
	color: rgba(0,0,0,.8);
}
.row-b2 {
	padding-top: 118px;
	position: relative;
	z-index: 1;
}
.row-b2:after {
	content: '';
	position: absolute;
	left: 94px;
	right: 0;
	top: 65px;
	height: 361px;
	background: url(../images/i-t2.png) no-repeat center top;
	z-index: -1;
}
.m-list4 {
*zoom:1;
	margin: 65px -30px 0;
}
.m-list4:after, .m-list4:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.m-list4 li {
	width: 33.33%;
	float: left;
}
.m-list4 .con {
	margin: 0 30px 54px;
	overflow: hidden;
	padding: 43px 45px 30px 33px;
	position: relative;
	top: 0;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 10px 40px 30px rgba(7,18,101,.07);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list4 .icon {
	width: 69px;
	height: 69px;
	float: left;
	border-radius: 50%;
	background-position: center center;
	background-repeat: no-repeat;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.m-list4 .icon1 {
	background-image: url(../images/i-e1.png);
}
.m-list4 .icon2 {
	background-image: url(../images/i-e2.png);
}
.m-list4 .icon3 {
	background-image: url(../images/i-e3.png);
}
.m-list4 .icon4 {
	background-image: url(../images/i-e4.png);
}
.m-list4 .icon5 {
	background-image: url(../images/i-e5.png);
}
.m-list4 .icon6 {
	background-image: url(../images/i-e6.png);
}
.m-list4 .txt {
	overflow: hidden;
	font-size: 18px;
	color: #000;
	padding-left: 26px;
	text-align: justify;
	line-height: 1.83;
	height: 11em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
}
.m-list4 .con:hover {
	top: -10px;
	box-shadow: 10px 40px 30px rgba(7,18,101,.3);
}
.row-b3 {
	padding-top: 82px;
	position: relative;
	z-index: 1;
}
.row-b3:after {
	content: '';
	position: absolute;
	left: 94px;
	right: 0;
	top: 25px;
	height: 361px;
	background: url(../images/i-t3.png) no-repeat center top;
	z-index: -1;
}
.row-b3 .g-t2 {
	margin-bottom: 5px;
}
.g-btn2 {
	padding-left: 30px;
	height: 30px;
	line-height: 30px;
	float: right;
	margin-right: 43px;
	font-size: 16px;
	color: #fff;
	margin-bottom: 20px;
	background: url(../images/i-more2.png) no-repeat left center;
	position: relative;
	z-index: 2;
}
.g-seek {
	padding: 41px 10px 45px;
	overflow: hidden;
	background-color: #d0a75a;
	box-shadow: 0px 2px 27px rgba(0,0,0,.2);
}
.g-seek .con {
	max-width: 678px;
	margin: 0 auto;
	padding-left: 57px;
	background: url(../images/i-tel.png) no-repeat left center;
}
.g-seek .inp {
	height: 41px;
	width: 300px;
	font-size: 20px;
	color: #fff;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,.67);
	background: 0;
}
.g-seek .inp::-webkit-input-placeholder {
color: rgba(255,255,255,.67);
}
.g-seek .inp::-moz-placeholder {
color: rgba(255,255,255,.67);
}
.g-seek .inp::-ms-input-placeholder {
color: rgba(255,255,255,.67);
}
.g-seek .btn {
	width: 264px;
	height: 54px;
	line-height: 54px;
	text-align: center;
	font-size: 20px;
	color: #d0a75a;
	border: 0;
	cursor: pointer;
	border-radius: 54px;
	position: relative;
	background-color: #fff;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.g-seek .btn i {
	width: 25px;
	height: 25px;
	margin-right: 25px;
	display: inline-block;
	vertical-align: middle;
	background: url(../images/i-09.png) no-repeat center center;
}
.g-seek .btn:after {
	content: '';
	width: 272px;
	height: 62px;
	position: absolute;
	top: -4px;
	left: -4px;
	background-color: rgba(255,255,255,.25);
	border-radius: 62px;
}
.g-seek .btn:hover {
	opacity: .9;
}
.row-c3 {
	padding-top: 118px;
	position: relative;
	z-index: 1;
}
.row-c3:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0;
	top: 65px;
	height: 361px;
	background: url(../images/i-t4.png) no-repeat center top;
	z-index: -1;
}
.row-c1 {
	margin-bottom: 145px;
}
.m-list5 {
	overflow: hidden;
	text-align: center;
	font-size: 0;
}
.m-list5 li {
	width: 287px;
	display: inline-block;
	margin: 0 24px;
}
.m-list5 .con {
	display: block;
	overflow: hidden;
	padding: 13px 13px 85px;
	border-radius: 287px;
	box-shadow: 0px 36px 79px rgba(0,0,0,.06);
}
.m-list5 .i1 .con {
	background-color: #1b97a2;
}
.m-list5 .i2 .con {
	background-color: #004c92;
}
.m-list5 .i3 .con {
	background-color: #3e3879;
}
.m-list5 .pic {
	padding-top: 100%;
	position: relative;
	height: 0;
	overflow: hidden;
	border-radius: 50%;
	margin-bottom: 30px;
}
.m-list5 .pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.m-list5 .tit {
	text-align: center;
	color: #fff;
	margin-bottom: 31px;
}
.m-list5 .tit h4 {
	font-size: 30px;
	margin-bottom: 3px;
}
.m-list5 .tit p {
	font-size: 16px;
	font-family: arial;
}
.m-list5 .icon {
	display: block;
	height: 90px;
	background-position: center;
	background-repeat: no-repeat;
}
.m-list5 .i1 .icon {
	background-image: url(../images/i-f1.png);
}
.m-list5 .i2 .icon {
	background-image: url(../images/i-f2.png);
}
.m-list5 .i3 .icon {
	background-image: url(../images/i-f3.png);
}
.m-list6 {
	position: relative;
	height: 877px;
}
.m-list6 li {
	width: 231px;
	position: absolute;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.m-list6 .i1 {
	left: 12%;
	top: 4%;
	z-index: 4;
}
.m-list6 .i2 {
	left: 42%;
	top: 0;
}
.m-list6 .i3 {
	right: 24%;
	top: 16%;
	z-index: 4;
}
.m-list6 .i4 {
	right: 0;
	top: 11%;
}
.m-list6 .i5 {
	left: 0;
	top: 30%;
	z-index: 3;
}
.m-list6 .i6 {
	left: 27%;
	top: 24%;
	z-index: 3;
}
.m-list6 .i7 {
	left: 14%;
	top: 49%;
}
.m-list6 .i8 {
	left: 43%;
	top: 43%;
	z-index: 3;
}
.m-list6 .i9 {
	right: 9%;
	top: 36%;
	z-index: 5;
}
.m-list6 .i10 {
	left: 29%;
	bottom: 0;
	z-index: 5;
}
.m-list6 .i11 {
	right: 22%;
	bottom: 8%;
}
.m-list6 li .con {
	padding: 50px 0 60px;
}
.m-list6 .i1 .con {
	background-color: #22becc;
}
.m-list6 .i2 .con {
	background-color: #094171;
}
.m-list6 .i3 .con {
	background-color: #63a1d6;
}
.m-list6 .i4 .con {
	background-color: #094171;
}
.m-list6 .i5 .con {
	background-color: #3593c0;
}
.m-list6 .i6 .con {
	background-color: #63a1d6;
}
.m-list6 .i7 .con {
	background-color: #094171;
}
.m-list6 .i8 .con {
	background-color: #2e5ead;
}
.m-list6 .i9 .con {
	background-color: #22becc;
}
.m-list6 .i10 .con {
	background-color: #22becc;
}
.m-list6 .i11 .con {
	background-color: #094171;
}
.m-list6 li .icon {
	display: block;
	height: 100px;
	background-position: center;
	background-repeat: no-repeat;
}
.m-list6 li .icon1 {
	background-image: url(../images/i-g1.png);
}
.m-list6 li .icon2 {
	background-image: url(../images/i-g2.png);
}
.m-list6 li .icon3 {
	background-image: url(../images/i-g3.png);
}
.m-list6 li .icon4 {
	background-image: url(../images/i-g4.png);
}
.m-list6 li .icon5 {
	background-image: url(../images/i-g5.png);
}
.m-list6 li .icon6 {
	background-image: url(../images/i-g6.png);
}
.m-list6 li .icon7 {
	background-image: url(../images/i-g7.png);
}
.m-list6 li .icon8 {
	background-image: url(../images/i-g8.png);
}
.m-list6 li .icon9 {
	background-image: url(../images/i-g9.png);
}
.m-list6 li .icon10 {
	background-image: url(../images/i-g10.png);
}
.m-list6 li .icon11 {
	background-image: url(../images/i-g11.png);
}
.m-list6 li h4 {
	font-size: 28px;
	color: #fff;
	font-weight: normal;
	margin: 0 auto;
	text-align: center;
	width: 4em;
	line-height: 1.29;
	height: 2.58em;
}
.m-list6 .i11 h4 {
	width: 5em;
}
.row-special-3 .btn-down-3 {
	margin: 190px auto 100px !important;
}
.row-special-3 .g-t2 p {
	color: rgba(242,245,246,.8);
}
.m-list7 {
	text-align: center;
	font-size: 0;
	margin-top: 35px;
}
.m-list7 li {
	width: 114px;
	display: inline-block;
	margin: 0 23px;
}
.m-list7 .tit {
	text-align: center;
	position: relative;
	height: 490px;
	margin-bottom: 20px;
}
.m-list7 .tit h4 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-bottom: 45px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list7 .i1 .tit h4 {
	height: 82%;
	background-color: #4f8aa7;
}
.m-list7 .i2 .tit h4 {
	height: 64%;
	background-color: #22becc;
}
.m-list7 .i3 .tit h4 {
	height: 75%;
	background-color: #344361;
}
.m-list7 .i4 .tit h4 {
	height: 100%;
	background-color: #43b7ef;
}
.m-list7 .i5 .tit h4 {
	height: 80%;
	background-color: #15848b;
}
.m-list7 .i6 .tit h4 {
	height: 73%;
	background-color: #5e8bd5;
}
.m-list7 .i7 .tit h4 {
	height: 55%;
	background-color: #005393;
}
.m-list7 .i8 .tit h4 {
	height: 73%;
	background-color: #3b2e81;
}
.m-list7 .i1 .tit:hover h4 {
	height: 92%;
}
.m-list7 .i2 .tit:hover h4 {
	height: 74%;
}
.m-list7 .i3 .tit:hover h4 {
	height: 85%;
}
.m-list7 .i4 .tit:hover h4 {
	height: 105%;
}
.m-list7 .i5 .tit:hover h4 {
	height: 90%;
}
.m-list7 .i6 .tit:hover h4 {
	height: 83%;
}
.m-list7 .i7 .tit:hover h4 {
	height: 65%;
}
.m-list7 .i8 .tit:hover h4 {
	height: 83%;
}
.m-list7 .tit span {
	font-size: 32px;
	color: #fff;
	letter-spacing: 3px;
	writing-mode: tb-rl;
	font-weight: normal;
	position: absolute;
	bottom: 45px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list7 li .tit:hover span {
	bottom: 80px;
}
.m-list7 em {
	font-size: 28px;
	color: #fff;
	font-family: arial;
}
.m-list8 {
	overflow: hidden;
	margin: 50px -22px 0;
}
.m-list8 li {
	width: 25%;
	float: left;
}
.m-list8 .con {
	margin: 0 22px;
	padding: 35px 0 28px;
	position: relative;
	background-color: #fff;
	overflow: hidden;
	height: 419px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.m-list8 .con:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 17px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.m-list8 .i1 .con:after {
	background-image: url(../images/i-af1.png);
}
.m-list8 .i2 .con:after {
	background-image: url(../images/i-af2.png);
}
.m-list8 .i3 .con:after {
	background-image: url(../images/i-af3.png);
}
.m-list8 .i4 .con:after {
	background-image: url(../images/i-af4.png);
}
.m-list8 li p {
	height: 89px;
	line-height: 88px;
	text-align: center;
	font-size: 24px;
	border-bottom: 1px solid #e3e3e3;
	color: #000;
}
.m-list8 li p:last-child {
	border-bottom: 0;
}
.m-txt1 {
*zoom:1;
	padding-top: 33px;
	position: relative;
}
.m-txt1:after, .m-txt1:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.m-txt1 .pic {
	float: left;
	width: 398px;
	margin-left: 79px;
	margin-right: 66px;
	position: relative;
	z-index: 1;
	box-shadow: 0px 14px 40px rgba(4,0,0,.35);
}
.m-txt1 .pic:before {
	content: '';
	width: 103px;
	height: 103px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: url(../images/i-10.png) no-repeat center center;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.m-txt1 .pic:after {
	content: '';
	width: 26px;
	height: 238px;
	position: absolute;
	top: 100%;
	left: 125px;
	background: url(../images/i-11.png) no-repeat center center;
}
.m-txt1 .pic img {
	display: block;
	width: 100%;
}
.m-txt1 .con {
	padding: 60px 90px 55px 545px;
	font-size: 18px;
	line-height: 37px;
	background-color: #f7f7f7;
	color: #000;
	text-align: justify;
}
.m-txt1 .con b {
	font-size: 63px;
	font-weight: normal;
	float: left;
	line-height: 64px;
	padding-right: 18px;
}
.m-txt1 .con strong {
	font-size: 20px;
	display: block;
	letter-spacing: .5px;
}
.m-txt1 .con p {
	margin-bottom: 30px;
}
.m-txt1 h4 {
	overflow: hidden;
	font-size: 36px;
	font-weight: normal;
	color: #fff;
	padding-left: 22px;
	margin: 49px 0 57px;
	padding-top: 45px;
	background: url(../images/i-p.png) no-repeat left top;
}
.m-txt1 .l-img {
	position: absolute;
	left: -45px;
	bottom: -10px;
	width: 10%;
}
.row-d2 .r-img {
	position: absolute;
	right: 10px;
	top: 58%;
}
.row-d1 {
	background-color: #0b1f51;
	padding-top: 30px;
}
.row-d2 {
	background-color: #0b1f51;
	padding-top: 168px;
	margin-bottom: 172px;
	position: relative;
}
.row-d3 {
	margin-bottom: 190px;
}
.ban {
	position: relative;
	padding-top: 48%;
	height: 0;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.ban .wp3 {
	position: absolute;
	top: 0;
	left: 50%;
	bottom: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.ban .warp {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
}
.ban .m-t2 {
	position: absolute;
	left: 0;
	top: 20%;
	right: 0;
	width: auto;
	max-width: none;
	margin: 0;
}
.b-pic {
	position: absolute;
	right: -45px;
	bottom: -320px;
	width: 81%;
}
.g-t3 {
}
.g-t3 h3 {
	font-size: 66px;
	font-weight: normal;
	color: #000;
	margin-top: -136px;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 27px;
}
.g-t3 h3:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 1px;
	background-color: #000;
}
.g-t3 p {
	font-size: 18px;
	color: #666;
	line-height: 30px;
}
.g-t3 em {
	font-family: 'gabo';
	font-size: 175px;
	line-height: 1.15;
	color: rgba(0,0,0,.05);
}
.row-e1 {
	padding: 205px 0 363px;
	background: url(../images/p-bg1.png) no-repeat center bottom;
}
.ul-list1 {
*zoom:1;
}
.ul-list1:after, .ul-list1:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.ul-list1 li {
	width: 20%;
	float: left;
}
.ul-list1 .i1 {
	margin-top: 305px;
}
.ul-list1 .i2 {
	margin-top: 205px;
}
.ul-list1 .i3 {
	margin-top: 123px;
}
.ul-list1 .i4 {
	margin-top: 42px;
}
.ul-list1 .i5 {
	margin-top: -50px;
}
.ul-list1 .icon {
	width: 180px;
	height: 180px;
	display: block;
	border: 1px dashed #3cad6f;
	border-radius: 50%;
	margin: 0 auto 19px;
	background-position: center;
	background-repeat: no-repeat;
}
.ul-list1 .icon1 {
	background-image: url(../images/i-h1.png);
}
.ul-list1 .icon2 {
	background-image: url(../images/i-h2.png);
}
.ul-list1 .icon3 {
	background-image: url(../images/i-h3.png);
}
.ul-list1 .icon4 {
	background-image: url(../images/i-h4.png);
}
.ul-list1 .icon5 {
	background-image: url(../images/i-h5.png);
}
.ul-list1 p {
	font-size: 24px;
	color: #3cad6f;
	text-align: center;
}
.row-e2 {
	padding: 225px 0 680px;
	margin-top: -460px;
	position: relative;
	background: url(../images/p-bg2.png) no-repeat center top;
}
.row-e2 .g-t3 {
	max-width: 505px;
}
.row-e2 .g-t3 h3 {
	margin-bottom: 55px;
}
.row-e2 .g-t3 h3, .row-e2 .g-t3 p {
	color: #fff;
}
.row-e2 .g-t3 h3:after {
	background-color: #fff;
}
.row-e2 .g-t3 em {
	color: rgba(255,255,255,.05);
}
.m-pic1 {
	width: 768px;
	position: absolute;
	right: 195px;
	top: 160px;
}
.m-pic1 ul {
	position: relative;
	z-index: 2;
}
.m-pic1 .i1 img {
	width: 100%;
}
.m-pic1 .i2, .m-pic1 .i3 {
	position: absolute;
	top: 0;
	bottom: 0;
}
.m-pic1 .img {
	position: absolute;
	top: -118px;
	right: 35px;
	max-width: 292px;
}
.row-e3 {
	padding: 50px 0 335px;
	margin-top: -460px;
	background: url(../images/p-bg3.png) no-repeat center top;
}
.row-e3 .g-t3 {
	max-width: 575px;
}
.ul-list2 {
*zoom:1;
}
.ul-list2:after, .ul-list2:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.ul-list2 li {
	width: 16.666%;
	float: left;
}
.ul-list2 .i1 {
	margin-top: 350px;
}
.ul-list2 .i2 {
	margin-top: 270px;
}
.ul-list2 .i3 {
	margin-top: 190px;
}
.ul-list2 .i4 {
	margin-top: 110px;
}
.ul-list2 .i5 {
	margin-top: 30px;
}
.ul-list2 .i6 {
	margin-top: -50px;
}
.ul-list2 .icon {
	width: 170px;
	height: 170px;
	display: block;
	border: 1px dashed #000;
	border-radius: 50%;
	margin: 0 auto 22px;
	background-position: center;
	background-repeat: no-repeat;
}
.ul-list2 .icon1 {
	background-image: url(../images/i-j1.png);
}
.ul-list2 .icon2 {
	background-image: url(../images/i-j2.png);
}
.ul-list2 .icon3 {
	background-image: url(../images/i-j3.png);
}
.ul-list2 .icon4 {
	background-image: url(../images/i-j4.png);
}
.ul-list2 .icon5 {
	background-image: url(../images/i-j5.png);
}
.ul-list2 .icon6 {
	background-image: url(../images/i-j6.png);
}
.ul-list2 p {
	font-size: 24px;
	color: #000;
	text-align: center;
}
.row-e4 {
	padding: 335px 0 545px;
	margin-top: -420px;
	background: url(../images/p-bg4.png) no-repeat center top;
}
.row-e4 .g-t3 {
	float: left;
}
.row-e4 .m-pic2 {
	position: relative;
	float: right;
	max-width: 833px;
	margin-top: -65px;
}
.row-e4 .m-pic2 img {
	position: relative;
	z-index: 2;
}
.row-e4 .m-pic2 .img {
	position: absolute;
	right: -92px;
	top: -122px;
	z-index: 1;
	width: 411px;
}
.row-e4 .m-pic2 .img img {
	width: 100%;
	display: block;
}
.row-e5 {
	padding: 115px 0 545px;
	margin-top: -525px;
	position: relative;
	z-index: 1;
	background: url(../images/p-bg5.png) no-repeat center top;
}
.m-pic3 {
	float: left;
	max-width: 555px;
	margin-top: 150px;
}
.m-pic3 img {
	width: 100%;
}
.ul-list3 {
*zoom:1;
	width: 56%;
	float: right;
}
.ul-list3:after, .ul-list3:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.ul-list3 li {
	width: 33.333%;
	float: left;
}
.ul-list3 .i1 {
	margin-top: 150px;
}
.ul-list3 .i2 {
	margin-top: 65px;
}
.ul-list3 .i3 {
	margin-top: -20px;
}
.ul-list3 .icon {
	width: 170px;
	height: 170px;
	display: block;
	border: 1px dashed #fff;
	border-radius: 50%;
	margin: 0 auto 22px;
	background-position: center;
	background-repeat: no-repeat;
}
.ul-list3 .icon1 {
	background-image: url(../images/i-y1.png);
}
.ul-list3 .icon2 {
	background-image: url(../images/i-y2.png);
}
.ul-list3 .icon3 {
	background-image: url(../images/i-y3.png);
}
.ul-list3 p {
	font-size: 24px;
	color: #fff;
	text-align: center;
}
.row-e6 {
	padding: 325px 0 500px;
	margin-top: -655px;
	background: url(../images/p-bg6.png) no-repeat center top;
}
.row-e6 .g-t3 {
	max-width: 560px;
	float: left;
}
.m-pic5 {
	float: right;
	margin-top: -92px;
	max-width: 656px;
	position: relative;
}
.m-pic5 img {
	position: relative;
	z-index: 2;
}
.m-pic5 .img {
	position: absolute;
	right: -88px;
	top: -178px;
	z-index: 1;
	width: 261px;
}
.m-pic5 .img img {
	width: 100%;
	display: block;
}
.row-e7 {
	margin-top: -395px;
}
.row-e7 .g-t3 h3 {
	padding-bottom: 19px;
}
.row-e7 .g-t3 h3:after {
	width: 140px;
}
.row-e7 .g-t3 .g-btn2 {
	color: #000;
}
.row-special-3 .m-t1-1 {
	position: relative;
}
.row-special-3 .m-t1-1:after {
	content: '';
	position: absolute;
	top: 20%;
	left: 0;
	right: 0;
	height: 217px;
	background: url(../images/i-t5.png) no-repeat center center;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
/*联系我们*/
.dn {
	display: none;
}
.box1 {
	position: relative;
	left: 0;
	top: 0;
	z-index: -1;
	height: 100vh;
	overflow: hidden;
}
.box1 .city {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.box1 .city .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	-webkit-background-size: cover;
	background-size: cover;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: .7s linear;
	-moz-transition: .7s linear;
	-ms-transition: .7s linear;
	-o-transition: .7s linear;
	transition: .7s linear;
}
.box1 .city.on .bg {
	-webkit-animation: prop2 6s linear;
	-o-animation: prop2 6s linear;
	animation: prop2 6s linear;
}
.box1 .city .mo-bg {
	display: none;
}
 @-webkit-keyframes prop2 {
 0% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 50% {
 -webkit-transform: scale(1.08);
 -moz-transform: scale(1.08);
 -ms-transform: scale(1.08);
 -o-transform: scale(1.08);
 transform: scale(1.08);
}
 100% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
}
 @-o-keyframes prop2 {
 0% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 50% {
 -webkit-transform: scale(1.08);
 -moz-transform: scale(1.08);
 -ms-transform: scale(1.08);
 -o-transform: scale(1.08);
 transform: scale(1.08);
}
 100% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
}
@-moz-keyframes prop2 {
 0% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 50% {
 -webkit-transform: scale(1.08);
 -moz-transform: scale(1.08);
 -ms-transform: scale(1.08);
 -o-transform: scale(1.08);
 transform: scale(1.08);
}
 100% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
}
@-ms-keyframes prop2 {
 0% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 50% {
 -webkit-transform: scale(1.08);
 -moz-transform: scale(1.08);
 -ms-transform: scale(1.08);
 -o-transform: scale(1.08);
 transform: scale(1.08);
}
 100% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
}
@keyframes prop2 {
 0% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
 50% {
 -webkit-transform: scale(1.08);
 -moz-transform: scale(1.08);
 -ms-transform: scale(1.08);
 -o-transform: scale(1.08);
 transform: scale(1.08);
}
 100% {
 -webkit-transform: scale(1);
 -moz-transform: scale(1);
 -ms-transform: scale(1);
 -o-transform: scale(1);
 transform: scale(1);
}
}
.box1 .city.on .bg {
	opacity: 1;
	filter: alpha(opacity=100);
}
.m-zp {
	position: fixed;
	z-index: 99;
	left: -40px;
	bottom: -80px;
	width: 226px;
	border-radius: 50%;
	background: #1fae38;
	height: 187px
}
.m-zp .txt {
	padding-top: 30px;
	text-align: center;
	width: 105px;
	position: absolute;
	right: 15px;
	top: 0;
}
.m-zp .ico {
	margin: 0 auto;
	background: url("../images/img76.png") no-repeat;
	width: 27px;
	height: 32px
}
.m-zp span {
	font-size: 24px;
	color: #fff
}
.m-cont {
	font-size: 18px;
	color: #fff;
	line-height: 30px;
	position: absolute;
	top: 32%;
	left: 330px;
}
.m-cont {
	font-weight: bold;
}
.m-cont h3 {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 41px;
}
.btn-sub {
	display: block;
	width: 218px;
	height: 48px;
	background: #d0a75a;
	font-size: 16px;
	color: #fff;
	line-height: 48px;
	text-align: center;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-top: 34px;
	font-weight: normal;
}
.btn-sub:hover {
	background: #36c740;
	color: #fff;
}
.btn-sub img {
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}
.pg-list1 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 77px;
	z-index: 10;
	background: url(../images/pic5.png) left top no-repeat;
	height: 154px;
	padding-left: 300px;
	padding-right: 154px;
}
.pg-list1 li {
	width: 154px;
	height: 154px;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
	border-radius: 50%;
	/*overflow: hidden;*/
	box-shadow: 0 0 0 8px rgba(255,255,255,.15);
	position: relative;
}
.pg-list1 li:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-animation: prop 1.2s linear infinite;
	-o-animation: prop 1.2s linear infinite;
	animation: prop 1.2s linear infinite;
}
.pg-list1 li.on:after {
	display: none;
}
@-webkit-keyframes prop {
 from {
 box-shadow: 0 0 0 0 rgba(255,255,255,.4);
 opacity: 1;
 filter: alpha(opacity=10);
}
 to {
 box-shadow: 0 0 0 25px rgba(255,255,255,.4);
 opacity: 0;
 filter: alpha(opacity=0);
}
}
@-o-keyframes prop {
 from {
 box-shadow: 0 0 0 0 rgba(255,255,255,.4);
 opacity: 1;
 filter: alpha(opacity=10);
}
 to {
 box-shadow: 0 0 0 25px rgba(255,255,255,.4);
 opacity: 0;
 filter: alpha(opacity=0);
}
}
@-moz-keyframes prop {
 from {
 box-shadow: 0 0 0 0 rgba(255,255,255,.4);
 opacity: 1;
 filter: alpha(opacity=10);
}
 to {
 box-shadow: 0 0 0 25px rgba(255,255,255,.4);
 opacity: 0;
 filter: alpha(opacity=0);
}
}
@-ms-keyframes prop {
 from {
 box-shadow: 0 0 0 0 rgba(255,255,255,.4);
 opacity: 1;
 filter: alpha(opacity=10);
}
 to {
 box-shadow: 0 0 0 25px rgba(255,255,255,.4);
 opacity: 0;
 filter: alpha(opacity=0);
}
}
@keyframes prop {
 from {
 box-shadow: 0 0 0 0 rgba(255,255,255,.4);
 opacity: 1;
 filter: alpha(opacity=10);
}
 to {
 box-shadow: 0 0 0 25px rgba(255,255,255,.4);
 opacity: 0;
 filter: alpha(opacity=0);
}
}
.pg-list1 li a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	font-size: 36px;
	color: #fff;
	line-height: 154px;
	text-align: center;
	font-weight: bold;
	overflow: hidden;
	background: rgba(208,167,90,0);
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}
.pg-list1 li.on a {
	background: #d0a75a;
	background: rgba(208,167,90,.8);
}
.pg-list1 .li1 {
	float: left;
}
.pg-list1 .li2 {
	float: right;
}
.m-pop {
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.m-pop .bg {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}
.m-pop .inner {
	background: #fff;
	background: rgba(255,255,255,.96);
	width: 984px;
	position: absolute;
	left: 50%;
	top: 15%;
	margin-left: -492px;
	box-shadow: 0 0 0 8px rgba(255,255,255,.15);
	padding: 52px 75px 56px;
}
.m-pop .inner-txt {
	overflow: hidden;
	overflow-y: auto;
}
.m-pop .btn-close {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	right: -16px;
	top: -16px;
	cursor: pointer;
	background: url(../images/icon1.png) center center no-repeat;
}
.m-pop .tit {
	font-size: 18px;
	line-height: 30px;
	color: #666;
	margin-bottom: 26px;
}
.m-pop .tit h3 {
	font-size: 48px;
	line-height: 60px;
	font-weight: normal;
	color: #222;
}
.m-pop .col-l {
	float: left;
	width: 40%;
	font-size: 20px;
	color: #666;
	line-height: 30px;
}
.m-pop .col-r {
	float: right;
	width: 55%;
	font-size: 16px;
	color: #999;
	line-height: 30px;
}
.m-pop h4 {
	font-size: 22px;
	line-height: 30px;
	font-weight: normal;
	color: #333;
	margin-bottom: 15px;
}
.m-pop .col-l p {
	padding-bottom: 6px;
}
.m-pop .col-l p span {
	font-size: 12px;
}
.m-pop .pic-code {
	overflow: hidden;
	font-size: 14px;
	color: #666;
	line-height: 1;
	text-align: center;
	padding-top: 22px;
}
.m-pop .pic-code .con {
	float: left;
	width: 108px;
	margin-right: 26px;
}
.m-pop .pic-code img {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 9px;
}
.m-pop .tit p {
	margin-bottom: 6px;
	margin-top: 3px;
}
.m-pop p img {
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}
.m-pop .inp, .m-pop .sub {
	display: block;
	width: 100%;
	height: 53px;
	background: #fff;
	border: 1px solid #dcdcdc;
	padding: 0 10px;
	margin-bottom: 7px;
	font-size: 18px;
	color: #333;
	line-height: 51px;
}
.m-pop .sub {
	background: #d0a75a;
	text-align: center;
	color: #fff;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	margin-top: 17px;
}
.m-pop .sub:hover {
	background: #36c740;
}
.m-pop .col-r p {
	padding-bottom: 6px;
}
.m-pop .col-r p span {
	font-size: 12px;
	color: red;
	padding-left: 5px;
}
.m-pop .col-r h4 {
	margin-bottom: 9px;
}
.m-t3 {
	text-align: center;
	position: absolute;
	top: 30%;
	left: 0;
	right: 0;
}
.m-t3 h3 {
	font-size: 80px;
	font-weight: normal;
	color: #fff;
	margin-bottom: 32px;
}
.m-t3 span {
	display: inline-block;
	font-size: 22px;
	height: 60px;
	line-height: 60px;
	padding: 0 68px;
	border-radius: 60px;
	color: #fff;
	background-color: #0d51c1;
}
.btn-down-5 {
	right: auto;
	left: 50%;
	margin-left: -21px;
	bottom: 215px;
}
.ul-list4 {
	background-color: #fff;
	position: absolute;
	bottom: -102px;
	left: 0;
	right: 0;
	box-shadow: 0px 16px 43px rgba(7,18,101,.1);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ul-list4 .slider {
	max-width: 1600px;
	margin: 0 auto;
	width: 100%;
	padding: 30px 40px 48px;
}
.ul-list4 .con {
	display: block;
	text-align: center;
}
.ul-list4 h4 {
	font-size: 22px;
	color: #000;
	position: relative;
}
.ul-list4 .icon {
	display: block;
	height: 100px;
	position: relative;
	margin-bottom: 14px;
	background-position: center center;
	background-repeat: no-repeat;
}
.ul-list4 .icon em {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-position: center center;
	background-repeat: no-repeat;
}
.ul-list4 .icon i {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background-position: bottom center;
	background-repeat: no-repeat;
	transition: 2s;
	-ms-transition: 2s;
	-moz-transition: 2s;
	-webkit-transition: 2s;
	-o-transition: 2s;
}
/*.ul-list4 .icon1{background-image: url(../images/i-b6.png);}
.ul-list4 .icon2{background-image: url(../images/i-b3.png);}
.ul-list4 .icon3{background-image: url(../images/i-b1.png);}
.ul-list4 .icon4{background-image: url(../images/i-b4.png);}
.ul-list4 .icon5{background-image: url(../images/i-b2.png);}
.ul-list4 .icon6{background-image: url(../images/i-b5.png);}
.ul-list4 .con:hover .icon1{background-image: url(../images/i-b6-on.png);}
.ul-list4 .con:hover .icon2{background-image: url(../images/i-b3-on.png);}
.ul-list4 .con:hover .icon3{background-image: url(../images/i-b1-on.png);}
.ul-list4 .con:hover .icon4{background-image: url(../images/i-b4-on.png);}
.ul-list4 .con:hover .icon5{background-image: url(../images/i-b2-on.png);}
.ul-list4 .con:hover .icon6{background-image: url(../images/i-b5-on.png);}
.ul-list4 .icon1:after{background-image: url(../images/i-b6.png);}
.ul-list4 .icon2:after{background-image: url(../images/i-b3.png);}
.ul-list4 .icon3:after{background-image: url(../images/i-b1.png);}
.ul-list4 .icon4:after{background-image: url(../images/i-b4.png);}
.ul-list4 .icon5:after{background-image: url(../images/i-b2.png);}
.ul-list4 .icon6:after{background-image: url(../images/i-b5.png);}*/
.ul-list4 .con:hover .icon {
	background-image: none !important;
}
.ul-list4 .con:hover .icon i {
	height: 100px;
}
.ul-list4.fixed {
	position: fixed;
	bottom: auto;
	top: 0;
	left: 66px;
	z-index: 101;
}
.ul-list4.fixed .slider {
	padding: 15px 40px 20px;
	width: 87%;
}
.ul-list4.fixed .icon {
	height: 60px;
	margin-bottom: 10px;
	-o-background-size: auto 60px;
	-ms-background-size: auto 60px;
	-moz-background-size: auto 60px;
	-webkit-background-size: auto 60px;
	background-size: auto 60px;
}
.ul-list4.fixed .icon i, .ul-list4.fixed .icon em {
	-o-background-size: auto 60px;
	-ms-background-size: auto 60px;
	-moz-background-size: auto 60px;
	-webkit-background-size: auto 60px;
	background-size: auto 60px;
}
.ul-list4.fixed .con:hover .icon i {
	height: 60px;
}
.ul-list4.fixed h4 {
	font-size: 16px;
}
.g-t4 {
	text-align: center;
	color: #000;
	margin-bottom: 38px;
}
.g-t4 h3 {
	font-size: 50px;
	font-weight: normal;
	margin-bottom: 20px;
}
.g-t4 p {
	font-size: 16px;
	line-height: 30px;
}
.row-f1 {
	padding-top: 190px;
}
.ul-list5 {
	overflow: hidden;
	padding: 153px 0 163px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.ul-list5 ul {
	text-align: center;
}
.ul-list5 li {
	width: 128px;
	display: inline-block;
	vertical-align: top;
	margin: 0 34px;
}
.ul-list5 .icon {
	width: 70px;
	height: 70px;
	display: block;
	margin: 0 auto 28px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	top: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ul-list5 .icon1 {
	background-image: url(../images/i-s1.png);
}
.ul-list5 .icon2 {
	background-image: url(../images/i-s2.png);
}
.ul-list5 .icon3 {
	background-image: url(../images/i-s3.png);
}
.ul-list5 .icon4 {
	background-image: url(../images/i-s4.png);
}
.ul-list5 .icon5 {
	background-image: url(../images/i-s5.png);
}
.ul-list5 .icon6 {
	background-image: url(../images/i-s6.png);
}
.ul-list5 h4 {
	font-size: 16px;
	line-height: 22px;
	color: #fff;
	font-weight: normal;
}
.ul-list5 li:hover .icon {
	top: -8px;
}
.ul-list6 {
	text-align: center;
	font-size: 0;
	margin-bottom: 45px;
}
.ul-list6 li {
	display: inline-block;
	margin: 0 15px;
	text-align: center;
}
.ul-list6 .pic {
	display: block;
	width: 140px;
	height: 140px;
	line-height: 140px;
	background-color: #fff;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0px 5px 40px rgba(0,0,0,.1);
	margin-bottom: 8px;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.ul-list6 .pic img {
	display: inline-block;
	vertical-align: middle;
	max-width: 90%;
	max-height: 90%;
}
.ul-list6 p {
	font-size: 18px;
	line-height: 40px;
}
.ul-list6 li:hover .pic {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.box-btn {
	font-size: 0;
}
.box-btn a {
	height: 53px;
	display: inline-block;
	line-height: 51px;
	text-align: center;
	font-size: 20px;
	border-radius: 2px;
	margin: 0 5px;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.box-btn .seek {
	width: 197px;
	color: #fff;
	border: 1px solid #d0a75a;
	background-color: #d0a75a;
}
.box-btn .seek i {
	width: 29px;
	height: 23px;
	display: inline-block;
	vertical-align: middle;
	background: url(../images/i-zi.png) no-repeat center center;
	margin-top: -1px;
	margin-right: 12px;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.box-btn .more {
	width: 129px;
	border: 1px solid #b2b2b2;
	background-color: #fff;
}
.box-btn .seek:hover {
	background-color: #fff;
	color: #d0a75a;
}
.box-btn .seek:hover i {
	background-image: url(../images/i-zi-on.png);
}
.box-btn .more:hover {
	border-color: #fff;
	color: #fff;
	background-color: #d0a75a;
}
.row-f1 .ul-list6 {
	margin-top: -79px;
}
.row-f1 .box-btn {
	text-align: center;
}
.m-scheme1 {
	padding: 163px 0 60px 122px;
	background-position: center top;
	background-repeat: no-repeat;
}
.ul-list7 {
	margin-bottom: 77px;
*zoom:1;
}
.ul-list7:after, .ul-list7:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.ul-list7 li {
	float: left;
	text-align: center;
	margin-right: 55px;
}
.ul-list7 .icon {
	width: 50px;
	height: 50px;
	display: block;
	margin: 0 auto 7px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	top: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ul-list7 .icon1 {
	background-image: url(../images/i-s7.png);
}
.ul-list7 .icon2 {
	background-image: url(../images/i-s8.png);
}
.ul-list7 .icon3 {
	background-image: url(../images/i-s9.png);
}
.ul-list7 .icon4 {
	background-image: url(../images/i-s10.png);
}
.ul-list7 .icon5 {
	background-image: url(../images/i-s11.png);
}
.ul-list7 h4 {
	font-size: 16px;
	font-weight: normal;
	color: #fff;
}
.ul-list7 li:hover .icon {
	top: -8px;
}
.row-f2 .ul-list6 {
	text-align: left;
}
.row-f2 .ul-list6 p {
	color: #fff;
}
.row-f2 .box-btn {
	text-align: left;
}
.row-f2 {
	padding-top: 120px;
}
.m-scheme2 {
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.m-scheme2 .col-l {
	width: 955px;
	margin-right: 11px;
	padding: 73px 0 140px 75px;
	background-image: url(../images/p-bg9.jpg);
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.m-scheme2 .col-r {
	float: none;
	overflow: hidden;
	background-color: #016352;
	padding: 85px 0 80px;
}
.ul-list8 {
	overflow: hidden;
}
.ul-list8 li {
	float: left;
	margin-right: 65px;
}
.ul-list8 li p {
	font-size: 20px;
	color: #fff;
	padding-left: 28px;
	line-height: 56px;
	height: 56px;
	overflow: hidden;
	background: url(../images/i-dian.png) no-repeat left center;
}
.m-scheme2 .txt {
	font-size: 16px;
	line-height: 35px;
	color: #fff;
	padding: 0 75px;
	margin-bottom: 90px;
}
.m-scheme2 .txt h4 {
	font-weight: normal;
}
.m-scheme2 .desc {
	height: 140px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}
.row-f3 .ul-list6 {
	padding-left: 75px;
	text-align: left;
}
.row-f3 .ul-list6 p {
	color: #fff;
}
.row-f3 .box-btn {
	padding-left: 75px;
}
.row-f3 {
	padding-bottom: 112px;
	padding-top: 130px;
	position: relative;
}
.row-f3:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 555px;
	background-color: #eef3f7;
}
.row-f4 {
	padding-top: 100px;
}
.m-scheme3 {
	overflow: hidden;
}
.m-scheme3 .col-l {
	width: 784px;
	padding: 110px 0 69px;
	background-image: url(../images/p-bg10.jpg);
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.m-scheme3 .col-r {
	overflow: hidden;
	float: none;
	padding-left: 95px;
	padding-top: 110px;
}
.ul-list9 {
	text-align: center;
	font-size: 0;
	width: 300px;
	margin: 0 auto;
}
.ul-list9 li {
	display: inline-block;
	width: 130px;
	height: 130px;
	padding: 14px;
	margin: 0 4px 10px;
	background: rgba(255,255,255,.35);
	border-radius: 50%;
	position: relative;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.ul-list9 span {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.ul-list9 .i1 span {
	background-color: #4f8aa8;
}
.ul-list9 .i2 span {
	background-color: #44cf4e;
}
.ul-list9 .i3 span {
	background-color: #15848b;
}
.ul-list9 .i4 span {
	background-color: #5f8ad6;
}
.ul-list9 .i5 span {
	background-color: #344362;
}
.ul-list9 .i6 span {
	background-color: #44b6f0;
}
.ul-list9 .i7 span {
	background-color: #005493;
}
.ul-list9 .i8 span {
	background-color: #3960b5;
}
.ul-list9 em {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 97px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.ul-list9 li:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.row-f4 .g-t4 {
	text-align: left;
}
.row-f4 .ul-list6 {
	text-align: left;
}
.row-f5 {
	padding-top: 120px;
	padding-bottom: 125px;
}
.ul-list10 {
	overflow: hidden;
	padding: 20px 0;
}
.ul-list10 ul {
	text-align: center;
}
.ul-list10 li {
	display: inline-block;
	vertical-align: top;
	margin: 0 34px;
	position: relative;
	padding-bottom: 15px;
}
.ul-list10 li:after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	width: 14px;
	height: 280px;
	margin-left: -7px;
	background: url(../images/i-bor.png) no-repeat center top;
}
.ul-list10 .icon {
	width: 60px;
	height: 60px;
	display: block;
	margin: 0 auto 15px;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 102;
	position: relative;
	top: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ul-list10 .icon1 {
	background-image: url(../images/i-s12.png);
}
.ul-list10 .icon2 {
	background-image: url(../images/i-s13.png);
}
.ul-list10 .icon3 {
	background-image: url(../images/i-s14.png);
}
.ul-list10 .icon4 {
	background-image: url(../images/i-s15.png);
}
.ul-list10 .icon5 {
	background-image: url(../images/i-s16.png);
}
.ul-list10 .icon6 {
	background-image: url(../images/i-s17.png);
}
.ul-list10 h4 {
	font-size: 18px;
	line-height: 22px;
	color: #000;
	font-weight: normal;
}
.ul-list10 .pic {
	margin-top: -20px;
	position: relative;
	z-index: 1;
}
.ul-list10 .pic img {
	width: 100%;
	display: block;
}
.ul-list10 li:hover .icon {
	top: -8px;
}
.row-f5 .ul-list6 {
	margin-top: -230px;
	position: relative;
	z-index: 2;
}
.row-f5 .box-btn {
	text-align: center;
}
.ul-list11 {
	overflow: hidden;
	padding: 46px 0 0;
	margin-bottom: 130px;
}
.ul-list11 {
	text-align: center;
}
.ul-list11 li {
	display: inline-block;
	vertical-align: top;
	margin: 0 34px;
}
.ul-list11 .icon {
	width: 70px;
	height: 70px;
	display: block;
	margin: 0 auto 17px;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	top: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ul-list11 .icon1 {
	background-image: url(../images/i-s18.png);
}
.ul-list11 .icon2 {
	background-image: url(../images/i-s19.png);
}
.ul-list11 .icon3 {
	background-image: url(../images/i-s20.png);
}
.ul-list11 .icon4 {
	background-image: url(../images/i-s21.png);
}
.ul-list11 .icon5 {
	background-image: url(../images/i-s22.png);
}
.ul-list11 .icon6 {
	background-image: url(../images/i-s23.png);
}
.ul-list11 h4 {
	font-size: 18px;
	line-height: 22px;
	color: #fff;
	font-weight: normal;
}
.ul-list11 li:hover .icon {
	top: -8px;
}
.row-f6 {
	padding: 116px 0 100px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-f6 .g-t4 {
	color: #fff;
}
.row-f6 .ul-list6 p {
	color: #fff;
}
.row-f6 .box-btn {
	text-align: center;
}
.g-t4-mo {
	display: none;
}
.case-ban {
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.case-ban .bg {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	overflow: hidden;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.case-logo {
	text-align: center;
	margin-top: 24vh;
	position: relative;
	z-index: 2;
}
.case-logo img {
	max-height: 150px;
	display: block;
	margin: 0 auto;
}
.case-logo h2 {
	font-size: 40px;
	color: #000;
	text-shadow: 0 4px 5px rgba(0,0,0,0.3);
}
.case-logo .tag {
	margin: 0 auto;
	display: inline-block;
	margin-top: 35px;
	border-radius: 5px;
	width: auto;
	padding: 0 35px;
	line-height: 56px;
	font-size: 22px;
	color: #ffffff;
	height: 56px;
	background: #d0a75a;
	text-align: center;
}
.case-info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background-color: rgba(40,41,54,.8);
	color: #fff;
	border-bottom: 1px solid rgba(225,225,225,.2);
	transform-origin: bottom;
	-webkit-transform-origin: bottom;
	-moz-transform-origin: bottom;
	transform: rotateX(100deg) translate3d(0, 0, 0);
	-webkit-transform: rotateX(100deg) translate3d(0, 0, 0);
	-moz-transform: rotateX(100deg) translate3d(0, 0, 0);
	transition: all .65s cubic-bezier(0.55, 0.65, 0.55, 1) 0s;
	-webkit-transition: all .65s cubic-bezier(0.55, 0.65, 0.55, 1) 0s;
	-moz-transition: all .65s cubic-bezier(0.55, 0.65, 0.55, 1) 0s;
}
.case-info.open {
	transform: rotateX(0deg) translate3d(0, 0, 0);
	-webkit-transform: rotateX(0deg) translate3d(0, 0, 0);
	-moz-transform: rotateX(0deg) translate3d(0, 0, 0);
}
.case-info .col-l {
	width: 885px;
	padding: 16px 65px 40px 0;
	border-right: 1px dashed rgba(255,255,255,.4);
}
.case-info .col-r {
	overflow: hidden;
	float: none;
	padding-left: 65px;
	padding-top: 52px;
}
.case-info .c-cur {
	color: #d7d7d7;
	padding-left: 23px;
	line-height: 23px;
	margin-bottom: 12px;
	background: url(../images/i-home.png) no-repeat left top;
}
.case-info .c-cur a {
	color: #d7d7d7;
}
.case-info h3 {
	font-size: 36px;
	font-weight: normal;
}
.case-info .tit {
	overflow: hidden;
	margin-bottom: 6px;
}
.case-info .tit h3 {
	display: inline-block;
}
.case-info .tit .link {
	display: inline-block;
	width: 80px;
	height: 26px;
	text-align: center;
	color: #333;
	background-color: #fff;
	border-radius: 26px;
	line-height: 26px;
	font-size: 16px;
	margin-left: 25px;
}
.case-info .tit .link i {
	width: 17px;
	height: 15px;
	display: inline-block;
	vertical-align: middle;
	background: url(../images/i-link.png) no-repeat center center;
	position: relative;
	top: -1px;
	margin-right: 6px;
}
.case-info .txt {
	font-size: 15px;
	line-height: 31px;
	height: 124px;
	overflow-y: auto;
}
.case-info .txt::-webkit-scrollbar {
 width: 4px;
}
.case-info .txt::-webkit-scrollbar-track {
 background: #ddd;
}
.case-info .txt::-webkit-scrollbar-thumb {
 background: #04b4c9;
}
.case-info .txt::-webkit-scrollbar-thumb:window-inactive {
 background: #04b4c9;
}
.case-info .wp5 {
	position: relative;
}
.case-info .close {
	position: absolute;
	width: 34px;
	height: 105px;
	right: 0;
	top: 0;
	background: url(../images/i-close2.png) no-repeat center bottom;
	cursor: pointer;
}
.ul-lab {
	overflow: hidden;
	max-width: 305px;
	padding-left: 5px;
	margin-top: 15px;
}
.ul-lab li {
	float: left;
	margin-right: 16px;
	margin-bottom: 19px;
}
.ul-lab li a {
	display: block;
	height: 28px;
	padding: 0 18px;
	text-align: center;
	background-color: #fff;
	color: #333;
	line-height: 28px;
	border-radius: 28px;
	font-size: 14px;
	cursor: pointer;
}
.ul-lab li i {
	width: 4px;
	height: 4px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -1px;
	background-color: #2da134;
	margin-right: 8px;
}
.ul-lab li:hover a {
	background-color: #2da134;
	color: #fff;
}
.ul-lab li:hover i {
	background-color: #fff;
}
.g-t5 {
	text-align: center;
	font-size: 40px;
	color: #cdcdcd;
	font-weight: normal;
	position: relative;
	font-family: 'Light';
	padding: 90px 0 20px;
	margin-bottom: 85px;
}
.g-t5:after, .g-t5:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 466px;
	height: 2px;
	background-color: rgba(255,255,255,.3);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.g-t5:before {
	content: '';
	height: 4px;
	width: 90px;
	background-color: #dddddd;
	bottom: -1px;
}
.case-pic {
	text-align: center;
}
.case-pic img {
	display: block;
	margin: 0 auto;
}
.case-pic-1 img {
	margin-bottom: 100px;
}
.case-pic-1 img:last-child {
	margin-bottom: 0;
}
.case-pic .warp {
	width: 1200px;
}
.case-arr {
	text-align: center;
	padding: 20px 0 28px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.case-arr a {
	display: inline-block;
	padding: 0 27px;
	margin: 0 23px;
	border-radius: 40px;
	font-size: 14px;
	color: #d7d7d7;
	height: 40px;
	line-height: 40px;
}
.case-arr a:hover {
	background-color: #d0a75a;
	color: #fff;
}
/*城市专题*/
.ban2 {
	height: 580px;
	overflow: hidden;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.btn-down-6 {
	right: auto;
	bottom: 125px;
}
.m-t4 {
	font-size: 80px;
	color: #fff;
	font-family: '宋体';
	margin-top: 90px;
}
.row-t1 {
	padding-bottom: 185px;
	background: url(../images/p-bg13.png) no-repeat center center;
}
.row-t1 .info {
	width: 50%;
	float: left;
	border-top: 5px solid #d0a75a;
	background-color: #fff;
	position: relative;
	margin-top: -62px;
	padding: 60px 0 85px 95px;
}
.row-t1 .info:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	height: 57px;
	width: 5px;
	background-color: #d0a75a;
}
.row-t1 .t-logo {
	position: relative;
	padding-bottom: 33px;
	margin-bottom: 35px;
}
.row-t1 .t-logo .pic {
	margin-bottom: 8px;
}
.row-t1 .t-logo span {
	font-size: 20px;
	color: #333;
}
.row-t1 .t-logo:after {
	content: '';
	position: absolute;
	left: 8px;
	bottom: 0;
	height: 1px;
	width: 116px;
	background-color: #787878;
}
.row-t1 .tel {
	float: left;
}
.row-t1 .tel strong {
	display: block;
	font-size: 42px;
	color: #000;
	padding-left: 45px;
	background: url(../images/i-tel1.png) no-repeat left center;
	font-family: 'gabo';
	font-weight: normal;
	margin-bottom: 3px;
}
.row-t1 .tel p {
	font-size: 16px;
	color: #333;
}
.row-t1 .share {
	float: left;
	padding-left: 25px;
	margin-top: 13px;
}
.row-t1 .share a {
	float: left;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	background-position: center;
	background-repeat: no-repeat;
}
.row-t1 .share .qq {
	margin-right: 7px;
	background-color: #d0a75a;
	background-image: url(../images/i-qq.png);
}
.row-t1 .share .wei {
	border: 1px solid rgba(51,51,51,.3);
	background-color: #fff;
	position: relative;
	background-image: url(../images/i-sao.png);
}
.row-t1 .share .wei:hover .qr {
	display: block;
}
.row-t1 .share .qr {
	position: absolute;
	left: 53px;
	top: -35px;
	width: 108px;
	display: none;
}
.row-t1 .share .qr .pic {
	background-color: #fff;
	padding: 5px;
	position: relative;
	box-shadow: 0px 0px 15px rgba(0,0,0,.06);
	margin-bottom: 3px;
}
.row-t1 .share .qr .pic:after {
	content: '';
	position: absolute;
	width: 7px;
	height: 12px;
	top: 50%;
	left: -7px;
	margin-top: -6px;
	background: url(../images/i-bor1.png) no-repeat center center;
}
.row-t1 .share .qr .pic img {
	width: 100%;
	display: block;
}
.row-t1 .share .qr p {
	font-size: 13px;
	color: #000;
	text-align: center;
}
.row-t1 .txt {
	overflow: hidden;
	padding-left: 95px;
	padding-top: 75px;
}
.row-t1 .txt h3 {
	font-size: 36px;
	font-weight: normal;
	color: #000;
	margin-bottom: 24px;
}
.row-t1 .desc {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	margin-bottom: 25px;
}
.row-t1 .more {
	width: 41px;
	height: 41px;
	display: block;
	border: 1px solid rgba(51,51,51,.5);
	border-radius: 50%;
	background: url(../images/i-more3.png) no-repeat center center;
}
.row-t1 .more:hover {
	border-color: #d0a75a;
	background-image: url(../images/i-more3-on.png);
}
.row-t2 {
}
.row-t2 .g-t6 {
	margin-top: -133px;
}
.g-t6 {
	text-align: center;
	margin-bottom: 32px;
}
.g-t6 h3 {
	font-size: 50px;
	color: #000;
	font-weight: normal;
	margin-bottom: 2px;
}
.g-t6 p {
	color: #333;
	font-size: 16px;
}
.m-list9 {
	overflow: hidden;
	margin: 0 2px;
	background-color: #fff;
}
.m-list9 li {
	overflow: hidden;
}
.m-list9 .left {
	width: 50%;
	float: left;
	position: relative;
}
.m-list9 .pic {
	padding-top: 51%;
	height: 0;
	position: relative;
	overflow: hidden;
}
.m-list9 .pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.m-list9 .mask {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(0,0,0,.6);
	text-align: center;
	opacity: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list9 .bor {
	position: absolute;
	top: 35px;
	right: 35px;
	bottom: 41px;
	left: 47px;
}
.m-list9 .bor:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	top: 100%;
	right: 100%;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.m-list9 .bor:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	border: 2px solid #fff;
	border-left: 0;
	border-bottom: 0;
	left: 100%;
	bottom: 100%;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.m-list9 .mask h4 {
	font-size: 55px;
	color: #fff;
	margin-bottom: 15px;
}
.m-list9 .mask .more {
	width: 129px;
	height: 53px;
	display: block;
	margin: 0 auto;
	line-height: 51px;
	border: 1px solid #b2b2b2;
	background-color: #fff;
	font-size: 20px;
	color: #000;
}
.m-list9 .mask .more:hover {
	background-color: #d0a75a;
	color: #fff;
	border-color: #d0a75a;
}
.m-list9 .tit {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.m-list9 .right {
	width: 50%;
	float: left;
	padding: 84px 170px 0 85px;
	background: url(../images/i-t6.png) no-repeat right 90px;
	-o-background-size: auto 4.9479vw;
	-ms-background-size: auto 4.9479vw;
	-moz-background-size: auto 4.9479vw;
	-webkit-background-size: auto 4.9479vw;
	background-size: auto 4.9479vw;
}
.m-list9 .right h4 {
	font-size: 36px;
	color: #333;
	font-weight: normal;
	margin-bottom: 26px;
}
.m-list9 .desc {
	font-size: 16px;
	line-height: 30px;
	color: #666;
	margin-bottom: 32px;
}
.m-list9 dl {
*zoom:1;
}
.m-list9 dl:after, .m-list9 dl:before {
	display: block;
	content: "clear";
	height: 0;
	clear: both;
	overflow: hidden;
	visibility: hidden;
}
.m-list9 dd {
	float: left;
	margin-right: 40px;
	text-align: center;
	min-width: 60px;
	position: relative;
	top: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list9 .icon {
	display: block;
	height: 40px;
	margin-bottom: 5px;
	background-position: center;
	background-repeat: no-repeat;
}
.m-list9 dd p {
	font-size: 14px;
	line-height: 24px;
	color: #666;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list9 dd:hover {
	top: -8px;
}
.m-list9 dd:hover p {
	color: #d0a75a;
}
.m-list9 li:nth-child(2n) .left {
	float: right;
}
.m-list9 li:nth-child(2n) .right {
	float: left;
	background: url(../images/i-t7.png) no-repeat left 50px;
}
.m-list9 li:hover .bor:after {
	right: 0;
	top: 0;
}
.m-list9 li:hover .bor:before {
	left: 0;
	bottom: 0;
}
.m-list9 li:hover .mask {
	opacity: 1;
}
.row-flow {
	padding-top: 88px;
	padding-bottom: 140px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-flow .g-t6 h3, .row-flow .g-t6 p {
	color: #fff;
}
.m-list10 {
	height: 437px;
	position: relative;
	margin-top: 40px;
}
.m-list10 li {
	width: 170px;
	position: absolute;
}
.m-list10 .i1 {
	left: 0;
}
.m-list10 .i2 {
	left: 12.5%;
}
.m-list10 .i3 {
	left: 25%;
}
.m-list10 .i4 {
	left: 37.5%;
}
.m-list10 .i5 {
	left: 50%;
}
.m-list10 .i6 {
	left: 62.5%;
}
.m-list10 .i7 {
	left: 75%;
}
.m-list10 .i8 {
	left: 87.5%;
}
.m-list10 .con {
	padding: 35px 0 0px;
	text-align: center;
	color: #fff;
	background-color: rgba(208,167,90,0);
	border-radius: 170px;
	position: relative;
	z-index: 2;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list10 .icon {
	width: 130px;
	height: 130px;
	display: block;
	border-radius: 50%;
	margin: 0 auto 25px;
	background-color: rgba(255,255,255,.1);
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
/*.m-list10 li em{display: block;width: 100%;height: 100%;position: relative;}*/
.m-list10 li:after, .m-list10 li:before {
	content: '';
	position: absolute;
	width: 90px;
	height: 90px;
	top: 158px;
}
.m-list10 li:after {
	left: -46px;
	background-image: url(../images/i-bor5.png);
}
.m-list10 li:before {
	right: -46px;
	background-image: url(../images/i-bor4.png);
}
.m-list10 .icon:after {
	content: '';
	position: absolute;
	top: -12px;
	left: -12px;
	width: 154px;
	height: 154px;
	background: url(../images/i-bor3.png) no-repeat center center;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list10 .i1 .icon {
	background-image: url(../images/ico-a1.png);
}
.m-list10 .i2 .icon {
	background-image: url(../images/ico-a2.png);
}
.m-list10 .i3 .icon {
	background-image: url(../images/ico-a3.png);
}
.m-list10 .i4 .icon {
	background-image: url(../images/ico-a4.png);
}
.m-list10 .i5 .icon {
	background-image: url(../images/ico-a5.png);
}
.m-list10 .i6 .icon {
	background-image: url(../images/ico-a6.png);
}
.m-list10 .i7 .icon {
	background-image: url(../images/ico-a7.png);
}
.m-list10 .i8 .icon {
	background-image: url(../images/ico-a8.png);
}
.m-list10 h4 {
	font-size: 22px;
	margin-bottom: 18px;
}
.m-list10 .desc {
	font-size: 14px;
	line-height: 24px;
	opacity: 0;
	display: none;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list10 li:nth-child(2n) {
	bottom: 0;
}
.m-list10 li:nth-child(2n):after, .m-list10 li:nth-child(2n):before {
	display: none;
}
.m-list10 li:nth-child(2n) .icon:after {
	background-image: url(../images/i-bor6.png);
}
.m-list10 li:first-child:after {
	display: none;
}
.m-list10 .con:hover .icon:after {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.m-list10 .con:hover .icon {
	background-color: rgba(255,255,255,0);
}
.m-list10 .con:hover {
	padding-bottom: 90px;
	background-color: rgba(208,167,90,1);
}
.m-list10 .con:hover .desc {
	opacity: 1;
	display: block;
}
.row-a3-1 {
	padding-top: 60px;
}
/*新闻 */
.g-tit1 {
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.g-tit1 .wp6 {
	position: relative;
	padding-top: 45px;
	padding-bottom: 35px;
	width: auto;
	max-width: 100%;
	margin: 0 100px;
}
.g-tit1 h3 {
	font-size: 36px;
	font-weight: normal;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 14px;
}
.g-tit1 .type {
	font-size: 14px;
	color: #fff;
	display: block;
	margin-bottom: 16px;
}
.g-tit1 .more {
	width: 110px;
	height: 30px;
	text-align: center;
	display: block;
	line-height: 30px;
	font-size: 14px;
	color: #666;
	background-color: #fff;
	border-radius: 30px;
}
.g-tit1 .more:hover {
	color: #fff;
	background-color: #d0a75a;
}
.g-tit1-1 .wp6 {
	padding-top: 72px;
	padding-bottom: 63px;
}
.g-tit1-1 h3 {
	margin-bottom: 3px;
}
.n-cur {
	position: absolute;
	right: 0;
	bottom: 30px;
	color: #fff;
	font-size: 14px;
	padding-left: 15px;
	background: url(../images/i-home1.png) no-repeat left center;
}
.n-cur a {
	color: #fff;
	padding: 0 8px 0 5px;
}
.n-cur span {
	padding-left: 5px;
}
.n-cur a:hover {
	text-decoration: underline;
}
.row-main {
	overflow: hidden;
	padding-top: 60px;
	margin: 0 100px;
}
.row-main .col-l {
	width: 1080px;
}
.row-main .col-r {
	overflow: hidden;
	float: none;
	padding-left: 60px;
}
.m-tab2 {
	overflow: hidden;
	padding-top: 5px;
}
.m-tab2 ul {
	border-bottom: 1px solid #e5e5e5;
}
.m-tab2 li {
	float: left;
	margin-right: 35px;
}
.m-tab2 li a {
	font-size: 24px;
	color: #000;
	position: relative;
	padding-bottom: 15px;
	display: block;
}
.m-tab2 li a:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background-color: #e5e5e5;
}
.m-tab2 li.on a, .m-tab2 li:hover a {
	color: #d0a75a;
}
.m-tab2 li.on a:after {
	background-color: #d0a75a;
}
.m-list11 {
	padding-top: 30px;
}
.m-list11-1 {
	padding-top: 0;
}
.m-list11 li {
	border-bottom: 1px dotted #e5e5e5;
}
.m-list11 .con {
	display: block;
	overflow: hidden;
	padding: 24px 0;
}
.m-list11 .date {
	float: left;
	width: 76px;
	border: 1px solid #e8e8e8;
	font-family: arial;
	text-align: center;
	color: #999;
	padding: 15px 0 17px;
	background: #fff;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list11 .date em {
	font-size: 36px;
	display: block;
	line-height: 1.1;
	margin-bottom: 2px;
}
.m-list11 .txt {
	padding-left: 24px;
	overflow: hidden;
}
.m-list11 h4 {
	font-size: 24px;
	font-weight: normal;
	margin-top: -6px;
	margin-bottom: 17px;
}
.m-list11 .desc {
	font-size: 16px;
	line-height: 26px;
	color: #666;
	height: 52px;
	margin-bottom: 22px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.m-list11 .bot {
	overflow: hidden;
}
.m-list11 .lab {
	float: left;
	width: 113px;
	height: 30px;
	border: 1px solid #d7d7d7;
	margin-right: 5px;
	text-align: center;
	line-height: 28px;
	border-radius: 30px;
	font-size: 14px;
	color: #d0a75a;
}
.m-list11 .lab i {
	width: 12px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -1px;
	margin-right: 4px;
	background: url(../images/i-14.png) no-repeat center center;
}
.m-list11 .n-logo {
	float: right;
	height: 35px;
}
.m-list11 .n-logo img {
	max-width: 100%;
	max-height: 100%;
}
.m-list11 .con:hover .date {
	color: #fff;
	background: url(../images/i-bg1.png) no-repeat center center;
}
.pages {
	overflow: hidden;
	margin: 30px 0 50px;
}
.pages li {
	float: left;
	margin-right: 3px;
}
.pages li a {
	width: 42px;
	height: 42px;
	display: block;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	color: #c9c8c8;
	background-color: #fff;
}
.pages li.prev a {
	background: url(../images/i-l1.png) no-repeat center center;
}
.pages li.next a {
	background: url(../images/i-r1.png) no-repeat center center;
}
.pages li.prev:hover a {
	background: #d0a75a url(../images/i-l1-on.png) no-repeat center center;
}
.pages li.next:hover a {
	background: #d0a75a url(../images/i-r1-on.png) no-repeat center center;
}
.pages li:hover a, .pages li.on a {
	background-color: #d0a75a;
	border-color: #d0a75a;
	color: #fff;
}
.soBox {
	position: relative;
	margin-bottom: 27px;
}
.soBox .inp {
	width: 100%;
	height: 55px;
	border: 1px solid #d6d6d6;
	border-radius: 15px;
	padding: 0 110px 0 25px;
	font-size: 16px;
	color: #000;
}
.soBox .btn {
	width: 92px;
	height: 53px;
	position: absolute;
	top: 1px;
	right: 1px;
	bottom: 1px;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
	cursor: pointer;
	background: #d0a75a url(../images/i-so2.png) no-repeat center center;
	border: 0;
}
.m-t5 {
	margin-bottom: 25px;
	border-bottom: 1px solid #e5e5e5;
}
.m-t5 span {
	font-size: 30px;
	font-weight: normal;
	color: #000;
	display: inline-block;
	padding-bottom: 13px;
	position: relative;
}
.m-t5 span:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	background-color: #d0a75a;
}
.ul-lab2 {
	overflow: hidden;
	margin-right: -8px;
	margin-bottom: 19px;
}
.ul-lab2 li {
	float: left;
	margin-right: 8px;
	margin-bottom: 13px;
}
.ul-lab2 li a {
	display: block;
	height: 48px;
	line-height: 46px;
	border: 1px solid #d7d7d7;
	text-align: center;
	font-size: 16px;
	color: #333;
	padding: 0 26px;
	border-radius: 48px;
}
.ul-lab2 li:hover a {
	background-color: #d0a75a;
	color: #fff;
	border-color: #d0a75a;
}
.m-list12 {
}
.m-list12 li {
	border-bottom: 1px dotted #eee;
	padding-bottom: 16px;
	margin-bottom: 13px;
}
.m-list12 .con {
	display: block;
	overflow: hidden;
}
.m-list12 .pic {
	float: left;
	width: 140px;
	height: 94px;
}
.m-list12 .pic img {
	width: 100%;
	height: 100%;
	display: block;
}
.m-list12 .txt {
	overflow: hidden;
	padding-left: 30px;
	color: #333;
	font-size: 16px;
}
.m-list12 .txt h4 {
	font-weight: normal;
	margin-bottom: 4px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.m-list12 .txt .type {
	line-height: 27px;
	margin-bottom: 7px;
}
.m-list12 .txt .time {
	padding-left: 24px;
	font-family: arial;
	background: url(../images/i-time.png) no-repeat left center;
}
.m-arrow {
	position: absolute;
	right: 0;
	top: 97px;
}
.m-arrow a {
	float: left;
	width: 22px;
	height: 38px;
	background-position: center;
	background-repeat: no-repeat;
}
.m-arrow .prev {
	background-image: url(../images/i-l2.png);
}
.m-arrow .next {
	margin-left: 35px;
	position: relative;
	background-image: url(../images/i-r2.png);
}
.m-arrow .next:after {
	content: '';
	position: absolute;
	width: 1px;
	height: 36px;
	top: 50%;
	left: -18px;
	margin-top: -18px;
	background-color: rgba(255,255,255,.3);
}
.m-article {
	padding-top: 27px;
	padding-bottom: 50px;
}
.m-article h1 {
	font-size: 30px;
	color: #333;
	font-weight: normal;
	margin-bottom: 6px;
}
.m-article .info {
	font-size: 14px;
	color: #666;
	margin-bottom: 38px;
}
.m-article .info em {
	margin: 0 16px;
}
.m-article .txt {
	font-size: 16px;
	line-height: 30px;
	color: #2e2e2e;
	margin-bottom: 22px;
}
.m-article .tips {
	font-size: 14px;
	line-height: 30px;
	color: #8d8d8d;
	margin-bottom: 20px;
}
.m-article .arrow {
	overflow: hidden;
	margin-bottom: 30px;
}
.m-article .arrow a {
	width: 49%;
	text-align: center;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	padding: 0 30px;
	font-size: 16px;
	color: #333;
	overflow: hidden;
	background-color: #f3f3f3;
}
.m-article .arrow a:hover {
	background-color: #d0a75a;
	color: #fff;
}
.m-article .bot {
	overflow: hidden;
	border-top: 1px solid #e5e5e5;
	padding-top: 22px;
}
.m-article .tab {
	float: left;
	font-size: 16px;
}
.m-article .tab span {
	float: left;
	color: #333;
	line-height: 36px;
}
.m-article .tab p {
	overflow: hidden;
}
.m-article .tab p a {
	height: 36px;
	line-height: 34px;
	padding: 0 18px;
	display: inline-block;
	border-radius: 30px;
	text-align: center;
	color: #333;
	border: 1px solid #d7d7d7;
}
.m-article .share {
	float: right;
}
.m-article .share span {
	float: left;
	line-height: 34px;
	font-size: 16px;
	color: #333;
}
.m-article .share .bdsharebuttonbox {
	float: left;
}
.m-article .share .bdsharebuttonbox a {
	width: 34px;
	height: 34px;
	margin: 0 5px;
	border-radius: 50%;
	background-color: #f7f7f7;
	background-position: center;
	background-repeat: no-repeat;
}
.m-article .share .bdsharebuttonbox .bds_weixin {
	background-image: url(../images/i-weixin.png);
}
.m-article .share .bdsharebuttonbox .bds_tsina {
	background-image: url(../images/i-sina.png);
}
.m-article .share .bdsharebuttonbox .bds_sqq {
	background-image: url(../images/i-qq1.png);
}
.m-article .share .bdsharebuttonbox .bds_renren {
	background-image: url(../images/i-ren.png);
}
.m-article .share .bdsharebuttonbox a:hover {
	background-color: #d0a75a;
}
.m-article .share .bdsharebuttonbox .bds_weixin:hover {
	background-image: url(../images/i-weixin-on.png);
}
.m-article .share .bdsharebuttonbox .bds_tsina:hover {
	background-image: url(../images/i-sina-on.png);
}
.m-article .share .bdsharebuttonbox .bds_sqq:hover {
	background-image: url(../images/i-qq-on.png);
}
.m-article .share .bdsharebuttonbox .bds_renren:hover {
	background-image: url(../images/i-ren-on.png);
}
.row-new {
	padding: 27px 0 40px;
	background-color: #f8f8f8;
}
.m-t6 {
	overflow: hidden;
	position: relative;
}
.m-t6 h3 {
	font-size: 46px;
	font-weight: normal;
	color: #000;
	float: left;
}
.m-t6 .more {
	padding-left: 30px;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #000;
	overflow: hidden;
	position: absolute;
	bottom: 0;
	right: 0;
	background: url(../images/i-more1.png) no-repeat left center;
}
.m-t6 .more:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 40px;
	overflow: hidden;
	max-width: 0;
	width: 40px;
	content: '';
	background: url(../images/i-more1-on.png) no-repeat left center;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}
.m-t6 .more:hover:before, .m-t6 .more:hover:after {
	max-width: 100%;
}
.m-list13 {
	margin: 0 -10px;
	padding-top: 23px;
}
.m-list13 li {
	width: 33.33%;
	float: left;
	margin-bottom: 29px;
}
.m-list13 .con {
	margin: 0 10px;
	display: block;
}
.m-list13 li .txt {
	border-top: 2px solid #b2b2b2;
	position: relative;
	padding: 44px 30px 36px;
	background-color: #fff;
}
.m-list13 li h4 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list13 li p {
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 18px;
	color: #333;
	line-height: 25px;
	height: 50px;
	overflow: hidden;
}
.m-list13 li .date {
	font-size: 18px;
	color: #666
}
.m-list13 li .txt:after {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	height: 2px;
	width: 0;
	background-color: #d0a75a;
	transition: 1s;
	-ms-transition: 1s;
	-moz-transition: 1s;
	-webkit-transition: 1s;
	-o-transition: 1s;
}
.m-list13 li:hover .txt:after {
	width: 100%;
}
.m-list13 li:hover .txt {
	box-shadow: 0px 0px 20px rgba(0,0,0,.1);
}
.ul-flow {
	overflow: hidden;
	margin: 0 -16px;
}
.ul-flow li {
	width: 33.33%;
	float: left;
	margin-bottom: 36px;
}
.ul-flow .con {
	border: 1px solid #dcdcdc;
	margin: 0 16px;
	height: 103px;
	border-top-left-radius: 25px;
	border-bottom-right-radius: 25px;
	position: relative;
}
.ul-flow .con:after {
	content: '';
	position: absolute;
	width: 22px;
	height: 22px;
	background-position: center;
	background-repeat: no-repeat;
}
.ul-flow .i1 .con:after, .ul-flow .i2 .con:after, .ul-flow .i7 .con:after {
	right: -27px;
	top: 50%;
	margin-top: -11px;
	background-image: url(../images/i-15.png);
}
.ul-flow .i3 .con:after, .ul-flow .i4 .con:after {
	left: 50%;
	bottom: -29px;
	margin-left: -11px;
	background-image: url(../images/i-16.png);
}
.ul-flow .i5 .con:after, .ul-flow .i6 .con:after {
	left: -27px;
	top: 50%;
	margin-top: -11px;
	background-image: url(../images/i-17.png);
}
.ul-flow .icon {
	display: block;
	height: 35px;
	margin-top: 18px;
	margin-bottom: 4px;
	background-position: center;
	background-repeat: no-repeat;
}
.ul-flow .i1 .icon {
	background-image: url(../images/ico-b1.png);
}
.ul-flow .i2 .icon {
	background-image: url(../images/ico-b2.png);
}
.ul-flow .i3 .icon {
	background-image: url(../images/ico-b3.png);
}
.ul-flow .i4 .icon {
	background-image: url(../images/ico-b4.png);
}
.ul-flow .i5 .icon {
	background-image: url(../images/ico-b5.png);
}
.ul-flow .i6 .icon {
	background-image: url(../images/ico-b6.png);
}
.ul-flow .i7 .icon {
	background-image: url(../images/ico-b7.png);
}
.ul-flow .con h4 {
	font-size: 16px;
	font-weight: normal;
	text-align: center;
}
.ul-flow .i8 {
	width: 66.66%;
}
.ul-flow .i8 .con {
	background-color: #d0a75a;
}
.ul-flow .tel {
	padding-left: 50px;
	margin-left: 35px;
	margin-top: 20px;
	background: url(../images/i-tel2.png) no-repeat left center;
}
.ul-flow .tel em {
	font-size: 16px;
	color: rgba(255,255,255,.8);
}
.ul-flow .tel p {
	font-size: 24px;
	color: rgba(255,255,255,.9);
	font-family: 'gabo';
}
.g-bg-f8 {
	background-color: #f8f8f8;
}
.g-bg-f8 .g-top .lang {
	color: #333;
}
.g-bg-f8 .g-top .lang dt {
	background-image: url(../images/i-lang-333.png);
}
.g-bg-f8 .g-top .lang dt:after {
	background-image: url(../images/i-08-333.png);
}
.g-bg-f8 .so-btn {
	background-image: url(../images/i-so-333.png);
}
.m-list14 {
	overflow: hidden;
	margin: 0 60px;
	padding-top: 10px;
}
.m-list14 li {
	width: 25%;
	float: left;
	margin-bottom: 53px;
}
.m-list14 .con {
	margin: 0 38px;
	border: 1px solid #ededef;
	position: relative;
	background-color: #fff;
	padding: 83px 0 40px;
	overflow: hidden;
}
.m-list14 .i-logo {
	height: 155px;
	max-height: 100%;
	line-height: 155px;
	text-align: center;
	margin-bottom: 55px;
}
.m-list14 .i-logo img {
	display: inline-block;
	vertical-align: middle;
	max-height: 100%;
}
.m-list14 h4 {
	font-size: 30px;
	text-align: center;
	color: #333;
	font-weight: normal;
	position: relative;
	padding-bottom: 22px;
	margin-bottom: 23px;
}
.m-list14 h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 32px;
	margin-left: -16px;
	height: 5px;
	background-color: #333333;
}
.m-list14 .desc {
	font-size: 16px;
	line-height: 26px;
	color: #666666;
	height: 78px;
	margin: 0 35px 70px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.m-list14 .tab {
	text-align: center;
	font-size: 0;
}
.m-list14 .tab span {
	display: inline-block;
	width: 95px;
	height: 32px;
	line-height: 30px;
	border: 1px solid #eeedf0;
	margin: 0 10px;
	font-size: 16px;
	color: #666;
}
.m-list14 .mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list14 .pic {
}
.m-list14 .pic img {
	width: 100%;
	display: block;
}
.m-list14 .qr {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding-top: 165px;
	padding-bottom: 30px;
	background: url(../images/p-bg15.png) no-repeat center top;
}
.m-list14 .qr .img {
	width: 137px;
	height: 137px;
	margin: 0 auto 12px;
}
.m-list14 .qr .img img {
	width: 100%;
	height: 100%;
	display: block;
}
.m-list14 .qr p {
	font-size: 18px;
	color: #333;
	text-align: center;
}
.m-list14 .con:hover .mask {
	opacity: 1;
}
.m-list14 .con:hover {
	box-shadow: 0px 16px 43px rgba(7,18,101,.13);
}
.g-menu {
	padding: 32px 0;
	margin-left: 98px;
}
.g-menu .tab {
	opacity: 0;
	margin-left: 80px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.g-menu .tab.open {
	opacity: 1;
	margin-left: 0;
}
.g-menu .tab li {
	float: left;
	margin-left: 5px;
}
.g-menu .tab li a {
	display: block;
	height: 55px;
	padding: 0 22px;
	text-align: center;
	border-radius: 55px;
	font-size: 18px;
	color: #333;
	line-height: 53px;
	background-color: #fff;
	box-shadow: 0px 0px 14px rgba(0,0,0,.13);
	border: 1px solid #fff;
}
.g-menu .tab li.all a {
	padding: 0;
	width: 55px;
}
.g-menu .tab li:hover a {
	color: #d0a75a;
}
.g-menu .tab li.on a, .g-menu .tab li.on:hover a {
	background-color: #d0a75a;
	color: #fff;
}
.g-menu .tit {
	float: left;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	font-size: 16px;
	background: #fff;
	color: #333;
	text-align: center;
	line-height: 55px;
	position: relative;
	cursor: pointer;
	z-index: 99;
	box-shadow: 0px 0px 14px rgba(0,0,0,.13);
}
.g-menu .tit:after {
	position: absolute;
	left: 60px;
	top: 50%;
	display: inline-block;
	content: '';
	width: 15px;
	line-height: 30px;
	height: 30px;
	background: url(../images/i-18.png) no-repeat center;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	animation: bounce-right 2s ease-out infinite;
}
@keyframes bounce-right {
 25% {
left:58px
}
 50%, 100% {
left:60px
}
 75% {
left:65px
}
}
.row-a4-1 {
	background-color: #fff;
}
.row-a4-1 .g-btn2 {
	color: #000;
}
.ban3 {
	height: 580px;
	overflow: hidden;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.ban3 .txt {
	color: #fff;
	max-width: 600px;
	margin-top: 183px;
}
.ban3 h2 {
	font-size: 50px;
	font-weight: normal;
}
.ban3 .desc {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 40px;
}
.btn-down-7 {
	position: relative;
	right: auto !important;
	bottom: auto !important;
}
.b-cur {
	position: absolute;
	left: 60px;
	top: 25px;
	font-size: 20px;
	font-family: '宋体';
	color: #fff;
}
.b-cur a {
	color: #fff;
	font-family: "微软雅黑", "Microsoft Yahei";
	font-weight: bold;
	padding-right: 5px;
}
.b-cur span {
	font-family: "微软雅黑", "Microsoft Yahei";
	font-weight: bold;
	padding-right: 23px;
	background: url(../images/i-down1.png) no-repeat right center;
}
.b-cur a:hover {
	text-decoration: underline;
}
.m-tab {
	text-align: center;
	font-size: 0;
	position: relative;
	z-index: 102;
	background-color: #f8f8f8;
	box-shadow: 0px 3px 5px rgba(0,0,0,.05);
}
.m-tab.fixed {
	position: fixed;
	top: 0;
	left: 60px;
	right: 0;
}
.m-tab ul {
	display: inline-block;
}
.m-tab li {
	float: left;
	position: relative;
}
.m-tab li a {
	display: block;
	line-height: 64px;
	height: 64px;
	margin: 0 70px;
	position: relative;
	font-size: 18px;
	color: #333;
}
.m-tab li:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 16px;
	background-color: #dfdfdf;
	margin-top: -8px;
}
.m-tab li.on a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #d0a75a;
}
.m-tab li:hover a {
	color: #d0a75a;
}
.m-tab li:last-child:after {
	display: none;
}
.row-x1 {
	overflow: hidden;
}
.m-list15 {
	margin: 0 -60px;
	overflow: hidden;
	padding: 50px 0 130px;
	position: relative;
}
.m-list15 .con {
	text-align: center;
	margin: 0 60px;
}
.m-list15 .icon {
	height: 80px;
	display: block;
	margin-bottom: 50px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: auto 100%;
	-ms-background-size: auto 100%;
	-moz-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}
.m-list15 h4 {
	font-size: 30px;
	color: #000;
	font-weight: normal;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 13px;
}
.m-list15 h4:after {
	content: '';
	width: 45px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 50%;
	background-color: #8c8c8c;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.m-list15 p {
	font-size: 16px;
	line-height: 27px;
	margin-bottom: 41px;
}
.m-list15 .btn {
	width: 125px;
	height: 35px;
	display: block;
	margin: 0 auto;
	line-height: 35px;
	font-size: 14px;
	color: #fff;
	background-color: #d0a75a;
	text-align: center;
	border-radius: 35px;
	opacity: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list15 .swiper-pagination {
	bottom: 60px !important;
}
.m-list15 .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}
.m-list15 .swiper-pagination-bullet-active {
	background-color: #000;
}
.m-list15 .swiper-button-next, .m-list15 .swiper-button-prev {
	width: 60px;
	height: 30px;
	top: auto;
	bottom: 53px;
	z-index: 12;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.m-list15 .swiper-button-next {
	right: 50%;
	margin: 0 -170px 0 0;
	background-image: url(../images/i-r.png);
}
.m-list15 .swiper-button-prev {
	left: 50%;
	margin: 0 0 0 -170px;
	bottom: 59px;
	background-image: url(../images/i-l.png);
}
.m-list15 .swiper-button-next:after, .m-list15 .swiper-button-prev:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list15 .swiper-button-next:after {
	right: 0;
	background: url(../images/i-r-on.png) no-repeat right center;
}
.m-list15 .swiper-button-prev:after {
	left: 0;
	background: url(../images/i-l-on.png) no-repeat left center;
}
.m-list15 .swiper-button-next:hover:after, .m-list15 .swiper-button-prev:hover:after {
	width: 100%;
}
.m-list15 .con:hover .btn {
	opacity: 1;
}
.m-list15 .con:hover h4 {
	color: #d0a75a;
}
.row-x2 {
	padding-bottom: 80px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-x2 .g-t1 h3, .row-x2 .g-t1 p {
	color: #fff;
}
.m-list16 {
	overflow: hidden;
	margin: 0 -13px;
	padding-top: 38px;
}
.m-list16 li {
	width: 20%;
	float: left;
	margin-bottom: 32px;
}
.m-list16 .con {
	display: block;
	margin: 0 13px;
	padding: 28px 0 28px;
	background-color: rgba(0,0,0,.4);
	position: relative;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list16 .icon {
	height: 50px;
	display: block;
	margin-bottom: 8px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: 50px auto;
	-ms-background-size: 50px auto;
	-moz-background-size: 50px auto;
	-webkit-background-size: 50px auto;
	background-size: 50px auto;
}
.m-list16 .i1 .icon {
	background-image: url(../images/ico-d1.png);
}
.m-list16 .i2 .icon {
	background-image: url(../images/ico-d2.png);
}
.m-list16 .i3 .icon {
	background-image: url(../images/ico-d3.png);
}
.m-list16 .i4 .icon {
	background-image: url(../images/ico-d4.png);
}
.m-list16 .i5 .icon {
	background-image: url(../images/ico-d5.png);
}
.m-list16 .i6 .icon {
	background-image: url(../images/ico-d6.png);
}
.m-list16 .i7 .icon {
	background-image: url(../images/ico-d7.png);
}
.m-list16 .i8 .icon {
	background-image: url(../images/ico-d8.png);
}
.m-list16 .i9 .icon {
	background-image: url(../images/ico-d9.png);
}
.m-list16 .i10 .icon {
	background-image: url(../images/ico-d10.png);
}
.m-list16 p {
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.m-list16 .con:hover {
	background-color: #d0a75a;
}
.m-list16 .bor {
	position: absolute;
	top: 7px;
	right: 7px;
	bottom: 7px;
	left: 7px;
}
.m-list16 .bor:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	border: 2px solid #fff;
	border-top: 0;
	border-right: 0;
	top: 100%;
	right: 100%;
	opacity: 0;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.m-list16 .bor:before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	border: 2px solid #fff;
	border-left: 0;
	border-bottom: 0;
	left: 100%;
	bottom: 100%;
	opacity: 0;
	transition: .8s;
	-ms-transition: .8s;
	-moz-transition: .8s;
	-webkit-transition: .8s;
	-o-transition: .8s;
}
.m-list16 li:hover .bor:after {
	right: 0;
	top: 0;
	opacity: 1;
}
.m-list16 li:hover .bor:before {
	left: 0;
	bottom: 0;
	opacity: 1;
}
.row-x3 {
	padding: 8px 0 0;
	background-color: #f8f8f8;
}
.m-list17 {
	overflow: hidden;
	position: relative;
	margin: 0 -37px;
	padding-top: 42px;
	padding-bottom: 142px;
}
.m-list17 .con {
	margin: 0 37px;
	text-align: center;
	padding: 67px 0 43px;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: 0px 16px 43px rgba(7,18,101,.09);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list17 .icon {
	display: block;
	height: 90px;
	margin-bottom: 45px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: auto 90px;
	-ms-background-size: auto 90px;
	-moz-background-size: auto 90px;
	-webkit-background-size: auto 90px;
	background-size: auto 90px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list17 h4 {
	font-size: 30px;
	color: #000;
	font-weight: normal;
	position: relative;
	padding-bottom: 11px;
	margin-bottom: 15px;
}
.m-list17 h4:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 46px;
	height: 1px;
	background-color: #8c8c8c;
	margin-left: -23px;
}
.m-list17 p {
	font-size: 16px;
	color: #666;
	margin-bottom: 40px;
	margin: 0 15px;
	height: 48px;
	overflow: hidden;
}
.m-list17 .btn {
	width: 125px;
	height: 35px;
	display: block;
	margin: 0 auto;
	line-height: 35px;
	font-size: 14px;
	color: #fff;
	background-color: #d0a75a;
	text-align: center;
	border-radius: 35px;
	opacity: 0;
	height: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list17 .con:hover {
	box-shadow: 0px 16px 33px rgba(7,18,101,.4);
}
.m-list17 .con:hover .icon {
	margin-bottom: 10px;
}
.m-list17 .con:hover .btn {
	opacity: 1;
	height: 35px;
}
.m-list17 .swiper-pagination {
	bottom: 60px !important;
}
.m-list17 .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
}
.m-list17 .swiper-pagination-bullet-active {
	background-color: #000;
}
.m-list17 .swiper-button-next, .m-list17 .swiper-button-prev {
	width: 60px;
	height: 30px;
	top: auto;
	bottom: 53px;
	z-index: 12;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.m-list17 .swiper-button-next {
	right: 50%;
	margin: 0 -170px 0 0;
	background-image: url(../images/i-r.png);
}
.m-list17 .swiper-button-prev {
	left: 50%;
	margin: 0 0 0 -170px;
	bottom: 59px;
	background-image: url(../images/i-l.png);
}
.m-list17 .swiper-button-next:after, .m-list17 .swiper-button-prev:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list17 .swiper-button-next:after {
	right: 0;
	background: url(../images/i-r-on.png) no-repeat right center;
}
.m-list17 .swiper-button-prev:after {
	left: 0;
	background: url(../images/i-l-on.png) no-repeat left center;
}
.m-list17 .swiper-button-next:hover:after, .m-list17 .swiper-button-prev:hover:after {
	width: 100%;
}
.row-x4 {
	height: 676px;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-x4:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 102px;
	background: url(../images/i-bor7.png) no-repeat center center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.m-list18 {
	overflow: hidden;
	position: relative;
	z-index: 2;
}
.m-list18 li {
	float: left;
	width: 25%;
}
.m-list18 .con {
	margin: 0 50px;
	text-align: center;
	color: #fff;
}
.m-list18 .icon {
	width: 138px;
	height: 138px;
	display: block;
	margin: 0 auto 16px;
	border-radius: 50%;
	background-color: #fff;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list18 .icon:after {
	content: '';
	position: absolute;
	top: -10px;
	right: -10px;
	bottom: -10px;
	left: -10px;
	border-radius: 50%;
	border: 10px solid rgba(255,255,255,.1);
}
.m-list18 .icon i {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list18 .icon .i-2 {
	opacity: 0;
}
/*.m-list18 .icon1{background-image: url(../images/ico-f1.png);}
.m-list18 .icon2{background-image: url(../images/ico-f2.png);}
.m-list18 .icon3{background-image: url(../images/ico-f3.png);}
.m-list18 .icon4{background-image: url(../images/ico-f4.png);}*/
.m-list18 h4 {
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 13px;
}
.m-list18 .desc {
	font-size: 16px;
	line-height: 27px;
	opacity: 0;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-o-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list18 .con:hover .icon {
	background-color: #d0a75a;
}
.m-list18 .con:hover .i-1 {
	opacity: 0;
}
.m-list18 .con:hover .i-2 {
	opacity: 1;
}
/*.m-list18 .con:hover .icon1{background-image: url(../images/ico-f1-on.png);}
.m-list18 .con:hover .icon2{background-image: url(../images/ico-f2-on.png);}
.m-list18 .con:hover .icon3{background-image: url(../images/ico-f3-on.png);}
.m-list18 .con:hover .icon4{background-image: url(../images/ico-f4-on.png);}*/
.m-list18 .con:hover .desc {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
.m-list18 .i1 {
	margin-top: 290px;
}
.m-list18 .i2 {
	margin-top: 205px;
}
.m-list18 .i3 {
	margin-top: 270px;
}
.m-list18 .i4 {
	margin-top: 290px;
}
.row-x5 {
	background-color: #f8f8f8;
	padding: 10px 0 95px;
}
.m-app {
	overflow: hidden;
	margin-top: 35px;
	background-color: #fff;
}
.m-app .pic {
	width: 50%;
	float: left;
}
.m-app .img {
	padding-top: 56%;
	height: 0;
	position: relative;
	overflow: hidden;
}
.m-app .img img {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.m-app .txt {
	overflow: hidden;
	color: #333;
	padding: 70px 40px 0 55px;
	background: url(../images/i-bg2.png) no-repeat right top;
}
.m-app .txt h4 {
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 25px;
}
.m-app .txt h4:after {
	content: '';
	position: absolute;
	width: 32px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: #000;
}
.m-app .desc {
	font-size: 16px;
	line-height: 27px;
	margin-bottom: 30px;
	height: 108px;
	overflow: hidden;
}
.g-btn3 {
	width: 177px;
	height: 48px;
	display: block;
	line-height: 48px;
	font-size: 16px;
	color: #fff;
	border-radius: 48px;
	background-color: #d0a75a;
	text-align: center;
}
.g-btn3 i {
	width: 23px;
	height: 18px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	background: url(../images/i-19.png) no-repeat center center;
}
.g-btn3:hover {
	color: #fff;
	opacity: .8;
}
.row-x6 {
	padding: 20px 0 83px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-x6 .g-t1 h3, .row-x6 .g-t1 p {
	color: #fff;
}
.m-tab4 {
	text-align: center;
	font-size: 0;
	margin: 40px 0;
}
.m-tab4 ul {
	display: inline-block;
}
.m-tab4 li {
	float: left;
}
.m-tab4 li a {
	display: block;
	font-size: 24px;
	color: #fff;
	padding: 0 45px;
	height: 53px;
	line-height: 53px;
	border-radius: 53px;
}
.m-tab4 li.on a {
	background-color: #d0a75a;
}
.box-txt1 {
	text-align: center;
	color: #fff;
	padding: 36px 0 50px;
	background: rgba(255,255,255,.1);
	margin-bottom: 22px;
}
.box-txt1 h4 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 18px;
}
.box-txt1 h4 span {
	display: inline-block;
	position: relative;
	padding-bottom: 9px;
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.box-txt1 h4 span:after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 36px;
	height: 1px;
	margin-left: -18px;
	background-color: #fff;
}
.box-txt1 .desc {
	font-size: 16px;
	line-height: 28px;
}
.box-txt1 .desc ul {
	list-style-type: disc;
	text-align: left;
	max-width: 660px;
	margin: 0 auto;
}
.row-x6 .tips {
	color: #fff;
}
.row-x6 .tips p {
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	margin-bottom: 30px;
}
.row-x6 .info {
	text-align: center;
}
.row-x6 .info a {
	width: 88px;
	height: 82px;
	display: inline-block;
	vertical-align: middle;
}
.row-x6 .info .a1 {
	background: #d0a75a url(../images/i-21.png) no-repeat center center;
}
.row-x6 .info .a2 {
	background: #d0a75a url(../images/i-20.png) no-repeat center center;
}
.row-x6 .info .tel {
	display: inline-block;
	vertical-align: middle;
	padding-left: 90px;
	padding-right: 70px;
	height: 82px;
	line-height: 82px;
	font-size: 24px;
	color: #fff;
	font-weight: bold;
	background: #d0a75a url(../images/i-tel3.png) no-repeat 18px center;
}
.row-x7 {
	padding-bottom: 20px;
	background-color: #f8f8f8;
}
.m-list19 {
	margin: 0 30px;
	padding: 85px 0 30px;
}
.m-list19 li {
	width: 33.33%;
	float: left;
}
.m-list19 .con {
	text-align: center;
	margin: 0 -35px;
	padding: 62px 90px 76px;
	position: relative;
	top: 0;
	background-color: #fff;
	box-shadow: 0px 1px 27px rgba(0,0,0,.2);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list19 .num {
	display: inline-block;
	margin: 0 auto;
	padding: 22px;
	margin-bottom: 13px;
	border-radius: 50%;
	border: 1px solid rgba(44,181,143,.4);
}
.m-list19 .num em {
	border: 1px dashed rgba(44,181,143,.4);
	display: block;
	width: 90px;
	height: 90px;
	font-size: 30px;
	font-family: arial;
	color: #000;
	line-height: 90px;
	font-weight: bold;
	position: relative;
	border-radius: 50%;
	text-align: center;
}
.m-list19 .num em:after, .m-list19 .num em:before {
	content: '';
	position: absolute;
	width: 26px;
	left: 50%;
	height: 1px;
	background-color: #000;
	margin-left: -13px;
}
.m-list19 .num em:after {
	top: 18px;
}
.m-list19 .num em:before {
	bottom: 18px;
}
.m-list19 h4 {
	font-size: 30px;
	font-weight: normal;
	font-weight: normal;
	margin-bottom: 15px;
}
.m-list19 .tab {
	color: #d0a75a;
	font-size: 16px;
	margin-bottom: 18px;
}
.m-list19 .tab span {
	padding: 0 8px 0 3px;
}
.m-list19 .desc {
	font-size: 16px;
	line-height: 26px;
	color: rgba(0,0,0,.6);
	height: 130px;
	margin-right: -20px;
	padding-right: 20px;
	overflow-y: auto;
}
.m-list19 .desc::-webkit-scrollbar {
 width: 4px;
border-radius: 4px;
}
.m-list19 .desc::-webkit-scrollbar-track {
 background: #ddd;
}
.m-list19 .desc::-webkit-scrollbar-thumb {
 background: #d0a75a;
}
.m-list19 .desc::-webkit-scrollbar-thumb:window-inactive {
 background: #d0a75a;
}
.m-list19 .g-btn3 {
	margin: 0px auto 0;
	height: 0;
	-webkit-transform: translateY(30px);
	-moz-transform: translateY(30px);
	-o-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-list19 li.on .con .num em:after, .m-list19 li.on .con .num em:before {
	background-color: #d0a75a;
}
.m-list19 li.on .con .num em {
	color: #d0a75a;
}
.m-list19 li.on {
	position: relative;
	z-index: 2;
}
.m-list19 li.on .desc {
	color: #000;
}
.m-list19 li.on .con {
	padding-top: 97px;
	padding-bottom: 33px;
	top: -35px;
}
.m-list19 li.on .g-btn3 {
	height: 48px;
	margin-top: 30px;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-o-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}
.row-x8 {
	height: 830px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-x8 .wp6 {
	position: relative;
	height: 100%;
}
.row-x8 .txt {
	position: absolute;
	left: 0;
	top: 34%;
}
.row-x8 .txt h3 {
	font-size: 50px;
	color: #000;
	font-weight: normal;
	margin-bottom: 4px;
}
.row-x8 .txt p {
	font-size: 16px;
	color: #333;
	letter-spacing: 1px;
	margin-bottom: 55px;
	max-width: 470px;
}
.row-x9 .g-t1 h3 {
	color: #fff;
}
.row-x9 {
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.m-tab5 {
	text-align: center;
	font-size: 0;
	padding-top: 17px;
	margin-bottom: 50px;
}
.m-tab5 li {
	width: 120px;
	height: 120px;
	display: inline-block;
	position: relative;
	border-radius: 50%;
	margin: 0 27px;
}
.m-tab5 li:after {
	content: '';
	display: none;
	position: absolute;
	bottom: -7px;
	left: 50%;
	margin-left: -5px;
	width: 10px;
	height: 13px;
	background: url(../images/i-22.png) no-repeat center center;
}
.m-tab5 li .icon {
	display: block;
	height: 40px;
	margin-top: 20px;
	margin-bottom: 5px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: auto 100%;
	-ms-background-size: auto 100%;
	-moz-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}
.m-tab5 li .icon1 {
	background-image: url(../images/ico-g1.png);
}
.m-tab5 li .icon2 {
	background-image: url(../images/ico-g2.png);
}
.m-tab5 li .icon3 {
	background-image: url(../images/ico-g3.png);
}
.m-tab5 li .icon4 {
	background-image: url(../images/ico-g4.png);
}
.m-tab5 li .icon5 {
	background-image: url(../images/ico-g5.png);
}
.m-tab5 li .icon6 {
	background-image: url(../images/ico-g6.png);
}
.m-tab5 li .icon7 {
	background-image: url(../images/ico-g7.png);
}
.m-tab5 p {
	font-size: 18px;
	line-height: 28px;
	color: #fff;
}
.m-tab5 li.on {
	background-color: #d0a75a;
}
.m-tab5 li.on:after {
	display: block;
}
.box-txt2 {
	max-width: 1092px;
	margin: 0 auto;
	overflow: hidden;
}
.box-txt2 .pic {
	float: left;
	width: 526px;
	border: 18px solid rgba(255,255,255,.1);
	border-bottom: 0;
}
.box-txt2 .pic img {
	width: 100%;
	display: block;
}
.box-txt2 .txt {
	overflow: hidden;
	padding: 45px 0 0 65px;
	color: rgba(255,255,255,.8);
}
.box-txt2 .tit {
	position: relative;
	padding-bottom: 26px;
	margin-bottom: 25px;
}
.box-txt2 .tit h3 {
	font-size: 30px;
	font-weight: normal;
	color: #fff;
}
.box-txt2 .tit em {
	font-size: 16px;
	line-height: 24px;
	font-family: arial;
	padding-right: 10px;
	display: block;
	overflow-y: auto;
	max-height: 96px;
}
.box-txt2 .tit em::-webkit-scrollbar {
 width: 4px;
}
.box-txt2 .tit em::-webkit-scrollbar-track {
 background: #ddd;
}
.box-txt2 .tit em::-webkit-scrollbar-thumb {
 background: #d0a75a;
}
.box-txt2 .tit em::-webkit-scrollbar-thumb:window-inactive {
 background: #d0a75a;
}
.box-txt2 .tit:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background-color: #fff;
}
.box-txt2 .desc {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 35px;
}
.box-txt2 .btn {
	width: 125px;
	height: 35px;
	display: block;
	line-height: 35px;
	font-size: 14px;
	color: #fff;
	background-color: #d0a75a;
	text-align: center;
	border-radius: 35px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.box-txt2 .btn:hover {
	opacity: .8;
}
.row-x10 {
	background-color: #f8f8f8;
}
.m-lsit20 {
	padding: 60px 0 75px;
}
.m-lsit20 li {
	width: 20%;
	float: left;
}
.m-lsit20 .con {
	border: 1px solid #e5e5e5;
	color: #333;
	background-color: #fff;
	text-align: center;
	border-right: 0;
	border-bottom: 0;
	border-top: 0;
	padding: 29px 0 39px;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.m-lsit20 .icon {
	display: block;
	height: 90px;
	margin-bottom: 2px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: auto 100%;
	-ms-background-size: auto 100%;
	-moz-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}
.m-lsit20 .icon1 {
	background-image: url(../images/ico-h1.png);
}
.m-lsit20 .icon2 {
	background-image: url(../images/ico-h2.png);
}
.m-lsit20 .icon3 {
	background-image: url(../images/ico-h3.png);
}
.m-lsit20 .icon4 {
	background-image: url(../images/ico-h4.png);
}
.m-lsit20 .icon5 {
	background-image: url(../images/ico-h5.png);
}
.m-lsit20 .icon6 {
	background-image: url(../images/ico-h6.png);
}
.m-lsit20 .icon7 {
	background-image: url(../images/ico-h7.png);
}
.m-lsit20 .icon8 {
	background-image: url(../images/ico-h8.png);
}
.m-lsit20 .icon9 {
	background-image: url(../images/ico-h9.png);
}
.m-lsit20 .icon10 {
	background-image: url(../images/ico-h10.png);
}
.m-lsit20 h4 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 6px;
}
.m-lsit20 p {
	font-size: 14px;
	line-height: 24px;
	margin: 0 72px;
	height: 48px;
	overflow: hidden;
}
.m-lsit20 .i6, .m-lsit20 .i7, .m-lsit20 .i8, .m-lsit20 .i9, .m-lsit20 .i10 {
	border-top: 1px solid #e5e5e5;
}
.m-lsit20 li:hover {
	position: relative;
	z-index: 2;
}
.m-lsit20 li:hover .con {
	box-shadow: 0px 16px 30px rgba(7,18,101,.1);
}
.row-a3-2 {
	background-color: #f8f8f8;
	padding-top: 60px;
}
.row-a3-2 .g-btn2 {
	color: #000;
}
.g-menu-1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 103;
}
.g-menu-2 {
	position: fixed;
	top: 0;
	left: 66px;
	z-index: 103;
}
.top-meun {
	position: fixed;
	z-index: 98;
	height: 30px;
	left: 100px;
	top: 30px;
	line-height: 30px;
}
.top-meun span {
	font-size: 20px;
	display: inline-block;
	position: relative;
	color: #fff;
}
.js-meun i {
	font-style: normal;
}
.top-meun > a {
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	font-weight: bold;
	position: relative;
	line-height: 30px;
}
.top-meun b a {
	color: #fff;
}
.top-meun .js-meun {
	cursor: pointer;
}
.top-meun .arr {
	position: relative;
	margin-right: 10px;
	top: 7px;
	background: url(../images/new-22.png) no-repeat center;
	width: 15px;
	line-height: 30px;
	height: 30px;
	display: inline-block;
}
.top-meun .arr.on {
	transform: rotate(90deg);
}
.top-meun ul {
	display: none;
	width: 175px;
	padding: 10px;
	left: 0;
	background: #ffffff;
	position: absolute;
	border-radius: 5px;
	margin-top: 10px;
}
.top-meun ul li {
	padding-left: 10px;
}
.top-meun ul a {
	color: #535353;
	font-size: 14px;
	padding-left: 15px;
	background: url(../images/new-21.png) no-repeat left center;
}
.top-meun ul a:hover {
	color: #d0a75a;
	text-decoration: underline;
}
.js-state {
	padding-left: 10px;
	cursor: pointer;
}
.pop-state {
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	background-color: #2b2b2b;
	z-index: 99999;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.pop-state .con {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	padding: 0 30px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pop-state .con h3 {
	font-size: 18px;
	font-weight: normal;
	color: #fff;
	margin-bottom: 10px;
}
.pop-state .con p {
	color: #8C8C8C;
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 10px;
}
body.open .pop-state {
	right: 0;
}
/*body{
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
body.open{margin-left: -300px;}*/

.top-meun-1 {
	position: absolute;
	left: 40px;
}
.row-g1 {
	color: #fff;
	padding-bottom: 40px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-g1 .ul-num {
}
.row-g1 .ul-num span {
	font-size: 120px;
	display: block;
	margin-bottom: 10px;
}
.row-g1 .ul-num li {
	padding: 50px 70px 50px 0
}
.row-g1 .ul-num .con {
	border-right: 1px solid rgba(255,255,255,.15);
}
.row-g1 .ul-num li:last-child {
	padding-right: 0;
}
.row-g1 .ul-num li:last-child .con {
	border-right: 0;
}
.ban-txt1 {
	padding: 131px 0 65px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,.15);
	clear: both;
}
.ban-txt1 .tit {
	font-size: 48px;
	font-weight: normal;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
}
.ban-txt1 .tit:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background-color: #d0a75a;
}
.ban-txt1 .slider {
	overflow: hidden;
	position: relative;
	padding-bottom: 130px;
}
.ban-txt1 .swiper-slide {
	opacity: 0 !important;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ban-txt1 .swiper-slide.swiper-slide-active {
	opacity: 1 !important;
}
.ban-txt1 .slider h3 {
	font-size: 36px;
	font-weight: normal;
	overflow: hidden;
	margin-bottom: 15px;
}
.ban-txt1 .desc {
	font-size: 18px;
	line-height: 32px;
	max-width: 705px;
}
.ban-txt1 .swiper-pagination {
	bottom: 0px !important;
	text-align: left;
}
.ban-txt1 .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background-color: rgba(255,255,255,.5);
	opacity: 1;
}
.ban-txt1 .swiper-pagination-bullet-active {
	background-color: #fff;
}
.row-g2 {
	overflow: hidden;
	background-color: #f1f5f9;
}
.row-g2 li {
	width: 50%;
	float: left;
}
.row-g2 .i1 {
	background-color: #f1f5f9;
}
.row-g2 h3 {
	font-weight: normal;
	color: #000;
	font-size: 46px;
	position: relative;
	padding-bottom: 29px;
	margin-bottom: 32px;
}
.row-g2 h3:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 1px;
	background-color: #000;
}
.row-g2 .con {
	padding: 87px 165px 80px 115px;
}
.row-g2 .desc {
	font-size: 20px;
	color: #484848;
	line-height: 2.5;
}
.row-g3 {
	position: relative;
	background-color: #2b0050;
}
.row-g3:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 300px;
	background-color: #fafafa;
}
.row-g3:before {
	content: '';
	position: absolute;
	left: 75px;
	right: 0;
	top: 210px;
	height: 151px;
	background: url(../images/p-t1.png) no-repeat left center;
	-o-background-size: auto 100%;
	-ms-background-size: auto 100%;
	-moz-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	background-size: auto 100%;
}
.row-g3 .g-t7 {
	margin-bottom: 70px;
}
.g-t7 {
	color: #fff;
	text-align: center;
	padding: 62px 0 0;
}
.g-t7 h3 {
	font-size: 46px;
	font-weight: normal;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.g-t7 h3:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 50px;
	height: 1px;
	background-color: #fff;
	margin-left: -25px;
}
.g-t7 p {
	font-size: 16px;
	line-height: 30px;
}
.pic-slider1 {
	margin: 0 50px;
	background-color: #fafafa;
	position: relative;
	z-index: 2;
}
.pic-slider1 .cont {
	overflow: hidden;
	padding: 104px 0;
	max-width: 1500px;
	width: 80%;
	margin: 0 auto;
}
.pic-slider1 .con {
	height: 91px;
	border: 1px solid #fafafa;
	margin-bottom: 50px;
	line-height: 89px;
	text-align: center;
	position: relative;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.pic-slider1 .con img {
	display: inline-block;
	vertical-align: middle;
	max-width: 90%;
	max-height: 90%;
	filter: grayscale(100%);
}
.pic-slider1 .con:hover {
	border-color: #94d339;
	background-color: #fff;
	box-shadow: 0px 0px 22px rgba(0,0,0,.18);
	z-index: 2;
}
.pic-slider1 .con:hover img {
	filter: grayscale(0);
}
.pic-slider1 .swiper-pagination {
	bottom: 65px !important;
}
.pic-slider1 .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background-color: #a3a3a3;
	margin: 0 5px;
}
.pic-slider1 .swiper-pagination-bullet-active {
	background-color: #d0a75a;
}
.row-g4 {
	padding: 15px 0 25px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.flow-slide {
	overflow: hidden;
	padding: 60px 0 25px;
	position: relative;
	margin-top: 40px;
	background: url(../images/i-23.png) no-repeat center top;
}
.flow-slide:after {
	content: '';
	position: absolute;
	top: 33px;
	left: 50%;
	width: 2px;
	bottom: 132px;
	background-color: #fff;
	margin-left: -1px;
}
/*.flow-slide:before{content: '';position: absolute;bottom: 0px;left: 50%;width: 10px;height: 10px;
	background-color: #fff;margin-left: -5px;border-radius: 50%;
}*/
.flow-slide .swiper-slide .txt {
	width: 50%;
	position: relative;
	right: -9px;
}
.flow-slide .swiper-slide:nth-child(2n+1) .txt {
	float: right;
	right: auto;
	left: -9px;
}
.flow-slide .txt i {
	float: right;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-top: 11px;
	background: rgba(255,255,255,.5);
	position: relative;
}
.flow-slide .txt i:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #fff;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.flow-slide .txt span {
	float: right;
	margin-right: 20px;
	margin-left: 28px;
	font-size: 26px;
	color: #d0a75a;
	height: 40px;
	line-height: 40px;
}
.flow-slide .txt span b {
	font-family: arial;
}
.flow-slide .desc {
	font-size: 16px;
	color: #fff;
	line-height: 30px;
	text-align: right;
	overflow: hidden;
	height: 90px;
}
.flow-slide .swiper-slide:nth-child(2n+1) .txt i {
	float: left;
}
.flow-slide .swiper-slide:nth-child(2n+1) .txt span {
	float: left;
}
.flow-slide .swiper-slide:nth-child(2n+1) .desc {
	text-align: left;
}
.flow-slide-next, .flow-slide-prev {
	width: 34px;
	height: 34px;
	display: block;
	margin: 7px auto 0;
	cursor: pointer;
	background: url(../images/i-24.png) no-repeat center center;
}
.flow-slide-prev {
	background-image: url(../images/i-24-on.png);
}
.row-g5 {
	padding-bottom: 105px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-g5 .g-t7 {
	color: #4b4b4b
}
.row-g5 .g-t7 h3 {
	color: #000;
}
.row-g5 .g-t7 h3:after {
	background-color: #000;
}
.m-slider2 {
	max-width: 1005px;
	margin: 0 auto;
	padding: 70px 0;
}
.m-slider2.dn {
	display: none;
}
.m-slider2 .items {
	height: 428px;
	position: relative;
}
.m-slider2 img {
	display: block;
	width: 100%;
	height: 100%;
}
.m-slider2 .item {
	position: absolute;
	border: 3px solid transparent;
	position: absolute;
	transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	-o-transition: .3s;
}
.m-slider2 .item:hover {
	border: 3px solid #20ae38;
}
.m-slider2 .item1 {
	width: 202px;
	height: 145px;
	left: 0;
	top: 0;
}
.m-slider2 .item2 {
	width: 202px;
	height: 262px;
	left: 0;
	bottom: 0;
}
.m-slider2 .item3 {
	width: 195px;
	height: 262px;
	left: 222px;
	top: 0;
}
.m-slider2 .item4 {
	width: 199px;
	height: 139px;
	left: 222px;
	bottom: 0;
}
.m-slider2 .item5 {
	width: 346px;
	height: 430px;
	left: 440px;
	top: 0;
}
.m-slider2 .item6 {
	width: 206px;
	height: 123px;
	right: 0;
	top: 0;
}
.m-slider2 .item7 {
	width: 206px;
	height: 285px;
	bottom: 0;
	right: 0;
}
.m-slider2 .slick-arrow {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	width: 50px;
	height: 50px;
	border: 0;
	font-size: 0;
	text-indent: 9999px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2;
	background-color: rgba(0,0,0,.3);
	background-position: center;
	background-repeat: no-repeat;
}
.m-slider2 .slick-prev {
	left: -125px;
	background-image: url(../images/i-l3.png);
}
.m-slider2 .slick-next {
	right: -125px;
	background-image: url(../images/i-r3.png);
}
.m-slider2 .slick-arrow:hover {
	background-color: #d0a75a;
}
.row-g6 {
	padding-bottom: 88px;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-g6 .g-t7 {
	color: #4b4b4b;
	margin-bottom: 40px;
}
.row-g6 .g-t7 h3 {
	color: #000;
}
.row-g6 .g-t7 h3:after {
	background-color: #000;
}
.ul-pic {
	margin: 0 80px;
	position: relative;
	height: 580px;
	width: 1320px;
	margin: 0 auto;
}
.ul-pic li {
	position: absolute;
	border: 16px solid #fff;
	box-shadow: 0px 22px 59px rgba(7,29,50,.12);
}
.ul-pic .i1 {
	top: 68px;
	left: 0;
	width: 340px;
	height: 340px;
}
.ul-pic .i2 {
	top: 68px;
	left: 355px;
	width: 340px;
	height: 187px;
}
.ul-pic .i3 {
	top: 270px;
	left: 355px;
	width: 253px;
	height: 253px;
}
.ul-pic .i4 {
	top: 0;
	left: 710px;
	width: 253px;
	height: 253px;
}
.ul-pic .i5 {
	top: 270px;
	left: 624px;
	width: 340px;
	height: 184px;
}
.ul-pic .i6 {
	top: 68px;
	right: 0;
	width: 340px;
	height: 340px;
}
.ul-pic .pic {
	overflow: hidden;
	height: 100%;
}
.ul-pic li img {
	width: 100%;
	height: 100%;
	display: block;
	transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	-o-transition: .5s;
}
.ul-pic li:hover img {
	-webkit-transform: scale(1.08);
	-moz-transform: scale(1.08);
	-o-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}
.zhao-tit {
	text-align: center;
	font-size: 45px;
	color: #000;
	font-weight: normal;
}
.ul-zhao {
	max-width: 910px;
	margin: 20px auto;
	overflow: hidden;
}
.ul-zhao li {
	float: left;
	width: 20%;
}
.ul-zhao li a {
	display: block;
	position: relative;
	height: 315px;
}
.ul-zhao li .pic {
	width: 100px;
	height: 100px;
	margin: 0 auto 3px;
}
.ul-zhao li .pic img {
	width: 100%;
	height: 100%;
	display: block;
}
.ul-zhao li span {
	font-size: 12px;
	color: #666;
	display: block;
	text-align: center;
}
.ul-zhao i {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0;
	background: url(../images/z-bg.png) no-repeat center top;
	-webkit-transition: 0.4s all ease-in-out;
	transition: 0.4s all ease-in-out;
}
.ul-zhao .con {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.ul-zhao li:hover i {
	height: 100%;
}
.ul-zhao li:hover span {
	color: #fff;
}
.btm-pic {
	margin-bottom: 20px;
}
.btm-pic img {
	display: block;
	margin: 0 auto;
}
.a-mouse {
	display: block;
	width: 30px;
	height: 64px;
	margin: 0 auto;
	background: url(../images/mouse.png) no-repeat center center;
}
.z-info {
	max-width: 700px;
	margin: 0 auto;
}
.z-info .tit {
	font-size: 45px;
	padding-left: 100px;
	height: 93px;
	line-height: 93px;
	background-repeat: no-repeat;
	background-position: left center;
	color: #000;
	font-weight: normal;
	margin-bottom: 15px;
}
.z-info .txt h4 {
	color: #24aa38;
	font-size: 16px;
	margin-bottom: 6px;
	margin-left: 15px;
}
.z-info .txt p {
	color: #666666;
	font-size: 14px;
	line-height: 28px;
	margin-bottom: 6px;
	margin-left: 15px;
}
.zhao-index .section {
	background: url(../images/z-bg2.jpg) no-repeat center center;
	/*background-attachment: fixed;*/
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.zhao-nav {
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -100px;
}
.zhao-nav li {
	margin: 14px 0;
	position: relative;
	height: 22px;
}
.zhao-nav li em {
	width: 100%;
	height: 22px;
	display: block;
	position: absolute;
	filter: none;
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0ZBMzRDOUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0ZBMzRDQUYyQjMxMUUzOUJDM0I3NTI1MzQyRkIwQSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzRkEzNEM3RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjMzRkEzNEM4RjJCMzExRTM5QkMzQjc1MjUzNDJGQjBBIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YBV7vQAAABBJREFUeNpi/P//PwNAgAEACQEC/2m8kPAAAAAASUVORK5CYII=');
	right: -5px;
	top: 50%;
	margin-top: -11px;
}
.zhao-nav li em i {
	background-color: #666666;
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	border-radius: 10px;
	right: 10px;
	top: 50%;
	margin-top: -5px;
}
.zhao-nav li span {
	width: auto;
	height: 22px;
	padding: 0 30px 0 20px;
	float: right;
	background-color: #fff;
	border: 1px solid #24aa38;
	color: #24aa38;
	display: block;
	border-radius: 15px;
	font-size: 12px;
	top: 50%;
	line-height: 21px;
	padding-left: 10px;
	opacity: 0;
	-webkit-transition: 0.4s all ease;
	transition: 0.4s all ease;
}
.zhao-nav li.active a i {
	background-color: #24aa38;
}
.zhao-nav li.active span {
	opacity: 1;
}
.zhao-nav li:hover span {
	opacity: 1;
}
.row-k1 {
	padding-top: 45px;
}
.m-t8 {
	margin-top: 32vh;
	text-align: center;
	text-align: center;
}
.m-t8 h3 {
	font-size: 86px;
	color: #fffdf3;
	margin-bottom: 40px;
}
.m-t8 span {
	height: 64px;
	display: inline-block;
	padding: 0 58px;
	border-radius: 64px;
	line-height: 64px;
	font-size: 28px;
	color: #36a110;
	background-color: #fff;
}
.m-list7-1 {
}
.m-list7-1 em {
	color: #000;
}
.m-list7-1 .i1 .tit h4 {
	background-color: #69de7f;
}
.m-list7-1 .i2 .tit h4 {
	background-color: #22becc;
}
.m-list7-1 .i3 .tit h4 {
	background-color: #69b477;
}
.m-list7-1 .i4 .tit h4 {
	height: 80%;
	background-color: #68c5aa;
}
.m-list7-1 .i5 .tit h4 {
	height: 100%;
	background-color: #539782;
}
.m-list7-1 .i6 .tit h4 {
	background-color: #b2d7b9;
}
.m-list7-1 .i7 .tit h4 {
	background-color: #94beb2;
}
.m-list7-1 .i8 .tit h4 {
	background-color: #6ca091;
}
.m-list7-1 .i9 .tit h4 {
	height: 66%;
	background-color: #3da083;
}
.m-list7-1 li {
	width: 102px;
}
.k-list1 {
	max-width: 1275px;
	margin: 0 auto;
	padding-top: 25px;
	overflow: hidden;
}
.k-list1 li {
	width: 33.33%;
	float: left;
}
.k-list1 .con {
	display: block;
	position: relative;
}
.k-list1 .pic {
	padding-top: 46%;
	height: 0;
	position: relative;
	overflow: hidden;
}
.k-list1 .pic img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.k-list1 .i1 .pic {
	padding-top: 92%;
}
.k-list1 li h4 {
	font-size: 32px;
	color: #fff;
	font-weight: normal;
	position: absolute;
	bottom: 25px;
	left: 40px;
}
.row-k2 {
	padding-top: 105px;
}
.row-k3 {
	padding-top: 85px;
}
.box-txt3 {
	position: relative;
	margin-top: 50px;
	height: 420px;
}
.box-txt3 .pic {
	position: absolute;
	top: 0;
	left: 0;
}
.box-txt3 .con {
	padding: 70px 80px 65px 90px;
	font-size: 18px;
	line-height: 37px;
	background-color: #f7f7f7;
	color: #000;
	text-align: justify;
	max-width: 935px;
	float: right;
	margin-top: 33px;
	position: relative;
	z-index: 2;
	box-shadow: 0px 21px 48px rgba(0,0,0,.08);
}
.box-txt3 .con b {
	font-size: 63px;
	font-weight: normal;
	float: left;
	line-height: 64px;
	padding-right: 18px;
	color: #258862;
}
.box-txt3 .con strong {
	font-size: 20px;
	display: block;
	letter-spacing: .5px;
}
.box-txt3 .con p {
	margin-bottom: 40px;
}
.box-txt3 .l-img {
	width: 26px;
	height: 26px;
	position: absolute;
	bottom: -63px;
	left: -73px;
	background: url(../images/i-k1.png) no-repeat center center;
}
.box-txt3 .l-img:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 100%;
	width: 1px;
	height: 212px;
	background-color: rgba(255,255,255,.5);
}
.row-k4 {
	padding-top: 100px;
}
.k-list2 {
	max-width: 1275px;
	margin: 0 auto;
	overflow: hidden;
	padding-top: 55px;
}
.k-list2 li {
	width: 20%;
	float: left;
	text-align: center;
	margin-bottom: 50px;
}
.k-list2 .ico {
	display: block;
	height: 80px;
	margin-bottom: 18px;
	background-position: center;
	background-repeat: no-repeat;
}
.k-list2 p {
	font-size: 22px;
	color: #000;
}
.row-k5 {
	padding-top: 50px;
	position: relative;
}
.row-k5 .g-t2-2 {
	padding-bottom: 80px;
	position: relative;
	z-index: 8;
}
.row-k5:after {
	content: '';
	position: absolute;
	left: 0px;
	right: 0;
	top: 140px;
	height: 340px;
	background: url(../images/i-t8.png) no-repeat center top;/*z-index: -1;*/
}
.row-k5 .case-list {
	position: relative;
	z-index: 2;
}
.row-k5 .g-btn2 {
	color: #000;
}
.row-f7 {
	margin-top: 80px;
	padding-top: 65px;
	background: url(../images/p-bg24.png) no-repeat center top;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.row-f7 .warp {
	overflow: hidden;
}
.row-f7 .col-l {
	width: 955px;
	margin-right: 11px;
	background: url(../images/bg-01.jpg) no-repeat center center;
	-o-background-size: cover;
	-ms-background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
}
.row-f7 .col-r {
	float: none;
	overflow: hidden;
	height: 635px;
	background-color: #014a7b;
	padding: 77px 0 0px;
}
.box-txt4 {
	padding: 0 75px;
	font-size: 16px;
	line-height: 35px;
	color: #fff;
	margin-bottom: 47px;
}
.box-txt4 h4 {
	font-weight: normal;
}
.row-f7 .box-btn {
	padding-left: 75px;
}
.row-f7 .ul-list6 p {
	color: #fff;
}
.j-list1 {
	height: 635px;
	position: relative;
}
.j-list1 li {
	position: absolute;
}
.j-list1 .icon {
	display: block;
	width: 120px;
	height: 120px;
	background: url(../images/i-bg3.png) no-repeat center center;
}
.j-list1 .icon i {
	display: block;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	-o-background-size: 100% auto;
	-ms-background-size: 100% auto;
	-moz-background-size: 100% auto;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
}
.j-list1 p {
	font-size: 16px;
	color: #fff;
	text-align: center;
	margin-top: -8px;
}
.j-list1 .i1 {
	left: 25%;
	top: 9%;
}
.j-list1 .i2 {
	left: 58%;
	top: 6%;
}
.j-list1 .i3 {
	left: 17%;
	top: 48%;
}
.j-list1 .i4 {
	left: 67%;
	top: 48%;
}
.j-list1 .i5 {
	left: 44%;
	bottom: 7%;
}
