* {
	padding: 0;
	margin: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body{
    overflow: hidden;
   	background-color: #fff;
}  
:root{
	--color-green:#75b21a;
	--color-blue:#0072be;
} 
body:before{
	/*display: block;*/
	position: fixed;
	top: 0;
	left: 0;
	display: none;
}
img{
	width: auto;
}

.wapper{
	width: 1720px;
	margin: 0 auto;
}

header{
	height: 80px;
	background-color: #fff;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}
header .wapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
header a.logo img{
	height: 47px;
}
header nav{
	display: flex;
	height: 100%;
}
header nav ul{
	height: 100%;
	align-items: stretch;
	display: flex;
}
header nav ul a{
	margin: 0 24px;
	border-bottom: 2px #fff solid;
	display: flex;
	align-items: center;
	color: #333;
}
header nav ul a.sel{
	border-bottom: 2px var(--color-blue) solid;
	color: var(--color-blue);
}
header nav ul a:hover{
	color: var(--color-blue);
}
header nav > p{
	display: flex;
	flex-direction: column;
	line-height: 1.3;
	align-items: flex-end;
	justify-content: center;
	margin-left: 48px;
}
header nav > p span:first-child{
	font-weight: bold;
	color: var(--color-green);
	font-size: 14px;
}
header nav > p span:last-child{
	font-weight: bold;
	color: var(--color-blue);
	font-size: 18px;
}



.monav-btn{
    cursor:pointer;
    position: relative;
    width:25px;
    height:19px;
    display: none;
}
.monav-btn span{
    width:25px;
    height:1px;
    display: block;
    background: #000;
    position: absolute;
    transition:all .5s;
}
.monav-btn .s1{top:0px;}
.monav-btn .s2{top:9px;}
.monav-btn .s3{top:18px;}
.monav-btn .s1.on{transform:rotate(45deg);
           top:10px;
}
.monav-btn .s2.on{opacity: 0;}
.monav-btn .s3.on{transform:rotate(-45deg);
           top:10px;
}

.monav{
    width: 100%;
    height: calc(100vh - 58px);
    background: #fff;
    opacity: 0.98;
    position: fixed;
    top: 58px;
    left: 0;
    z-index: 999999;
    padding: 15px 20px;
    display: none;
}
.monav a{
    display: inline-block;
    width: 100%;
    height: 56px;
    line-height: 56px;
    border-bottom: 1px #f5f5f5 solid;
    font-size: 16px;
    text-align: center;
}
.monav a.sel{
    color: var(--color-blue);
}



.banner{
	height: 430px;
	overflow: hidden;
	position: relative;
}
.banner:after{
    content: ' ';
    position: absolute;
    width: 100%;
    height: 40%;
    background-image: linear-gradient(to top, transparent 30%, rgba(70,112,168,0.6) 100%);
    z-index: 2;
    top: 0;
    left: 0;
}
.banner .swiper-container{
	position: relative;
	z-index: 1;
	height: 100%;
}
.banner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.banner .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	background-color: rgba(255,255,255);
	opacity: 1;
	margin: 0 6px!important;
}
.banner .swiper-pagination-bullet-active{
	background-color: var(--color-blue);
}
.banner .swiper-button-prev{
	background: none;
	left: 80px;
}
.banner .swiper-button-prev i{
	display: flex;
	align-items: center;
	font-size: 40px;
	color: #fff;
	transform: rotate(-90deg);
}
.banner .swiper-button-next{
	background: none;
	right: 80px;
}
.banner .swiper-button-next i{
	display: flex;
	align-items: center;
	font-size: 40px;
	color: #fff;
	transform: rotate(90deg);
}

.index-p1{

}
.index-p1 .wapper{
	background-image: url(../images/002.png);
	background-size: 100%;
	min-height: 300px;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 64px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.index-p1 .t1{
	font-weight: bold;
	font-size: 40px;
	color: #000;
}
.index-p1 .t2{
	font-weight: bold;
	font-size: 32px;
	color: #000;
}
.index-p1 .t3{
	font-size: 16px;
	color: #555;
	display: flex;
	max-width: 1000px;
	text-align: center;
	margin-top: 32px;
}
.index-p1 a.more{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--color-blue);
	border: 1px var(--color-blue) solid;
	padding: 6px 64px;
	border-radius: 8px;
	margin-top: 64px;
}

.index-p2{
	padding: 72px 0;
	background-color: var(--color-blue);
	min-height: 600px;
	position: relative;
}

.index-p2 > img {
    position: absolute;
    bottom: -400px;
    right: -100px;
    opacity: 0.3;
    z-index: 1;
}

.index-p2 .wapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}
.index-t1{
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
}
.index-desc{
	font-size: 16px;
	color: #fff;
	opacity: 0.8;
	margin: 16px 0 24px 0;
}
.index-p2 form *{
	margin: 0 8px;
}
.index-p2 form select{
	width: 200px;
	height: 40px;
	background-color: #fff;
	border-radius: 8px;
	font-size: 16px;
	border:0;
	padding: 0 16px;
	color: #666;
}
.index-p2 form button{
	width: 200px;
	height: 40px;
	border:1px #fff solid;
	border-radius: 8px;
	font-size: 18px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: none;
}

