@charset "utf-8";
/* CSS Document */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-size: 16px;
	color: #666;
	background: #fff;
	font-family: "microsoft yahei", "Arial Black", serif;
	overflow-x: hidden;
}

ul, li, ol, dl, dt, dd, p, h1, h2, h3, h4, h5, h6 {
	list-style: none;
	padding: 0;
	margin: 0;
}

input, textarea {
	outline: none;
}

::-webkit-input-placeholder {
	color: #bdbdbd;
}

::-moz-placeholder {
	color: #bdbdbd;
}

:-ms-input-placeholder {
	color: #bdbdbd;
}

a {
	text-decoration: none;
	color: #666666;
}

a:hover {
	color: #007338;
}

.clearfix:after {
	content: "";
	height: 0;
	line-height: 0;
	display: block;
	visibility: hidden;
	clear: both
}

.clearfix {
	zoom: 1;
}

.clear {
	clear: both
}

/*图片放大*/
.imgZoom img {
	transition: all .4s;
	-webkit-transition: all .4s;
}

.imgZoom:hover img {
	transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
}

/*图片旋转*/
.imgRotate img {
	-webkit-transition: -webkit-transform 1s ease-out;
	-moz-transition: -moz-transform 1s ease-out;
	-o-transition: -o-transform 1s ease-out;
	-ms-transition: -ms-transform 1s ease-out;
}

.imgRotate:hover img{
	-webkit-transform: rotateX(360deg);
	-moz-transform: rotateX(360deg);
	-o-transform: rotateX(360deg);
	-ms-transform: rotateX(360deg);
	transform: rotateX(360deg);
	transition:all 1s;
}

/*按钮鼠标经过变暗*/
.wlp-button:hover {
	filter: alpha(opacity=90);
	background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
	background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
}

