@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: 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;
}

.pcHeader .div-logo a{
	display: block;
}

.pcHeader.on{
	animation: slideInDown 1s forwards;
}

.pcHeader.on .main{
	transform: scale(0.95);
}

/*菜单*/
.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;
	}
	.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 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;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 99;
	color: #fff;
	display: flex;
	align-items: center;
}

.banner .swiper-slide .div-text h2.title{
	font-size: 46px;
	font-weight: bold;
	margin-bottom: 25px;
}

.banner .swiper-slide .div-text p.des{
	max-width: 850px;
	font-size: 22px;
	text-transform: uppercase;
}

.banner .swiper-pagination .swiper-pagination-bullet{
	width: 12px;
	height: 4px;
	background-color: #fff;
	border-radius: 0;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	width: 35px;
	height: 4px;
	background: var(--primary);
}

/*首页 系统方案*/
.sp{
	padding: 85px 0;
}

.commTit{
	margin-bottom: 45px;
}

.commTit p.p1{
	font-size: 18px;
    color: rgba(169,169,169,1);
    text-transform: uppercase;
}

.commTit p.p2{
	font-size: 50px;
	font-weight: bold;
	color: var(--primary);
	margin: 10px 0;
}

.commTit p.des{
	color: rgba(153,153,153,1);
	max-width: 1260px;
	margin: auto;
}
/*end*/

.proLists .item{
	position: relative;
	overflow: hidden;
	border-radius: 15px;
}

.proLists .item .div-text{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 10%;
	color: #fff;
}

.proLists .item .div-text a{
	color: #fff;
	display: block;
	width: 100%;
	padding: 15px 20px;
}

.proLists .item p.des{
	height: 0;
	line-height: 26px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	margin-bottom: 15px;
}

.proLists .item p.entitle{
	margin-bottom: 15px;
}

.more .gdBtn{
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height: 31px;
	text-align: center;
	border-radius: 50%;
	border:1px solid #fff;
}

.more .gdBtn svg{
	display: inline-block;
	fill: #fff;
	width: 50%;
	height: 50%;
}


.proLists .item .div-img img{
	width: 100%;
	transition: all 1s ease;
}

.proLists .item:hover .more .gdBtn{
	background: #fff;
}

.proLists .item:hover .more .gdBtn svg{
	fill: #333;
}

.proLists .item:hover .div-text .des{
	height: 80px;
}

.proLists .item:hover .div-img img{
	-webkit-filter: saturate(90%);
	filter: saturate(90%);
	transform: scale(1.1);
}

/*关于我们*/
.syAbout{
	background-color: #f8f8f8;
}

.syAbout .readMore{
	margin-top: 25px;
}

.readMore a{
	display: inline-block;
	padding: 10px 35px;
	background-color: var(--primary);
	color: #fff;
}

.readMore a span{
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
}

.readMore a svg{
	display: inline-block;
	width: 30px;
	height: 30px;
	fill: #fff;
	margin-left: 6px;
}

.readMore a:hover svg{
	transform: translateX(5px);
}


.syAbout .div-img{
	max-width: 650px;
	min-width: 650px;
	margin-left: 45px;
}


.syAbout .div-text div.title{
	margin-bottom: 35px;
	padding-bottom: 15px;
	position: relative;
}

.syAbout .div-text p.tit{
	position: absolute;
    top: 10px;
    left: 10PX;
    padding-bottom: 10px;
    font-size: 32px;
    font-family: 'CNB';
    color: #000;
}

.syAbout .div-text p.tit:after{
	position: absolute;
	content: "";
	width: 45px;
	height: 4px;
	border-radius: 4px;
	left: 0;
	bottom: 0;
	background: var(--primary);
}


.syAbout .div-text p.tit:before{
	position: absolute;
	content: "";
	width: 20px;
	height: 4px;
	border-radius: 4px;
	left: 50px;
	bottom: 0;
	background: var(--primary);
}

.syAbout .div-text .bigt{
	font-size: 86px;
	font-weight: bold;
	color: #eeeeee85;
	font-weight: bold;
	line-height: 1;
	font-family: 'DINPRO';

}

.gsNum{
	margin-top: 45px;
}

.gsNum .item div.d1 span{
	display: inline-block;
	font-size: 56px;
	color: #000;
	font-family: 'DINPRO';
	font-weight: bold;
	margin-right: 10px;
}

.gsNum .item div.d1 i{
	display: inline-block;
	color: #666;
}

.gsNum .item div.d2 p{
	color: #666;
	margin-top: 5px;
}

/*关于我们 END*/