.teamlist{
	width: 100%;
	margin-top: 48px;
}
.teamlist a.swiper-slide{
	display: flex;
	background-color: rgba(255,255,255,0.8);
	color: #333;
	padding: 24px 24px;
	border-radius: 8px;
	flex-direction: column;
	cursor: normal;
}
.teamlist a.swiper-slide p{
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}
.teamlist a.swiper-slide span{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 16px;
	display: -webkit-box;
	overflow:hidden;
	-webkit-box-orient:vertical;
	-webkit-line-clamp: 3;
}
.teamlist .swiper-container{
	padding-bottom: 64px;
}
.teamlist .swiper-pagination{
	bottom: 0px!important;
}

.teamlist .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	background-color: rgba(255,255,255);
	opacity: 0.4;
	margin: 0 6px!important;
}
.teamlist .swiper-pagination-bullet-active{
	opacity: 1;
}














.teamlist_sub{
	width: 100%;
	margin-top: 48px;
	margin: 48px -16px 0 -16px;
}
.teamlist_sub a.swiper-slide{
	display: flex;
	background-color: rgba(255,255,255,0.8);
	color: #333;
	padding: 24px 24px;
	border-radius: 8px;
	flex-direction: column;
	width: calc( 25% - 32px );
	margin: 16px;
	float: left;
	cursor: normal;
}
.teamlist_sub a.swiper-slide p{
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}
.teamlist_sub a.swiper-slide span{
	font-size: 16px;
	line-height: 1.5;
	color: #666;
	margin-top: 16px;
	display: -webkit-box;
	overflow:hidden;
	-webkit-box-orient:vertical;
	-webkit-line-clamp: 3;
}




.color-black{
	color: #000;
}


