﻿/*
 *	Created by Edward on 23/06/25
 *	Copyright (c) 2023 ishutime.com All rights reserved
*/

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

@font-face {
	font-family: 'iconfont';
	src: url('iconfont.woff2') format('woff2'),
		url('iconfont.woff') format('woff'),
		url('iconfont.ttf') format('truetype');
}


.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale;
}


@font-face {
	font-family: AlibabaSans;
	src: url(../fonts/Poppins-Bold.ttf)
}

@font-face {
	font-family: Brown;
	src: url(../fonts/brown/brown-light.woff2)
}

@font-face {
	font-family: BrownBlod;
	src: url(../fonts/brown/brown-regular.woff2)
}

.c-scrollbar_thumb {
	background: #000000;
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9;
	display: flex;
	justify-content: space-between;
	padding: 0px 3%;
	transition: 0.5s all;
	align-items: center;
}

header .logo {
	width: 180px;
	display: block;
	transition: 0.5s all;
	position: relative;
}

header .logo img:nth-child(1) {
	display: block;
}

header .logo img:nth-child(2) {
	display: none;
}

header nav {
	width: calc(100% - 400px);
	transition: 0.5s all;
}

header nav ul {
	display: flex;
	width: 100%;
}

header nav ul li {
	width: calc(100% / 8);
	text-align: center;
	line-height: 80px;
	position: relative;
	transition: 0.45s all;
}

header nav ul li a {
	color: white;
	font-size: 16px;
	position: relative;
	display: block;
	align-items: center;
	z-index: 9;
	-webkit-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

header nav ul li a:hover {
	color: #424242;
}

header nav ul li ul {
	width: 100%;
	position: absolute;
	display: block;
	text-align: center;
	top: 80px;
	transition: 0.45s all;
	opacity: 0;
	pointer-events: none;
	height: 260px;
	padding-top: 10px;
}

header nav ul li ul::after {
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0%;
	top: 0%;
	content: '';
	background: rgba(0, 0, 0, 0.05);
}

header nav ul li:nth-child(2) ul::before {
	width: 1px;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	content: '';
	background: rgba(0, 0, 0, 0.05);
}

header nav ul li ul li {
	text-align: center;
	width: 100%;
	line-height: 40px;
	top: 20px;
	opacity: 0;
	transition: none;
}

header:hover nav ul li ul li {
	transition: 0.45s all;
	opacity: 1;
	top: 0px;
}

header:hover nav ul li ul li:nth-child(2) {
	transition: 0.45s all .075s;
}

header:hover nav ul li ul li:nth-child(3) {
	transition: 0.45s all .15s;
}

header:hover nav ul li ul li:nth-child(4) {
	transition: 0.45s all .21s;
}

header:hover nav ul li ul li:nth-child(5) {
	transition: 0.45s all .28s;
}

header:hover nav ul li ul li:nth-child(6) {
	transition: 0.45s all .35s;
}

header nav ul li ul li a {
	text-align: center;
	display: block;
	font-size: 14px;
}

header nav ul li ul li a::after {
	content: "";
	width: 0%;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	transition: all 0.4s;
}

header nav>ul>li:hover {
	background: #009358;
}

header.active nav>ul>li:hover>a {
	color: #fff;
}

header nav ul li:hover ul {
	background: #009358;
}

header.sub:hover nav ul li:hover a {
	color: white;
}

header .phoneBox {
	color: #fff;
	display: block;
	text-align: center;
	position: relative;
}

header .phoneBox a {
	font-family: BrownBlod;
	font-size: 20px;
	transition: 0.5s all;
	color: white;
	display: flex;
	align-items: center;
}

header .phoneBox i {
	font-size: 30px;
	position: relative;
	height: 30px;
	line-height: 30px;
	margin-right: 5px;
	top: 2px;
}

header::before {
	content: '';
	position: absolute;
	left: 0;
	background: white;
	width: 100%;
	height: 0;
	transition: 0.3s all;
	opacity: 0;
	height: 340px;
	top: 0px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .05);
	visibility: hidden;
}

header:hover::before {
	opacity: 1;
	visibility: visible;
}

header.active,
header.active2 {
	background: white;
}

header.active::after,
header.active2::after,
header:hover::after {
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0%;
	content: '';
	background: rgba(0, 0, 0, .05);
	top: 80px;
	pointer-events: none;
}

header.active .logo img:nth-child(1),
header.active2 .logo img:nth-child(1) {
	display: none;
}

header.active .logo img:nth-child(2),
header.active2 .logo img:nth-child(2) {
	display: block;
}

header:hover nav ul li a,
header.active nav ul li a,
header.active2 nav ul li a {
	color: #424242;
}

header:hover nav ul li ul {
	pointer-events: all;
	opacity: 1;
}

header:hover nav ul li ul li a::after {
	content: "";
	width: 0%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 50%;
	bottom: 5px;
	transform: translateX(-50%);
	transition: all 0.4s;
}

header:hover nav ul li ul li:hover a::after {
	width: 20%;
}

header:hover nav ul .lis:hover a {
	color: white;
}


header:hover nav ul .lis:hover ul::before li a {
	color: white;
}


header:hover .phoneBox a,
header.active .phoneBox a,
header.active2 .phoneBox a {
	color: #000000;
}

header:hover .phoneBox i,
header.active .phoneBox i,
header.active2 .phoneBox i {
	color: #009358;
}



.circle-box {
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
}

