@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:#0147a6;	
--main: #06479b;
}

.pageWrap{
	position: relative;
	overflow-x: hidden;
}

.container-fluid{
	width: 96%;
    max-width: 1680px;
    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;
}

.pcHeader .div-logo a{
	display: block;
}







/*菜单*/
.navItems{
	display: block;
	position: relative;
}

.navItems>li{
	display: inline-block;
}

.navItems>li>a{
	display: block;
	font-size: 18px;
	height: 95px;
	line-height: 95px;
	width: max-content;
	padding: 0 25px;
	transition: all .15s;
	position: relative;
}

.navItems>li>a:after{
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	left: 50%;
	transition: all .4s;
	background: var(--primary);
	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;
}

@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: 180px;
		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{
		margin: 25px 0;
	}

	.moNav .gbBtn i{
		font-size: 24px;
		margin-right: 15px;
	}

	.monavItems>li{
		margin-bottom: 10px;
	}

	.monavItems .navList{
		padding: 0 15px;
		border-bottom: 1px solid #eee;
		/*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;
	left: 0;
	top: 50%;
	width: 100%;
	z-index: 99;
	color: #fff;
}

.banner .swiper-pagination .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #fff;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 85px;
	height: 12px;
	border-radius: 12px;
	background: rgba(255,255,255,.6);
}


/*首页 产品*/
.sp{
	padding: 85px 0;
}

.commonTit{
	margin-bottom: 55px;
}

.commonTit p.entit{
	font-size:56px;
	color: var(--primary);
	/*color:#0078ff;*/
	font-family: 'DINPRO';
	font-weight: bold;
	text-transform: uppercase;
}

.commonTit p.title{
	font-size: 46px;
    color: #000;
    line-height: 1;
    padding-bottom: 15px;
    position: relative;
} 

.commonTit p.title:after{
	position: absolute;
	content: "";
	width: 65px;
	height: 2px;
	background: #ccc;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.proLists .swiperBtn{
	color: #fff;
	font-size: 30px;
	padding: 35px 15px;
	background: rgba(0,0,0,.2);	
	transform: translateY(-50%);
}

.proLists .swiperBtn:after{
	font-size: 20px;
	opacity: .2;
}

.proLists .swiperBtn:hover{
	background-color: var(--primary);
}


.proLists .swiperBtn:hover:after{
	opacity: 1;
}

.proLists .swiper-slide .item{
	display: block;
	position: relative;
	cursor: pointer;
	border-radius: 30px;
	overflow: hidden;
}

.proLists .swiper-slide .item .div-text{
	position: absolute;
	left: 0;
	top: 10%;
	width: 100%;
	height: 100%;
	padding: 45px 35px;
	color: #fff;
/*	display: flex;
	align-items: center;*/
}

.proLists .item .div-text p.p1{
	font-size: 30px;
}

.proLists .item .div-text p.p2{
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: bold;
	text-transform: uppercase;
}

.proLists .item .div-text div.des{
	height: 75px;
	overflow: hidden;
}

.proLists .item .div-text div.des p{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.proLists .item {
	margin-bottom: 25px;
}

.proLists .item .div-img img{
	transition: all 2s ease;
	width: 100%;
}

.proLists .item:hover .div-img img{
	transform: scale(1.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.entit{
	color: #fff;
}

.syAbout .commonTit p.title{
	color: #fff;
}*/

.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;
	width: 165px;
}

.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{
	border-left: 4px solid #31aa7a;
}*/

.readMore:hover:after{
	width: 100%;
}

.readMore:hover span{
	color: #fff;
}

.readMore:hover svg{
	fill: #fff;
}

.aboutCon .div-img{
	min-width: 620px;
	max-width: 620px;
}


.aboutCon .syNum{
	/*background-color: var(--primary);
	color: #fff;*/
	padding: 25px 0;
	color: #333;
/*	color: #fff;*/
}

.aboutCon .syNum .item{
	text-align: center;
}

.aboutCon .syNum .item .p1{
	font-size: 30px;
	font-weight: bold;
}

.aboutCon .syNum .item .p1 i{
	font-size: 14px;
	margin-left: 10px;
	font-weight: lighter;
}

.aboutCon .syNum .item:nth-child(3),.aboutCon .syNum .item:nth-child(2){
	/*border-left: 1px solid #ffffff3d;*/
}

.aboutCon .syNum .item .p2{
	font-weight: lighter;
}

.aboutCon .div-text{
	/*background-color: #fff;*/
	padding: 25px 45px;
}

.aboutCon .div-text p.title{
	font-size: 30px;
/*	color: #fff;*/
	font-weight: bold;
	position: relative;
	margin-bottom: 15px;
}

/*.aboutCon .div-text p.title:after{
	position: absolute;
	content: "";
	width: 65px;
	height: 4px;
	background-color: var(--primary);
	bottom: 0;
	left: 0;
}*/

.aboutCon .div-text p.tit2{
	font-size: 56px;
	font-family: 'DINPRO';
	font-weight: bold;
	margin-bottom: 5px;
	color: var(--primary);
}

.aboutCon .div-text .des{
	/*min-height: 250px;*/
	padding-bottom: 45px;
	/*border-bottom: 1px solid #eee;*/
	pointer-events: none;
}

.aboutCon .div-text .des p{
	line-height: 30px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.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%;
}

.syNews{
	background: #fafafa;
}

.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;
	background-color: #f5f5f5;
}

.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;
	height: 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;
}

.syNewsList .div-right .des{
	margin-top: 25px;
	height: 160px;
}

.syNewsList .div-right .des p{
	color: #888;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 3;
	-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 p.title{
	color: var(--primary);
}

.syNewsList .div-right .item:hover .more svg{
	transform: translateX(5px);
}

.syPartnre{
	background-color: #f7f7f7;
}


.partnerList .swiper-slide img{
	width: 100%;
	max-width: 100px;
}

.partnerList .swiper-slide .div-img{
	padding: 15px;
	/*border:1px solid #eee;*/
	border-radius: 10px;
	/*background-color: #fff;*/
}

.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);
}

.commonTit3 p.title{
	font-family: 'CNB';
}

.commonTit3 p.title:after{
	width: 0;
}

.mainFooter{
	background-color: #323338;
	color: #fff;
}

.mainFooter .main{
	padding-top: 65px;
	padding-bottom: 45px;
}

.mainFooter a{
	color: #afaeae;
}

.mainFooter .title{
	display: block;
	font-size: 20px;
	color: #fff;
	margin-bottom: 15px;
}

.mainFooter .fdh{
	max-width: 650px;
}

.mainFooter .div-img{
	max-width: 130px;
}

.mainFooter .div-img p{
	font-size: 14px;
	margin-top: 5px;
}

.mainFooter a:hover{
	color: var(--primary);
}

.mainFooter .item .infos p{
	margin-bottom: 8px;
}

.mainFooter .fdh ul li{
	margin-bottom: 8px;
}

.copyright{
	font-size: 14px;
	padding: 15px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a,.copyright span{
	display: inline-block;
	margin: 0 5px;
}
/*首页*/