.index-p3{
	padding: 72px 0;
	min-height: 600px;
	position: relative;
}
.index-p3 .wapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.index-zm{
	min-height: 360px;
	background-image: url(../images/003.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	width: 100%;
	position: relative;
	margin-top: 40px;
}
.index-zm span{
	font-size: 20px;
	font-weight: bold;
	color: #333;
	position: absolute;
}
.index-zm span em{
	color: var(--color-blue);
}
.index-zm span:nth-child(1){
	width: 50%;
	left: 0;
	bottom: 40px;
	text-align: right;
	padding-right: 330px;
}
.index-zm span:nth-child(2){
	width: 50%;
	left: 0;
	bottom: 250px;
	text-align: right;
	padding-right: 220px;
}
.index-zm span:nth-child(3){
	width: 100%;
	left: 0;
	top: 0;
	text-align: center;
}

.index-zm span:nth-child(4){
	width: 50%;
	right: 0;
	bottom: 40px;
	text-align: left;
	padding-left: 330px;
}
.index-zm span:nth-child(5){
	width: 50%;
	right: 0;
	bottom: 250px;
	text-align: left;
	padding-left: 220px;
}
.index-p3 .btns{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 64px;
}
.index-p3 .btns a{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #fff;
	background-color: var(--color-blue);
	border-radius: 6px;
	padding: 8px 64px;
}

.index-p4{
	position: relative;
	padding: 72px 0;
	background-image: url(../images/005.png);
	background-size: cover;
}
.index-p4 .wapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.index-p4::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(0,0,0,0.5);
}
.index-p4 .wapper > *{
	position: relative;
	z-index: 2;
}
.index-shops{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
}
.index-shops a{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border-radius: 15px;
	padding: 56px 0;
	width: 600px;
	margin: 0 24px;
	line-height: 1.4;
}
.index-shops a i:nth-child(1){
	font-size: 50px;
}
.index-shops a i:nth-child(3){
	font-size: 36px;
	opacity: 0.7;
}
.index-shops a i.taobao{
	color: #ff6600;
}
.index-shops a i.pdd{
	color: #ff0000;
}
.index-shops a span{
	font-size: 20px;
	color: #111;
	font-weight: bold;
}

.index-news{
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	margin: 0 -24px;
	padding: 72px 0;
}
.index-news > div{
	flex: 1;
	margin: 0 24px;
}
.index-news > div > p{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.index-news > div > p span{
	font-size: 32px;
	font-weight: bold;
	color: #111;
}
.index-news > div > p a{
	font-size: 16px;
	opacity: 0.6;
}
.index-news > div > img{
	width: 100%;
	height: 120px;
	object-fit: cover;
}
.index-news > div ul{
	font-size: 16px;
	color: #555;
	margin-top: 16px;
}
.index-news > div ul a{
	display: flex;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-height: 39px;
}
.index-news > div dl{
	border-bottom: 1px var(--color-blue) solid;
	display: flex;
}
.index-news > div dl a{
	flex: 1;
	color: #666;
	text-align: center;
	padding: 7px 0;
}
.index-news > div dl a.sel{
	background-color: var(--color-blue);
	color: #fff;
}
.index-news > div ul{
	display: none;
}
.index-news > div ul:nth-child(1){
	display: block;
}

.index-p6{
	position: relative;
}
.index-lx-title{
	padding: 48px 0;
	background-color:rgba(0,114,190,0.8); 
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}
.index-p6 .map{
	width: 100%;
	height: calc(100vh - 100px);
	position: relative;
	z-index: 1;
	background-color: #000;
}

.subbanner-2025{
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
	font-weight: bolder;
	position: relative;
	background-image: url(../images/banner.png);
	background-size: cover;
	background-position: center;
}
.subbanner-2025::after{
	content: '';
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.subbanner-2025 h2{
	position: relative;
	z-index: 2;
	letter-spacing: 4px;
}

footer{
	background-color: var(--color-blue);
	padding: 56px 0;
}
footer .wapper{
	display: flex;
	align-items: flex-start;
}
footer .wapper > div{
	padding: 0 32px;
	flex: 1;
	color: #fff;
}
footer .wapper > div .title{
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 8px;
}
footer .wapper > div .copy{
	font-size: 14px;
	margin-bottom: 16px;
}
footer .wapper > div .copy a{
	color: #fff;
	margin-right: 8px;
	display: inline-flex;
}
footer .wapper > div .qrcode{
	display: flex;
	align-items: flex-start;
}
footer .wapper > div .qrcode li{
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 14px;
	margin: 0 24px;
}
footer .wapper > div .qrcode li img{
	width: 150px;
	height: 150px;
	margin-bottom: 8px;
}