/*鼠标经过有阴影*/
.wlp-shadow:hover {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/*鼠标经过上浮并加阴影*/
.wlp-flow-shadow {
	-webkit-transition: all .5s;
	transition: all .5s;
}

.wlp-flow-shadow:hover {
	transform: translate3d(0, -5px, 0);
	-webkit-transform: translate3d(0, -8px, 0);
	-webkit-box-shadow: 0 0 10px #e9e9e9;
	box-shadow: 0 0 10px #e9e9e9;
}

/*图片经过遮罩*/
.wlp-filter:hover img {
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
	opacity: 0.7;
}

.img {
	max-width: 100%;
	height: auto;
	display: block
}

.w1200 {
	width: 1200px;
	margin: 0 auto;
}



.header {
	width: 100%;
	height: 80px;
	position: fixed;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 999;
}

.header .logo::after {
	background: url(../images/icon1.png);
}

.header .logo {
	float: left;
}

.header .nav {
	margin-left: 110px;
	float: left;
	height: 80px;
	text-align: center;
	line-height: 80px;
}
.header .nav ul{
	height: 80px;
}
.header .nav li {
	float: left;
	font-size: 15px;
	margin-right: 85px;
	height: 80px;
}
.header .nav li a{
	position: relative;
}
.header .nav li a:before{
	content: "";
	position: absolute;
	height: 2px;
	bottom: -30px;
	left: 0;
	background-color: #007338;
	visibility: hidden;
	width: 0;
	transition: all 0.3s ease-in-out 0s;
}
.header .nav li:hover a:before, .header .nav .focus a:before{
	visibility: visible;
	width: 100%;
}
.focus a{
	color: #007338;
}

.header .language {
	font-size: 15px;
	line-height: 80px;
	float: right;
}

.banner .swiper-container {
	height: 680px;
	overflow: hidden;
	text-align: center;
	width: 100%;
}

.banner .swiper-container .swiper-slide {
	height: 680px;
	width: 100%;
}

.banner .pagination {
	position: absolute;
	z-index: 20;
	top: 640px;
	width: 100%;
	text-align: center;
}

.banner .swiper-pagination-switch {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 20px;
	background: url(../images/icon3.png);
	margin: 0 5px;
	cursor: pointer;
}

.banner .swiper-active-switch {
	background: url(../images/icon2.png);
}

.iServer {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 90px;
	position: relative;
}
.swiper-prev{
	background: url(../images/prev.png);
	position: absolute;
	width: 21px;
	height: 34px;
	top: 440px;
	left: -80px;
}
.swiper-next{
	background: url(../images/prev.png);
	position: absolute;
	width: 21px;
	height: 34px;
	top: 440px;
	right: -80px;
	transform: rotate(180deg);
}

.iServer img {
	width: 280px;
	height: 200px;
}

.iTitle {
	text-align: center;
}

.iTitle p {
	text-transform: uppercase;
	color: #EEEEEE;
	font-size: 64px;
}

.iTitle span {
	color: #007338;
	font-size: 30px;
	position: relative;
	font-weight: bold;
}

.iTitle span::after {
	content: '';
	position: absolute;
	width: 180%;
	height: 2px;
	background-color: #C8C8C8;
	display: block;
	bottom: -10px;
	left: -40%;
}

.luyi {
	color: #000000 !important;
	font-size: 12px !important;
	line-height: 60px;
}

.ban {
	width: 280px;
	height: 400px;
	margin-right: 27px;
}

.ban .link {
	position: relative;
}

.ban .link .on {
	width: 100%;
	height: 200px;
	background: rgba(0, 0, 0, 0);
	position: absolute;
	left: 0;
	top: -183px;
	opacity: 0;
	filter: Alpha(opacity=100);
	*zoom: 1;
	-webkit-transform: rotateX(180deg) scale(0.5, 0.5);
	transform: rotateX(180deg) scale(0.2, 0.2);
	transition: all ease-out .5s
}

.ban .link .on i {
	width: 40px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -20px;
	margin-left: -20px;
}

.icon {
	background: url(../images/icon14.png) no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.ban:hover .on {
	opacity: 1;
	filter: Alpha(opacity=100);
	-webkit-transform: rotateX(0deg) scale(1, 1);
	transform: rotateX(0deg) scale(1, 1);
	transition: all 1s cubic-bezier(.23, 1, .38, 1) 0s;
	background: rgba(0, 0, 0, 0.5);
}
.ban:hover .items{
	background-color: #007338;
	transition:all 1s;
}
.ban:hover .items span{
	color: #EB8203;
	transition:all 1s;
}
.ban:hover .items p{
	color: white;
	transition:all 1s;
}

.items {
	position: relative;
	top: -5px;
	background-color: #F9F9F9;
	padding-bottom: 40px;
	height: 200px;
}

.items p:nth-child(1) {
	font-size: 22px;
	line-height: 30px;
	color: #111111;
	padding-top: 40px;
	padding-bottom: 0;
}

.items p {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 42px;
	color: #A7A7A7;
	padding-bottom: 30px;
}

.items span {
	position: relative;
	font-size: 22px;
	color: #007338;
}

.items span::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	background-color: #499A71;
	display: block;
	top: 50%;
	left: -60px;
}

.items span::after {
	content: '';
	position: absolute;
	width: 40px;
	height: 1px;
	background-color: #499A71;
	display: block;
	top: 50%;
	right: -60px;
}

.ibc {
	background-image: url(../images/icon4.png);
	width: 100%;
	height: 580px;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	color: #FCFCFC;
	padding-top: 80px;
}

.ibc p {
	font-size: 32px;
	line-height: 32px;
}

.ibc span {
	font-size: 18px;
	line-height: 80px;
}

.ibc ul {
	padding-top: 80px;
}

.ibc ul li {
	float: left;
	width: 33.33%;
	margin-bottom: 65px;
}

.ibc ul li p {
	position: relative;
	font-size: 18px;
	line-height: 30px;
}

.ibc ul li p::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 2px;
	background-color: #AFAFAF;
	display: block;
	bottom: -12px;
	left: 190px;
}

