@import url('bootstrap.min.css');
@import url('swiper.min.css');
@import url('animation.css');
@import url('base.css');
@import url('common.css');
@import url('fontawesome.min.css');
@font-face {
	font-family: 'DINPRO';
	src: url('../fonts/DINPRO-MEDIUM.OTF');
}

@font-face {
	font-family: 'PingFang';
	src: url('../fonts/PingFang Regular.ttf');
}

@font-face {
    font-family: 'CNB';
    src: url('../fonts/SourceHanSansCN-Bold_0.otf') format('truetype');
}

@font-face {
    font-family: 'CNM';
    src: url('../fonts/SourceHanSansCN-Medium_0.otf') format('truetype');
}

@font-face {
    font-family: 'CNN';
    src: url('../fonts/SourceHanSansCN-Normal.ttf') format('truetype');
}

@font-face {
    font-family: 'CNR';
    src: url('../fonts/SourceHanSansCN-Regular_0.otf') format('truetype');
}

/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
  font: 16px/1.5 "CNR","PingFang","Helvetica Neue",Helvetica,"Microsoft Yahei", Arial, sans-serif;
  color: #595959;
  font-weight: 400;
}

:root {
--primary:#24ac38;	
--main: #11a73c;
}

.div-img{
	overflow: hidden;
}

.div-img img{
	transition: all .3s ease;
}

.pageWrap{
	position: relative;
	overflow-x: hidden;
}