.circle-box .circle-default {
	position: absolute;
	top: -18px;
	left: -18px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	opacity: 1;
	box-sizing: border-box;
	z-index: 99;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

.honor_btn{
	width: 30%;
	height: auto;
	position: absolute;
	top: 55%;
	left: 50%;
	display: flex;
}

.honor_btn .btn{
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: relative;
	margin-right: 15px;
	border-radius: 50%;
	background: #fff;
	-webkit-transition: all .5s;
	opacity: 0.65;
	outline: none;
}

.honor_btn .btn:hover{
	opacity: 1;
}

.honor_btn .btn::after{
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	background: url(../images/honor_icon.png) no-repeat;
	background-size: auto 100%;
	content: '';
}

.honor_btn .btn.honor_next::after{
	background-position: -20px 0px;
}

.circle-box.show-pointer {
	opacity: 1;
}

.homeSwiper {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.homeSwiper>.swiper-wrapper>.swiper-slide {
	overflow: hidden;
}

.homeSwiper .swiper-slide .f2 {
	width: 100%;
	height: 100vh;
	background: url('../images/index4_1.jpg') center no-repeat;
	background-size: cover !important;
}

.homeSwiper .swiper-slide .f3 {
	width: 100%;
	height: 100vh;
	background: url('../images/index5.jpg') center no-repeat;
	background-size: cover !important;
}

.homeSwiper .swiper-slide .f4 {
	width: 100%;
	height: 100vh;
	background: url('../images/index6.jpg') center no-repeat;
	background-size: cover !important;
	display: flex;
}

.homeSwiper .swiper-slide .f4 .left {
	width: 60vw;
	display: flex;
}

.homeSwiper .swiper-slide .f4 .left .imgBox {
	position: absolute;
	transform: translate(-10%, -70%);
	left: 10%;
	top: 70%;
	cursor: pointer;
}

.homeSwiper .swiper-slide .f4 .left .imgBox .img {
	width: 23vw;
	height: 14vw;
	background-size: cover !important;
	margin-bottom: 1vw;
	overflow: hidden;
	border: 3px solid transparent;
	transition: 0.5s all;
}

.homeSwiper .swiper-slide .f4 .left .imgBox .img .text {
	width: 23vw;
	color: white;
	position: absolute;
	font-size: 18px;
	padding: 0 1vw;
	margin-top: 11.5vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.homeSwiper .swiper-slide .f4 .left .imgBox .active {
	border: 3px solid white;
}

.homeSwiper .swiper-slide .f4 .left .f4Swiper {
	width: 23vw;
	margin-left: 32vw;
}

.homeSwiper .swiper-slide .f4 .left .f4Swiper .swiper-slide {
	width: 23vw !important;
	height: 14vw !important;
	cursor: pointer;
}

.homeSwiper .swiper-slide .f4 .left .f4Swiper .swiper-slide .img {
	width: 23vw;
	height: 14vw;
	overflow: hidden;
	background-size: cover !important;
	border: 3px solid transparent;
	transition: 0.5s all;
}

.homeSwiper .swiper-slide .f4 .left .f4Swiper .swiper-slide .img .text {
	width: 23vw;
	color: white;
	position: absolute;
	font-size: 18px;
	padding: 0 1vw;
	margin-top: 11.5vw;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.homeSwiper .swiper-slide .f4 .left .f4Swiper .swiper-slide .active {
	border: 3px solid white;
}

.homeSwiper .swiper-slide .f4 .right {
	width: 40vw;
	color: white;
	padding: 0 5vw;
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(40%, -50%);
	transition: 0.5s all;
}

.homeSwiper .swiper-slide .f4 .right .tit {
	font-size: 16px;
}

.homeSwiper .swiper-slide .f4 .right .name {
	font-weight: bold;
	font-size: 26px;
	margin-top: 1vw;
	margin-bottom: 2vw;
	letter-spacing: 2px;
	line-height: 1.7;
}

.homeSwiper .swiper-slide .f4 .right .des {
	font-size: 16px;
	line-height: 2;
	text-align: justify;
}

.homeSwiper .swiper-slide .f4 .right .more {
	width: 8vw;
	display: block;
	margin-top: 3vw;
}

.homeSwiper .swiper-slide .f5 {
	width: 100%;
}

.homeSwiper .swiper-slide:last-child {
	height: auto;
}

.homeSwiper .homeSwiper-pagination {
	bottom: 1vw;
	right: 3vw;
	top: inherit;
}

.homeSwiper .homeSwiper-pagination .swiper-pagination-bullet-active {
	background: #d54b21;
}

.banner {
	width: 100%;
	height: 100%;
	position: relative;
	left: 0;
	top: 0;
	overflow: hidden
}

.banner ul {
	height: 100%;
	width: 100%
}

.banner ul li {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	-webkit-transition: opacity .6s cubic-bezier(.55, .085, .68, .53);
	-webkit-transition-delay: .2s;
	will-change: opacity;
	visibility: hidden
}

.banner ul li .img {
	-webkit-transform: scale(1);
	position: relative;
	width: 100%;
	height: 100%
}

.banner ul li .img .a {
	background: center center no-repeat;
	background-size: cover;
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	opacity: 1;
	-webkit-transition: opacity .6s cubic-bezier(.445, .05, .55, .95);
	transition: none
}

.banner ul li.active {
	z-index: 1;
	opacity: 1;
	-webkit-transition: opacity .6s cubic-bezier(.455, .03, .515, .955);
	-webkit-transition-delay: 0
}

.banner ul li.visible {
	visibility: visible
}

.banner ul li.visible .img {
	-webkit-transform: scale(1.1);
	-webkit-transition: -webkit-transform 8s linear
}

.banner ul li.visible .img .a {
	transition: none;
	opacity: 1;
	-webkit-transition: opacity .6s cubic-bezier(.445, .05, .55, .95)
}

.banner ol {
	position: absolute;
	width: 90%;
	height: 20px;
	left: 5%;
	bottom: 5vh;
	z-index: 10;
	display: flex;
}

.banner ol li {
	width: 15px;
	height: 8px;
	background: rgba(255, 255, 255, .5);
	display: block;
	margin: 0 5px;
	border-radius: 5px;
	-webkit-transition: all .45s;

	transform-origin: bottom;
	cursor: pointer;
}

.banner ol li.active {
	width: 25px;
	background: #fff
}

.banner-pagi {
	width: 90%;
	height: auto;
	position: absolute;
	left: 5%;
	display: flex;
	bottom: 5vh;
	justify-content: center;
}

.banner-pagi span {
	display: block;
	width: 20px;
	height: 20px;
	position: relative;
	background: url(../images/water_icon.png) no-repeat;
	background-size: cover;
	margin-right: 10px;
	cursor: pointer;
	opacity: 0.5;
}

.banner-pagi span.active {
	background-position: -20px 0px;
	opacity: 1;
}

.banner-pagi span:last-child {
	margin-right: 0px;
}

.scene-nav {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 3%;
	top: 50%;
	margin-top: -25px;
	background: url(../images/icon1.png) no-repeat;
	z-index: 20;
	cursor: pointer;
	-webkit-transition: all .35s;
	outline: none;
	border: none;
	background-size: cover;
	opacity: 0.5;
}

.scene-nav.scene-nav--prev {
	left: 5%;
	-webkit-transform: rotate(-180deg);
}

.scene-nav.scene-nav--next {
	left: auto;
	right: 5%
}

.scene-nav:hover {
	background-position: 0 0;
	-webkit-transform: scale(1);
	opacity: 1
}

.scene-nav.scene-nav--prev:hover {
	-webkit-transform: scale(1) rotate(-180deg)
}

.process {
	width: 0%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #2c9a62;
	z-index: 10
}

.process.on {
	-webkit-transition: all 7s linear;
	width: 100%
}

.banner ul li .text {
	width: 100%;
	height: auto;
	color: #fff;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	text-align: center;
}

.slogan {
	width: 100%;
	height: auto;
	color: #fff;
	position: absolute;
	top: 45%;
	-webkit-transform: translateY(-50%);
	text-align: center;
	z-index: 5;
	-webkit-transition: all .5s;
}

.slogan.active {
	opacity: 1;
	visibility: visible;
}

.slogan ul li {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0%;
	top: 0%;
}

.slogan ul li .title {
	font-size: 3.5vw;
	overflow: hidden;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
	margin-bottom: 1vw;
	line-height: 1;
	font-weight: bold;
}

.slogan ul li .des {
	font-size: 24px;
	text-transform: capitalize;
	font-family: BrownBlod;
	overflow: hidden;
	line-height: 1;
}

.nav_icon {
	display: none;
}

.slogan ul li p {
	-webkit-transform: translateY(100%);
	opacity: 0;
}

.slogan ul li.active p {
	-webkit-transform: translateY(0%);
	-webkit-transition: all 2s;
	opacity: 1;
}

.slogan ul li.active .des p {
	-webkit-transition: all 1s ease .3s;
}

.uperText {
	-webkit-transition: all .5s;
	opacity: 0;
}

.uperText.active {
	opacity: 1;
}

.mouse_icon {
	width: 26px;
	height: auto;
	position: absolute;
	right: 3%;
	margin-left: -13px;
	bottom: 5%;
	z-index: 20;
}

.mouse_icon::after {
	width: 3px;
	height: 8px;
	border-radius: 5px;
	position: absolute;
	left: 50%;
	margin-left: -1.5px;
	top: 10px;
	content: '';
	background: #fff;
	-webkit-animation: mouseMove 1.5s ease infinite;
}

@-webkit-keyframes mouseMove {

	0%,
	100% {
		top: 10px;
	}

	50% {
		top: 15px;
	}
}

.main-slider__inner {
	position: absolute;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	background: center bottom no-repeat;
	background-size: cover;
}

.slide2 .w1400 {
	width: 80%;
	height: auto;
	position: absolute;
	left: 10%;
	top: 15%;
	text-align: center;
}

.slide2 .singePage {
	width: 60%;
	margin-left: 20%;
	font-size: 16px;
	margin-bottom: 2vw;
	opacity: 0;
	position: relative;
	-webkit-transition: all 1s ease .6s;
	top: 20px;
}

.slide2.swiper-slide-active .singePage {
	top: 0px;
	opacity: 1;
}

.common_title {
	width: 100%;
	position: relative;
	margin-bottom: 2vw;
}

.common_title .tips {
	width: 100%;
	position: relative;
	height: 25px;
	line-height: 25px;
	margin-bottom: 0.2vw;
	font-size: 16px;
	color: #009358;
	overflow: hidden;
	font-family: Brown;
	text-transform: uppercase;
}

.common_title.w {
	color: #fff;
}

.common_title.w .tips {
	color: #fff;
}

.common_title .tips p {
	-webkit-transform: translateY(100%);
	-webkit-transition: all 1s ease .1s;
}


.common_title .name p {
	-webkit-transform: translateY(100%);
	-webkit-transition: all 1s ease .2s;
}


.common_title .name {
	font-size: 36px;
	line-height: 1.4;
	overflow: hidden;
	font-weight: bold;
}

.swiper-slide-active .common_title p {
	-webkit-transform: translateY(0%);
}


.numer {
	width: 100%;
	margin-bottom: 3vw;
}

.numer ul {
	width: 100%;
	display: flex;
	justify-content: center;
}

.numer ul li {
	width: auto;
	position: relative;
	padding: 0px 50px;

	position: relative;
	-webkit-transition: all 1s ease .7s;
	top: 20px;
	opacity: 0;
}

.numer ul li:nth-child(2) {
	-webkit-transition: all 1s ease .8s;
}

.numer ul li:nth-child(3) {
	-webkit-transition: all 1s ease .9s;
}

.slide2.swiper-slide-active .numer ul li {
	top: 0px;
	opacity: 1;
}

.slide2 .wfMore {
	position: relative;
	-webkit-transition: all 1s ease 1s;
	top: 20px;
	opacity: 0;
}

.slide2.swiper-slide-active .wfMore {
	top: 0px;
	opacity: 1;
}

.numer ul li::after {
	width: 1px;
	height: 80%;
	position: absolute;
	right: 0%;
	top: 10%;
	content: '';
	background: rgba(0, 0, 0, 0.1);
}

.numer ul li:last-child::after{
	display: none;
}

.numer ul li .num {
	color: #009358;
	display: flex;
	line-height: 1;
	margin-bottom: 10px;
	font-family: BrownBlod;
	align-items: flex-end;
}

.numer ul li .num b {
	font-size: 48px;
}

.numer ul li .num p {
	font-size: 16px;
	position: relative;
	bottom: 5px;
}

.numer ul li .txt {
	width: 100%;
	font-size: 16px;
	text-align: center;
}

.wfMore {
	width: 160px;
	height: 50px;
	position: relative;
	display: block;
	background: rgba(0, 147, 88, 0.1);
	border-radius: 5px;
	overflow: hidden;
	line-height: 50px;
	font-size: 16px;
	-webkit-transition: all .5s;
	border: 1px solid #009358;
	overflow: hidden;
	color: #009358;
}

.wfMore.w {
	border: 1px solid #fff;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.wfMore.w::before {
	background-color: #fff;
}

.wfMore.w:hover p,
.wfMore.w:hover .icon {
	color: #009358;
}

.wfMore.c {
	margin: 0px auto;
}

.wfMore:hover p,
.wfMore:hover .icon {
	color: #fff;
}

.wfMore::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: #009358;
	border-radius: 0px;
	transform: scaleX(0);
	transform-origin: right;
	-webkit-transition: transform 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.wfMore:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.wfMore .icon {
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	right: 30px;
	z-index: 3;
	font-size: 24px;
	-webkit-transition: all .5s;
}

.wfMore .icon i {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 25px;
	height: 25px;
	line-height: 25px;
}

.wfMore .icon i:nth-child(2) {
	position: absolute;
	left: -20px;
	top: 0px;
	opacity: 0;

}

.wfMore:hover .icon i {
	left: 20px;
	opacity: 0;
}

.wfMore:hover .icon i:nth-child(2) {
	left: 0px;
	opacity: 1;
}

.wfMore p {
	position: absolute;
	width: auto;
	left: 35px;
	z-index: 3;
	-webkit-transition: all .5s;
}


.bg3 {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
}

.bg3::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	bottom: 0%;
	background: linear-gradient(-180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
	content: '';
	top: auto;
}

.bg3 .img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: center center no-repeat;
	background-size: cover;
	-webkit-transform: scale(1.1);
	opacity: 0;
	-webkit-transition: all 2s;
}

.bg3 .img.active {
	-webkit-transform: scale(1);
	opacity: 1;
}

.slide3 .left {
	width: 40%;
	position: absolute;
	left: 7.5%;
	top: 20%;
}

.slide3 .left li {
	width: 100%;
	position: absolute;
	left: 0%;
	top: 50px;
	opacity: 0;
	visibility: hidden;
	
}

.slide3 .common_title .tips p{
	-webkit-transition: all 1s ease;
}

.slide3 .common_title .name p{
	-webkit-transition: all 1s ease;
}

.slide3 .left li.active {
	top: 0px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 1s;
}

.slide3 .singePage {
	font-size: 16px;
	margin-bottom: 4vw;
	-webkit-transition: all 1s ease;
	-webkit-transform: translateY(40px);
	opacity: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.singePage.w {
	color: #fff;
}

.swiper-slide-active.slide3 .singePage {
	-webkit-transform: translateY(0px);
	opacity: 1;
}

.slide3 .wfMore {
	-webkit-transition: all 0.5s ease;
	-webkit-transform: translateY(40px);
	opacity: 0;
}

.swiper-slide-active.slide3 .wfMore {
	-webkit-transform: translateY(0px);
	opacity: 1;
}


.wave_icon {
	width: 100%;
	height: 130px;
	position: absolute;
	left: 0%;
	bottom: 10%;
	padding: 0px 7.5%;
	-webkit-transition: all 1s ease 0.8s;
	-webkit-transform: translateY(40px);
	opacity: 0;
}

.swiper-slide-active.slide3 .wave_icon {
	-webkit-transform: translateY(0px);
	opacity: 1;
}

/* .wave_icon::before {
	width: 100%;
	height: 120px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	background: url(../images/line.png) center center;
	content: '';
	left: 0px;
}
 */
.wave_icon ul {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: flex-end;
}

.wave_icon ul a {
	width: 200px;
	height: 130px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	cursor: pointer;
	align-content: center;
	top: 0px;
	-webkit-animation: loopAnimate 5s linear infinite;
}

@-webkit-keyframes loopAnimate {

	0%,
	100% {
		-webkit-transform: translateY(0px);
	}

	50% {
		-webkit-transform: translateY(30px);
	}
}

.wave_icon ul a:nth-child(even) {
	-webkit-animation-delay: 2.5s;
}

.wave_icon ul a:nth-child(even) {
	top: 30px;
}



.wave_icon ul a .img {
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 10px;
	-webkit-transition: all .5s;
	border: 2px solid #fff;
	position: relative;
	margin: 0px auto;
	margin-bottom: 10px;
}

.wave_icon ul a .img::after {
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	content: '';
	background: #009358;
	border-radius: 50%;
	-webkit-transition: all .5s;
}

.wave_icon ul a.active .img::after {
	opacity: 0;
	-webkit-transform: translate(-50%, -50%) scale(10);
}

.wave_icon ul a .img img {
	opacity: 0;
	-webkit-transition: all .5s;
}

.wave_icon ul a.active .img {
	width: 100px;
	height: 100px;
	border: 2px solid #009358;
}

.wave_icon ul a.active .img img {
	opacity: 1;
}

.wave_icon ul a .txt {
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 16px;
}

.nameTop {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3vw;
}

.nameTop .common_title {
	margin-bottom: 0px;
	width: calc(100% - 200px);
}

.contents {
	width: 85%;
	height: 100vh;
	position: absolute;
	left: 7.5%;
	top: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.slide-wrapper {
	display: none;
}

canvas {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

.contents .left {
	width: 60%;
	height: 100vh;
	overflow: hidden;
}



.contents .right {
	width: 35%;
}

.cleft {
	float: left;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
}

.cleft,
.cswiper {
	width: 48%;
	margin: 0px;
}

.cswiper {
	float: left;
	margin-left: 4%;
	height: 100%;
}

.cswiper .swiper-slide {
	margin-bottom: 2vw;
	width: 100%;
	height: auto;
	-webkit-transition: all .5s;
}

.cswiper .swiper-slide.swiper-slide-active {
	opacity: 1;
}

.cswiper .swiper-slide.swiper-slide-next,
.cswiper .swiper-slide.swiper-slide-prev {
	opacity: 0.85;
}

.cswiper .swiper-slide a {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}

.cswiper .swiper-slide a .name {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding: 15px;
	color: #fff;
	font-size: 16px;
}

.focusCase {
	width: 100%;
	display: block;
	position: relative;
	margin-bottom: 2vw;
	/* transition: -webkit-clip-path .3s cubic-bezier(.215,.61,.355,1);
	transition-duration: 1.6s; */
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	-webkit-transition: all 1.6s cubic-bezier(.215, .61, .355, 1);
	top: 50px;
}

.news_box .focus,
.news_list li {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	-webkit-transition: all 1.6s cubic-bezier(.215, .61, .355, 1) .4s;
	top: 50px;
}

.news_box .focus:nth-child(2) {
	-webkit-transition: all 1.6s cubic-bezier(.215, .61, .355, 1) .6s;
}

.news_list li:nth-child(2) {
	-webkit-transition: all 1.6s cubic-bezier(.215, .61, .355, 1) .6s;
}

.news_list li:nth-child(3) {
	-webkit-transition: all 1.6s cubic-bezier(.215, .61, .355, 1) .8s;
}

.slide5.swiper-slide-active .news_box .focus,
.slide5.swiper-slide-active .news_list li {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	top: 0px;
}

.focusCase:nth-child(2) {
	transition-delay: .4s;
}

.cswiper .swiper-slide {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	-webkit-transition: all 1.6s cubic-bezier(.215, .61, .355, 1) .5s;
	top: 50px;
}

.slide4.swiper-slide-active .focusCase,
.slide4.swiper-slide-active .cswiper .swiper-slide {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	top: 0px;
}

.focusCase .name {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding: 15px;
	color: #fff;
	font-size: 16px;
}

.news_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}


.news_list li {
	width: 100%;
	position: relative;
}

.news_list li a {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	justify-content: space-between;
}

.news_list li a .thum {
	width: 45%;
}

.news_list li a .info {
	width: 52%;
}

.news_box .list {
	width: calc(40% - 30px);
}

.news_box .left {
	width: 60%;
	display: flex;
	justify-content: space-between;
}

.news_box .focus {
	width: calc(50% - 15px);
	display: block;
	position: relative;
}

.news_box .focus .showBox {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: #009358;
	color: #fff;
	padding: 50px 35px;
	-webkit-transition: all .5s;
	opacity: 0;
	visibility: hidden;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.news_box .focus .showBox .wfMore {}

.news_box .focus:hover .showBox {
	opacity: 1;
	visibility: visible;
}

.news_box .focus img {
	display: none;
}

.news_box .focus .thum {
	height: calc(100% - 205px);
}

.news_box .focus .thum .pic {
	height: 100%;
}

.news_box .focus .info {
	width: 100%;
	height: 205px;
	position: relative;
	background: #fff;
	padding: 35px 25px;
}

.news_box .focus .info .time,
.news_box .focus .showBox .time {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 12px;
	margin-bottom: 5px;
}

.news_box .focus .info .time i,
.news_box .focus .showBox .time i {
	width: 20px;
	height: 20px;
	position: relative;
	line-height: 20px;
	font-size: 16px;
}

.news_box .focus .info .time p,
.news_box .focus .showBox .time p {
	width: calc(100% - 20px);
}

.news_box .focus .info .name,
.news_box .focus .showBox .name {
	width: 100%;
	height: 60px;
	position: relative;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 10px;
	overflow: hidden;
}

.news_box .focus .showBox .name {
	font-weight: bold;
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 35px;
	height: 70px;
}

.news_box .focus .info .des,
.news_box .focus .showBox .des {
	width: 100%;
	height: 40px;
	position: relative;
	font-size: 14px;
	line-height: 20px;
	opacity: .6;
	overflow: hidden;
}

.news_box .focus .showBox .des {
	font-size: 16px;
	line-height: 25px;
	height: 100px;
	margin-bottom: 25px;
	-webkit-line-clamp: 4;
}

.slide5 {
	display: flex;
	align-items: center;
}

.news_list li a {
	color: #fff;
}

.news_list li a .name {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 10px;
}

.news_list li a .time {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 12px;
	margin-bottom: 5px;
}

.news_list li a .time i {
	width: 20px;
	height: 20px;
	position: relative;
	line-height: 20px;
	font-size: 16px;
}

.news_list li a .time p {
	width: calc(100% - 20px);
}

.news_list li {
	border-bottom: 1px solid rgba(255, 255, 255, .5);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.news_list li:last-child {
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.footer {
	background: #053320;
	color: #fff;
	padding: 50px 7.5% 15px;
}

.footerTop {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	margin-bottom: 25px;

}

.footerTop .left {
	width: 400px;
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.flogo {
	width: 250px;
	position: relative;
	margin-bottom: 20px;
}

.add_list {
	width: 100%;
	position: relative;
}

.add_list ul li {
	width: 100%;
	display: flex;
	margin-bottom: 15px;
}

.add_list ul li:last-child {
	margin-bottom: 25px;
}

.add_list ul li .icon {
	width: 25px;
	height: 25px;
	position: relative;
	line-height: 25px;
	color: rgba(255, 255, 255, .5);
	font-size: 18px;
}

.add_list ul li .info {
	width: calc(100% - 100px);
	line-height: 25px;
}

.add_list ul li .info p {
	font-size: 14px;
	color: rgba(255, 255, 255, .5);
}

.add_list ul li .info b {
	font-size: 14px;
	font-weight: normal;
	color: rgba(255, 255, 255, .5);
}


.footerTop .right {
	width: calc(100% - 450px);
}

.footerTop .right ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.footerTop .right ul li {
	width: calc(100% / 7);
	position: relative;
	text-align: center;
}

.footerTop .right ul li a {
	display: block;
	width: 100%;
	line-height: 40px;
	position: relative;
	color: rgba(255, 255, 255, .5);
	height: 40px;
	overflow: hidden;
	-webkit-transition: all .45s;
}

.footerTop .right ul li a:hover {
	color: #fff;
}

.org_box .singePage {
	text-align: center;
}

.org_box .singePage img {
	display: inline-block;
	width: auto;
}

.footerTop .right ul li a:first-child {
	color: #fff;
	font-weight: bold;
}

.wecha_icon {
	width: 50%;
	display: flex;
	align-items: center;
	position: relative;
}

.wecha_icon .icon {
	width: 35px;
	height: 35px;
	position: relative;
	font-size: 20px;
	background: rgba(255, 255, 255, .5);
	border-radius: 50%;
	text-align: center;
	line-height: 35px;
	color: #053320;
}

.wecha_icon .img {
	width: 120px;
	height: auto;
	position: absolute;
	left: -41.5px;
	bottom: 40px;
	border-radius: 5px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .35s;
}

.wecha_icon:hover .icon {
	background: rgba(255, 255, 255, 1);
}

.wecha_icon:hover .img {
	opacity: 1;
	visibility: visible;
	bottom: 50px;
}

.wecha_icon .img img {
	border-radius: 5px;
}

.wecha_icon .img::after {
	width: 0px;
	height: 0px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #fff;
	position: absolute;
	left: 50%;
	margin-left: -6px;
	bottom: -6px;
	content: '';
}


.wecha_icon p {
	margin-left: 8px;
}

.copyright {
	width: 100%;
	display: flex;
	justify-content: space-between;
	color: rgba(255, 255, 255, .5);
}

.copyright a {
	color: rgba(255, 255, 255, .5);
}

.shutime {
	color: rgba(255, 255, 255, .5);
}

.shutime:hover {
	color: #fff;
}

header.sub {
	pointer-events: auto;
}

header.sub nav {
	pointer-events: auto;
	opacity: 1;
}

.dj_box {
	background: #faf3f0 url(../images/dj_bg1.jpg) center top no-repeat;
}

.common_title.is-inview p {
	-webkit-transform: translateY(0%);
}

.common_title.red .tips,
.common_title.red .name {
	color: #d20d18;
}

.common_title .tips.fz20 {
	font-size: 28px;
	height: 30px;
	line-height: 30px;
}

.wfMore.red {
	border: 1px solid #d20d18;
	color: #d20d18;
	background: rgba(210, 13, 24, 0.1);
}

.wfMore.red::before {
	background-color: #d20d18;
}

.dynamics_news {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 7vw;
}

.dy_focus {
	width: 55%;
	min-height: 55vh;
	position: relative;
}

.dynamics_news .list {
	width: calc(45% - 25px);
	display: block;
}

.dynamics_news .list li {
	margin-bottom: 25px;
}

.dynamics_news .list li:last-child {
	margin-bottom: 0px;
}

.dy_focus img {
	display: none;
}

.dy_focus .thum,
.dy_focus .pic {
	height: 100%;
}

.dynamics_news .list li a {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.dynamics_news .list li a .thum {
	width: 40%;
}

.dynamics_news .list li a .info {
	width: calc(60% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	border-bottom: 1px solid #d7b3ad;
	padding-bottom: 10px;
}

.dy_focus .info {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0px;
	bottom: 0px;
	color: #fff;
	padding: 25px;
}

.dynamics_news .list li a .time,
.dy_focus .info .time {
	width: 100%;
	display: flex;
	align-items: center;
	line-height: 25px;
	position: relative;
	height: 25px;
	font-size: 12px;
}

.dynamics_news .list li a .name {
	width: 100%;
	font-size: 18px;
	line-height: 30px;
	height: 60px;
}

.dynamics_news .list li a .time i,
.dy_focus .info .time i {
	width: 20px;
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	color: #d20d18;
}

.dy_focus .info .time i {
	color: #fff;
}

.dy_focus .info .time {
	margin-bottom: 5px;
}

.dy_focus .info .name {
	font-size: 20px;
}

.dynamics_news .list li a:hover {
	color: #d20d18;
}

.govern_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 7vw;
}

.govern_list a {
	width: 31%;
	height: auto;
	position: relative;
	display: block;
	margin-right: 3.5%;
}

.govern_list a:nth-child(3n) {
	margin-right: 0%;
}

.govern_list a .info {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: #fff;
	padding: 55px 35px 35px;
	-webkit-transition: all .55s;
}

.govern_list a:hover .info {
	background: rgba(0, 0, 0, .5);
	color: #fff;
}

.govern_list a .pic {
	-webkit-transform: scale(1.1);
}

.govern_list a:hover .pic {
	-webkit-transform: scale(1);
}

.govern_list a:hover .info .des,
.govern_list a:hover .info .name {
	color: #fff;
}

.govern_list a .info .name {
	font-size: 20px;
	line-height: 1.6;
	margin-bottom: 25px;
	color: #3e3e3e;
}

.govern_list a .info .des {
	width: 100%;
	line-height: 1.7;
	font-size: 16px;
	-webkit-line-clamp: 4;
	opacity: 0.7;
	color: #3e3e3e;
}

.govern_list a .info .more {
	width: 100%;
	height: auto;
	position: absolute;
	display: flex;
	justify-content: space-between;
	left: 0%;
	bottom: 0px;
	padding: 15px 25px;
	align-items: center;
}

.govern_list a .info .more::after {
	width: calc(100% - 50px);
	height: 1px;
	position: absolute;
	left: 25px;
	top: 0px;
	content: '';
	background: rgba(0, 0, 0, .05);
}


.govern_list a:hover .info .more::after {
	background: rgba(255, 255, 255, .3);
}

.govern_list a .info .more .date {
	width: 100px;
	font-family: Brown;
}

.govern_list a .info .more .date b {
	font-size: 28px;
	color: #d20d18;
	display: block;
	margin-bottom: 3px;
}

.govern_list a .info .more .icon {
	font-size: 24px;
	opacity: .7;
}

.govern_list a .info .more .date p {
	font-size: 12px;
}

.garden_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.garden_box .garden_focus {
	width: calc(50% - 0px);
	display: block;
}

.garden_box .list {
	width: calc(50% - 10px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.garden_box .list a {
	width: calc(50% - 5px);
	display: block;
	margin-bottom: 10px;
}

.garden_box .list a:nth-child(n+3) {
	margin-bottom: 0px;
}

.garden_box a {
	position: relative;
	overflow: hidden;
}

.garden_box a::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	content: '';
	background: #faf3f0;
	-webkit-transition: all 1s;
}

.garden_box a .pic {
	-webkit-transform: scale(1.1);
}

.garden_box a:hover .pic {
	-webkit-transform: scale(1);
}

.garden_box a:nth-child(2n)::after {
	-webkit-transition: all 1s ease .3s;
}

.garden_box a:nth-child(3n)::after {
	-webkit-transition: all 1s ease .5s;
}

.garden_box a.is-inview::after {
	height: 0%;
}

.develop_list li .des {
	display: none;
}

.vr_btn {
	width: 100px;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	opacity: 1;
	cursor: pointer;
}

.vr_btn:hover {
	opacity: 1;
}

.vr_btn span {
	width: 0px;
	height: 0px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid #fff;
	content: '';
	position: absolute;
	left: 50%;
	margin-left: -4px;
	top: 30%;
}

.vr_btn p {
	display: block;
	width: 100%;
	text-align: center;
	color: #fff;
	position: absolute;
	top: 55%;
}

.vr_btn img {
	-webkit-animation: rotateAnimate 5s linear infinite;
}


.boxes.about_box {
	padding: 0px;
	display: flex;
	flex-wrap: wrap;
}

.about_box .left {
	width: 50%;
	height: auto;
	padding: 7vw 5%;
}

.about_box .right {
	width: 50%;
	overflow: hidden;
	position: relative;
}

.about_box .right::after {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0%;
	top: 0%;
	content: '';
	background: #fff;
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
}

.about_box .right .pic {
	-webkit-transform: scale(1.3);
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
}

.about_box .right.is-inview::after {
	width: 0%;
}

.about_box .right.is-inview .pic {
	-webkit-transform: scale(1);
}

.about_box .right .pic {
	height: 100%;
}

.org_box {
	background: url(../images/org_bg.jpg) center center/cover no-repeat;
}

.his_box {
	height: auto;
	background: url(../images/cul_bg.jpg) center center/cover no-repeat;
}

.develop_box {
	background: url(../images/develop_bg.jpg) center center/cover no-repeat;
	padding: 0px;
}

.curl_list {
	width: 45%;
}

.curl_list ul {
	width: 100%;
	display: flex;
	margin-bottom: 1vw;
}

.curl_list ul li {
	width: 48%;
	position: relative;
	margin-right: 2%;
	background: rgba(0, 147, 88, .5);
	backdrop-filter: blur(10px);
	color: #fff;
	padding: 0px;
}

.curl_list ul li .icon {
	position: absolute;
	left: 30px;
	top: 50px;
	width: 90px;
}

.curl_list ul li .info {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 30px;
}

.curl_list ul li .info .name {
	font-size: 24px;
	margin-bottom: 15px;
}

.curl_list ul li .info .des {
	width: 100%;
	font-size: 16px;
	line-height: 30px;
	min-height: 60px;
}

.contact_box {
	display: flex;
	padding: 0px;
}

.contact_box .left {
	width: 50%;
	padding: 7vw;
	background: url(../images/map_bg.jpg) no-repeat;
	background-size: cover;
}

.contact_box .right {
	width: 50%;
	position: relative;
}

.con_list {
	width: 100%;
}

.con_list ul li {
	width: 100%;
	display: flex;
	color: #009358;
	margin-bottom: 25px;
}

.con_list ul li .icon {
	width: 30px;
	height: 50px;
	position: relative;
	font-size: 24px;
}

.con_list ul li .info {
	width: calc(100% - 30px);
	font-family: BrownBlod;
}

.con_list ul li .info p {
	display: block;
	margin-bottom: 5px;
}

.con_list ul li .info b {
	display: block;
	font-size: 18px;
}

.con_list ul li:first-child .info b {
	font-size: 28px;
}

.con_list .wechat {
	width: 140px;
	text-align: center;
}

.con_list .wechat img {
	margin-bottom: 10px;
}

.con_list .wechat p {
	color: rgba(0, 0, 0, .5);
}

.con_list ul {
	margin-bottom: 45px;
}

.map {
	height: 100%;
}

.innova_box {
	height: auto;
	display: flex;
	align-items: center;
}

.innova_box .w1400{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.innova_box .left,
.innova_box .right {
	width: 50%;
}

.innova_box .right ul{
	width: 60%;
	position: absolute;
	left: -20%;
	top: 50%;
	-webkit-transform: translateY(-50%)
}

.innova_box .right ul li{
	width: 110%;
	height: auto;
	position: relative;
	display: none;
}

.innova_box .right ul li.active{
	display: block;
}

.innova_box .right ul li:nth-child(1){
	width: 140%;
}

.rd_nav{
	width:100%;
	display: flex;
	margin-bottom: 2vw;
}

.rd_warp{
	width: 100%;
	height: 20vw;
	position: relative;
}

.rd_warp .rd_box{
	width: 100%;
	font-size: 16px;
	line-height: 2;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
}

.rd_warp .rd_box:last-child{
    position: relative;
}

.rd_warp .rd_box.active{
	opacity: 1;
	position: relative;
}

.rd_warp .rd_box.active:nth-child(2){
	opacity: 1;
}

.rd_warp .rd_box p{
	margin-bottom: 15px;
}

.rd_nav a{
	display: block;
	width: auto;
	line-height: 45px;
	padding: 0px 30px;
	border: 1px solid #009358;
	color: #009358;
	border-radius: 50px;
	margin-right: 15px;
	cursor: pointer;
    font-size: 16px;
}

.rd_nav a:hover,.rd_nav a.active{
	background: #009358;
	color: #ffffff;
}

.innova_box .left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.innova_box::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	background: url(../images/map_bg.jpg) no-repeat;
	background-size: cover;
	content: '';
}

.innova_box .singePage {
	position: relative;
}

.innova_box .right {
	height: 100%;
	position: relative;
	width: 35%;
}

.innova_box .right.is-inview::after {
	width: 0%;
}

.innova_box .right .pic {
	-webkit-transform: scale(1);
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
}

.innova_box .right.is-inview .pic {
	-webkit-transform: scale(1);
}

.innova_box .right::after {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0%;
	top: 0%;
	content: '';
	background: #fff;
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
}

.innova_box .right .thum {
	height: 100%;
}

.innova_box .right .pic {
	width: 100%;
	height: auto;
	position: relative;
}

.innova_list {
	width: 100%;
	height: auto;
	background: url(../images/innova.jpg) center center no-repeat;
	background-size: cover;
}

.innova {
	width: 100%;
	position: relative;
}

.innova ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.innova ul li {
	width: 23.5%;
	position: relative;
	margin-right: 2%;
	margin-bottom: 1.5vw;
}

.innova ul li:nth-child(4n) {
	margin-right: 0%;
}

.innova ul li a {
	display: block;
	position: relative;
	background: #fff;
}

.innova ul li a .info {
	position: relative;
	width: 100%;
	height: auto;
	padding: 35px 20px;
}

.innova ul li a .info .name {
	font-size: 18px;
	margin-bottom: 10px;
	color: #3e3e3e;
	-webkit-transition: all .55s;
}

.innova ul li a .info .des {
	width: 100%;
	height: auto;
	position: relative;
	font-size: 16px;
	-webkit-line-clamp: 2;
	opacity: .7;
	color: #3e3e3e;
}

.innova ul li .pic{
	position: relative;
	box-shadow: 10px 20px 30px rgba(0, 0, 0, .25);
}

.innova ul li .img{
	width: 80%;
	height: auto;
	position: absolute;
	left: 10%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	background: #fff;
}

.innova ul li a:hover .pic {
	-webkit-transform: scale(1.1);
}

.innova ul li a:hover .info .name {
	color: #009358;
}

.news_nav {
	width: 100%;
	background: #009358;
	position: relative;
}

.news_nav .w1400 {
	display: flex;
}

.news_nav a {
	width: auto;
	height: auto;
	line-height: 60px;
	position: relative;
	margin-right: 55px;
	font-size: 16px;
	color: rgba(255, 255, 255, .75);
	-webkit-transition: all .5s;
}

.news_nav a::after {
	width: 0%;
	height: 3px;
	position: absolute;
	left: 50%;
	bottom: 3px;
	content: '';
	background: #fff;
	border-radius: 5px;
	-webkit-transition: all .45s;
}

.news_nav a:hover::after,
.news_nav a.active::after {
	width: 50%;
	left: 25%;
}

.news_nav a:hover,
.news_nav a.active {
	color: rgba(255, 255, 255, 1);
}

.news {
	margin-bottom: 3vw;
}

.news ul li {
	border-top: 1px solid rgba(0, 0, 0, .5);
	padding: 35px 0px;
	position: relative;
}

.news ul li a {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.news ul li a .info {
	width: 40%;
	margin-right: 20%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
}

.news ul li a .thum {
	width: 30%;
}

.news ul li a .date {
	width: 10%;
	text-align: right;
	font-family: Brown;
}

.news ul li a .date p {
	font-size: 32px;
}

.news ul li a .date b {
	font-weight: normal;
	display: block;
	margin-top: 5px;
}

.news ul li::after {
	width: 0px;
	height: 5px;
	position: absolute;
	left: 0px;
	top: -1px;
	content: '';
	background: #009358;
	-webkit-transition: all .65s;
}

.news ul li:hover::after {
	width: 100%;
}

.news ul li a:hover .pic {
	-webkit-transform: scale(1.1);
}

.news ul li a .info .name {
	font-size: 24px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.news ul li a .info .des {
	width: 100%;
	font-size: 16px;
	line-height: 1.7;
	opacity: .6;
	margin-bottom: 25px;
	-webkit-line-clamp: 3;
	color: #3e3e3e;
}

.news ul li a .info .more {
	display: flex;
	align-items: center;
	color: #3e3e3e;
	opacity: .5;
}

.news ul li a .info .more i {
	font-size: 16px;
}

.boxes_py {
	background: url(../images/py_bg.jpg) center center no-repeat;
	background-size: cover;
}

.boxes_zp {
	background: url(../images/zp_bg.jpg) center center no-repeat;
	background-size: cover;
}

.boxes_xy {
	background: url(../images/xy_bg.jpg) center center no-repeat;
	background-size: cover;
}

.boxes_yw {
	background: url(../images/yw_bg.jpg) center center no-repeat;
	background-size: cover;
}



.pySwiper {
	overflow: inherit;
	margin: 0px;
}

.pySwiper .swiper-wrapper {
	align-items: end;
}


.pySwiper .swiper-slide a {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.pySwiper .swiper-slide a .name {
	width: 100%;
	height: auto;
	position: absolute;
	left: 0%;
	bottom: 0%;
	-webkit-transform: translateY(50%);
	-webkit-transition: all .5s;
	color: #fff;
	line-height: 1.6;
	padding: 15px;
	opacity: 0;
}

.pySwiper .swiper-slide a:hover .name {
	-webkit-transform: translateY(0%);
	opacity: 1;
}

.pySwiper .swiper-slide a .thum:after {
	width: 100%;
	height: 70%;
	position: absolute;
	left: 0%;
	bottom: 0%;
	background: linear-gradient(-180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
	content: '';
	top: auto;
}

.py_box {
	width: 92.5%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-left: 7.5%;
}

.pySwiper1 {
	width: 45%;
	overflow: hidden;
	z-index: 5;
}

.pySwiper2 {
	width: calc(85% - 15px);
	position: absolute;
	left: 28.6%;
	overflow: hidden;
}

.pySwiper2 .swiper-pagination {
	bottom: -30px;
}

.boxes_py .common_title {
	margin-left: 7.5vw;
}

.boxes_py .singePage {
	width: 50%;
	margin-bottom: 5vw;
	margin-left: 7.5vw;
}

.pySwiper1 .swiper-slide.swiper-slide-active .name {
	-webkit-transform: translateY(0%);
	opacity: 1;
}

.pySwiper1 .swiper-slide .name {
	font-size: 20px;
}

.zpSwiper .swiper-slide {
	width: 100%;
	height: auto;
	position: relative;
	background: #fff;
	padding: 35px 25px;
	cursor: pointer;
}

.zpSwiper .swiper-slide:hover .more {
	opacity: .9;
}

.zpSwiper .swiper-slide .name {
	font-size: 24px;
	font-weight: bold;
	position: relative;
	line-height: 1.4;
	margin-bottom: 25px;

	padding-left: 15px;
	z-index: 2;
}

.zpSwiper .swiper-slide .name::before {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0px;
	top: -5px;
	background: #99d4bc;
	border-radius: 50%;
	content: '';
	z-index: -1;
	opacity: 0.75;
}

.zpSwiper .swiper-slide .des {
	width: 100%;
	height: 240px;
	font-size: 16px;
	line-height: 30px;
	overflow: hidden;
	overflow-y: auto;
	color: #797979;
	margin-bottom: 35px;
}

.zpSwiper .swiper-slide .more {
	width: 130px;
	height: 40px;
	border: 1px solid #009358;
	color: #fff;
	background: #009358;
	border-radius: 50px;
	line-height: 38px;
	cursor: pointer;
	text-align: center;
	font-size: 14px;
}

.campus_box {
	width: 100%;
	display: flex;
	justify-content: space-between;
	color: #fff;
	align-items: flex-start;
}

.campus_box .list {
	width: 46%;
}

.campus_box .list li {
	position: relative;
	padding: 25px 0px;
	display: flex;
	align-items: center;
	line-height: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, .3);
	justify-content: space-between;
	cursor: pointer;
}

.campus_box .list li .title {
	width: calc(100% - 130px);
	font-size: 18px;
}

.campus_box .list li .more {
	width: 110px;
	height: 35px;
	position: relative;
	border: 1px solid #fff;
	color: #fff;
	line-height: 33px;
	text-align: center;
	border-radius: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .5s;
}

.campus_box .list li:hover .title {
	text-decoration: underline;
}

.campus_box .list li:hover .more {
	background: #fff;
	color: #009358;
}

.campus_show {
	width: 46%;
	position: relative;
	background: #fff;
	padding: 45px 35px;
	color: #3e3e3e;
}

.campus_box .list li .more i {
	font-size: 18px;
	margin-left: 8px;
}

.campus_show .name {
	font-size: 24px;
	font-weight: bold;
	position: relative;
	margin-bottom: 25px;
	z-index: 2;
	padding-left: 15px;

}

.campus_show .zltd {
	width: 100%;
	border-top: 1px solid #009358;
	font-size: 16px;
	line-height: 2;
	color: #009358;
	padding-top: 10px;
}

.campus_box .list li:first-child {
	padding-top: 0px;
}

.campus_box .singePage {
	margin-bottom: 25px;
}

.campus_show .name::before {
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0px;
	top: -5px;
	background: #99d4bc;
	border-radius: 50%;
	content: '';
	z-index: -1;
	opacity: 0.75;
}

.service {
	width: 100%;
}

.service ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.service ul li {
	width: 30%;
	position: relative;
	margin-right: 5%;
	margin-top: 10vw;
	border-radius: 5vw 0px 0px 0px;
	overflow: hidden;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	-webkit-transition: all 1.2s cubic-bezier(.215, .61, .355, 1) .5s;
	-webkit-transform: translateY(50px);
}

.service ul li:nth-child(2n) {
	-webkit-transition: all 1.2s cubic-bezier(.215, .61, .355, 1) .7s;
}

.service ul li:nth-child(3n) {
	-webkit-transition: all 1.2s cubic-bezier(.215, .61, .355, 1) .9s;
}

.service ul li.is-inview {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	-webkit-transform: translateY(0px);
}

.service ul li::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 5;
	pointer-events: none;
	left: 0%;
	top: 0%;
}

.service ul li:hover::before {
	animation: gradient-rectangle 2s 1;
	animation-delay: 0s;
	-webkit-animation-timing-function: cubic-bezier(0, 0, 0.18, 0.96);
}

.service ul li .thum::after {
	width: 100%;
	height: 70%;
	position: absolute;
	left: 0%;
	bottom: 0%;
	background: linear-gradient(-180deg, rgba(2, 147, 88, .0), rgba(2, 147, 88, .75));

	content: '';
	top: auto;
}


.service ul li .pic {
	-webkit-transition: all 0.6s ease;
	-webkit-transform: scale(1.2);
}

.service ul li:hover .pic {
	-webkit-transform: scale(1);
}

.service ul li:nth-child(3n) {
	margin-right: 0%;
}

.service ul li a {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}

.service ul li a .info {
	width: 100%;
	height: auto;
	position: absolute;
	padding: 45px 25px;
	text-align: center;
	left: 0%;
	bottom: 0%;
	color: #fff;
	-webkit-transition: all 0.65s;
}

.service ul li:hover a .info {
	padding-bottom: 85px;
}

.service ul li a .info .name {
	font-size: 28px;
	margin-bottom: 25px;
	font-weight: bold;
}

.service ul li a .info .more {
	width: 40px;
	height: auto;
	line-height: 38px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 50%;
	margin: 0px auto;
	text-align: center;
	font-size: 20px;
}

.service ul li:nth-child(2),
.service ul li:nth-child(5) {
	top: -5vw;
}

.service ul li:nth-child(3),
.service ul li:nth-child(6) {
	top: -10vw;
}

.m_case_box {
	display: none;
}

.his_box,
.org_box,
.about_box,
.footer {
	z-index: 1;
	position: relative;
}

.dclose {
	width: 40px;
	height: 40px;
	color: #009358;
	line-height: 38px;
	text-align: center;
	position: absolute;
	right: 0px;
	top: 0px;
	background: #fff;
	border-radius: 50px 50px 0px 0px;
	cursor: pointer;
	display: none;
}

.home-pagi .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	background: transparent;
	margin: 17px 0px !important;
	position: relative;
	opacity: 1;
	border: 2px solid transparent;
	-webkit-transition: all .35s;
}


.home-pagi .swiper-pagination-bullet span {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 1);
	position: absolute;
	left: 0%;
	top: 0%;
	border-radius: 50%;
	content: '';
}


.home-pagi .swiper-pagination-bullet::before {
	width: 1px;
	height: 10px;
	position: absolute;
	left: 50%;
	margin-left: -0.5px;
	top: 11px;
	content: '';
	background: #fff;
	opacity: 0.3;
}

.home-pagi .swiper-pagination-bullet:last-child::before {
	display: none;
}

.home-pagi .swiper-pagination-bullet::after {
	width: 9px;
	height: 9px;
	position: absolute;
	left: -1px;
	top: -1px;
	content: '';
	background: rgba(255, 255, 255, 1);
	border-radius: 50%;
	opacity: 0;
}

.home-pagi .swiper-pagination-bullet.swiper-pagination-bullet-active {
	border: 2px solid rgba(255, 255, 255, .5);
}

.home-pagi .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	-webkit-animation: scaleAnimate2 1.5s linear infinite;
	opacity: 1;
}


.home-pagi.swiper-pagination {
	right: 2%;
	-webkit-transition: all .5s;
}


@-webkit-keyframes scaleAnimate2 {
	0% {
		-webkit-transform: scale(0);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(3);
		opacity: 0;
	}
}

.slide4 .singePage {
	margin-bottom: 4vw;
	-webkit-transition: all 1s ease .4s;
	-webkit-transform: translateY(40px);
	opacity: 0;
}

.slide4 .wfMore {
	-webkit-transition: all 0.5s ease 0.7s;
	-webkit-transform: translateY(40px);
	opacity: 0;
}

.slide4.swiper-slide-active .singePage,
.slide4.swiper-slide-active .wfMore {
	-webkit-transform: translateY(0px);
	opacity: 1;
}

.focusCase .name,
.cswiper .swiper-slide a .name {
	font-size: 18px;
	font-weight: bold;
}

.focusCase .thum:after,
.cswiper .swiper-slide a .thum:after {
	width: 100%;
	height: 70%;
	position: absolute;
	left: 0%;
	bottom: 0%;
	background: linear-gradient(-180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
	content: '';
	top: auto;
}

.news_list li a:hover .pic {
	-webkit-transform: scale(1.1);
}

.news_list li a {
	z-index: 2;
}

.news_list li a::before {
	width: 0%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	content: '';
	background: #009358;
	z-index: -1;
	-webkit-transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.news_list li a:hover::before {
	width: 100%;
}

.focusCase .name,
.cswiper .swiper-slide a .name {
	-webkit-transition: all .5s;
}

.focusCase:hover .name,
.cswiper .swiper-slide a:hover .name {
	padding-left: 25px;
}

.news_list li a .info {
	-webkit-transition: all .5s;
	padding: 0px;
}

.news_list li a:hover .info {
	padding: 0px 10px;
}

.cswiper .swiper-slide a:hover .pic,
.focusCase:hover .pic {
	-webkit-transform: scale(1.1);
}

.develop_list {
	width: 262px;
	height: 100vh;
	position: relative;
	margin: 0px auto;
	background: url(../images/line_center.png) center center no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
}

.develop_list ul {
	width: 100%;
	position: relative;
}

.develop_list li {
	color: #fff;
	position: relative;
	width: 50%;
	display: flex;
	align-items: center;
	padding-left: 20px;
	line-height: 50px;
	margin-bottom: 25px;
	cursor: pointer;
}



.develop_list li .dot {
	width: 12px;
	height: 12px;
	position: absolute;
	left: 0px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-webkit-transition: all .45s;
}

.develop_list li.active .dot {
	-webkit-transform: translateY(-50%) scale(1.5);
}

.develop_list li .dot::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0%;
	top: 0%;
	content: '';
	background: #fff;
	border-radius: 50%;
}

.develop_list li.active .dot::before {
	-webkit-animation: scaleAnimate2 1.5s linear infinite;
}

.develop_list li .dot::after {
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	position: absolute;
	left: 0%;
	top: 0%;
	content: '';
	background: #fff;
	border-radius: 50%;
	border: 2px solid #fff;
	-webkit-transition: all .4s;
}

.develop_list li.active .dot::after {
	border-color: #009358;
}

.develop_list li:nth-child(even) {
	padding-left: 0px;
	padding-right: 20px;
}

.develop_list li:nth-child(even) .dot {
	left: auto;
	right: 0px;
}

.develop_list li:nth-child(even) .year {
	text-align: right;
}

.develop_list li .year {
	font-family: BrownBlod;
	font-size: 18px;
	width: 100%;
	-webkit-transition: all .25s;
	height: 50px;
	overflow: hidden;
	line-height: 30px;
	padding: 10px 0px;
	position: relative;
}

.develop_list li .year p {
	position: relative;
	top: 0px;
	-webkit-transition: all .35s;
	left: 0px;
}

.develop_list li .year p:nth-child(2) {
	opacity: 0;
	position: absolute;
	left: 0px;
	top: 40px;
	width: 100%;
}

.develop_list li .year p:first-child {
	top: 0px;
}

.develop_list li:hover .year p:nth-child(2),
.develop_list li.active .year p:nth-child(2) {
	top: 10px;
	opacity: 1;
}

.develop_list li:hover .year p:first-child,
.develop_list li.active .year p:first-child {
	top: -20px;
	opacity: 0;
}



.develop_list li:nth-child(1) {
	left: 97px;
}

.develop_list li:nth-child(2) {
	left: 0px;
}

.develop_list li:nth-child(3) {
	left: 118px;
}

.develop_list li:nth-child(4) {
	left: -120px;
}

.develop_list li:nth-child(5) {
	left: 20px;
}

.develop_list li:nth-child(6) {
	left: -94px;
}

.develop_list li:nth-child(7) {
	left: 9px;
}

.develop_list li:nth-child(8) {
	left: 132px;
}

.develop_list li:nth-child(9) {
	left: 140px;
}

.develop_box .left {
	width: 25%;
	height: auto;
	position: absolute;
	left: 7.5%;
	top: 10vw;
	color: #fff;
}

.develop_box .right {
	width: 25%;
	height: auto;
	position: absolute;
	color: #3e3e3e;
	opacity: 1;
	-webkit-transition: all 1s;
	background: #ffff;
	padding: 15px;
	border-radius: 5px;
	left: 50%;
	top: 50%;
	opacity: 0;
}

.develop_box .right.active {
	opacity: 1;
}

.develop_box .right::before {
	width: 0px;
	height: 0px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-right: 8px solid #fff;
	position: absolute;
	left: -8px;
	content: '';
	top: 50%;
}

.develop_box .right .year {
	font-size: 40px;
	font-family: BrownBlod;
	margin-bottom: 5px;
	position: relative;

}

.develop_box .right .des {
	font-size: 16px;
	line-height: 1.7;
	position: relative;

}

.hornor_box {
	background: url(../images/hornor_bg.jpg) center/cover no-repeat;
}

.honor_page {
	width: 100%;
	height: 60px;

	display: flex;
	align-items: flex-start;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.honor_page .swiper-button-next,
.honor_page .swiper-button-prev {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-transition: all .65s;
	border: 1px solid #009358;
	color: #009358;
}

.honor_page .swiper-button-next:after,
.honor_page .swiper-button-prev:after {
	font-size: 18px;
}

.honor_page .swiper-button-next {
	right: 0px;
	margin-left: 25px;
}

.honor_page .swiper-button-prev {
	left: 0px;
}

.honorSwiper .pic {
	background-size: contain;
}

.honorSwiper {
	overflow: initial;
}

.hornor_box {
	overflow: hidden;
}

.honorSwiper {
	padding-bottom: 200px;
}

.honorSwiper::after {}

.honor_line {
	width: 4000px;
	height: 64px;
	position: absolute;
	left: 0%;
	bottom: calc(7vw + 100px);
	display: flex;
	pointer-events: none;
}

.honor_line img {
	width: 50%;
}

.honor_line.hl1 {
	-webkit-animation: moves 5s linear infinite;
}

.honor_line.hl2 {
	-webkit-animation: moves 5s linear infinite 2s;
	opacity: 0.5;
}

@-webkit-keyframes moves {
	0% {
		left: 0px;
	}

	100% {
		left: -2000px;
	}
}

.honorSwiper .swiper-slide {
	width: 385px;
	margin-top: 0px;
	-webkit-transition: all .65s;
}

.honorSwiper .swiper-slide:nth-child(odd) {
	top: 38px;
}

.honorSwiper .name {
	width: 100%;
	height: auto;
	position: relative;
	margin-top: 20px;
	font-size: 16px;
	text-align: center;
	line-height: 20px;
}

.numer.is-inview ul li {
	top: 0px;
	opacity: 1;
}

.service_box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 5vw;
}

.service_box .left {
	width: 50%;
}

.service_box .right {
	width: 45%;
	position: relative;
	height: 55vh;
}

.service_box .right::after {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0%;
	top: 0%;
	content: '';
	background: #fff;
	-webkit-transition: all 1.6s cubic-bezier(0.215, 0.610, 0.355, 1) .3s;
}


.service_box .right.is-inview::after {
	width: 0%;
}


.service_box .right .pic {
	height: 100%;
}

.numer.inner ul {
	flex-wrap: wrap;
}

.numer.inner ul li {
	padding: 0px;
	width: 50%;
	text-align: left;
	margin-bottom: 2vw;
}

.numer.inner {
	margin-bottom: 1vw;
}

.numer.inner ul li::after {
	display: none;
}

.numer.inner ul li .txt {
	text-align: left;
}

.lists {
	width: 100%;
}

.lists ul {
	width: 100%;
}

.lists ul li {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 3vw;
}

.lists ul li a{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.lists ul li:nth-child(even)  a{
	direction: rtl;
}

.lists ul li:nth-child(even) .info {
	direction: initial;
}

.lists ul li .thum {
	width: 50%;
	min-height: 45vh;
}

.lists ul li .thum .pic {
	height: 100%;
}

.lists ul li .info {
	width: 50%;
	padding: 100px 50px;
	background: #fff;
}

.lists ul li .info .name {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.5;
}

.lists ul li .info .des {
	font-size: 16px;
	line-height: 1.7;
}

.slide3 .honor_line {
	bottom: 100px;
}

.m_service_box {
	display: none;
}

.lightBox .tet-box {
	position: absolute;
	background: #fff;
	left: 50%;
	width: 1000px;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 8
}

.lightBox .tittle {
	line-height: 35px;
	padding: 15px;
	background: #009358;
	color: #fff;
	font-weight: 900;
	font-size: 20px;
}

.lightBox .summary-join {
	padding: 15px;
	height: 500px;
	overflow-y: auto;
	font-size: 16px;
	line-height: 2;
}

.lightBox .close {
	width: 80px;
	height: 40px;
	position: absolute;
	right: 15px;
	top: 12.5px;
	background: #fff;
	color: #009358;
	cursor: pointer;
	border-radius: 50px;
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, .1);
}

.lightBox .close:hover {
	background: #009358;
	color: #fff;
}

@media screen and (max-width: 1650px) {
	.curl_list ul li .info .des {
		font-size: 14px;
		line-height: 25px;
		min-height: 50px;
	}

	.curl_list ul li .info .name {
		font-size: 20px;
	}

	.curl_list ul li .info {
		padding: 25px;
	}

	.curl_list ul li .icon {
		left: 25px;
		top: 35px;
		width: 80px;
	}
}

@media screen and (max-width: 1440px) {
	.curl_list ul li .info .name {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.curl_list ul li .info {
		padding: 20px;
	}

	.curl_list ul li .icon {
		left: 20px;
		top: 30px;
		width: 60px;
	}

	header nav ul li ul li a {
		font-size: 14px;
		padding: 0px;
	}

	header nav ul li:nth-child(4) ul li:nth-child(4) a {
		font-size: 12px;
	}

	.zpSwiper .swiper-slide .des {
		font-size: 14px;
		height: 200px;
		line-height: 25px;
	}

	.singePage {
		font-size: 14px;
	}

	.campus_box .list li .title {
		font-size: 16px;
	}

	.common_title .tips.fz20 {
		font-size: 24px;
		height: 24px;
		line-height: 24px;
	}

	.common_title .name {
		font-size: 30px;
	}

	.pySwiper1 .swiper-slide .name,
	.focusCase .name,
	.cswiper .swiper-slide a .name,
	.news_list li a .name {
		font-size: 16px;
	}

	.slide2 .singePage,
	.numer ul li .txt,
	.slide3 .singePage,
	.wave_icon ul a .txt {
		font-size: 14px;
	}

	.news_box .focus .info .name,
	.news_box .focus .showBox .name {
		font-size: 16px;
		height: 50px;
		line-height: 25px;
	}

	.news_box .focus .showBox .des,
	.develop_box .right .des,
	.honorSwiper .name,
	.news ul li a .info .des,
	.innova ul li a .info .des,
	.govern_list a .info .des {
		font-size: 14px;
	}

	.news ul li a .info .name {
		font-size: 20px;
	}

	.dy_focus .info .name,
	.govern_list a .info .name {
		font-size: 18px;
	}

	.dynamics_news .list li a .name {
		font-size: 16px;
	}

	.numer ul li .num b {
		font-size: 40px;
	}

	.wfMore {
		width: 140px;
		height: 45px;
		font-size: 14px;
		line-height: 43px;
	}

	.wfMore .icon {
		right: 20px;
		font-size: 20px;
	}
	
	.rd_warp .rd_box{
		font-size: 14px;
	}
}

@media screen and (max-width: 1439px) {
	header .logo {
		width: 150px;
	}

	header nav {
		width: calc(100% - 350px);
	}

	header .phoneBox a {
		flex-wrap: wrap;
		justify-content: center;
		font-size: 18px;
	}

	header .phoneBox a span {
		display: block;
		width: 100%;
	}

	header .phoneBox i {
		margin-right: 0px;
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 24px;
	}

	header .phoneBox {
		width: 125px;
	}

	.curl_list {
		width: 50%;
	}

	.curl_list ul li .info .name {
		font-size: 18px;
	}

	.curl_list ul li .info .des {
		font-size: 14px;
	}
}

@media screen and (max-width: 1365px) {
	header .phoneBox a span {
		display: none;
	}

	header .phoneBox {
		width: 35px;
	}

	header .logo {
		width: 120px;
	}

	header nav {
		width: calc(100% - 200px);
	}
}

@media screen and (max-width: 1023px) {
    .rd_warp{
        height: auto;
    }
	header nav {
		display: block;
		position: fixed;
		left: 0;
		top: 60px;
		margin-left: 0;
		width: 100%;
		height: calc(100vh - 60px);
		opacity: 1 !important;
		width: 100%;
		pointer-events: auto !important;
		background: #009358;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		-webkit-transition: all 1s cubic-bezier(.215, .61, .355, 1) 0s;
	}

	header {
		height: 60px;
		background: #fff;
		padding: 0px 5%;
		position: fixed;
		left: 0%;
		top: 0%;
		z-index: 100;
		pointer-events: auto;
	}

	header::before {
		display: none;
	}

	header .logo img:nth-child(1) {
		display: none;
	}

	header .logo img:nth-child(2) {
		display: block;
	}

	header .phoneBox i {
		color: #009358;
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 30px;
	}

	header .phoneBox {
		width: 35px;
		margin-right: 50px;
	}

	.nav_icon {
		display: block;
		width: 40px;
		height: 40px;
		position: absolute;
		right: 5%;
		top: 10px;
		border: 1px solid #009358;
	}

	.nav_icon::after {
		width: 20px;
		height: 20px;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		content: '';
		background: url(../images/waves.png) no-repeat;
		background-size: cover;
	}

	.slogan ul li .title {
		font-size: 6vw;
		margin-bottom: 3vw;
	}

	.slogan ul li .des {
		font-size: 14px;
		line-height: 1.2;
	}

	.slogan ul li {
		width: 80%;
		left: 10%;
	}

	.mouse_icon {
		display: none;
	}

	.slide2 .w1400 {
		width: 90%;
		height: auto;
		left: 5%;
		top: 20%;
	}

	.common_title .name {
		font-size: 5vw;
	}

	.common_title .tips {
		font-size: 14px;
	}

	.slide2 .singePage {
		width: 100%;
		margin-left: 0%;
	}

	.numer ul li {
		width: 33%;
		padding: 0px;
	}

	.numer ul li .num b {
		font-size: 6vw;
	}

	.numer ul li .num p,
	.numer ul li .txt {
		font-size: 12px;
	}

	.numer ul li .num {
		justify-content: center;
	}

	.numer ul li:last-child::after {
		display: none;
	}

	.numer ul li .txt {
		padding: 0px 5%;
	}

	.main-slider__inner {
/*		height: 50vh;*/
		top: auto;
		bottom: 0;
	}

	header.active::after,
	header.active2::after,
	header:hover::after {
		display: none;
	}

	.slide2 .singePage,
	.common_title,
	.numer {
		margin-bottom: 5vw;
	}

	.slide3 .left {
		width: 90%;
		position: absolute;
		left: 5%;
		top: 25%;
	}

	.wave_icon {
		display: none;
	}

	.cswiper,
	.contents .left {
		display: none;
	}

	.contents .right {
		width: 100%;
	}

	.slide4 .main-slider__inner,
	.slide5 .main-slider__inner {
		height: 100vh;
	}

	.footerTop .right {
		display: none;
	}

	.footerTop .left {
		width: 100%;
		border-right: none;
	}

	.copyright {
		flex-wrap: wrap;
		font-size: 12px;
		line-height: 1.7;
	}

	.footerTop {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.footer {
		padding: 30px 5% 10px;
	}

	.flogo {
		width: 150px;
		position: relative;
		margin-bottom: 10px;
	}

	.home-pagi.swiper-pagination-vertical.swiper-pagination-bullets,
	.swiper-vertical>.swiper-pagination-bullets {
		top: auto;
		transform: translate3d(0px, 0%, 0);
		bottom: 0%;
		right: 3%;
	}

	.scene-nav {
		width: 40px;
		height: 40px;
	}

	.scene-nav.scene-nav--prev {
		left: 1%;
	}

	.scene-nav.scene-nav--next {
		right: 1%;
	}

	.slide4 .singePage {
		margin-bottom: 7vw;
	}

	.honor_line {
		width: 2000px;
		height: 32px;
	}

	.news_box .left {
		width: 100%;
	}

	.news_box .focus {
		width: calc(50% - 5px);
	}

	.news_box .focus .showBox {
		display: none;
	}

	.news_box .focus .info {
		width: 100%;
		height: auto;
		position: relative;
		background: #fff;
		padding: 15px;
	}

	.news_box .focus .thum {
		display: none;
	}

	.news_box .focus .info .des,
	.news_box .focus .showBox .des {
		display: none;
	}

	.news_box .focus .info .name,
	.news_box .focus .showBox .name {
		height: auto;
		margin-bottom: 0px;
		-webkit-line-clamp: 3;
	}

	.w1400 {
		width: 90%;
	}

	.news_box .list {
		width: 100%;
		margin-top: 10px;
	}

	.news_list li a .thum {
		display: none;
	}

	.news_list li a .info {
		width: 100%;
	}

	.news_list li {
		padding: 0px;
		margin-bottom: 0px;
	}

	.news_list li a .name {
		margin-bottom: 5px;
		-webkit-line-clamp: 1;
	}

	.news_list li a {
		padding: 10px;
	}

	.news_list li a:hover .info {
		padding: 0px;
	}

	.add_list ul li {
		width: 48%;
	}

	.add_list ul li .info {
		line-height: 20px;
		width: calc(100% - 35px);
	}

	.add_list ul {
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.add_list ul li .info p {
		font-size: 12px;
	}

	.add_list ul li:last-child {
		margin-bottom: 15px;
	}

	.add_list ul li .info b {
		font-size: 12px;
	}

	.wfMore {
		width: 110px;
		height: 40px;
		font-size: 14px;
		line-height: 38px;
	}

	.nameTop .common_title {
		width: calc(100% - 130px);
	}

	.nameTop {
		margin-bottom: 5vw;
	}

	.slide5 .w1400 {
		top: 5%;
	}

	.slide3 .singePage {
		margin-bottom: 10vw;
	}

	.subBanner {
		margin-top: 60px;
	}

	.about_box .left {
		width: 100%;
	}

	.about_box .right {
		width: 100%;
		height: 40vh;
	}

	.vr_btn {
		width: 80px;
	}

	.vr_btn p {
		font-size: 12px;
		top: 60%;
	}

	.inner_player {
		width: 100%;
	}

	.boxes {
		padding: 15vw 0px;
	}

	.curl_list {
		width: 100%;
	}

	.curl_list ul li .icon {
		left: 10px;
		top: 20px;
		width: 40px;
	}

	.curl_list ul li {
		min-height: 55vw;
	}

	.curl_list ul li .info .name {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.curl_list ul li .info .des {
		line-height: 25px;
		font-size: 14px;
		min-height: 50px;
	}

	.curl_list ul li .info {
		padding: 15px 15px 20px;
	}

	.curl_list ul {
		margin-bottom: 2vw;
	}

	.develop_box .left {
		width: 90%;
		height: auto;
		position: relative;
		left: 5%;
		top: 0vw;
	}

	.develop_box .right {
		position: fixed;
		width: 90%;
		right: 5%;
		bottom: 5vw;
		-webkit-transition: all 1s;
		-webkit-transform: translateY(200%);
		top: auto;
		left: auto;
	}

	.develop_box .right.active {
		-webkit-transform: translateY(0%);
	}

	.develop_box .right::after {
		width: 0px;
		height: 0px;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-bottom: 8px solid #fff;
		position: absolute;
		left: 7%;
		content: '';
		top: -8px;
	}

	.develop_box .right .year {
		font-size: 5vw;
	}

	.honorSwiper .swiper-slide {
		width: 70%;
	}

	.honorSwiper .swiper-slide:nth-child(odd) {
		top: 0px;
	}

	.honorSwiper {
		padding-bottom: 100px;
	}

	.news_nav a {
		margin-right: 35px;
		line-height: 50px;
	}

	.news_page .common_title {
		display: none;
	}

	.news ul li {
		padding: 15px 0px;
	}

	.news ul li a .info {
		width: 100%;
		margin-right: 0%;
	}

	.news ul li a .info .name {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.news ul li a .info .des,
	.news ul li a .info .more {
		display: none;
	}

	.news ul li a .thum {
		width: 100%;
	}

	.news ul li a .date {
		width: 100%;
		display: flex;
		align-items: center;
		direction: rtl;
		justify-content: left;
		margin-top: 10px;
	}

	.news ul li a .date p {
		font-size: 14px;
	}

	.news ul li a .date b {
		margin-top: 0px;
		margin-right: 5px;
	}

	#page li {
		width: 35px;
		height: 35px;
		line-height: 35px;
		font-size: 12px;
	}

	.detail_top {
		padding: 100px 0px 25px;
	}

	.detail_top .w100 {
		width: 90%;
	}

	.detail_top .title {
		font-size: 6vw;
	}

	.detail_top .info p {
		margin-right: 10px;
	}

	.detail_top .info p:last-child {
		margin-right: 0px;
	}

	.detail_top .info {
		font-size: 12px;
	}

	.detail_box {
		padding: 5vw;
		width: 100%;
	}

	.detail_box .dpr {
		display: none;
	}

	.detail_box .dpl {
		width: 100%;
	}

	.backTop {
		display: none;
	}

	.ndc_npnews .post_next,
	.ndc_npnews .post_prev {
		width: 100%;
		font-size: 14px;
	}

	.ndc_npnews .post_prev {
		margin-bottom: 10px;
	}

	.service ul li {
		width: 48%;
		margin-right: 4%;
		margin-top: 0px;
		margin-bottom: 5vw;
	}

	.service ul li:nth-child(2),
	.service ul li:nth-child(5),
	.service ul li:nth-child(3),
	.service ul li:nth-child(6) {
		top: 0px;
	}

	.service ul li:nth-child(3n) {
		margin-right: 4%;
	}

	.service ul li:nth-child(2n) {
		margin-right: 0%;
	}

	.service ul li a .info {
		padding: 25px 5px;
	}

	.service ul li a .info .name {
		font-size: 4.5vw;
		margin-bottom: 3vw;
	}

	.service ul li:hover a .info {
		padding-bottom: 35px;
	}

	.news_nav.ser_nav {
		display: none;
	}

	.service_box .left {
		width: 100%;
	}

	.service_box .right {
		width: 100%;
		height: 30vh;
	}

	.numer.inner ul li .txt {
		text-align: center;
		font-size: 14px;
	}

	.numer.inner ul li {
		margin-bottom: 4vw;
	}

	.service_box {
		margin-bottom: 15vw;
	}

	.lists ul li .thum {
		width: 100%;
		min-height: 30vh;
	}

	.lists ul li .info {
		width: 100%;
		padding: 20px 5%;
	}

	.lists ul li .info .name {
		font-size: 4.5vw;
		margin-bottom: 1vw;
	}

	.lists ul li .info .des {
		font-size: 14px;
	}

	.lists ul li {
		margin-bottom: 5vw;
	}

	.innova_box {
		height: auto;
		flex-wrap: wrap;
		padding-bottom: 0px;
	}

	.innova_box .left,
	.innova_box .right {
		width: 100%;
	}

	.innova_box::before {
		width: 100%;
	}

	.innova_box .right {
		height: 40vh;
	}

	.innova_box .left {
		margin-bottom: 5vw;
	}

	.innova ul li {
		width: 100%;
		margin-right: 0%;
		margin-bottom: 5vw;
	}

	.innova ul li a .info {
		padding: 20px 15px;
	}

	.innova ul li a .info .name {
		font-size: 16px;
		margin-bottom: 1vw;
	}

	.dy_focus {
		width: 100%;
		min-height: 35vh;
		margin-bottom: 5vw;
	}

	.dy_focus .info {
		padding: 15px;
	}

	.dy_focus .info .name,
	.govern_list a .info .name {
		font-size: 16px;
	}

	.dynamics_news .list {
		width: 100%;
	}

	.dynamics_news .list li a .info {
		width: calc(60% - 10px);
	}

	.dynamics_news .list li a .name {
		font-size: 16px;
		height: auto;
		line-height: 25px;
	}

	.dynamics_news .list li {
		margin-bottom: 10px;
	}

	.dynamics_news {
		margin-bottom: 15vw;
	}

	.wfMore p {
		left: 20px;
	}

	.wfMore .icon {
		right: 10px;
		font-size: 14px;
	}

	.govern_list a {
		width: 100%;
		margin-right: 0%;
	}

	.govern_list a .info {
		padding: 35px 15px 15px;
	}

	.govern_list a .pic img {
		display: none;
	}

	.govern_list a .pic {
		height: 45vh;
	}

	.govern_list a {
		margin-bottom: 5vw;
	}

	.garden_box {
		flex-wrap: wrap;
	}

	.garden_box .garden_focus {
		width: 100%;
		margin-bottom: 10px;
	}

	.garden_box .list {
		width: 100%;
	}

	.boxes_py .singePage {
		width: 90%;
		margin-bottom: 5vw;
		margin-left: 5vw;
	}

	.pySwiper1 {
		display: none;
	}

	.pySwiper2 {
		width: 100%;
		position: relative;
		left: 0%;
	}

	.py_box {
		width: 90%;
		margin-left: 5%;
	}

	.zpSwiper .swiper-slide {
		padding: 25px 15px;
	}

	.zpSwiper .swiper-slide .name {
		font-size: 4.5vw;
		margin-bottom: 2vw;
	}

	.zpSwiper .swiper-slide .des {
		font-size: 14px;
		height: 175px;
		line-height: 25px;
		margin-bottom: 5vw;
	}

	.zpSwiper .swiper-slide .more {
		width: 100px;
		height: 35px;
		line-height: 35px;
		font-size: 12px;
	}

	.campus_show {
		display: none;
	}

	.campus_box .list {
		width: 100%;
	}

	.campus_box .list li .title {
		font-size: 14px;
		width: 100%;
	}

	.campus_box .list li .more {
		width: 80px;
		font-size: 12px;
		display: none;
	}

	.campus_box .list li {
		padding: 15px 0px;
	}

	.contact_box {
		flex-wrap: wrap;
		padding: 0px;
	}

	.contact_box .left {
		width: 100%;
		padding: 15vw 5vw;
	}

	.contact_box .right {
		display: none;
	}

	.slide1 .cicxle {
		width: 35vw;
		margin-left: -17.5vw;
		margin-top: -17.5vw;
	}

	.slide1 .upperSection {
		clip-path: circle(100% at 50% 50%);
	}

	.slide3 .left {
		display: none;
	}

	.m_service_box {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 90%;
		left: 5%;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
	}

	.m_services {
		width: 100%;
		padding-bottom: 50px;
		overflow: inherit;
		-webkit-transform: translateY(50px);
		opacity: 0;
		-webkit-transition: all 1s ease .4s;
	}

	.slide3.swiper-slide-active .m_services {
		-webkit-transform: translateY(0px);
		opacity: 1;
	}

	.m_services .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background: #009358;
		opacity: 1;
		width: 20px;
	}

	.m_services .swiper-pagination-bullet {
		background: #fff;
		opacity: 1;
		border-radius: 10px;
		-webkit-transition: all .6s;
	}

	.m_services a {
		position: relative;
		display: block;
		width: 100%;
	}

	.m_services a .thum {
		border-radius: 5vw 0px 0px 0px;
	}

	.m_services a .thum::after {
		width: 100%;
		height: 70%;
		position: absolute;
		left: 0%;
		bottom: 0%;
		background: linear-gradient(-180deg, rgba(2, 147, 88, .0), rgba(2, 147, 88, .75));
		content: '';
		top: auto;
	}

	.m_services a .name {
		width: 100%;
		height: auto;
		position: absolute;
		text-align: center;
		color: #fff;
		padding: 20px 5%;
		left: 0px;
		bottom: 0px;
		font-size: 16px;
		font-weight: bold;
	}

	.m_case_box {
		display: block;
	}

	.contents {
		width: 90%;
		left: 5%;
	}

	.case_swiper {
		margin-bottom: 10vw;
		-webkit-transform: translateY(50px);
		opacity: 0;
		-webkit-transition: all 1s ease .4s;
	}

	.slide4.swiper-slide-active .case_swiper {
		-webkit-transform: translateY(0px);
		opacity: 1;
	}

	.case_swiper a {
		color: #fff;
		position: relative;
	}

	.case_swiper a .thum:after {
		width: 100%;
		height: 70%;
		position: absolute;
		left: 0%;
		bottom: 0%;
		background: linear-gradient(-180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .75));
		content: '';
		top: auto;
	}

	.case_swiper a .name {
		padding: 7px;
		font-size: 12px;
		text-align: center;
		line-height: 1.4;
		position: absolute;
		left: 0px;
		bottom: 0px;
		width: 100%;
	}

	header .phoneBox {
		display: none;
	}

	header.open nav {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	header nav ul {
		width: 90%;
		margin-left: 5%;
		flex-wrap: wrap;
		margin-top: 5vw;
	}

	header nav ul li {
		width: 100%;
		line-height: 50px;
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px solid rgba(255, 255, 255, .2);
	}

	header nav>ul>li {
		top: 50px;
		opacity: 0;
		-webkit-transition: all .75s;
	}

	header nav>ul>li:nth-child(2) {
		-webkit-transition: all .75s ease .1s;
	}

	header nav>ul>li:nth-child(3) {
		-webkit-transition: all .75s ease .2s;
	}

	header nav>ul>li:nth-child(4) {
		-webkit-transition: all .75s ease .3s;
	}

	header nav>ul>li:nth-child(5) {
		-webkit-transition: all .75s ease .4s;
	}

	header nav>ul>li:nth-child(6) {
		-webkit-transition: all .75s ease .5s;
	}

	header nav>ul>li:nth-child(7) {
		-webkit-transition: all .75s ease .6s;
	}

	header nav>ul>li:nth-child(8) {
		-webkit-transition: all .75s ease .7s;
	}

	header.open nav>ul>li {
		top: 0px;
		opacity: 1;
	}

	header nav>ul>li>a {
		width: 80px;
		font-weight: bold;
		line-height: 30px;
		padding: 15px 0px;
		text-align: left;
	}

	header nav ul li ul {
		position: relative;
		top: 0px;
		height: auto;
		padding-top: 0px;
		line-height: 20px;
		opacity: 1;
		margin-top: 0px;
		width: calc(100% - 80px);
		margin-left: 0px;
		display: flex;
		flex-wrap: wrap;
		padding: 15px 0px;
	}

	header nav ul li ul li {
		opacity: 1;
		line-height: 20px;
		width: auto;
		top: 0px;
		border-bottom: none;
		margin-right: 10px;
	}

	header nav ul li ul::after {
		display: none;
	}

	header nav ul li ul li a::after {
		display: none;
	}

	header nav ul li:nth-child(2) ul::before {
		display: none;
	}

	header:hover nav ul li a,
	header.active nav ul li a,
	header.active2 nav ul li a {
		color: #fff;
	}

	header nav ul li ul li a {
		line-height: 30px;
		font-size: 16px;
	}

	header nav ul li:nth-child(4) ul li:nth-child(4) a {
		font-size: 16px;
	}

	.nav_icon.open::after {
		background-position: 0px -20px;
	}

	.develop_list li .des {
		display: block;
		position: absolute;
		width: 200%;
		height: auto;
		background: #fff;
		color: #3e3e3e;
		padding: 15px;
		border-radius: 5px;
		opacity: 0;
		visibility: hidden;
		line-height: 1.7;
		left: -100%;
		-webkit-transform: translateY(-80%);
	}

	.develop_list li .des::after {
		width: 0px;
		height: 0px;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #fff;
		position: absolute;
		left: 50%;
		margin-left: -8px;
		content: '';
		bottom: -7px;
	}

	.develop_list li.active .des {
		opacity: 1;
		visibility: visible;
	}

	.dclose {
		display: block;
	}

	.develop_list {
		left: 5vw;
	}

	.develop_list ul {
		left: 0vw;
	}

	.develop_box .right::before {
		display: none;
	}

	header:hover nav ul li ul li {
		transition: none !important;
	}

	.slide1 .cicxle {
		display: none;
	}

	.slogan {
		opacity: 1;
		visibility: visible;
	}

	.m_services .swiper-pagination {
		text-align: left;
	}

	.home-pagi.swiper-pagination {
		opacity: 1;
		visibility: visible;
	}

	.nameTop {
		align-items: flex-end;
	}

	.banner-pagi {
		justify-content: center;
	}

	.banner-pagi span {
		width: 15px;
		height: 15px;
		margin-right: 5px;
	}

	.banner-pagi span.active {
		background-position: -15px 0px;
	}

	.dclose {
		display: block;
	}

	.develop_box {
		padding: 25vw 0px;
	}

	.wecha_icon p {
		color: rgba(255, 255, 255, .5);
		font-size: 12px;
	}

	.newsText ul li {
		width: 100%;
	}

	.newsText ul li a {
		padding: 15px;
	}

	.newsText ul li a .time {
		width: 70px;
		height: 70px;
	}

	.newsText ul li a .time b {
		font-size: 24px;
		padding-top: 12px;
	}

	.newsText ul li a .info {
		width: calc(100% - 85px);
	}

	.newsText ul li a .info .des {
		display: none;
	}

	.newsText ul li a .info .name {
		text-overflow: inherit;
		white-space: inherit;
		font-size: 16px;
		line-height: 1.6;
		border-bottom: none;
		padding-bottom: 0px;
	}

	.newsText ul li a {
		align-items: center;
	}

	.newsText ul li {
		margin-bottom: 15px;
	}
	
	.curl_list ul li .info .des br{
		display:none;
	}
	
	.honor_btn{
		display: none;
	}
	.lightBox .tet-box{
		width: 90vw;
		left: 5%;
		top: 50%;
		-webkit-transform: translateY(-50%);
	}
	.lightBox .summary-join{
		height: 400px;
		font-size: 14px;
	}
	.lightBox .close{
		line-height: 30px;
		font-size: 12px;
		width: 60px;
		height: 30px;
		position: absolute;
		right: 15px;
		top: 17.5px;
	}
	.boxes_py .common_title {
	    margin-left: 5%;
	    width: 90%;
	}
	
	.lightBox .tittle{
		font-size: 16px;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		padding-right: 80px;
	}
	.pySwiper .swiper-slide a .name{
		-webkit-transform: translateY(0%);
		opacity: 1;
	}
	.rd_nav{
		flex-wrap: wrap;
	}
	.rd_nav a{
		font-size: 14px;
		padding: 0px 10px;
		margin-right: 5px;
	}
	.rd_nav a:last-child{
		margin-right: 0%;
	}
	.rd_warp .rd_box{
		opacity: 1;
		display: none;
	}
	
	.rd_warp .rd_box.active{
		display: block;
	}
	
	.rd_warp .rd_box:nth-child(2){
		position: relative;
	}
	.innova_box .right{
		display: none;
	}
	.innova ul{
		justify-content: space-between;
	}
	.innova ul li{
		width: 49%;
		margin-bottom: 3vw;
	}
}