.iCase {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 95px;
}

.iCase ul {
	overflow: hidden;
}

.iCase ul li {
	position: relative;
	float: left;
	width: 280px;
	height: 220px;
	overflow: hidden;
	margin-right: 26px;
	margin-bottom: 43px;
}

.iCase ul li:nth-child(4n) {
	margin-right: 0;
}

.iCase ul li p {
	line-height: 60px;
	color: white;
	width: 280px;
	height: 60px;
	position: absolute;
	top: 160px;
	z-index: 99;
	background-color: rgba(0, 0, 0, 0.5);
}

.iCase ul li:hover p {
	background-color: rgba(0, 115, 56, 0.5);
}

.iabout {
	background: url(../images/icon5.png) no-repeat center;
	background-size: cover;
	height: 580px;
	position: relative;
}

.iabout .right {
	position: absolute !important;
	top: 0;
	right: 0;
	width: 50%;
	float: right;
}

.iabout .right img {
	width: 100%;
	height: 580px;
}

.iabout .right p {
	color: #007338;
	font-weight: bold;
	font-size: 30px;
	line-height: 65px;
	width: 310px;
	height: 65px;
	position: absolute;
	top: 256px;
	background-color: white;
	text-align: right;
	padding-right: 56px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
}

.iabout .right p::before {
	content: '';
	position: absolute;
	display: block;
	width: 32px;
	height: 32px;
	background: url(../images/icon6.png) no-repeat center;
	background-size: cover;
	top: 25%;
	left: 27px;
}

.iabout .left {
	color: white;
	width: 1200px !important;
	margin: 0 auto;
}

.left1 {
	position: relative;
	width: 50%;
	height: 580px;
	left: 0;
}

.iabout .left1 > span {
	top: 120px;
	position: relative;
	font-size: 25px;
	line-height: 30px;
}

.iabout .left1 > span::before {
	content: '';
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: #007338;
	display: block;
	bottom: -40px;
}

.iabout .left1 > span::after {
	content: '';
	position: absolute;
	width: 470px;
	height: 2px;
	background-color: #AFAFAF;
	display: block;
	bottom: -40px;
	left: 50px;
}

.iabout .left p {
	position: absolute;
	top: 220px;
	width: 520px;
	font-size: 14px;
	line-height: 26px;
}

.bc {
	background: url(../images/icon7.png) no-repeat center;
	background-size: cover;
	height: 200px;
	width: 600px;
	position: absolute;
	bottom: 0;
	text-align: center;
}

.bc .shu {
	color: #007338;
	font-size: 64px !important;
	position: relative;
	top: 50px;
	padding-right: 56px;
}

.bc span {
	color: #007338;
	font-size: 64px !important;
	position: relative;
	top: 50px;
	padding-right: 80px;
	font-weight: 100;
}

.shu::after {
	font-family: "microsoft yahei", "Arial Black", serif;
	content: '多种服务';
	font-size: 14px;
	position: absolute;
	display: inline-block;
	bottom: 14px;
}

.liang::after {
	font-family: "microsoft yahei", "Arial Black", serif;
	content: '万注册资本';
	font-size: 14px;
	position: absolute;
	display: inline-block;
	bottom: 14px;
}

.bc p {
	width: 100% !important;
	text-align: center !important;
	top: 150px !important;
	color: #6D6D6C;
}

/*.iabout .right:hover{*/
/*	width: 45%;*/
/*}*/
/*.iabout .right:hover .left1{*/
/*	left: 20px;*/
/*}*/

.inew {
	padding-top: 60px;
	height: 710px;
	margin-bottom: 10px;
}

.inew .left {
	float: left;
	width: 580px;
	overflow: hidden;
}

.inew .right {
	float: right;
	width: 580px;
	overflow: hidden;

}

.inew .right li {
	margin-bottom: 27px;
}