.container-fluid{
	width: 96%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/*PC头部样式*/
.pcHeader{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	background: #fff;
	z-index: 999;
	transition: all .4s ease;
	box-shadow: 0 0 15px rgb(0 0 0 / 20%);
}

.pcHeader .div-logo img{
	height: 65px;
    /*border-right: 1px solid #eee;*/
    margin-right: 10px;
}

.pcHeader .div-logo a{
	display: block;
}

.pcHeader .div-logo span{
	font-size: 22px;
    font-weight: bold;
    color: #0056b3;
}







/*菜单*/
.navItems{
	display: block;
	position: relative;
}

.navItems>li{
	display: inline-block;
}

.navItems>li>a{
	display: block;
	font-size: 20px;
	font-weight: bold;
	height: 95px;
	line-height: 95px;
	width: max-content;
	padding: 0 15px;
	transition: all .15s;
	position: relative;
}

.navItems>li>a:after{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	left: 50%;
	transition: all .4s;
	background-image:linear-gradient(to right, #23ac38, #4bb332);
	z-index: -1;
}

.navItems>li:hover>a{
	color: #fff;
}

.navItems>li:hover>a:after{
	width: 100%;
	left: 0;
}

.navItems>li>a i{
	font-size: 14px;
    color: #07101a;
    margin-left: 8px;
}

.navItems>li:hover>a i{
	transform: rotate(180deg);
    color: #fff;
}

.navItems>li .subnav{
	position: absolute;
    transform: translateY(50%);
    z-index: 10;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s;
    box-shadow: 0 10px 20px 0 rgba(0,0,0,0.06);
}

.navItems>li .subnav.on{
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.navItems>li .subnav a{
	display: block;
	width: max-content;
	padding: 0 15px;
	min-width: 200px;
	height: 45px;
	line-height: 45px;
	text-align: center;
}

.navItems>li .subnav a:not(:last-child){
	border-bottom: 1px solid #eee;
}

.navItems>li .subnav a:hover{
	background: var(--primary);
	color: #fff;
}

/*右侧放大镜*/
.pcHeader .divRight a{
	display: inline-block;
}

.pcHeader .divRight a svg{
	fill: var(--primary);
	width: 23px;
	height: 23px;

}

@media (max-width: 1199.98px) {
	.navItems>li>a{
		padding: 0 15px;
	}

	.pcHeader .div-logo img{
		height: 55px;
	}
}

@media (max-width: 1099.98px) {
	.navItems>li>a{
		font-size: 16px;
	}

	.pcHeader .div-logo img{
		height: 45px;
	}

	.navItems>li .subnav a{
		font-size: 14px;
		min-width: 140px;
	}
}

/*PC头部样式 END*/

/*手机端导航*/
@media (max-width: 991.98px) { 

	.container-fluid{
		width: 100%;
	}

	.moHeader{
		position: fixed;
		width: 100%;
		top: 0;
		left: 0;
		background: #fff;
		z-index: 999;
		box-shadow: 0 0 5px rgba(0,0,0,.1);
	}
	.moHeader .div-logo{
		width: 160px;
		padding: 5px 0;
	}
	.moHeader .mobmenu {
		display: flex;
		align-items: center;
	}
	.moHeader .mobmenu dl{
		transform: rotateY(180deg);
		margin-right: 10px;
	}
	.moHeader .mobmenu dl dd {
		width: 0;
		height: 2px;
		background: #0078ff;
	}
	.moHeader .mobmenu dl dd:first-child {
		animation: sjnav 2.4s linear infinite;
	}
	.moHeader .mobmenu dl dd:nth-child(2) {
		margin: 6px 0;
		width: 30px;
	}
	.moHeader .mobmenu dl dd:last-child {
		animation: sjnav 2.4s linear infinite;
		animation-delay: 0.4s;
	}
	.moHeader .mobmenu h4 {
		color: #1a1a1a;
		font-size: 16px;
	}

	/*手机导航按钮*/
	@keyframes sjnav{
		0% {
		    width: 0;
		}
		25% {
		    width: 15px;
		}
		50% {
		    width: 30px;
		}
		75% {
		    width: 15px;
		}
		100% {
		    width: 0;
		}
	}


	/*下拉菜单*/
	.moNav{
	    position: fixed;
	    top: 0;
	    left: 0;
	    transform: translateX(-100%);
	    z-index: 9999;
	    width: 100%;
	    height: 100vh;
	    background: #fff;
	    overflow-y: auto;
	    opacity: 0;
	    transition: all 0.3s;
	}

	.moNav.show{
		opacity: 1;
		transform: translateX(0);
	}

	.moNav .div-logo{
		width: 180px;
		padding: 15px 15px;
	}

	.moNav .gbBtn i{
		font-size: 24px;
		margin-right: 15px;
	}

	.monavItems>li{
		margin-bottom: 10px;
	}

	.monavItems .navList{
		padding: 0 15px;
		background: #e5e5e554;
		
	}

	.monavItems .navList a{
		height: 55px;
		line-height: 55px;	
	}

	.monavItems .navList span{
		min-width: 45px;
		text-align: right;
		height: 55px;
    	line-height: 55px;
	}

	.monavItems .subnav{
		display: none;
	}

	.monavItems .subnav a{
		display: block;
		margin: 0 10px;
		padding: 0 15px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}

	.monavItems .subnav a:not(:last-child){
		border-bottom: 1px solid #f5f5f5;
	}

	.monavItems>li.on .navList span i{
		transform: rotate(180deg);
	}
}

@media (max-width: 575.98px) { 
	.moHeader .div-logo,.moNav .div-logo{
		width: 120px;
	}
}
/*手机端导航END*/


/*banner*/
.banner{
	margin-top: 95px;
}
.banner .swiper-slide{
	position: relative;
}

.banner .swiper-slide .div-text{
	position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 99;
    color: #fff;
    display: flex;
    align-items: center;
}

.banner .swiper-slide .div-text h2.title{
	font-size: 66px;
	font-weight: bold;
}

.banner .swiper-slide .div-text h2.title span{
	display: inline-block;
	color: var(--primary);
}

.banner .swiper-slide .div-text .des{
	max-width: 650px;	
	margin-top: 15px;
}

.banner .swiper-slide .div-text .des p{
    font-family: 'Font Awesome 5 Free';
    line-height: 36px;
    font-size: 22px;
    font-weight: lighter;
    text-align: left;
}

.banner .swiper-slide .div-text.div-text1{
	left: 0;
	width: 100%;
	text-align: center;
	transform: translateY(-15%);
	opacity: .8;
}

.banner .swiper-slide .div-text.div-text2{
	left: 0;
	transform: translateY(-5%);
}

.banner .swiper-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff;
	position: relative;
	margin: 0 10px;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 14px;
	height: 14px;
	background: unset;
	border:1px solid var(--primary);
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after{
	position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    top: 2px;
    left: 2px;
    border-radius: 50%;
}


/*首页 产品*/
.sp{
	padding: 65px 0;
}

.commonTit{
	margin-bottom: 55px;
}

.commonTit p.entit{
	font-size:46px;
	color: #000;
	/*color:#0078ff;*/
	font-family: 'DINPRO';
	font-weight: bold;
	text-transform: uppercase;
}

.commonTit p.title{
	font-size: 22px;
    color: #919197;
    line-height: 1;
    padding-bottom: 15px;
    margin-top: 10px;
    position: relative;
} 


.pBtns .swiperBtn{
	width: 45px;
	height: 45px;
	border:1px solid #919197;
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pBtns .swiperBtn.swiperBtn1{
	margin-right: 25px;
	transform: rotateY(180deg);
}

.pBtns .swiperBtn svg{
	width: 25px;
	fill: #888;
}

.pBtns .swiperBtn:after{
	font-size: 20px;
	opacity: .2;
}

.pBtns .swiperBtn:hover{
	/*background-image:linear-gradient(to right, #00449b, #008ad5);*/
	background-color: var(--primary);
	border:1px solid var(--primary);
}

.pBtns .swiperBtn:hover svg{
	fill: #fff;
}


.pBtns .swiperBtn:hover:after{
	opacity: 1;
}

.proLists .swiper-slide .item{
	display: block;
	position: relative;
	cursor: pointer;
	text-align: center;
	box-shadow: 0 12px 30px -12px rgba(1,1,1,.36);
	border-radius: 10px;
	overflow: hidden;
}


.proLists .item {
	display: block;
	margin-bottom: 25px;
	text-align: center;

}

.proLists .item:hover {

}

.proLists .item .div-img{
	/*border:1px solid #eee;*/
	position: relative;
}

.proLists .item .div-img img{
	transition: .5s;
	width: 100%;
}

.proLists .item .div-text{
	background-color: #fff;
	padding:15px 15px;
}

.proLists .item:hover .div-text p{
	color: var(--primary);
}

.proLists .item .div-text p{
	font-size: 20px;
}

.proLists .item:hover .div-img img{
	transform: scale(1.1);
}

.proLists .maskmore{

}

.proLists .item .maskmore {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .3s;
    background: rgba(0,161,63,.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.proLists .item:hover .maskmore {
    width: 100%;
    left: 0;
}

.proLists .item .maskmore span{
	display: block;
    opacity: 0;
    transition: .5s;
    color: #fff;
    min-width: 60%;
    max-width: 85%;
    text-align: left;
    overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
    word-wrap: break-word;
}

.proLists .item :hover .maskmore span{
    opacity: 1;
}

.proImgs{
	margin-top: 35px;
}

.proImgs .swiper{
	padding-bottom: 55px;
}

.proImgs .swiper-slide{
	background: #eee;
	text-align: center;
	cursor: pointer;
	transition: all .1s ease;
}

.proImgs .swiper-slide p.title{
	padding: 20px 0;
}


.proImgs .swiper-pagination .swiper-pagination-bullet{
	border-radius: 0;
	width: 10px;
	height: 10px;
	margin: 0 10px;
}

.proImgs .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	transform: rotate(45deg);
	background: var(--primary);
}

.proImgs .div-img{
	position: relative;
	overflow: hidden;
}

.proImgs .div-img img{
	transition: all 1.2s ease;
	width: 100%;
}

.proImgs .div-img .mask{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	background: rgba(6,86,245,.3);
	transform: scaleX(0);
	opacity: 0;
	transition: all .6s ease;
	transform-origin: center;
}

.proImgs .div-img .mask svg{
	width: 35px;
	height: 35px;
	margin: auto;
}

.proImgs .swiper-slide:hover .mask{
	transform: scaleX(1);
	opacity: 1;
}

.proImgs .swiper-slide:hover{
	background-color: var(--primary);
	color: #fff;
}

.proImgs .swiper-slide:hover .div-img img{
	transform: scale(1.2);
}

.syAbout{
	background-image: url(../images/syabout-bg.jpg);
	background-size: cover;
	background-attachment: fixed;
}


.syAbout .commonTit p.title:after{
	width: 0;
}

.readMore{
	background-color: #fff;
	padding: 10px 25px;
	border-left: 4px solid var(--primary);
	position: relative;
	z-index: 1;
}

.readMore:after{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	background-color: var(--primary);
	z-index: -1;
	transition: all .4s ease;
}



.readMore span{
	display: inline-block;
	color: #666;
	vertical-align: middle;
	margin-right: 10px;
}

.readMore svg{
	display: inline-block;
	width: 30px;
	height: 30px;
	fill: var(--primary);
}

.readMore:hover:after{
	width: 100%;
}

.readMore:hover span{
	color: #fff;
}

.readMore:hover svg{
	fill: #fff;
}

.aboutCon .div-img{
	min-width: 620px;
	max-width: 620px;
	margin-left: 45px;
}


.aboutCon .syNum{
	padding: 25px 0;
}

.aboutCon .syNum .item{
	text-align: center;
}

.aboutCon .syNum .item .p1{
	font-size: 46px;
	font-weight: bold;
	color: #000;
	font-family: 'DINPRO';
}

.aboutCon .syNum .item .p1 i{
	font-size: 14px;
	margin-left: 10px;
	font-weight: lighter;
}


.aboutCon .syNum .item .p2{
	font-weight: lighter;
}

.aboutCon .div-text{
	padding: 65px 0;
}

.aboutCon .div-text p.title{
	font-size: 66px;
	color: #000;
	font-weight: bold;
	position: relative;
}


.aboutCon .div-text p.tit2{
	font-size: 56px;
	margin-bottom: 5px;
	color: var(--primary);
}

.aboutCon .div-text .des{
	margin-bottom: 35px;
	margin-top: 15px;
	pointer-events: none;
}

.aboutCon .div-text .des p{
	line-height: 30px;
    color: #91939a;
    text-indent: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box!important;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    font-family: system-ui;
    font-weight: 400;
}

.aboutItem{
	margin-top: 85px;
}

.aboutItem .item{
	width: 25%;
	transition: all .6s ease;
	
}

.aboutItem .item a{
	color: #fff;
	display: block;
	cursor: pointer;
	position: relative;
	padding: 65px 35px;
	z-index: 1;
	overflow: hidden;
}

.aboutItem .item a:after{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: rgba(5,70,197,.75);
	transition: all .6s ease;
}

.aboutItem .item .title p{
	writing-mode: vertical-lr;
	font-size: 26px;
	font-family: 'CNB';
	letter-spacing: 5px;
	position: relative;
	padding-left: 15px;
}

.aboutItem .item .title p:after{
	position: absolute;
	content: "";
	width: 4px;
	height: 45%;
	background-color: #fff;
	left: 0px;
	top: 0;
	transition: all 1s ease;
}

.aboutItem .item .num{
	font-size: 36px;
	font-family: 'DINPRO';
	font-weight: bold;
}

.aboutItem .item{
	background-size: cover;
	background-origin: center;
	overflow: hidden;
}

.aboutItem .item.item1{
	background-image: url(../images/abitem1.jpg);
}

.aboutItem .item.item2{
	background-image: url(../images/abitem2.jpg);
}

.aboutItem .item.item3{
	background-image: url(../images/abitem3.jpg);
}

.aboutItem .item.item4{
	background-image: url(../images/abitem4.jpg);
}

.aboutItem .item div.des{
	min-height: 240px;
	overflow: hidden;
	margin-top: 35px;
	
}

.aboutItem .item div.des p{
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
	transform: translateY(100%);
	opacity: 0;
	transition: all .6s ease;
	transition-delay: .4s;
}

.aboutItem .item:hover{
	width: 50%;
}

.aboutItem .item:hover a:after{
	width: 100%;
}

.aboutItem .item:hover div.des p{
	transform: translateY(0);
	opacity: 1;
}

.aboutItem .item:hover .title p:after{
	height: 100%;
}


.abMore{
	margin-top: 45px;
}

.abMore a{
	display: inline-block;
	font-size: 30px;
	border:1px solid var(--primary);
	color: var(--primary);
	border-radius: 45px;
	position: relative;

}

.syNews{
	background: #f1f1f1;
}

.syNewsList{
	margin-bottom: 35px;
}




.syNewsList .div-left{
	height: 100%;
}

.syNewsList .div-left a{
	display: block;
	height: 100%;
	border:1px solid #eee;
}

.syNewsList .div-left .div-text{
	padding: 25px 20px;
}

.syNewsList .div-left div.title p{
	font-size: 20px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.syNewsList .div-left .time{
	max-width: 100px;
    min-width: 100px;
    margin-right: 15px;
    font-family: 'DINPRO';
    background: #0078ff;
    padding: 5px 15px;
    color: #fff;
}

.syNewsList .div-left .time span{
	display: block;
	text-align: center;
}

.syNewsList .div-left .time span.s1{
	font-size: 36px;
	font-weight: bold;
	line-height: 1.2;
}

.syNewsList .div-right .item{
	height: 100%;
}

.syNewsList .div-right .item a{
	display: block;
	border:1px solid #eee;
	padding: 30px 20px;
	color: #333;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.08);
	margin-bottom: 25px;
}

.syNewsList .div-right .item .div-img img{
	width: 100%;
}

.syNewsList .div-right .time{
	margin-bottom: 10px;
    width: min-content;
    text-align: center;
}

.syNewsList .div-right .time span{
	display: block;
	color: var(--primary);
	font-family: 'DINPRO';
}

.syNewsList .div-right .time span.s1{
	font-size: 46px;
	font-weight: bold;
	line-height: 1.2;
}

.syNewsList .div-right .time span.s2{
	font-weight: lighter;
}

.syNewsList .div-right p.title{
	font-size: 20px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	margin-top: 15px;
	margin-bottom: 15px;
}

.syNewsList .div-right .des{
	margin-bottom: 25px;
}

.syNewsList .div-right .des p{
	color: #888;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.syNewsList .div-right .row,.syNewsList .div-right{
	height: 100%;
}

.syNewsList .div-right .more svg{
	width: 35px;
	fill: #888;
}

.syNewsList .div-right .item:hover a{
	box-shadow: 0 0 25px rgba(0,0,0,.1);
}

.syNewsList .div-right .item:hover p.title{
	color: var(--primary);
}

.syNewsList .div-right .item:hover .more svg{
	transform: translateX(5px);
	fill: var(--primary);
}

.syNewsList .div-right .item:hover .div-img img{
	transform: scale(1.05);
}

.readMore2{
	margin-top: 45px;
}

.readMore2 a{
	font-size: 18px;
	display: inline-block;
	padding: 15px 45px;
	/*background-image:linear-gradient(to right, #00449b, #0092dc);*/
	background-color: var(--primary);
	color: #fff;
	border-radius: 55px;
	transition: all .4s ease;
	border:1px solid var(--primary);
}

.readMore2 a:hover{
	background-color: unset;
	border:1px solid var(--primary);
	color: var(--primary);

}

.readMore2 a span{
	display: inline-block;
	width: 30px;
	height: 30px;
	line-height: 30px;	
	margin-left: 5px;
}

.readMore2 a svg{
	fill: #fff;
}

.readMore2 a:hover svg{
	fill: var(--primary);
}


/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}


.button--winona {
	overflow: hidden;
	padding: 0;
	-webkit-transition: border-color 0.3s, background-color 0.3s;
	transition: border-color 0.3s, background-color 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona::after {
	content: attr(data-text);
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 10px 65px;
	top: 0;
	left: 0;
	opacity: 0;
	color: #fff;
	text-align: center;
	-webkit-transform: translate3d(0, 25%, 0);
	transform: translate3d(0, 25%, 0);
}
.button--winona > span {
	    padding: 10px 65px;
	display: block;
}
.button--winona.button--inverted {
	color: #7986cb;
}
.button--winona.button--inverted:after {
	color: #fff;
}
.button--winona::after,
.button--winona > span {
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
	transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.button--winona:hover {
	border-color: var(--primary);
	background-color: var(--primary);
}
.button--winona.button--inverted:hover {
	border-color: #21333C;
	background-color: #21333C;
}
.button--winona:hover::after {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.button--winona:hover > span {
	opacity: 0;
	-webkit-transform: translate3d(0, -25%, 0);
	transform: translate3d(0, -25%, 0);
}

.syPartnre{
	background-color: #f7f7f7;
}


.partnerList img{
	width: 100%;
}

.partnerList .div-img{
	border:1px solid #eee;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0,0,0,.08);
	max-width: 90%;
	margin: 0 auto 25px;

}



.partnerList .swiperBtn{
	width: 45px;
	height: 45px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	background-color: rgba(0,0,0,.2);
}

.partnerList .swiperBtn:after{
	font-size: 18px;
	color: #fff;
}

.partnerList .swiperBtn:hover{
	background-color: var(--primary);
}

.mainFooter{
	/*background-color: var(--primary);*/
	background-color: #323338;	
	color: #fff;
	position: relative;
	z-index: 1;

}

.mainFooter:after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url(../images/footerBg.png);
	background-size: cover;
	z-index: -1;
}

.mainFooter a{
	color: #ffff;
	display: inline-block;
	margin-bottom: 5px;
}

.mainFooter .title{
	display: block;
	font-size: 20px;
	color: #fff;
	margin-bottom: 15px;
}

.mainFooter .item p{
	max-width: 450px;
}

.mainFooter .item .infos p span{
	min-width: 80px;
}

.mainFooter .fdh{
	max-width: 650px;
}

.mainFooter .div-img{
	max-width: 130px;
	margin: 25px 25px;
}

.mainFooter .div-img p{
	font-size: 14px;
	margin-top: 5px;
}

.mainFooter a:hover{
	color: var(--primary);
}

.copyright{
	font-size: 14px;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background-color: var(--primary);
}

.copyright a,.copyright span{
	display: inline-block;
	margin: 0 5px;
	color: #000;
}

.copyright a:hover{
	color: #fff;
}
/*首页*/

/*内页开始*/
.pageTit{
	position: fixed;
	width: 100%;
	top: 95px;
	height: 380px;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.pageTit2{
	margin-top: 95px;
}

.ny{
	margin-top: 380px;
}

.nyAbout{
	background-color: #fff;
}

.nyAbout .aboutCon .div-text .des p{
	-webkit-line-clamp: unset!important;
}

#china-map{
	background-color: #fff!important;
}

#china-map,#world-map{
  width:100%;
  height:800px;
  min-height: 600px!important;
  min-width: 100%!important;
}

.qyWh .item{
	padding: 55px 25px;
	margin-bottom: 25px;
	background-color: #f1f2f3;
	cursor: pointer;
	transition: all .3s; 
}

.qyWh .item p.p1{
	text-align: center;
	font-size: 30px;
	color: #000;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 8px;
	position: relative;
}

.qyWh .item p.p1:after{
	position: absolute;
	content: "";
	width: 45px;
	height: 4px;
	left: 50%;
	bottom: 0;
	background-color: var(--primary);
	transform: translateX(-50%);
	transition: all .6s;
}

.qyWh .item p.p2{
	font-size: 20px;
	text-align: center;
	text-transform: uppercase;
	display: none;
}

.qyWh .item .des{
	margin: 20px 0;
    font-size: 16px;
    line-height: 1.8;
  /*  font-weight: lighter;*/
    color: #000;
    transition: all .3s;
   /* font-family: 'Font Awesome 5 Free';*/
}

.qyWh .item .tb{
	text-align: center;
	margin-bottom: 25px;

}

.qyWh .item .tb svg{
	height: 50px;
	transition: all .6s;
	fill: #42b4e6;
}

.qyWh .item:hover{
	/*box-shadow: 0 0 15px rgba(0,0,0,.3);*/
}

.qyWh .item:hover .des{
	color: var(--primary);
}

.qyWh .item:hover svg{
	transform: rotateY(180deg);
}

.qyWh .item:hover p.p1:after{
	width: 65px;
}

/*分类*/
.proLeft{
	padding: 45px 25px;
	border-radius: 5px;
	background: #fff;
}


.proLeft .title{
	padding-bottom: 15px;
	margin-bottom: 25px;
	font-size: 36px;
	font-family: 'RalewayEB';
	position: relative;
	line-height: 1;
}

.proLeft .title:after{
	position: absolute;
	content: "";
	width: 45px;
	height: 2px;
	left: 0;
	bottom: 0;
	background-color: var(--primary);
}

/*搜索*/
.divSearch{
	padding: 25px;
	border-radius: 5px;
	background-color: #fff;
	margin-bottom: 35px;
	position: relative;
}

.divSearch form{
	display: block;
	position: relative;
}

.divSearch form input{
	display: block;
	width: 100%;
	height: 55px;
	line-height: 55px;
	font-size: 14px;
	padding: 0 25px;
	background-color: #eee;
}

.divSearch form button{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: unset;
	border:none;
}

.divSearch form button svg{
	fill: var(--primary);
	width: 25px;
	height: 25px;
}

ul.xlcates li{
	display: block;
	margin-bottom: 20px;
}

ul.xlcates li .cate{
	background-color: #54b431;
}

ul.xlcates li .cate .d1 a{
	display: block;
}

ul.xlcates li .cate .d2 span{
	display: inline-block;
	cursor: pointer;
	line-height: 1;
	transform-origin: center;
}

ul.xlcates li .cate .d2 span svg{
	width: 16px;
	height: 16px;
	margin-right: 15px;
}

ul.xlcates li .d1 a{
	color: #fff;
	display: block;
	line-height: 1;
	padding: 20px 15px;
}

ul.xlcates li .sub{
	display: none;
}

ul.xlcates li .sub a{
	display: block;
	background-color: #4d574e0d;
	padding: 10px 15px 10px 25px;
	position: relative;
	margin-top: 5px;
	font-size: 14px;
	transition: all .3s;
}

ul.xlcates li .sub a:after{
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #333;
	left: 10px;
	top: 18px;
}

ul.xlcates li .sub a:hover,ul.xlcates li .sub a.cur{
	background-color: var(--primary);
	color: #fff;
}

ul.xlcates li .sub a:hover:after,ul.xlcates li .sub a.cur:after{
	background-color:#fff;
}

ul.xlcates li.active .cate,ul.xlcates li.on .cate{
	background-color: var(--primary);
}

ul.xlcates li .d2 span svg{
	transition: all .4s;
}

ul.xlcates li.active .d2 span svg{
	transform: rotate(90deg);
}

ul.xlcates li.active .sub{
	display: block!important;
}


/*------back-to-top 返回顶部------------*/
.prgoress_indicator {
    position: fixed;
    right: 50px;
    bottom: 20px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
  position: absolute;
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear !important;
}
.prgoress_indicator:hover ::after {
  color: var(--primary);
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:var(--primary);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear !important;
}

/*返回顶部 end*/
.nyProduct{
	background-color: #f5f5f5;
}

.nyproList a.item{
	display: block;
	margin-bottom: 25px;
	transition: all .3s ease;
	background-color: #fff;
}

.nyproList a.item .div-img{
	border:1px solid #eee;
}

.nyproList a.item .div-img img{
	width: 100%;	
}

.nyproList a.item .div-text{
	margin-top: 15px;
	padding-bottom: 15px;
}

.nyproList a.item .div-text p{
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.nyproList a.item:hover .div-img img{
	transform: scale(1.05);
}

.nyproList a.item:hover{
	color: var(--primary);
}

/** 产品详情 **/
.proDetail{
	background-color: #fff;
}


.proDetail .nyTop{
	padding: 65px 45px;
	box-shadow: 0 0 10px rgba(0,0,0,.08);
	margin-bottom: 45px;
}

.proDetail .proxqImgs{
	border: 1px solid #eeeeee8f;
}

.proDetail .proxqImgs .swiperBth{
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background-color: #eeeeeebd;
	border-radius: 50%;
}

.proDetail .proxqImgs .swiperBth:after{
	font-size: 18px;
	color: #fff;
}

.proDetail .proxqImgs .swiperBth:hover{
	background-color: var(--primary);
}

.proDetail .nyTop .div-text{
	margin-top: 25px;
}

.proDetail .nyTop .div-text p.title{
	font-size: 30px;
	font-weight: bold;
	color: #000;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.proDetail .nyTop .div-text .des{
	margin-bottom: 15px;
	color: #888;
    line-height: 1.8;
}

.proDetail .nyTop .div-text .des p{
	line-height: 32px;
}

.proDetail .nyTop .fl{
	font-size: 18px;
} 

.proDetail .nyTop .fl strong{
	display: inline-block;
	font-weight: bold;
	color: #000;
}

.proDetail .nyTop .fl a{
	display: inline-block;
	color: var(--primary);
	border-bottom: 1px solid var(--primary);
	padding: 0 3px;
	transition: all .3s ease;
}

.proDetail .nyTop .fl a:hover{
	letter-spacing: 1px;
}

.conBack .a2{
	margin-left: 25px;
}

.conBack .a2 a{
	background-color: unset;
	color: var(--primary);
	border:1px solid var(--primary);
}

.conBack .a2 a:hover{
	color: #fff;
	background-color: var(--primary);
}

.nyContent{
	padding: 65px 45px;
	box-shadow: 0 0 10px rgba(0,0,0,.08);
	line-height: 2;
}

.nyContent h4.tit{
	font-size: 30px;
	color: #000;
	font-weight: bold;
	margin-bottom: 25px;
}

.nyContent h3.title{
	font-size: 24px;
    font-weight: bold;
    color: #00a040;
    margin-bottom: 10px;
    margin-top: 25px;
    
}

.mbxDh{
	background-color: #f5f5f5;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}

.mbxDh span{
	display: inline-block;
    vertical-align: text-bottom;
    margin-right: 3px;
}

.mbxDh span svg{
	width: 20px;
	height: 20px;
}

.mbxDh i{
	display: inline-block;
    margin: 0 3px;
    line-height: 1;
    vertical-align: baseline;
}

/**/
.nyHonor{
	background-color: #fff;
}

.honorLists li{
	margin-bottom: 25px;
}

.honorLists .item{
	border:4px solid #eee;
	cursor: pointer;
	overflow: hidden;
	height: 100%;
}

.honorLists .item img{
	width: 100%;
	height: 100%;
	transition: all .3s ease;
}

.honorLists .item:hover img{
	transform: scale(1.05);
}

/*人才招聘*/
.proJobs{
	background-color: #fff;
}
.accordion li {
    list-style: none;
    padding: 2px 0px 15px;
    position: relative;
    z-index: 1;
}

.accordion li:before {
    position: absolute;
    content: "";
    z-index: -1;
    right: 20px;
    top: 16px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.10196078431372549);
    border: 1px solid rgba(255, 255, 255, 0.3);
}




.active .accordion li:before {
    background-color: rgba(255, 255, 255, 0.10196078431372549) !important;
}

.accordion li a {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
    color: #333 !important;
    background-color: rgba(255, 255, 255, 0.050980392156862744);
    border: 1px solid #626065;
    padding: 18px 20px 18px 59px;
    border-radius: 5px;
    z-index: 1;
}

.accordion li div {
    display: none;
    font-size: 16px;
    color: #666;
    padding: 25px 20px 14px;
    margin: 0;
    text-align: justify;
}

.accordion a:before {
    width: 2px;
    height: 10px;
    background: var(--primary);
    position: absolute;
    right: 32px;
    content: " ";
    top: 26px;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}

.accordion a:after {
    width: 10px;
    height: 2px;
    background: var(--primary);
    position: absolute;
    right: 28px;
    content: " ";
    top: 30px;
    transition: all 0.2s ease-in-out;
}

.accordion a.active:after {
    transform: rotate(0deg);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
}

.accordion a.active:before {
    display: none;
}

.accordion a.active {
    color: #fff !important;
    border: 1px solid var(--primary) !important;
    background: var(--primary) !important;
}

.accordion li a span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.accordion li a span:after {
    position: absolute;
    content: "";
    z-index: -1;
    left: -35px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/question.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}

.accordion li a.active span:after{
	background-image: url(../images/question2.png);
}

.accordion li div>p{
	line-height: 2;
}

    /*内页新闻*/
    .nyNews{
    	background-color: #fff;
    }

    .newsDetail{
    	background-color: #fff;
    }

    .newsDetail .main{
    	padding: 65px 45px;
    	box-shadow: 0 0 15px rgba(0,0,0,0.08);
    }

     .newsDetail .main h2.title{
     	font-size: 24px;
     	color: #000;
     	margin-bottom: 15px;
     }


     .newsDetail .main .meta{
     	font-size: 14px;
     	padding-bottom: 15px;
     	margin-bottom: 25px;
     	border-bottom: 1px solid #eee;
     }

     .newsDetail .main .meta span{
     	display: inline-block;
     	margin: 0 10px;
     }

      .newsDetail .main .meta span.s1{
      	color: var(--primary);
      }
   

    .newsDetail .main .content{
    	min-height: 300px;
	    margin-bottom: 25px;
	    color: #888;
	    line-height: 2;
	    text-indent: 30px;
	    font-size: 16px;
	    font-weight: lighter;
    }


    .nyContact{
    	background-color: #fff;
    }


    .comInfos .item{
    	padding: 35px 25px;
    	height: 100%;
    	box-shadow: 0 0 15px rgba(0,0,0,0.08);
    	border-radius: 5px;

    }

     .comInfos .item .tb{
     	margin-right: 15px;
	    width: 65px;
	    min-width: 65px;
	    height: 65px;
	    border: 1px solid #a7e4b5;
	    text-align: center;
	    line-height: 65px;
	    border-radius: 50%;
	    background: #2bad37;
     }

    .comInfos .item .tb svg{
    	width: 50%;
	    fill: #a7e4b5;
    }

    .comInfos .item .div-text p.title{
    	font-size: 20px;
    	color: #000;
    	font-weight: bold;
    }

    .comInfos .item .div-text p.des{
    	font-size: 18px;
    	margin-top: 3px;
    }

    .comInfos .item .div-text p.dz{
    	font-size: 14px;
    }


    .conLy{
    	margin-top: 45px;
    }

    .conLy .div-img{
    	min-width: 500px;
    	max-width: 500px;
    	margin-right: 65px;
    }


    .conLy .title{
    	font-size: 30px;
    	margin: 15px 0;
    	color: #000;
    	font-weight: bold;
    }

    .conLy .des{
    	margin-bottom: 25px;
    	color: #888;
    }

    .divForm .item{
    	margin-bottom: 25px;
    }

    .divForm form{
   		display: block;
   		width: 100%;
    }

    .divForm input,.divForm textarea{
    	outline: none;
    	display: block;
    	width: 100%;
    	border:1px solid #eee;
    	padding: 15px 20px;
    }

    .divForm input::placeholder,.divForm textarea::placeholder{
    	color: #888;
    }

    .divForm button{
    	display: inline-block;
    	padding: 10px 35px;
    	color: #fff;
    	background-color: var(--primary);
    	border:1px solid var(--primary);
    }

    .divForm button:hover{
    	color: var(--primary);
    	background-color: unset;

    }


.pagination{
        justify-content: center;
}

.pagination a{
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 32px;
    text-align: center;
    border-radius: 3px;
    border:1px solid #eee;
    margin: 0 3px;
}

.pagination a.page-num-current,.pagination a:hover{
    color: #fff;
    background-color: var(--primary);
}

.pagination a:nth-child(1) svg{
    transform: rotate(180deg);
}


.content table tbody tr:nth-child(odd) td {
    background-color: #f4f4f4;
    padding: 15px;
    font-size: 15px;
    color: #222;
    padding-left: 15px;
}

.content table tbody tr:nth-child(even) td {
    background-color: #d5eeec;
    padding: 15px;
    font-size: 15px;
    color: #222;
    padding-left: 15px;
}

.content table, th, td {
    border: 1px solid #fff;
}



















