/*
 *	Created by Edward on 25/09/19
 *	Copyright (c) 2024 ishutime.com All rights reserved
*/
html {
	font-size: 16px;
}

@font-face {
	font-family: 'iconfont';
	src: url('iconfont.woff2?t=1663740079843') format('woff2'),
		url('iconfont.woff?t=1663740079843') format('woff'),
		url('iconfont.ttf?t=1663740079843') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0px;
	-moz-osx-font-smoothing: grayscale;
}

@font-face {
	font-family: din;
	src: url(../fonts/din-bold-webfont.woff2);
}

@font-face {
	font-family: Figtree;
	src: url(../fonts/Figtree-Medium.ttf);
}

@font-face {
	font-family: Manrope;
	src: url('../fonts/Manrope.ttf');
}

body,
html {
	color: #333333;
	font-family: sans-serif, "Microsoft YaHei", '微软雅黑', "Arial";
	font-weight: 400;
}

b,
strong {
	font-weight: 500;
}

textarea,
input {
	font-family: "Microsoft YaHei", '微软雅黑', "Arial";
	font-size: 1rem;
	border: none;
	outline: none;
}

button {
	border: none;
}

.zr-top{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 3vw;
	margin-bottom: 5vw;
	
}

.jz-box{
	background: url(../images/zr-bg.jpg) center bottom no-repeat;
	background-size: cover;
}

.zr-top .zr-cols{
	width: 35%;
	font-size: 3vw;
	line-height: 1;
	color: #aa6f44;
}

.zeren-swiper{
	padding-bottom: 25px;
}

.zeren-swiper .swiper-slide{
	border-radius: 10px;
	overflow: hidden;
}