.inew .time {
	background-color: #999999;
	color: white;
	width: 80px;
	height: 80px;
	text-align: center;
	float: left;
	margin-right: 20px;
}

.inew .time p {
	font-size: 36px;
}

.inew .time span {
	font-size: 14px;
}

.inew .icontent {
	height: 80px;
}

.inew .icontent dd {
	font-size: 12px;
	line-height: 22px;
	width: 470px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.inew .icontent .inewTitle {
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
}

.inew li:hover .time {
	background-color: #007338;
}

.inew li:hover .inewTitle a {
	color: #007338;
}


.footer {
	width: 100%;
	padding-top: 36px;
	background-color: #F5F5F5;
	height: 380px;
}

.footer .footerNav ul {
	height: 70px;
	line-height: 70px;
	border-top: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
}

.footer .footerNav li {
	float: left;
	font-size: 14px;
	text-indent: 32px;
	list-style-type: square;
	margin-right: 95px;
	color: #999999;
}
.footer .footerNav li:hover{
	color: #007338;
}

.footer .footerNav li:last-child {
	margin-right: 0;
}

.footer .footerContact ul {
	width: 100%;
	height: 275px;
	padding-top: 40px;
}

.footer .footerContact ul li {
	float: left;
	font-size: 14px;
	line-height: 30px;
}

.footer .footerContact ul li p {
	font-size: 18px;
	line-height: 30px;
	padding-bottom: 15px;
}

.footer .footerContact ul li:first-child dd {
	width: 500px;
}

.footer .footerContact ul li dd {
	width: 400px;
}

.footer .footerContact ul li dd a {
	padding-right: 30px;
}

.footer .footerContact ul li:last-child {
	float: right;
}

.footer .footerContact ul li img {
	margin-top: 10px;
	margin-bottom: -15px;
}

.footer .footerContact ul li span {
}

.ewm {
	text-align: center;
}

.copyright {
	height: 70px;
	line-height: 70px;
	font-size: 14px;
	background-color: #007338;
	color: #E9EFEB;
}

.copyright p {
	float: left;
	width: 1000px;
}

.copyright img {
	float: right;
}


.innerBanner {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	height: 520px;
}

.orientation {
	height: 72px;
}

.orientation img {
	vertical-align: middle;
	margin-right: 10px;
}

.orientation p {
	float: right;
	height: 72px;
	line-height: 72px;
	font-size: 14px;
	position: relative;

}

.orientation p::after {
	content: '';
	position: absolute;
	width: 1920px;
	height: 2px;
	background-color: #AFAFAF;
	display: block;
	right: -360px;
}

.content {
	padding-top: 37px;
	padding-bottom: 90px;
	overflow: hidden;
}

.sidebar {
	width: 240px;
	float: left;
}

.sidebar ul {
	width: 240px;
}

.sidebar li {
	height: 43px;
	line-height: 43px;
	padding-left: 36px;
	width: 240px;
	border: 1px solid #E6E6E6;
	border-top: none;
}

.sidebar li a {
	display: block;
}

.sidebarTitle {
	background: url(../images/icon9.png) no-repeat;
	width: 240px;
	height: 90px;
	padding-left: 36px;
	padding-top: 14px;
}

.sidebarTitle h2 {
	font-size: 22px;
	color: white;
	line-height: 40px;
	position: relative;
}

.sidebarTitle h2::after {
	content: '';
	position: absolute;
	display: block;
	width: 30px;
	height: 1px;
	background-color: #5FA782;
	left: 0;
	bottom: 0;
}

.sidebarTitle p {
	font-size: 12px;
	text-transform: uppercase;
	color: #99BFA9;
	line-height: 32px;
}

.sidebar .title2 {
	background: url(../images/icon11.png);
	width: 100%;
	height: 60px;
	padding-left: 36px;
	margin-top: 20px;
}

.sidebar .title2 h2 {
	line-height: 60px;
	color: white;
}

.sidebar p {
	font-size: 14px;
	height: 39px;
	line-height: 39px;
	padding-left: 36px;
}

.sidebar img {
	margin-right: 7px;
	vertical-align: middle;
}

.sidebar span {
	padding-left: 36px;
	font-size: 22px;
	line-height: 22px;
	color: #007338;
}

.sidebar .sidebarAddress {
	padding-top: 20px;
	padding-left: 36px;
	font-size: 14px;
	line-height: 22px;
	height: 82px;
	border-bottom: 1px solid #E6E6E6;
}

.main {
	width: 893px;
	float: right;
}

.main .title {
	padding-top: 10px;
}

.main .title h2 {
	font-size: 22px;
	line-height: 56px;
	position: relative;
	width: 100%;
	height: 90px;
}

.main .title h2::after {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon10.png);
	width: 893px;
	height: 4px;
}