/*我们的优势*/
.syAdv{
	background-image: url(../images/company-bg.jpg);
	background-size: cover;
	background-attachment: fixed;
}

.syAdv .commTit p.p1,.syAdv .commTit p.p2,.syAdv .commTit p.des{
	color: #fff;
}


.advLists .item{
	padding: 45px 30px;
	margin-bottom: 25px;
	background: #fff;
	position: relative;
	box-shadow: 2px 2px 13px 3px rgb(0 0 0 / 11%);
}

.advLists .item .tb{
	margin-bottom: 35px;
}

.advLists .item .tb span{
	display: inline-block;
	width: 75px;
	height: 75px;
	line-height: 70px;
	text-align: center;
	border-radius: 50%;
	background: var(--primary);
}

.advLists .item .tb span svg{
	fill: #fff;
	width: 60%;
}

.advLists .item div.title{
	margin-bottom: 30px;
}

.advLists .item p.tit{
	font-size: 30px;
	font-family: 'CNB';
	font-weight: bold;
	color: #000;
}

.advLists .item a.a1{
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	border:1px solid #888;
}

.advLists .item a.a1 svg{
	width: 40%;
	transition: all .1s ease;
}

.advLists .item div.des{
	height: 70px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.advLists .item:hover{
	cursor: pointer;
	transform: translateY(25px);
}

.advLists .item a.a1:hover{
	background: var(--primary);
}

.advLists .item a.a1:hover svg{
	fill: #fff;
}

.advLists .item a.a1:hover{
	border:1px solid var(--primary);
}

.advLists .item:hover .tb span{
	transform: rotateY(180deg);
}


/*荣誉资质*/
.honorLists .swiper .swiper-pagination {
	width: 380px;
	height: 6px;
	margin: 0 auto;
	position: static;
	margin-top: 4%;
	border-radius: 35px;
	transform: translate(0);
	overflow: hidden;
	display: flex;
	justify-content: center;
}
.honorLists .swiper .swiper-pagination span {
	background: #343434;
	width: 15px;
	height: 100%;
	border-radius: 0;
	margin: 0 3px;
	opacity: .2;
	transition: all ease .5s;
	border-radius: 5px;
}
.honorLists .swiper .swiper-pagination span.swiper-pagination-bullet-active {
	background: var(--primary);
	opacity: 1;
	width: 35px;
}

/*新闻资讯*/
.syNews{
	background: rgba(239,242,244,1);
}

.newsLists .item a{
	display: block;
	width: 100%;
	position: relative;
	padding: 85px 35px 35px 35px;
	background-color: #fff;
	margin-bottom: 35px;
}

.newsLists .item div.title p{
	font-size: 22px;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box!important;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	color: rgba(61,61,61,1);
	margin-bottom: 15px;
}

.newsLists .item .time{
	position: absolute;
	left: 0;
	top: 0;
	width: 180px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: var(--primary);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
    font-family: 'DINPRO';
    transition: all .5s ease;
}

.newsLists .item:hover .time{
	width: 100%;
}

.newsLists .item .txtBot{
	margin-top: 25px;
	padding-top: 15px;
	border-top:1px solid #eee;
}

.newsLists .item .txtBot span.s1{
	font-size: 18px;
	font-weight: bold;
}

.newsLists .item .txtBot span.s2{
	width: 24px;
	height: 24px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	background: #2ba472;
	color: #fff;
}

.newsLists .item:hover span.s1{
	letter-spacing: 1px;
}

/*底部*/
.mainFooter{
	background-color: #3d3d3d;
	color: #fff;
}

.mainFooter a{
	color: #ffffffba;
}

.mainFooter a:hover{
	color: #fff;
}

.mainFooter .d1{
	text-align: center;
}

.mainFooter .d1 .title{
	font-size: 18px;
	margin-bottom: 15px;
}

.mainFooter .d2{
	padding: 0 35px;
	margin: 0 35px;
	border-left: 1px solid #e5e5e554;
	border-right: 1px solid #e5e5e554;
}

.mainFooter .d2 p.title{
	font-size: 18px;
	margin-bottom: 15px;
}

.mainFooter .d2 ul li a{
	line-height: 30px;
}

.mainFooter .d3 p.p1{
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
}

.mainFooter .d3 .infos p{
	margin-bottom: 5px;
	font-weight: lighter;
}

.mainFooter .copyright{
	padding-top: 25px;
	padding-bottom: 25px;
	font-size: 14px;
	border-top: 1px solid #e5e5e554;
}

.mainFooter .copyright span{
	margin-right: 15px;
}