.zr-top .zr-cols span{
	font-weight: 100;
}
.zr-top .singePage{
	width: 50%;
	font-size: 1.125rem;
}
.header {
	width: 100%;
	height: auto;
	position: fixed;
	left: 0%;
	top: 0%;
	z-index: 10;
	padding: 0px 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	-webkit-transform: translateY(0%);
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.header.open{
	transform: translateY(-100%);
}

.header:hover,
.header.active {
	background: #fff;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, .05);
}

.header:hover .logo img:nth-child(1),
.header.active .logo img:nth-child(1) {
	opacity: 0;
}

.header:hover .logo img:nth-child(2),
.header.active .logo img:nth-child(2) {
	opacity: 1;
}

.header:hover .nav ul li a,
.header.active .nav ul li a {
	color: #1e1e1e;
}

.logo {
	width: 200px;
	display: flex;
	position: relative;
}

.logo img {
	width: 100%;
	height: auto;
}

.logo img:nth-child(2) {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0px;
	top: 0px;
	opacity: 0;
}

.nav {
	width: 60%;
	display: flex;
	align-items: center;
	gap: 3vw;
}

.hot-tel {
	width: 200px;
	height: 36px;
	position: relative;
	background: #ffffff;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border: 1px solid #ffffff;
}

.active .hot-tel{
	border-color: rgba(0, 0, 0, .3);
}

.hot-tel .icon {
	font-size: 1.2rem;
}

.hot-tel .txt {
	font-family: Figtree;
}

.nav ul {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.nav ul li {
	width: auto;
	text-align: center;
	font-size: 1.125rem;
	flex: 1;
}

.nav ul li .firstLab {
	width: 100%;
	position: relative;
}

.nav ul li .firstLab::after {
	width: 0px;
	height: 3px;
	position: absolute;
	left: 50%;
	margin-left: 0px;
	bottom: 0px;
	content: '';
	background: #AA7043;
	border-radius: 5px;
	-webkit-transition: all .5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.nav ul li:hover .firstLab p {
	color: #AA7043;
}

.nav ul li:hover .firstLab::after {
	width: 50px;
	margin-left: -25px;
}

.nav ul li .second {
	width: 100%;
	left: 0%;
	height: 60vh;
	position: absolute;
	background: rgba(255, 255, 255, 1);
	backdrop-filter: blur(5px);
	font-size: 14px;
	line-height: 25px;
	padding: 0px 10%;
	border-radius: 5px;
	overflow: hidden;
	top: 90px;
	display: flex;
	justify-content: space-between;
	box-shadow: 0px 0px 35px rgba(0, 0, 0, .05);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.nav ul li.active .second {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nav ul li .second .left .text {
	width: 100%;
	position: relative;
	text-align: left;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	margin-bottom: 25px;
}

.nav ul li .second .left .text .tit {
	font-size: 36px;
	line-height: 1.7;
	position: relative;
	-webkit-transition: all .8s;
	-webkit-transform: translateY(15px);
	opacity: 0;
	color: #AA7043;
	font-weight: 500;
}

.nav ul li .second .left .text .des {
	width: 100%;
	height: auto;
	font-size: 16px;
	line-height: 1.7;
	-webkit-transform: translateY(25px);
	opacity: 0;
	-webkit-transition: all .9s;
}

.nav ul li .second .left .bars {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	-webkit-transform: translateY(35px);
	opacity: 0;
	-webkit-transition: all 1s;
}

.nav ul li .second .right .img {
	-webkit-transform: translateY(15px);
	opacity: 0;
	-webkit-transition: all .8s;
}

.nav ul li .second .right .des {
	font-size: 16px;
	line-height: 1.7;
	margin-top: 25px;
	-webkit-transform: translateY(25px);
	opacity: 0;
	-webkit-transition: all .9s;
}

.nav ul li.active .second .left .text .tit,
.nav ul li.active .second .left .text .des,
.nav ul li.active .second .left .bars,
.nav ul li.active .second .right .img,
.nav ul li.active .second .right .des {
	-webkit-transform: translateY(0px);
	opacity: 1;
}

.nav ul li .second .left {
	width: 45%;
	padding-top: 50px;
}

.nav ul li .second .left .bars a {
	width: 48%;
	display: flex;
	position: relative;
	height: auto;
	line-height: 50px;
	color: #3e3e3e;
	border-bottom: 1px solid rgba(0, 0, 0, .05);
	font-size: 20px;
	margin-right: 4%;
	-webkit-transition: all .95s;
	padding-left: 0px;
	margin-bottom: 10px;
}



.nav ul li .second .left .bars a::after {
	width: 0%;
	height: 1px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	content: '';
	background: #AA7043;
	-webkit-transition: all .4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.nav ul li .second .left .bars a:hover {
	color: #AA7043;
	padding-left: 30px;
}

.nav ul li .second .left .bars a:hover::after {
	width: 100%;
}

.nav ul li .second .left .bars a:nth-child(even) {
	margin-right: 0%;
}

.nav ul li .second .right {
	width: 50%;
	box-shadow: 40px 20px 50px rgba(0, 0, 0, .1);
	padding-right: 5%;
	padding-top: 50px;
	text-align: left;
}

.nav ul li a {
	display: block;
	overflow: hidden;
	position: relative;
	color: #fff;
	line-height: 90px;
}

.nav ul li a p {
	white-space: nowrap;
}

.banner-swiper {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: auto;
}

.banner-swiper::after{
	width: 100%;
    height: 10vw;
    position: absolute;
    left: 0;
    top: 0%;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
    pointer-events: none;
	z-index: 1;
}

.banner-swiper .swiper-slide{
	background: #ffffff;
	height: 100vh;
}

.banner-swiper  .swiper-pagination {
	bottom: 2vw;
    text-align: right;
    width: 95%;
}

.banner-swiper  .swiper-pagination .swiper-pagination-bullet {
	width: 50px;
	border-radius: 0;
	background: white;
	margin: 0 10px;
	height: 5px;
}

.banner-swiper video {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

.banner-swiper .img {
	width: 100%;
	height: 100%;
	background: center center no-repeat;
	background-size: cover;
	transform: scale(1.1);
	opacity: 0;
	transition: all 6s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.banner-swiper .img::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	content: '';
	background: rgba(0, 0, 0, .2);
}

.business-galley .swiper-button-next,.business-galley .swiper-button-prev{
	color: #ffffff;
}

.business-galley .swiper-button-next{
	right: 65px;
}

.business-galley .swiper-button-prev{
	left: 65px;
}

.business-galley .swiper-button-next:after,.business-galley .swiper-button-prev:after{
	font-size: 24px;
}

.banner-swiper .text {
	position: absolute;
	top: 50%;
	left: 10vw;
	transform: translateY(-50%);
	color: white;
	font-size: 3vw;
	z-index: 9;
	width: 70%;
	text-align: left;
	line-height: 1.2;
}


.scroll_icon{
	width: 23px;
	height: 38px;
	border: 1px solid #fff;
	border-radius: 35px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 2vw;
	z-index: 10;
}

.scroll_icon::after{
	width: 3px;
	height: 8px;
	position: absolute;
	left: 50%;
	top: 20%;
	background: #fff;
	border-radius: 5px;
	content: '';
	transform: translateX(-50%);
	-webkit-animation: scrollAnimate 2s ease infinite;
}

@-webkit-keyframes scrollAnimate{
	0%,100%{
		top: 20%;
		opacity: 1;
		height: 8px;
	}
	50%{
		top: 50%;
		opacity: 0;
		height: 3px;
	}
}


.banner-swiper .swiper-button-next,.banner-swiper .swiper-button-prev{
	color: #ffffff;
}

.banner-swiper .swiper-button-next::after,.banner-swiper .swiper-button-prev::after{
	font-size: 24px;
}

.banner-swiper .swiper-button-next{
	right: 3%;
}

.banner-swiper .swiper-button-prev{
	left: 3%;
}

.banner-swiper .text .t {
	font-weight: 400;
	overflow: hidden;
	margin-bottom: 0.5vw;
}

.banner-swiper .text .t p,.banner-swiper .text .d p,.banner-swiper .text .e p{
	transform: translateY(100%);
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.banner-swiper .text .d p{
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.2s;
}

.banner-swiper .text .e p{
	transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1) 0.3s;
}

.banner-swiper .text .d {
	font-weight: 200;
	overflow: hidden;
	text-transform: uppercase;
	margin-bottom: 1vw;
}

.banner-swiper .text .e{
	overflow: hidden;
	font-size: 1.2vw;
	font-weight: 100;
}

.banner-swiper .swiper-slide.active .d p,.banner-swiper .swiper-slide.active .t p,.banner-swiper .swiper-slide.active .e p{
	transform: translateY(0%);
}

.banner-swiper .swiper-slide.active .img{
	transform: scale(1);
	opacity: 1;
}

.banner-swiper .shubiao {
	position: absolute;
	color: white;
	z-index: 9;
	font-size: 0.9vw;
	left: 51%;
	bottom: 5vw;
}

.title-flex{
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	margin-bottom: 3vw;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sg-name{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 1vw;
}

.sg-name.mb3{
	margin-bottom: 3vw;
}

.sg-name.absolute{
	position: absolute;
	left: 8%;
	top: 6vw;
	z-index: 5;
}

.sg-name.w{
	color: #ffffff;
}

.sg-name img{
	width: 28px;
}

.sg-name p{
	font-size: 1.75rem;
}

.title-flex .sg-name{
	width: auto;
}

.exqu-menu{
	width: auto;
	display: flex;
	gap: 2vw;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.exqu-menu .item{
	font-size: 1.25rem;
	line-height: 40px;
	cursor: pointer;
	padding-bottom: 10px;
	position: relative;
	color: rgba(0, 0, 0, 0.4);
}

.exqu-menu .item::after{
	width: 0%;
	height: 2px;
	position: absolute;
	left: 50%;
	bottom: -1px;
	content: '';
	background: #aa6f44;
	transition: all 0.5s;
}

.exqu-menu .item:hover::after,.exqu-menu .item.active::after{
	width: 100%;
	left: 0;
}

.exqu-menu .item.active{
	color: #1e1e1e;
}
.swiper-lazy {
	opacity: 0;
	transition: opacity 0.3s ease;
  }
  
  .swiper-lazy-loaded {
	opacity: 1;
  }

.exqu-swiper .swiper-slide{
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	opacity: 0;
    transition: all 0.5s;
}
.exqu-swiper .swiper-wrapper,.news-swiper .swiper-wrapper{
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}
.exqu-swiper .swiper-slide.swiper-slide-active{
	opacity: 1;
}

.exqu-box{
	background:#ffffff url(../images/exqu-bg.jpg) center center no-repeat;
	background-size: cover;
	padding: 0;
	height: 100vh;
	display: flex;
	align-items: center;
}
.swiper-lazy-preloader{
	border-color: #AA7043;
}
.exqu-swiper .swiper-slide .thum{
	width: 60%;
	aspect-ratio: 5 / 3;
	border-radius: 1vw;
	overflow: hidden;
	opacity: 0;
	transition: all 0.8s ease-in-out 0.3s;
}

.exqu-swiper .swiper-slide.swiper-slide-active .thum{
	opacity: 1;
}


.sg-more{
	display: block;
	width: 154px;
	height: 46px;
	color: #ffffff;
	position: relative;
	border-radius: 50px;
	overflow: hidden;
	background-image: linear-gradient(0deg, #e3c58c, #d0ab7b);
}

.sg-more .box{
	width: 100%;
	height: 100%;
	position: relative;
}

.sg-more .box .txt{
	width: 100px;
	height: 25px;
	position: absolute;
	overflow: hidden;
	line-height: 25px;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
}

.sg-more .box .txt p:first-child{
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	margin-top: 0;
}

.sg-more:hover .box .txt p:first-child{
	margin-top: -25px;
}

.sg-more .box .icon{
	width: 10px;
	height: 10px;
	position: absolute;
	right: 25px;
	top: 50%;
	overflow: hidden;
	transform: translateY(-50%);
}
.sg-more .box .icon img:nth-child(1){
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
	position: relative;
	left: 0px;
	top: 0px;
}
.sg-more .box .icon img:nth-child(2){
	position: absolute;
	left: -10px;
	bottom: -10px;
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.sg-more:hover .box .icon img:nth-child(1){
	left: 10px;
	top: -10px;
	opacity: 0;
}

.sg-more:hover .box .icon img:nth-child(2){
	left: 0px;
	bottom: 0px;
	opacity: 1;
}

.exqu-swiper .swiper-slide .slide-cols{
	width: 40%;
	padding: 0vw 0vw 0vw 5vw;
}

.exqu-swiper .slide-cols .mark{
	width: 100%;
	font-size: 0.875rem;
	line-height: 20px;
	position: relative;
	padding-left: 30px;
	color: rgba(0, 0, 0, 0.4);
	margin-bottom: 2vw;
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.8s ease-in-out 0.6s;
}

.exqu-swiper .slide-cols .mark::before{
	width: 28px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 1px;
	content: '';
	background: url(../images/rect-icon.png) no-repeat;
	background-size: cover;
}

.exqu-swiper .slide-cols .title{
	margin-bottom: 2vw;
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.8s ease-in-out 0.7s;
}

.exqu-swiper .slide-cols .title .name{
	font-size: 2rem;
}

.exqu-swiper .slide-cols .title .desc{
	font-size: 1.25rem;
	font-weight: 300;
}

.exqu-swiper .slide-cols .info{
	width: 100%;
	height: auto;
	line-height: 1.7;
	margin-bottom: 3vw;
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.8s ease-in-out 0.8s;
}

.exqu-swiper .slide-cols .sg-more{
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.8s ease-in-out 0.9s;	
}

.exqu-swiper .swiper-slide-active .slide-cols .sg-more,.exqu-swiper .swiper-slide-active .slide-cols .desc,.exqu-swiper .swiper-slide-active .slide-cols .title,.exqu-swiper .swiper-slide-active .slide-cols .mark{
	transform: translateY(0px);
	opacity: 1;
}


.exqu-swiper .swiper-slide-active .slide-cols .info{
	transform: translateY(0px);
    opacity: 1;
}

.about-box{
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	background: url(../images/about-bg.jpg) center center no-repeat;
	background-size: cover;
}

.about-content{
	width: 65%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
	padding: 6vw 8%;
}

.data-show{
	width: 35%;
	border-left: 1px solid rgba(0, 0, 0, .1);
	flex-wrap: wrap;
	display: flex;
}

.about-content .title{
	color: #aa6f44;
    font-size: 3vw;
    line-height: 1.25;
	width: 100%;
	margin-top: 7vw;
    margin-bottom: 3vw;
}

.about-content .desc{
	width: 100%;
	line-height: 1.7;
	color: #043434;
	font-size: 1.125rem;
	margin-bottom: 8vw;
}

.about-content .title p{
	font-weight: 300;
}

.data-show .item{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	align-content: center;
    padding: 0px 4vw;
}

.data-show .item::after{
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background: rgba(0, 0, 0, .1);
}

.data-show .item .icon{
	width: 54px;
}

.data-show .item .n{
	width: 100%;
	color: #043434;
	font-family: din;
	font-size: 4vw;
    margin-top: 1vw;
    margin-bottom: 0.5vw;
}

.data-show .item .desc{
	font-weight: 300;
}

.business-box{
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.slider,.slider .item,.thumbnail{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0
}

.slider .item .img{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.slider .item .img img{
	width: 100%;
	height: 100%;

}
.slider .item .info{
	width: 30%;
    height: auto;
    position: absolute;
    left: 8%;
    top: 40%;
    line-height: 1.2;
    color: #ffffff;

}
.slider .item .info .title{
	font-size: 3vw;
    margin-bottom: 2vw;
}
.slider .item .info .des{
	margin-bottom: 5vw;
    line-height: 1.7;
    font-weight: 300;
}

.thumbnail{
	width: max-content;
	left: 50%;
	bottom: 15vw;
	top: auto;
	gap: 1.5vw;
	display: flex;
	height: auto;
	z-index: 5;
}



.thumbnail .item{
	width: 15vw;
    height: 20vw;
	border-radius: 10px;
	overflow: hidden;
}

.thumbnail .item img{
	width: 100%;
	height: 100%;
}

.slider .item:nth-child(1){
	z-index: 1;
}

.slider .item:nth-child(1) .title,.slider .item:nth-child(1) .des,.slider .item:nth-child(1) .sg-more{
	transform: translateY(25px);
	opacity: 0;
	animation: showInfo 1s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;
}

.slider .item:nth-child(1) .title{
	animation-delay: 0.5s;
}

.slider .item:nth-child(1) .des{
	animation-delay: 0.7s;
}

.slider .item:nth-child(1) .sg-more{
	animation-delay: 0.9s;
}


@-webkit-keyframes showInfo{
	to{
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}


.next .slider .item:nth-child(1) img{
	width: 15vw;
	height: 20vw;
	border-radius: 10px;
	position: absolute;
	left: 50%;
	bottom: 15vw;
	animation: showImage 0.5s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;

}

@-webkit-keyframes showImage{
	to{
		width: 100%;
		height: 100%;
		border-radius: 0;
		left: 0;
		bottom: 0;
	}
}

.next .thumbnail .item:nth-last-child(1){
	width: 0;
	overflow: hidden;
	animation: showThumbnail 1s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;
}

@-webkit-keyframes showThumbnail{
	to{
		width: 15vw;
	}
}

.next .thumbnail {
	transform: translateX(150px);
	animation: transformThumbnail 1s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;
}

@-webkit-keyframes transformThumbnail{
	to{
		transform: translateX(0);
	}
}

.prev .slider .item:nth-child(2) {
	z-index: 2;
}

.prev .slider .item:nth-child(2) img{
	position: absolute;
	bottom: 0;
	left: 0;
	animation: outImage 0.5s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;
}

@-webkit-keyframes outImage{
	to{
		width: 15vw;
		height: 20vw;
		border-radius: 10px;
		left: 50%;
		bottom: 15vw;
	}
}

.prev .thumbnail .item:nth-child(1) {
	width: 0;
	overflow: hidden;
	opacity: 0;
	animation: showThumbnail 1s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;
}


.prev .slider .item:nth-child(2) .title,.prev .slider .item:nth-child(2) .des,.prev .slider .item:nth-child(2) .sg-more{
	animation: hideInfo 1s cubic-bezier(0.215, 0.610, 0.355, 1) 1 forwards;
}

@-webkit-keyframes  hideInfo{
	to{
		transform: translateY(25px);
		opacity: 0;
	}
}

.slider-config{
	width: 45%;
	height: 40px;
	position: absolute;
	left: 50%;
	bottom: 8vw;
    z-index: 5;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.arrows{
	width: auto;
	display: flex;
	position: relative;
	gap: 10px;
}

.arrows .btn{
	width: 45px;
    height: 45px;
    position: relative;
    line-height: 43px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .3);
    font-size: 1.25rem;
    background: #ffffff;
    color: #d0ab7b;
}

.arrows .btn:hover{
	background: #d0ab7b;
	color: #ffffff;
}

.curentNum{
	width: auto;
	display: flex;
	align-items: center;
	position: relative;
	color: #ffffff;
	font-family: Manrope;
	font-weight: 300;
	font-size: 2rem;
	line-height: 35px;
}

.curentNum .fs{
	position: relative;
}

.curentNum .ls{
	width: 20px;
	height: 35px;
	overflow: hidden;
}

.curentNum .ls span{
	display: block;
	width: 100%;
	height: 35px;
}

.poregress-line{
	width: calc(100% - 160px);
	height: 1px;
	position: relative;
	background: rgba(255,255,255,.3);
}

.news-box{
	height: 100vh;
	padding: 0;
	background: url(../images/news-bg.jpg) center center no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	
}

.news-cols{
	width: 20%;
	display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}

.news-content{
	width: 75%;
}

.news-box .w1400{
	display: flex;
	justify-content: space-between;
}

.news-swiper{
	width: 100%;
}

.news-swiper .thum{
	width: 100%;
	aspect-ratio: 10 / 6;
}

.news-swiper .swiper-slide:hover .thum img{
	transform: scale(1.1);
}

.news-swiper .swiper-slide{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 0.5vw;
}

.news-swiper .swiper-slide .info{
	width: 100%;
	height: auto;
	position: relative;
	left: 0;
	bottom: 0;
	padding: 1.5vw;
}

.news-swiper .thum::after{
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.6));
	display: none;
}

.news-swiper .swiper-slide .info .name{
	font-size: 1.25rem;
	height: auto;
	line-height: 30px;
	margin-bottom: 10px;
}

.news-swiper .swiper-slide .info .desc{
	width: 100%;
	height: auto;
	line-height: 1.7;
	opacity: 0.6;
	min-height: 55px;
}

.news-swiper .swiper-slide .info .date{
	width: auto;
	margin-bottom: 10px;
	font-family: Manrope;
	font-weight: 300;
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.2);
	font-size: 0.875rem;
	padding: 2px 10px;
    border-radius: 50px;
	opacity: 0.6;
}

.news-navigation{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news-btns{
	width: auto;
	display: flex;
	gap: 1vw;
}

.news-btns .news-prev,.news-btns .news-next{
	width: 40px;
	height: 40px;
	line-height: 38px;
	text-align: center;
	font-size: 0.875rem;
	border: 1px solid #ed9838;
	border-radius: 50%;
	color: #ed9838;
	cursor: pointer;
}

.news-btns .news-prev:hover,.news-btns .news-next:hover{
	background: #ed9838;
	color: #ffffff;
}

.news-navigation .pagination{
	width: auto;
	font-family: Manrope;
	color: rgba(0, 0, 0, 0.4);
}

.idea-box{
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
}

.idea-wrap{
	width: 84%;
	height: calc(100vh - 12vw);
	background: url(../images/idea-bg.jpg) center center no-repeat;
	background-size: cover;
	border-radius: 1vw;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.idea-left{
	width: 45%;
	margin-left: 8%;
}

.idea-content{
	width: 100%;
	height: auto;	
	margin-top: 5vw;
	color: #ffffff;
	margin-bottom: 3vw;
}

.idea-content .name{
	width: 100%;
	height: auto;
	font-size: 2rem;
	margin-bottom: 2vw;
	font-weight: 300;
}

.idea-content .desc{
	line-height: 1.7;
}

.footer{
	width: 100%;
	height: auto;
	position: relative;
	background: url(../images/footer-bg.jpg) center center no-repeat;
	background-size: cover;
	padding-top: 5vw;
	font-weight: 300;
	padding-bottom: 2vw;
}

.footer-cols{
	width: 40%;
	display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.footer-content{
	width: 50%;
}

.flogo{
	width: 186px;
}

.footer .w1400{
	display: flex;
	justify-content: space-between;
}

.fslogan{
	width: 100%;
    font-size: 3vw;
    color: #006936;
    line-height: 1.2;
}

.footer-top{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
    gap: 1vw;
}

.wechat{
	width: 50px;
	height: 50px;
	background: #ffffff;
	border-radius: 50%;
	position: relative;
}

.wechat .icon{
	width: 100%;
	height: 100%;
	position: relative;
	line-height: 50px;
	text-align: center;
	font-size: 1.75rem;
	color: #24db5a;
	cursor: pointer;
}

.wechat .img{
	display: none;
	width: 120px;
	height: 120px;
	position: absolute;
	left: 50%;
	margin-left: -60px;
	top: -130px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
}

.wechat:hover .img{
	display: block;
}

.friends{
	width: 260px;
	height: 50px;
	background: #ffffff;
	position: relative;
	border-radius: 50px;
}

.friends .list{
	display: none;
	position: absolute;
	left: 0;
	bottom: calc(100% + 15px);
	background: #ffffff;
	width: 100%;
    padding: 15px;
    border-radius: 10px;
}

.friends .list::before{
	width: 100%;
	height: 15px;
	position: absolute;
	left: 0;
	bottom: -15px;
	content: '';
}

.friends .list::after{
	width: 0;
	height: 0;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid #ffffff;
	position: absolute;
	left: 50%;
	margin-left: -7px;
	bottom: -7px;
	content: '';
}

.friends .list a{
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	line-height: 40px;
}

.friends .list a:last-child{
	border-bottom: none;
}

.friends .list a:hover{
	color: #006936;
}

.friend-show{
	width: 100%;
	height: 100%;
	line-height: 50px;
	padding-left: 35px;
	cursor: pointer;
}

.friends:hover .list{
	display: block;
}

.footer-btm{
	width: 100%;
	margin-top: 6vw;
}

.fnav{
	width: 100%;
	display: flex;
	position: relative;
	justify-content: flex-end;
	gap: 1vw;
	margin-bottom: 1.5vw;
}

.copyright{
	width: 100%;
	height: auto;
	font-size: 0.875rem;
	text-align: right;
	color: rgba(0, 0, 0, 0.4);
	gap: 0.5vw;
    display: flex;
    justify-content: flex-end;
	flex-wrap: wrap;
}

.copyright a{
	color: rgba(0, 0, 0, 0.4);
}

.sticky{
	position: sticky;
	top: 0;
}

.sub-banner .txt{
	text-align: left;
	top: 75%;
}

.sub-banner .img{
	width: 100%;
	height: auto;
	position: relative;
}

.sub-banner .img::after{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, .1);
	content: '';
}

.intro-box{
	background: url(../images/intro-bg.jpg) center center no-repeat;
	background-size: cover;
}

.intro-box .sg-name{
	margin-bottom: 6vw;
}

.intro-box .title{
	color: #aa6f44;
    font-size: 3vw;
    line-height: 1.25;
    width: 100%;
    margin-top: 7vw;
    margin-bottom: 3vw;
}

.intro-box .title p{
	font-weight: 300;
}

.intro-box .des {
    width: 60%;
    line-height: 2;
    margin-bottom: 6vw;
}

.intro-box .data-show{
	width: 50%;
	border: none;
}

.intro-box .data-show .item{
	flex: 1;
	padding: 0;
}

.intro-box .data-show .item::after{
	display: none;
}

.intro-box .data-show .item .n{
	font-size: 3.5vw;
	line-height: 1;
}

.develop-box{
	background: url(../images/history-bg.jpg) center center no-repeat;
	background-size: cover;
	padding: 0;
}

.develop-box .w1400{
	display: flex;
	justify-content: space-between;
}

.develop-content{
	width: 80%;
	padding: 6vw 0px;
	border-right: 1px solid rgba(0, 0, 0, .1);
	padding-right: 30%;
	position: relative;
}

.develop-cols{
	width: 20%;
	padding: 6vw 0px;
	height: calc(100vh - 12vw);
}

.develop-title{
	width: 100%;
	margin-top: 3vw;
	color: #aa6f44;
	margin-bottom: 3vw;
}

.develop-title p:first-child{
	font-size: 2.5vw;
	font-weight: 300;
}

.develop-title p:nth-child(2){
	font-size: 1.25rem;
}

.develop-list{
	width: 100%;
	height: auto;
	position: relative;
}

.develop-list .item{
	width: 100%;
	opacity: 0;
	display: none;
}

.develop-list .item.active{
	display: block;
	animation: blockAnimate 1s ease 1 forwards;
}

@-webkit-keyframes blockAnimate{
	0%{
		display: block;
		opacity: 0;
		transform: translateY(15px);
	}
	100%{
		transform: translateY(0px);
		opacity: 1;
	}
}

.develop-swiper {
	width: 100%;
	height: 100%;
	
}

.develop-swiper .swiper-slide {
	font-size: 18px;
	overflow: hidden;
	display: flex;
	align-items: center;
	position: relative;
}

.develop-swiper .swiper-slide p{
	padding-left: 50px;
	height: auto;
	line-height: 1.5;
	position: relative;
	font-family: Figtree;
	color: #999999;
	transition: all 0.5s;
}

.develop-swiper .swiper-slide p::after{
	width: 30px;
	height: 1px;
	position: absolute;
	left: 0;
	top: 50%;
	content: '';
	background: rgba(0, 0, 0, .1);	
}

.develop-swiper .swiper-slide.swiper-slide-active p{
	color: #aa6f44;
	font-size: 3vw;
}

.develop-btn{
	width: 50px;
	height: auto;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
}

.develop-btn .btn{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ffffff;
	cursor: pointer;
	line-height: 50px;
	text-align: center;
}

.develop-btn .btn i{
	transform: rotate(90deg);
    display: block;
}

.develop-list .item .year{
	color: #aa6f44;
    font-size: 6vw;
	font-family: Figtree;
	margin-bottom: 1vw;
}

.develop-list .item .comp{
	width: 100%;
	margin-bottom: 2vw;
}

.develop-list .item .comp p{
	display: inline-block;
	background: #aa6f44;
	color: #ffffff;
	padding: 3px 15px;
	border-radius: 50px;
}

.develop-list .item .desc{
	line-height: 2;
}

.dw-box{
	background: url(../images/dw-bg.jpg) center center no-repeat;
	background-size: cover;
}

.dw-content{
	width: 100%;
	text-align: center;
	margin-top: 8vw;
	color: #ffffff;
	margin-bottom: 8vw;
}

.dw-content .name{
	width: 100%;
	font-size:3vw;
	margin-bottom: 4vw;
}

.dw-content .name span{
	font-weight: 300;
}

.dw-content .singePage{
	padding: 0px 15%;
	line-height: 2;
	font-size: 1.125rem;
}

.dw-content .singePage b{
	font-weight: 400;
	display: block;
	margin-bottom: 0.5vw;
}

.dw-content .singePage p{
	font-weight: 300;
}

.zlv-box{
	background: url(../images/zlv-bg.jpg) center center no-repeat;
	background-size: cover;
}

.zlv-map{
	width: 100%;
	margin-top: 0vw;
	position: relative;
}

.zlv-map .img{
	width: 55%;
	margin-left: 45%;
}

.zlv-map .name{
	width: 40%;
	height: auto;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: #aa6f44;
}

.zlv-map .name p{
	font-size: 3vw;
	font-weight: 300;
}

.zlv-map .name b{
	font-size: 1.125rem;
}

.counter{
	width: 100%;
	margin-top: 5vw;
	display: flex;
}

.counter .item{
	flex: 1;
	position: relative;
}

.counter .item .item-top{
	width: 100%;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
	margin-bottom: 0.5vw;
	gap: 10px;
	line-height: 0.8;
}

.counter .item .desc{
	text-align: center;
	font-weight: 300;
}

.counter .item .item-top .count{
	font-family: din;
	font-size: 4vw;
	color: #aa6f44;
}

.counter .item .item-top .dw{
	color: #aa6f44;
}

.honor-name{
	color: #aa6f44;
    font-size: 3vw;
    line-height: 1.25;
    width: 100%;
    margin-top: 7vw;
    margin-bottom: 3vw;
}

.honor-name p{
	font-weight: 300;
}

.honor-box{
	background: url(../images/honor-bg.jpg) center center no-repeat;
	background-size: cover;
}

.honor-swiper .item{
	position: relative;
	height: auto;
	margin-bottom: 25px;
}

.honor-swiper .item:last-child{
	margin-bottom: 0;
}

.honor-swiper .item .cont{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 0px 1.5vw;
}

.honor-swiper .item .cont .leaf{
	width: 40px;
	height: 74px;
	background: url(../images/leaf-left.png);
}

.honor-swiper .item .cont .leaf:last-child{
	width: 40px;
	height: 74px;
	background: url(../images/leaf-right.png);
}

.honor-swiper .item .cont .title{
	width: calc(100% - 100px);
	text-align: center;
	font-size: 1.15vw;
}

.honor-swiper .swiper-pagination{
	top: auto !important;
	bottom: 0;
	height: 2px;
	background: #ffffff;
}

.honor-swiper{
	padding-bottom: 50px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: #aa6f44;
}

.exqu-swiper{
	overflow: initial;
}

.exqu-box{
	overflow: hidden;
}

.exqu-box.ip{
	padding: 6vw 0px;
	height: auto;
}

.exqu-swiper{
	margin-bottom: 6vw;
}

.news-swiper{
	padding-bottom: 50px;
}

.news-box .news-swiper{
	padding-bottom: 0px;
}

.swiper-pagination-progressbar{
	top: auto !important;
	bottom: 0% !important;
	height: 1px !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: #eb891a;
}

.news-swiper .inner{
	padding-top: 60%;
}

.news-swiper .info{
	width: 100%;
	height: auto;
	position: relative;
	padding: 1.5vw;
}

.news-swiper a{
	display: block;
	position: relative;
	background: #fff;
}

.news-swiper a:hover .inner img{
	transform: scale(1.05);
}

.news-swiper a::after{
	width: 0%;
	height: 3px;
	position: absolute;
	left: auto;
	right: 0%;
	bottom: 0;
	content: '';
	background: #eb891a;
	transition: all 0.5s;
}

.news-swiper a:hover::after{
	left: 0;
	right: auto;
	width: 100%;
}

.news-swiper.ip a:hover .info .name{
	color: #eb891a;
}

.news-swiper.ip .info .name{
	font-size: 1.5rem;
	height: auto;
    line-height: 1.5;
	width: calc(100% - 125px);
	margin-bottom: 0;
}

.news-swiper .info .des{
	font-size: 1rem;	
	line-height: 25px;
	height: 50px;
	color: rgba(0, 0, 0, 0.6);
	font-weight: 300;
}

.news-swiper.ip .info .date{
	width: 100%;
	font-family: quick;	
	color: rgba(0, 0, 0, 0.6);
}

.news-swiper.ip .thum{
	aspect-ratio: auto;
}

.news-swiper.ip .swiper-slide{
	border-radius: 0;
}

.news-swiper.ip .swiper-slide .info{
	position: relative;
	color: #1e1e1e;
}

.news-swiper.ip .thum .mark{
	position: absolute;
	left: 15px;
	top: 15px;
	background: #ffffff;
	font-size: 12px;
	padding: 5px 15px;
	border-radius: 50px;
	display: none;
}


.news-swiper .info-top{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 1vw;
}

.news-swiper .info-top .year{
	font-size: 0.875rem;
    line-height: 20px;
    position: relative;
    padding-left: 30px;
    color: rgba(0, 0, 0, 0.4);
	width: auto;
}

.news-swiper .info-top .year::before{
	width: 28px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 1px;
    content: '';
    background: url(../images/rect-icon.png) no-repeat;
    background-size: cover;
}

.news-swiper.ip .swiper-slide .info .title{
	margin-bottom: 0.15vw;
}

.business-galley{
	padding: 50px;
	background: #ffffff;
	position: relative;

}

.galley-swiper{
	height: 90vh;
	position: relative;
}

.galley-swiper .img{
	width: 100%;
	height: 90vh;
	position: relative;
}

.galley-swiper .img img{
	max-width: none;
	height: 100%;
}

.galley-show{
	width: 35%;
	height: calc(100% - 100px);
	position: absolute;
	left: 50px;
	top: 50px;
	background: rgba(0, 0, 0, .6);
	color: #ffffff;
	z-index: 5;
	padding: 0px 5%;
    display: flex;
    align-items: center;
}

.galley-show .mark{
	font-size: 0.875rem;
    line-height: 20px;
    position: relative;
    padding-left: 30px;
    width: 100%;
	margin-bottom: 3vw;
}

.galley-show .mark::before{
	width: 28px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 1px;
    content: '';
    background: url(../images/rect-icon2.png) no-repeat;
    background-size: cover;
}

.galley-show .name{
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 3vw;
}

.galley-show .name p{
	font-size: 2rem;
}

.galley-show .name b{
	font-size: 1.25rem;
    font-weight: 300;
}

.galley-show .desc{
	width: 100%;
    height: auto;
    line-height: 1.7;
}

.galley-navgi{
	width: auto !important;
	height: auto;
	position: absolute;
	left: 15% !important;
	bottom: 3vw !important;
	display: flex;
	gap: 8px;
	background: rgba(0, 0, 0, .6);
	padding: 7px 12px;
	border-radius: 50px;
}

.galley-navgi .swiper-pagination-bullet{
	margin: 0px !important;
	background: #ffffff;
}


.recent-news{
	width: 100%;
	margin-top: 3vw;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.recent-news .item{
	width: 32%;
	height: auto;
	position: relative;
	margin-right: 2%;
	background: #ffffff;
	border-radius: 0.5vw;
	overflow: hidden;
	box-shadow: 15px 15px 35px rgba(0, 0, 0, .1);
}

.recent-news .item:nth-child(3n){
	margin-right: 0%;
}

.recent-news .item a{
	display: block;
	width: 100%;
}

.recent-news .item a .thum{
	width: 100%;
	aspect-ratio: 5 / 3;
}

.recent-news .item a .info{
	width: 100%;
	height: auto;
	position: relative;
	padding: 1.5vw;
}

.recent-news .item a .info .date{
	font-family: Manrope;
    font-size: 0.875rem;
    margin-bottom: 0.35vw;
    opacity: 0.6;
}

.recent-news .item a .info .name{
	width: 100%;
    height: auto;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.5;
}

.seek-box{
	background: url(../images/seek-bg.jpg) center center no-repeat;
	background-size: cover;
}

.seek-content{
	width: 100%;
	margin-top: 3vw;
	display: flex;
	justify-content: space-between;
}

.seek-cols{
	width: 45%;
}

.forms{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#distpicker{
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.dis-input{
	width: 64%;
	height: auto;
	position: relative;
	margin-bottom: 20px;
}

.form .row.last{
	width: 32%;
}

.form #distpicker select{
	width: 32%;
}

.form select{
	width: 100%;
	height: 47px;
	padding-left: 10px;
	outline: none;
	font-size: 1rem;
	border: none;
}

.form .row>input, .form .row textarea{
	background: #ffffff;
	border-color: #ffffff;
}

.submit-btn{
	width: 175px;
	height: 60px;
	position: relative;
	display: block;
	background: #aa6f44;
	border-radius: 5px;
	line-height: 60px;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
}

.form{
	margin-bottom: 15px;
}

.seek-cols .name{
	font-size: 3vw;
	color: #aa6f44;
	margin-bottom: 2vw;
}

.seek-cols .name span{
	font-weight: 300;
}

.seek-tel{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
}

.seek-tel .icon{
	width: 65px;
}

.seek-tel .txt{
	width: auto;
	display: block;
	font-size: 1.35rem;
}

.news-nav{
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 1vw;
}

.news-nav a{
	display: block;
	width: auto;
	height: auto;
	border: 1px solid rgba(0,0,0,.1);
	border-radius: 50px;
	line-height: 25px;
	padding: 10px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.25s;
}

.news-nav a.active,.news-nav a:hover{
	background-image: linear-gradient(0deg, #e3c58c, #d0ab7b);
	border-color: #d0ab7b;
	color: #ffffff;
}

.focus_swiper {
	width: 100%;
	background: #f9f9f9;
	border-radius: 1vw;
	overflow: hidden;
	margin-top: 3vw;
}

.focus_swiper .swiper-slide {
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: all 0.5s;

}

.focus_swiper .swiper-slide.swiper-slide-active {
	opacity: 1;

}

.focus_swiper .swiper-slide .thum {
	width: 50%;
}

.focus_swiper .swiper-slide .thum:hover .inner img {
	transform: scale(1.05);
}

.focus_swiper .swiper-slide .inner {
	padding-top: 60%;
}

.focus_swiper .swiper-slide .info {
	width: 50%;
	height: auto;
	position: relative;
	padding: 3%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-evenly;
}

.focus_swiper .swiper-slide .info .name {
	font-size: 1.5rem;
	line-height: 1.5;
	transition: all 0.5s;
	display: block;
}

.focus_swiper .swiper-slide .info .name b {
	background: linear-gradient(#d0ab7b, #d0ab7b) 0 100% / 0 2px no-repeat;
	text-decoration: none;
	transition: background .5s;
	display: inline;
}

.focus_swiper .swiper-slide .info .name:hover {
	color: #d0ab7b;
}

.focus_swiper .swiper-slide .info .name:hover b {
	background-size: 100% 2px;
}

.focus_swiper .swiper-slide .info .des {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.focus_swiper .swiper-slide .info .des img{
	width: 16px;
}

.focus_swiper .swiper-slide .info .ms{
	width: 100%;
	opacity: 0.6;
}

.focus_swiper .swiper-slide .info .des p {
	width: auto;
    height: auto;
    position: relative;
    padding-left: 5px;
    font-size: 0.875rem;
    line-height: 16px;
	font-family: Manrope;
	opacity: 0.6;
}

.focus_swiper .swiper-pagination {
	bottom: 5%;
	right: 2%;
    width: auto;
    text-align: right;
}

.focus_swiper .swiper-button-next:after,
.focus_swiper .swiper-button-prev:after {
	display: none;
}

.focus_swiper .swiper-button-next,
.focus_swiper .swiper-button-prev {
	width: 50px;
	height: 50px;
	border: 1px solid #c81918;
	border-radius: 50%;
	left: 55%;
	right: auto;
	top: 80%;
}

.focus_swiper .swiper-button-next {
	left: calc(55% + 65px);
}


.focus_swiper .swiper-button-next img {
	transform: rotate(180deg);
}

.focus_swiper .swiper-button-next img,
.focus_swiper .swiper-button-prev img {
	width: 10px;
}
.products.active{
	display: none;
}
.focus_swiper .swiper-pagination-bullet {
	background: #d0ab7b;
	border-radius: 50px;
	transition: all 0.4s;
}

.focus_swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #d0ab7b;
	width: 20px;
}

.focus_swiper .swiper-wrapper {
	transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.news-list{
	margin-top: 4vw;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.news-list .item{
	width: 32%;
	height: auto;
	display: block;
	position: relative;
	margin-right: 2%;
	margin-bottom: 2vw;
}

.news-list .item:nth-child(3n){
	margin-right: 0%;
}

.news-list .item a{
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	
}

.news-list .item a .thum{
	width: 100%;
	aspect-ratio: 5 / 3;
	overflow: hidden;
    border-radius: 0.5vw;
}

.news-list .item a:hover img{
	transform: scale(1.1);
}

.news-list .item a .thum::after{
	width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .4));
}

.news-list .item a:hover .info .name{
	color: #AA7043;
}

.news-list .item a .info{
	width: 100%;
    height: auto;
    position: relative;
    padding: 1vw 0px;
}

.news-list .item a .info .date{
	width: 100%;
    font-family: Manrope;
    font-weight: 300;
    display: inline-block;
    font-size: 0.875rem;
    margin-bottom: 0.25vw;
    opacity: 0.6;
}

.news-list .item a .info .name{
	font-size: 1.25rem;
    height: 60px;
    line-height: 30px;
}

.talent-box{
	background: url(../images/talent-bg.jpg) center center no-repeat;
	background-size: cover;
}

.telent-content{
	width: 50%;
	height: auto;
	position: relative;
	margin-top: 5vw;
}

.telent-content .name{
	font-size: 3vw;
	color: #aa6f44;
	margin-bottom: 4vw;
}

.telent-content .desc{
	line-height: 2;
	position: relative;
	font-size: 1.125rem;
	margin-bottom: 5vw;
}

.deve-box{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 5vw;
}

.deve-box .info{
	width: 42%;
	background: #eef5e3;
	padding: 2vw;
	border-radius: 0.5vw;
    overflow: hidden;
	display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.deve-box .thum{
	width: 55%;
	border-radius: 0.5vw;
    overflow: hidden;
}

.deve-box .thum .inner{
	padding-top: 60%;
}

.deve-box .info .name{
	font-size: 2vw;
    font-weight: 500;
    margin-bottom: 1.5vw;
}

.deve-box .info .des{
	line-height: 1.7;
}

.dw-box{
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.dw-box .dw-left{
	width: 30%;
}

.dw-box .dw-left .cd-name{
	font-size: 2vw;
}

.dw-menu{
	width: 100%;
	margin-top: 1vw;
}

.dw-menu .item{
	width: 250px;
    height: 60px;
    position: relative;
    background: #F9F9F9;
    border-radius: 5px;
    margin-bottom: 1vw;
    display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
}

.dw-menu .item::after{
	width: 0%;
	height: 3px;
	position: absolute;
	left: 50%;
	bottom: 0;
	content: '';
	background: #006936;
	transition: all 0.5s;
}

.dw-menu .item.active{
	color: #006936;
}

.dw-menu .item:hover::after,.dw-menu .item.active::after{
	width: 100%;
	left: 0%;
}

.dw-warp{
	width: 65%;
}

.dw-list{
	width: 100%;
}

.dw-list .item{
	margin-bottom: 3vw;
	background: #F9F9F9;
	padding: 2vw;
	border-radius: 0.5vw;
}

.dw-list .item .name{
	font-size: 1.45vw;
    font-weight: 500;

}

.dw-content{
	width: 100%;
	height: auto;
	position: relative;
	line-height: 1.7;
}

.dw-list .item .item-top{
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-end;
	position: relative;
	justify-content: space-between;
	padding-bottom: 1vw;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	margin-bottom: 1vw;
}

.dw-list .item .item-top .i-right{
	width: auto;
	height: auto;
	position: relative;
	display: flex;
	gap: 1vw;
	align-items: center;
}

.dw-list .item .item-top .i-left{
	width: auto;
	display: block;
}

.dw-list .item .item-top .i-left .tips{
	width: auto;
	font-size: 0.875rem;
	opacity: 0.6;
}

.dw-list .item .plus{
	width: 30px;
	height: 30px;
	position: relative;
}

.dw-list .item .plus::after,.dw-list .item .plus::before{
	width: 12px;
	height: 1px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	content: '';
	background: rgba(0, 0, 0, .8);
}

.dw-list .item .plus::after{
	width: 1px;
	height: 12px;
}

.dw-main{
	display: none;
}

.dw-main.active{
	display: block;
}

.contact-img{
	width: 100%;
	height: auto;
	position: relative;
}

.contact-left{
	width: 40%;
	height: auto;
	position: absolute;
	left: 8%;
	top: 50%;
	transform: translateY(-50%);
}

.contact-left .telent-content{
	width: 100%;
}

.zhuangshi-box{
	width: 100%;
	height: auto;
	background: #ffffff;
    position: relative;
}

.zhuangshi-box .item{
	width: 100%;
	height: 100vh;
	display: flex;
	position: relative;
}

.zhuangshi-box .item .img{
	width: 50%;
	height: 100%;
}

.zhuangshi-box .item .img img{
	height: 100%;
}

.zhuangshi-box .item .info{
	width: 50%;
	height: 100%;
	padding: 5vw;
	display: flex;
	align-items: center;
}

.zhuangshi-box .item:nth-child(even){
	direction: rtl;
	text-align: left;
}

.zhuangshi-box .item .info .name{
	color: #aa6f44;
    font-size: 3vw;
    line-height: 1.25;
    width: 100%;
    margin-top: 7vw;
    margin-bottom: 3vw;
}

.zhuangshi-box .item .info .name span{
	display: block;
	font-weight: 300;
}

.zhuangshi-box .item .info .desc{
	width: 100%;
    line-height: 1.7;
    font-size: 1.125rem;
}

.exqu-swiper .swiper-pagination{
	display: none;
}

.application {
    display: flex;
    gap: 1.5vw;
    width: 100%;
	margin-top: 3vw;
	margin-bottom: 6vw;
}
.application .item {
    text-align: left;
    background: #f8f9fa;
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1);
    display: flex;
    height: 30vw;
    position: relative;
    overflow: hidden;
    flex: 1;
	border-radius: 0.5vw;
}
.application .item .feature-img {
    width: 100%;
    height: 100%;
    transition: all .5s ease-in-out;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    background: center center no-repeat;
}

.application .item .feature-img::after{
	width: 100%;
	height: 60%;
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	background-image: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0));
}

.application .item .title {
	position: absolute;
    left: 10%;
    z-index: 2;
    width: 80%;
    text-align: left;
    color: #fff;
    transition: all 1s;
    top: 40%;
	transform: translateY(-50%);
	font-size: 3vw;
	line-height: 1.2;
}

.application .item .title span{
	display: block;
	font-weight: 300;
}

.application .item .desc{
	width: 80%;
	height: auto;
	position: absolute;
	left: 10%;
	top: 60%;
	color: #ffffff;
	transition: all .5s ease-in-out;
	opacity: 0;
	line-height: 1.7;
	font-size: 1.125rem;
}

.application .item:hover {
    flex: 2.5;
}

.application .item:hover .desc{
	opacity: 1;
}

.project-show{
	width: 100%;
	margin-top: 3vw;
}

.project-show .item{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.cols-left{
	width: 40%;
}

.cols-right{
	width: 50%;
	display: block;
}


.cols-left .name{
	width: 100%;
    height: auto;
    position: relative;
    font-size: 1.75rem;
    line-height: 1.4;
    padding-bottom: 1.5vw;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 2vw;
}

.cols-rows{
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	margin-bottom: 2vw;
	border-bottom: 1px solid rgba(0, 0, 0, .1);
	padding-bottom: 2vw;
}

.cols-rows .icon{
	width: 20px;
}

.cols-rows:last-child{
	margin-bottom: 0;
}

.cols-cont{
	width: calc(100% - 25px);
	margin-left: 5px;
}

.cols-cont .title{
	line-height: 20px;
	margin-bottom: 5px;
	font-weight: 500;
}

.cols-cont .desc{
	font-weight: 300;
	font-size: 0.875rem;
    line-height: 1.7;
}

.wuye-box{
	width: 100%;
	height: auto;
	position: relative;
	background: #ffffff;
	padding: 50px;
}

.five-star{
	width: 100%;
	height: auto;
	position: relative;
	background: url(../images/star-bg.jpg) center center no-repeat;
	background-size: cover;
	color: #ffffff;
	padding: 8vw 0px;
	margin-bottom: 50px;
}

.five-star .name{
	text-align: center;
    font-size: 3vw;
    line-height: 1.25;
    width: 100%;
    margin-top: 3vw;
    margin-bottom: 3vw;
}

.play-btn{
	display: none;
}

.five-star .name span{
	display: block;
	font-weight: 300;
}

.five-star .desc{
	width: 100%;
	height: auto;
	padding: 0 10%;
	text-align: center;
	line-height: 2;
	font-weight: 300;
	font-size: 1.125rem;
}

.five-star .img{
	width: 80%;
	margin-left: 10%;
	margin-top: 5vw;
}

.wuye-list{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px;
}


.ob-ele{
	transform: translateY(10px);
    opacity: 0;
    transition: all 0.8s ease-in-out;;
	will-change: transform;
}

.ob-ele.is-inview{
	transform: translateY(0px);
    opacity: 1;
}

.send-btn{
	width: 160px;
	height: 45px;
	color: #ffffff;
	border-radius: 5px;
	line-height: 45px;
	text-align: center;
	background-image: linear-gradient(0deg, #e3c58c, #d0ab7b);
	display: block;
	margin-top: 2vw;
}

.dw-cont .singePage p{
	margin-bottom: 0;
}

.bj-btns{
	width: auto;
	display: flex;
	align-items: center;
	position: relative;
	gap: 1vw;
}

.bj-btns .btn{
	width: 40px;
	height: 40px;
	position: relative;
	border-radius: 50%;
	line-height: 38px;
	text-align: center;
	cursor: pointer;
	color: #d0ab7b;
	font-size: 0.875rem;
	border: 1px solid #d0ab7b;
	transition: all 0.5s;
}
.bj-btns .btn:hover{
	color: #ffffff;
	background: linear-gradient(0deg, #e3c58c, #d0ab7b);

}
.bj-btns .btn.swiper-button-disabled{
	opacity: 0.3;
	cursor: no-drop;
}

.cols-swiper{
	width: 100%;
	margin: 0px;
}

.cols-swiper .swiper-slide{
	width: 100%;
}


.cols-right .img{
	height: auto;
	border-radius: 10px;
	overflow: hidden;
}

.cols-right .img img{
	aspect-ratio: 5 / 3;
}

.cols-right .swiper-pagination-bullet{
	background: #ffffff;
}

.cols-right .swiper-button-next,.cols-right .swiper-button-prev{
	color: #ffffff;
}

.cols-right .swiper-button-next::after,.cols-right .swiper-button-prev::after{
	font-size: 24px;
}

.video-btn{
	cursor: pointer;
}

.business-menu{
	width: 100%;
	display: flex;
	margin-bottom: 2vw;
	position: relative;
	gap: 1vw;
	flex-wrap: wrap;
}

.business-menu a{
	width: auto;
	height: auto;
	line-height: 35px;
	position: relative;
	cursor: pointer;
	opacity: 0.6;
	transition: all 0.5s;
	font-size: 1.2rem;
}

.business-menu a::after{
	width: 0%;
	left: 50%;
	height: 1px;
	position: absolute;
	bottom: 0;
	content: '';
	background: #aa6f44;
	transition: all 0.5s;
}

.business-menu a:hover::after,.business-menu a.active::after{
	width: 100%;
	left: 0%;
}

.business-menu a:hover,.business-menu a.active{
	opacity: 1;
	color: #aa6f44;
}

.menu_bar {
	width: 90px;
	height: 90px;
	position: fixed;
	right: 0px;
	top: 0px;
	cursor: pointer;
	z-index: 200;
	display: none;
}

.menu_bar.active {
	z-index: 150;
}

.menu_bar.active span {
	background: #184791;
}

.menu_bar .bar {
	width: 30px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
}

.menu_bar::before {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0%;
	background-color: #fff;
	content: '';
	-webkit-transition: all .5s;
	border-radius: 50%;
	-webkit-transform: scale(0);
}



.menu_bar span {
	width: 100%;
	height: 2px;
	position: absolute;
	background: #fff;
	display: block;
	-webkit-transition: all .35s;
	-webkit-transform: rotate(0deg);
	top: 0px;
}


.menu_bar span:nth-child(2) {
	top: 9px;
	width: 20px;
}

.menu_bar:hover span:nth-child(2){
    width: 30px;
}

.menu_bar:hover span:nth-child(3){
    width: 30px;
}

.menu_bar.active:hover span:nth-child(2){
    width: 0px;
}

.menu_bar.active:hover span:nth-child(3){
    width: 25px;
}

.menu_bar.active span:nth-child(2){
	width: 0px;
}

.menu_bar.active span:nth-child(1){
	top: 9px;
	-webkit-transform: rotate(45deg);
	width: 25px;
}

.menu_bar.active span:nth-child(3){
	top: 9px;
	-webkit-transform: rotate(-45deg);
}

.menu_bar span:nth-child(3) {
	top: 18px;
	width: 25px;
}

.menu_bar.active:hover span:nth-child(2){
    width: 0px;
}

.menu_bar.active:hover span:nth-child(3){
    width: 25px;
}

.menu_bar.active span:nth-child(2){
	width: 0px;
}

.menu_bar.active span:nth-child(1){
	top: 9px;
	-webkit-transform: rotate(45deg);
	width: 25px;
}

.menu_bar.active span:nth-child(3){
	top: 9px;
	-webkit-transform: rotate(-45deg);
}

@media screen and (max-width: 1700px){
	.exqu-menu{
		gap: 1.25vw;
	}
}
@media screen and (max-width: 1600px){
	.exqu-menu{
		gap: 1vw;
	}
	.exqu-menu .item{
		/* font-size: 1.1rem; */
	}
}
@media screen and (max-width: 1500px){
	.nav{
		width: 65%;
	}
	.exqu-menu .item{
		/* font-size: 1rem; */
	}
	.exqu-menu{
		/* gap: 0.5vw; */
	}
	.cols-right{
		width: 55%;
	}
	.news-swiper.ip .info .name{
		font-size: 1.25rem;
	}
}

@media screen and (max-width: 1440px){
	.nav{
		width: 70%;
	}
	.news-swiper.ip .info .name{
		font-size: 1.125rem;
	}
	.exqu-swiper .swiper-slide .slide-cols{
		padding-left: 3vw;
	}
	.exqu-swiper .slide-cols .mark{
		margin-bottom: 1vw;
	}
	.exqu-swiper .slide-cols .info{
		font-size: 0.875rem;
	}
	.exqu-swiper .slide-cols .title .name{
		font-size: 1.75rem;
	}
	.exqu-swiper .slide-cols .title .desc{
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 1366px){
	.exqu-menu{
		/* gap: 0.25vw; */
	}
}
@media screen and (max-width: 1000px){
	.menu_bar{
		display: block;
		width: 60px;
        height: 60px;
	}
	.nav {
	    display: block;
	    position: fixed;
	    left: 0;
	    top: 60px;
	    margin-left: 0;
	    background: rgba(0, 0, 0, .7);
	    width: 100%;
	    height: calc(100vh - 60px);
	    opacity: 0;
	    visibility: hidden;
	    -webkit-transition: all .6s cubic-bezier(.23, 1, .32, 1);
	    pointer-events: none;
		overflow: hidden;
	}
	.header{
		height: 60px;
	}
	.nav{
		height: 0px;
	}
	.nav.active{
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		height: calc(100vh - 60px);
	}
	.nav ul {
	    background: #fff;
	    flex-wrap: wrap;
	    padding: 20px 5%;
	}
	.nav ul li {
	    width: 100%;
	    display: flex;
	    border-bottom: 1px solid rgba(0, 0, 0, .05);
	    padding: 5px 0px;
		flex: auto;
	}
	.nav ul li .firstLab {
	    font-weight: bold;
		width: 80px;
	}
	.nav ul li .second {
	    width: calc(100% - 80px);
	    position: relative;
	    height: auto;
	    top: 0px;
	    padding: 0px;
	    opacity: 1;
	    visibility: visible;
	    display: flex;
	    flex-wrap: wrap;
		box-shadow: none;
		pointer-events: auto;
	}
	.nav ul li a{
		line-height: 40px;
		text-align: left;
	}
	.nav ul li .second .right{
		display: none;
	}
	.nav ul li .second .left{
		width: 100%;
		padding-top: 0%;
	}
	.nav ul li .second .left .text{
		display: none;
	}
	.nav ul li .second .left .bars{
		-webkit-transform: translateY(0px);
		opacity: 1;
	}
	.nav ul li .second .left .bars a{
		font-size: 14px;
		border-bottom: none;
		width: auto;
		margin-bottom: 0px;
		margin-right: 10px;
	}
	.nav ul li:last-child{
		border-bottom: none;
	}
	.logo{
		width: 140px;
	}
	.hot-tel{
		display: none;
	}
	.nav ul li{
		font-size: 1rem;
	}
	.nav ul li .second .left .bars a{
		line-height: 40px;
	}
	.banner-swiper{
		height: 60vh;
		margin-top: 0px;
	}
	.banner-swiper .swiper-slide{
		height: 60vh;
	}
	.banner-swiper .swiper-pagination .swiper-pagination-bullet{
		margin: 0 5px;
	}
	.play-btn{
		display: block;
		width: 70px;
        height: auto;
        position: absolute;
        left: 50%;
        top: 50%;
        background: rgba(0, 0, 0, .1);
        border-radius: 50%;
        backdrop-filter: blur(5px);
        padding: 10px;
		transform: translate(-50%, -50%);
		z-index: 10;
	}
	.play-btn img{
		opacity: 0.75;
	}
	.sticky{
		position: relative;
	}
	.exqu-box,.about-box{
		height: auto;
		padding: 15vw 0px;
	}
	.sg-name img {
		width: 20px;
	}
	.sg-name p {
		font-size: 1.35rem;
	}
	.title-flex{
		margin-bottom: 5vw;
	}
	.w1400{
		width: 90%;
	}
	.about-box{
		flex-wrap: wrap;
	}
	.about-content,.data-show{
		width: 100%;
	}
	.data-show .item{
		width: 33.33%;
		padding: 0px;
        text-align: center;
	}
	.about-content .title{
		margin-top: 5vw;
		margin-bottom: 5vw;
		font-size: 7vw;
	}
	.about-content .desc{
		font-size: 1rem;
	}
	.about-content{
		padding: 0vw 5%;
		margin-bottom: 15vw;
	}
	.data-show{
		padding: 0px 5%;
	}
	.data-show .item .icon{
		width: 36px;
		margin: 0px auto;
	}
	.data-show .item .desc {
		font-size: 0.65rem;
		text-align: center;
	}
	.data-show .item::after{
		display: none;
	}
	.data-show .item .n{
		font-size: 10vw;
	}
	.news-box{
		height: auto;
		padding: 15vw 0px;
	}
	.news-cols,.news-content{
		width: 100%;
	}
	.news-box .w1400{
		flex-wrap: wrap;
	}
	.news-cols{
		margin-bottom: 5vw;
	}
	.news-swiper .swiper-slide .info .desc{
		display: none;
	}
	.news-swiper .swiper-slide .info .name{
		font-size: 1rem;
		margin-bottom: 0;
	}
	.news-swiper .swiper-slide .info .date{
		font-size: 0.75rem;
		margin-bottom: 5px;
	}
	.news-swiper .swiper-slide .info{
		padding: 20px 15px;
	}
	.idea-box{
		height: auto;
	}
	.idea-wrap{
		width: 100%;
		height: auto;
	}
	.idea-left{
		width: 100%;
		margin-left: 0;
		padding: 15vw 5vw;
	}
	.idea-content .name{
		font-size: 1.5rem;
		margin-bottom: 5vw;
	}
	.idea-content .desc {
		margin-bottom: 15vw;
	}
	.footer-cols,.fnav{
		display: none;
	}
	.footer-content{
		width: 100%;
	}
	.copyright{
		font-size: 0.65rem;
		justify-content: flex-start;
	}
	.footer{
		padding-top: 10vw;
	}
	.wechat {
		width: 40px;
		height: 40px;
	}
	.wechat .icon{
		line-height: 40px;
		font-size: 1.25rem;
	}
	.friends{
		height: 40px;
	}
	.friend-show{
		line-height: 40px;
		padding-left: 20px;
		font-size: 0.875rem;
	}
	.footer-top{
		justify-content: space-between;
	}
	.nav ul li .second .left .bars a:hover {
		padding-left: 0px;
	}
	.nav ul li .second .left .bars a:nth-child(even){
		margin-right: 10px;
	}
	.nav ul li .firstLab::after{
		display: none;
	}
	.intro-box .title{
		font-size: 7vw;
	}
	.intro-box .des{
		width: 100%;
		margin-bottom: 15vw;
	}
	.intro-box .data-show {
		width: 100%;
		border: none;
		padding: 0px;
	}
	.intro-box .data-show .item .n{
		font-size: 10vw;
	}
	.boxes{
		padding: 15vw 0px;
	}
	.develop-content,.develop-cols{
		width: 100%;
	}
	.develop-box .w1400{
		flex-wrap: wrap;
	}
	.dw-content .name{
		font-size: 7vw;
	}
	.dw-content .singePage {
		padding: 0px 0%;
		line-height: 2;
		font-size: 1rem;
	}
	.dw-box{
		padding: 25vw 0px;
	}
	.dw-content .singePage p{
		margin-bottom: 0;
	}
	.dw-content .singePage{
		text-align: left;
	}

	.zlv-map .name{
		transform: translateY(0%);
		width: 100%;
		position: relative;
		top: 0;
	}

	.zlv-map{
		margin-top: 5vw;
	}

	.zlv-map .name p{
		font-size: 7vw;
	}
	.zlv-map .name b{
		font-size: 1rem;
	}

	.zlv-map .img {
		width: 70%;
		margin-left: 15%;
		margin-top: 5vw;
		margin-bottom: 10vw;
	}

	.counter{
		flex-wrap: wrap;
	}

	.counter .item{
		flex: none;
		width: 50%;
		margin-bottom: 5vw;
	}

	.counter .item:nth-child(n+3){
		margin-bottom: 0;
	}

	.counter .item .desc{
		font-size: 0.75rem;
	}

	.counter .item .item-top .count{
		font-size: 10vw;
	}

	.counter .item .item-top{
		gap: 5px;
	}
	.honor-swiper .item .cont .leaf,.honor-swiper .item .cont .leaf:last-child{
		width: 20px;
		height: 37px;
		background-size: cover;
	}
	.honor-swiper .item .cont .title {
		width: calc(100% - 50px);
		text-align: center;
		font-size: 14px;
	}
	.honor-swiper .item{
		margin-bottom: 5px;
	}
	.honor-swiper {
		padding-bottom: 20px;
	}
	.exqu-swiper .swiper-slide{
		flex-wrap: wrap;
	}
	.exqu-swiper .swiper-slide .thum{
		width: 100%;
	}
	.exqu-swiper .swiper-slide .slide-cols{
		width: 100%;
		padding-left: 0;
        margin-top: 5vw;
	}
	.exqu-swiper{
		margin-bottom: 15vw;
	}
	.zhuangshi-box .item{
		height: auto;
		flex-wrap: wrap;
	}
	.zhuangshi-box .item .img,.zhuangshi-box .item .info{
		width: 100%;
		height: auto;
	}
	.zhuangshi-box .item .info .desc{
		font-size: 1rem;
	}
	.zhuangshi-box .item .info .name{
		font-size: 7vw;
	}
	.wuye-box{
		padding: 0;
	}

	.five-star .name{
		font-size: 7vw;
		margin-bottom: 5vw;
	}

	.five-star .desc{
		padding: 0px 5%;
		font-size: 1rem;
	}

	.five-star .img{
		width: 90%;
		margin-left: 5%;
		margin-top: 15vw;
	}

	.five-star{
		margin-bottom: 0;
		margin: 5vw;
        width: 90vw;
	}

	.cols-left,.cols-right{
		width: 100%;
	}

	.project-show .item{
		flex-wrap: wrap;
	}

	.cols-left .name{
		font-size: 7vw;
	}

	.news-nav a{
		padding: 5px 10px;
	}

	.focus_swiper .swiper-slide{
		flex-wrap: wrap;
	}

	.focus_swiper .swiper-slide .thum,.focus_swiper .swiper-slide .info{
		width: 100%;
	}

	.focus_swiper .swiper-slide .info .ms{
		display: none;
	}

	.focus_swiper .swiper-slide .info .name{
		font-size: 1rem;
		margin-bottom: 2vw;
	}

	.focus_swiper .swiper-pagination{
		bottom: 2%;
	}
	.news-list .item a .info .date{
		font-size: 0.75rem;
	}
	.focus_swiper .swiper-slide .sg-more{
		display: none;
	}

	.focus_swiper{
		margin-top: 5vw;
	}

	.telent-content{
		width: 100%;
	}

	.telent-content .name{
		font-size: 7vw;
	}

	.telent-content .desc{
		font-size: 1rem;
	}

	.dw-left{
		width: 100%;
	}

	.dw-menu{
		margin-top: 5vw;
		display: flex;
		flex-wrap: wrap;
		gap: 2vw;
		margin-bottom: 5vw;
	}

	.dw-menu .item {
		width: auto;
		height: 50px;
		padding: 0px 4vw;
	}

	.dw-warp{
		width: 100%;
	}

	.dw-list .item{
		padding: 8vw 5vw;
	}

	.dw-list .item .name{
		font-size: 16px;
	}
	.dw-list .item .item-top .i-left .tips{
		font-size: 12px;
	}
	.dw-list .item .item-top .i-left{
		width: calc(100% - 40px);
	}

	.dw-list .item .item-top .i-right{
		position: absolute;
		right: 0;
		top: 0;
	}

	.dw-list .item .item-top .i-right .place{
		display: none;
	}

	.singePage{
		font-size: 1rem;
	}

	.dw-cont .singePage{
		margin-bottom: 10vw;
	}

	.contact-left{
		position: relative;
		width: 90%;
		left: 5%;
		top: 0;
		transform: translateY(0%);
		padding-top: 10vw;
	}

	.exqu-menu{
		display: none;
	}

	.exqu-swiper .swiper-pagination{
		display: block;
		bottom: -10vw;
		text-align: left;
	}
	.exqu-swiper .swiper-pagination-bullet-active{
		background: #aa6f44;
	}

	.exqu-swiper .swiper-pagination-bullet{
		margin: 0px 4px !important;
		width: 6px !important;
		height: 6px !important;
	}
	.slider,.thumbnail,.slider-config{
		display: none;
	}

	.business-box .sg-name.absolute{
		position: relative;
		top: 0;
		margin-top: 0vw;
		color: #333333;
		left: 0;
		margin-bottom: 5vw;
	}
	.business-box{
		height: auto;
		padding: 0px 5%;
		padding-bottom: 10vw;
	}

	.business-list{
		width: 100%;
		position: relative;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.business-list .item{
		display: block;
		border-radius: 5px;
		overflow: hidden;
		position: relative;
		margin-bottom: 5vw;
		width: 48%;
	}

	.business-list .item .name{
		width: 100%;
		height: auto;
		position: absolute;
		left: 0;
		bottom: 0;
		color: #ffffff;
		padding: 15px;
		font-size: 1.125rem;
	}

	.business-list .item img{
		aspect-ratio: 5 / 6;
	}

	.news-navigation .news-btns{
		display: none;
	}
	.news-navigation{
		justify-content: flex-end;
	}
	.develop-cols{
		display: none;
	}
	.develop-title p:first-child{
		font-size: 7vw;
	}
	.develop-content{
		padding-right: 0;
		border-right: none;
	}
	.develop-title p:nth-child(2) {
		font-size: 16px;
	}
	.develop-title{
		margin-top: 5px;
		margin-bottom: 10vw;
	}
	.develop-list .item .comp p{
		font-size: 0.875rem;
	}
	.develop-btn{
		width: 100%;
		right: 0;
		top: 0;
		position: relative;
		gap: 10px;
		transform: translateY(0%);
		margin-top: 10vw;
	}
	.develop-btn .btn.prev{
		transform: rotate(-90deg);
	}
	.develop-btn .btn.next{
		transform: rotate(-90deg);
	}
	.honor-name{
		font-size: 7vw;
		margin-bottom: 10vw;
	}

	.header.active .menu_bar span{
		background: #333333;
	}
	.sub-banner .img{
		overflow: hidden;
	}

	.sub-banner .img img{
		width: 150%;
		max-width: none;
		margin-left: -25%;
	}

	.sub-banner .txt{
		font-size: 7vw;
	}

	.bj-btns,.business-menu{
		display: none;
	}

	.exqu-box.ip {
		padding: 10vw 0px;
		height: auto;
	}
	.exqu-box.ip .exqu-swiper{
		margin-bottom: 25vw;
	}
	.news-swiper .info .des{
		font-size: 0.875rem;
	}

	.business-galley{
		padding: 0;
		padding: 5vw;
	}
	.galley-show{
		width: 100%;
        position: relative;
        top: 0vw;
        left: 0%;
		padding: 5vw;
	}
	.exqu-swiper .slide-cols .mark,.exqu-swiper .slide-cols .mark,.news-swiper .info-top .year,.galley-show .mark{
		font-size: 0.65rem;
		line-height: 14px;
		padding-left: 16px;
	}
	.exqu-swiper .slide-cols .mark::before,.exqu-swiper .slide-cols .mark::before,.news-swiper .info-top .year::before,.galley-show .mark::before{
		width: 14px;
		height: 9px;
		top: 50%;
		transform: translateY(-50%);
	}
	.exqu-swiper .slide-cols .title .name,.exqu-swiper .slide-cols .title .name,.galley-show .name p{
		font-size: 1.5rem;
	}
	.exqu-swiper .slide-cols .title .desc,.exqu-swiper .slide-cols .title .desc,.galley-show .name b {
        font-size: 1rem;
    }
	.galley-show .desc{
		font-size: 0.875rem;
	}
	.exqu-swiper .slide-cols .info,.exqu-swiper .slide-cols .info{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		line-height: 1.7;
		margin-bottom: 10vw;
	}
	.develop-list .item .year{
		font-size: 18vw;
	}
	.news-swiper .info-top{
		margin-bottom: 2vw;
	}
	.wuye-list{
		padding: 5vw;
		grid-template-columns: repeat(1, 1fr);
		gap: 5vw;
	}
	.application{
		flex-wrap: wrap;
		gap: 5vw;
		margin-bottom: 15vw;
	}
	.application .item{
		flex: auto;
		width: 100%;
		height: auto;
        display: block;
	}
	.application .item .feature-img{
		height: 50vw;
		position: relative;
	}
	.application .item .title{
		position: relative;
		left: 0;
		top: 0;
		transform: translateY(0%);
		color: #333333;
		width: 100%;
		font-size: 1.25rem;
		padding: 15px;
        padding-bottom: 5px;
	}
	.application .item .title span{
		display: inline-block;
	}
	.application .item .desc{
		width: 100%;
		position: relative;
		left: 0;
		top: 0;
		color: #333333;
		opacity: 1;
		font-size: 0.875rem;
		padding: 15px;
        padding-top: 0;
	}
	.cols-rows{
		margin-bottom: 4vw;
		padding-bottom: 4vw;
	}
	.cols-swiper .swiper-pagination-bullet{
		width: 6px !important;
		height: 6px !important;
		margin: 0px 2px !important;
	}
	.cols-right .swiper-button-next, .cols-right .swiper-button-prev{
		display: none;
	}

	.news-list .item{
		width: 100%;
		margin-right: 0%;
		margin-bottom: 5vw;
	}
	.news-list .item a .info .name {
		font-size: 1rem;
		height: auto;
		line-height: 1.7;
	}
	.detail_box .singePage img{
		width: 100% !important;
		height: auto !important;
	}
	.contact-img>img{
		display: none;
	}

	.galley-swiper,.galley-swiper .img{
		height: 40vh;
	}

	.galley-show .mark{
		margin-bottom: 1vw;
	}
	.galley-navgi{
		gap: 3px;
		left: 50% !important;
		transform: translateX(-50%) !important;
		bottom: auto !important;
		top: -7vw !important;
		background: transparent;
	}
	.galley-navgi .swiper-pagination-bullet{
		width: 6px;
		height: 6px;
	}
	.seek-cols,.forms{
		width: 100%;
	}
	.seek-content{
		flex-wrap: wrap;
	}
	.form .row{
		margin-bottom: 10px;
	}
	#distpicker{
		width: 100%;
		margin-bottom: 10px;
	}
	.form .row.last {
		width: 100%;
	}
	.seek-tel .icon {
		width: 35px;
	}
	.seek-cols .name{
		font-size: 7vw;
	}
	.seek-tel .txt{
		font-size: 1.125rem;
	}
	.seek-tel{
		margin-bottom: 5vw;
	}
	.submit-btn {
		width: 145px;
		height: 45px;
		line-height: 45px;
	}
	.header.open {
		transform: translateY(0%);
	}
	.zr-top{
		flex-wrap: wrap;
	}
	.zr-top .zr-cols{
		width: 100%;
		font-size: 7vw;
		margin-bottom: 5vw;
	}
	.zr-top .singePage{
		width: 100%;
		font-size: 1rem;
	}
}