.main > p {
	font-size: 14px;
	line-height: 26px;
	margin-bottom: 20px;
}

.main .about img {
	margin-top: 50px;
}

.main .news {
}

.main .news .img {
	float: left;
	width: 470px;
	height: 320px;
	overflow: hidden;
}

.main .news .right {
	float: right;
	width: 390px;
	padding-top: 90px;
	height: 320px;
}

.main .news .right h2 {
	font-size: 16px;
	font-weight: normal !important;
	line-height: 30px;
}

.main .news .right .time1 {
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 20px;
}

.main .news .right p {
	font-size: 12px;
	line-height: 22px;
}

.main .news ul li {
	border-top: 1px dashed #D8D8D8;
	padding-top: 40px;
	overflow: hidden;
	height: 160px;
	display: block;
}

.main .news ul li:last-child {
	border-bottom: 1px dashed #D8D8D8;
	padding-bottom: 40px;
}

.main .news ul li:hover .time {
	background-color: #007338;
}

.main .news ul li:hover .icontent .inewTitle a {
	color: #007338;
}

.main .news ul li .time {
	background-color: #999999;
	color: white;
	width: 80px;
	height: 80px;
	text-align: center;
	float: left;
	margin-right: 20px;
}

.main .news ul li .time p {
	font-size: 36px;
}

.main .news ul li .time span {
	font-size: 14px;
}

.main .news ul li .icontent .inewTitle {
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
}

.main .news ul li .icontent dd {
	font-size: 12px;
	line-height: 22px;
	width: 790px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.page {
	padding-top: 50px;
	text-align: center;
}

.page span {
	height: 40px;
	font-size: 18px;
	line-height: 40px;
	border: 1px solid #EAEAEA;
	padding: 10px 20px;
	overflow: hidden;
	margin-right: 5px;
}

.page .prev, .page .next {
	padding: 10px 30px;
}

.current {
	background-color: #007338;
	color: white;
}

.news1 p {
	font-size: 14px;
	line-height: 30px;
}

.server ul {
	overflow: hidden;
	text-align: center;
}

.server ul li {
	position: relative;
	float: left;
	width: 280px;
	height: 220px;
	overflow: hidden;
	margin-right: 26px;
	margin-bottom: 43px;
}

.server ul li:hover p {
	background-color: rgba(0, 115, 56, 0.5);
}

.server ul li:nth-child(3n) {
	margin-right: 0;
}

.server ul li p {
	line-height: 60px;
	color: white;
	width: 280px;
	height: 60px;
	position: absolute;
	top: 160px;
	z-index: 99;
	background-color: rgba(0, 0, 0, 0.5);
}

.server1 {
	background: url("../images/icon13.png") no-repeat center;
	width: 893px;
	height: auto;
	padding-top: 45px;
	padding-left: 73px;
	position: relative;
}

.server1 p {
	text-align: center;
	position: absolute;
	height: 60px;
	width: 280px;
	line-height: 60px;
	font-size: 14px;
	color: white;
	background: rgba(0, 115, 56, 0.5);
	top: 195px;
	left: 468px;
}

.case1 {
	text-align: center;
}

.case1 img {
	width: 80%;
}
















