﻿/*banner*/
.banner {
	position: relative;
	z-index: 0;
	overflow: hidden;
	height: auto;
}
.banner ul li{
	height: 100vh;
	max-height: 940px;
	position: relative;
	z-index: 0;
	background-size: cover !important;
	overflow: hidden;
}
.banner ul li .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(1.1);
	overflow: hidden;
    transition: all 5.6s cubic-bezier(.04, .79, 1, 1) !important;
    background-size: cover !important;
}
.banner .banbox{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 10;
}
.banner .banbox dl{
	width: 50%;
}
.banner .banbox dl dt{
	font-size: 60px;
	margin-bottom: 20px;
	font-weight: bold;
}
.banner .banbox dl dd{
	font-size: 30px;
}
.banner ul li.swiper-slide-active .bg{
	transform: scale(1);
}
.banner .swiper-pagination{
	display: none;
}

/*首页 栏目标题*/
.sy-title span{
	display: block;
	color: #cccccc;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}
.sy-title h3{
	font-size: 36px;
	margin-top: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.sy-title h3 i{
	display: block;
	width: 30px;
	height: 4px;
	margin: 0 30px;
	border-radius: 2px;
	background: #f68b1f;
}

/*关于我们*/
.about{
	padding: 100px 0;
}
.about .summary{
	margin: 50px 0 60px;
}
.about .summary .content,
.about .summary .pic{
	width: 50%;
}
.about .summary .content{
	box-shadow: 0 0 80px 0 rgba(0,0,0,0.08);
	padding: 70px 60px;
}
.about .summary .content h2{
	font-size: 32px;
}
.about .summary .content p{
	line-height: 28px;
	margin: 30px 0 50px;
}
.about .summary .content a{
	display: block;
	width: 120px;
	font-size: 14px;
	line-height: 48px;
}
.about .summary .content a:hover{
	background: #f68b1f;
}
.about .summary:hover .pic img{
	transform: scale(1.1);
}
.about .process li i{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	box-shadow: 0 0 40px 0 rgba(0,0,0,0.08);
	margin: 0 auto;
}
.about .process li span{
	display: block;
	font-size: 18px;
	margin-top: 30px;
}
.about .process ul .line{
	width: 150px;
	margin: -45px 20px 0;
	border-bottom: 1px dashed #ccc;
	position: relative;
}
.about .process ul .line em{
	position: absolute;
	right: -2px;
	top: -6px;
}

/*服务项目*/
.service{
	background: url(../images/servicebg.jpg) no-repeat center;
	background-attachment: fixed;
	background-size: cover;
	padding: 100px 0;
}
.service .list{
	margin-top: 50px;
}
.service .list ul{
	margin: 0 -15px;
}
.service .list ul li{
	width: 25%;
	padding: 0 15px;
}
.service .list ul li a{
	display: block;
	width: 100%;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.service .list ul li a .pic{
	height: 400px;
}
.service .list ul li a .title{
	width: 100%;
	font-size: 18px;
	line-height: 60px;
	background: rgba(34,63,155,0.9);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.service .list ul li a .content{
	padding: 30px;
	width: 100%;
	height: 100%;
	background: rgba(246,139,31,0.9);
	position: absolute;
	left: 0;
	top: -100%;
	z-index: 2;
	transition: all 0.4s ease;
	opacity: 0;
}
.service .list ul li a h3{
	font-size: 24px;
}
.service .list ul li a p{
	line-height: 27px;
	margin: 25px 0 45px;
}
.service .list ul li a i{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid #fff;
	text-align: center;
	font-size: 12px;
	line-height: 38px;
}
.service .list ul li a:hover .title{
	bottom: -60px;
	opacity: 0;
}
.service .list ul li a:hover .content{
	top: 0;
	opacity: 1;
}

/*新闻资讯*/
.news{
	padding: 100px 0;
}
.news .list{
	margin-top: 50px;
}
.news .list ul{
	margin: -10px;
}
.news .list ul li{
	width: 50%;
	padding: 10px;
}
.news .list ul li a {
	padding: 20px;
	box-shadow: 0 0 60px 0 rgba(0,0,0,0.08);
}
.news .list ul li a .pic{
	width: 260px;
	height: 180px;
}
.news .list ul li a .content{
	width: calc(100% - 280px);
}
.news .list ul li a h3{
	font-size: 18px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient:vertical;
}
.news .list ul li a span{
	display: block;
	font-size: 14px;
	margin: 10px 0 20px;
}
.news .list ul li a p{
	font-size: 14px;
	line-height: 24px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient:vertical;
}
.news .list ul li a:hover{
	background: #f68b1f;
}
.news .list ul li a:hover h3,
.news .list ul li a:hover span,
.news .list ul li a:hover p{
	color: #fff;
}

/*合作伙伴*/
.partner{
	background: url(../images/partnerbg.jpg) no-repeat center;
	padding: 100px 0;
}
.partner .p_title h3{
	font-size: 48px;
	margin-bottom: 18px;
}
.partner .p_title h4{
	font-size: 24px;
}
.partner .list{
	margin-top: 50px;
}
.partner .list ul{
	margin: -5px;
}
.partner .list ul li{
	width: calc(100% / 7);
	padding: 5px;
}
.partner .list ul li img{
	border-radius: 8px;
}


@media only screen and (max-width: 1440px) {
	/*banner*/
	.banner .banbox dl dt{
		font-size: 50px;
	}
	.banner .banbox dl dd{
		font-size: 24px;
	}
	
	/*首页 栏目标题*/
	.sy-title h3 i{
		margin: 0 20px;
	}
	
	/*关于我们*/
	.about{
		padding: 80px 0;
	}
	.about .summary .content{
		padding: 60px 50px;
	}
	.about .summary .content h2{
		font-size: 28px;
	}
	.about .summary .content p{
		line-height: 26px;
		margin: 20px 0 40px;
	}
	.about .summary .content a{
		width: 120px;
		line-height: 46px;
	}
	.about .process li i{
		width: 90px;
		height: 90px;
	}
	.about .process li span{
		font-size: 16px;
		margin-top: 24px;
	}
	.about .process ul .line{
		width: 110px;
		margin: -40px 20px 0;
	}
	
	/*服务项目*/
	.service{
		padding: 80px 0;
	}
	.service .list ul{
		margin: 0 -10px;
	}
	.service .list ul li{
		padding: 0 10px;
	}
	.service .list ul li a .pic{
		height: 360px;
	}
	.service .list ul li a .title{
		font-size: 16px;
		line-height: 56px;
	}
	.service .list ul li a h3{
		font-size: 20px;
	}
	.service .list ul li a p{
		line-height: 24px;
		margin: 20px 0 40px;
	}
	
	/*新闻资讯*/
	.news{
		padding: 80px 0;
	}
	.news .list ul li a .pic{
		width: 220px;
		height: 160px;
	}
	.news .list ul li a .content{
		width: calc(100% - 240px);
	}
	.news .list ul li a p{
		-webkit-line-clamp: 2;
	}
	
	/*合作伙伴*/
	.partner{
		padding: 80px 0;
	}
	.partner .p_title h3{
		font-size: 42px;
		margin-bottom: 16px;
	}
	.partner .p_title h4{
		font-size: 20px;
	}

	.partner .list ul li img{
		border-radius: 4px;
	}
}

@media only screen and (max-width: 1200px) {
	/*banner*/
	.banner .banbox dl dt{
		font-size: 42px;
		margin-bottom: 16px;
	}
	.banner .banbox dl dd{
		font-size: 20px;
	}
	
	/*首页 栏目标题*/
	.sy-title span{
		font-size: 20px;
	}
	.sy-title h3{
		font-size: 32px;
	}

	/*关于我们*/
	.about{
		padding: 80px 0;
	}
	.about .summary {
	    margin: 40px 0 50px;
	}
	.about .summary .content{
		padding: 50px 40px;
	}
	.about .summary .content h2{
		font-size: 24px;
	}
	.about .summary .content p{
		line-height: 24px;
		margin: 20px 0 30px;
	}
	.about .summary .content a{
		width: 110px;
		line-height: 44px;
	}
	.about .process li span{
		font-size: 14px;
	}
	.about .process ul .line{
		width: 60px;
	}
	
	/*服务项目*/
	.service{
		padding: 70px 0;
	}
	.service .list {
	    margin-top: 40px;
	}
	.service .list ul{
		margin: -10px;
	}
	.service .list ul li{
		width: 50%;
		padding: 10px;
	}
	.service .list ul li a .pic{
		height: 320px;
	}
	
	/*新闻资讯*/
	.news{
		padding: 70px 0;
	}
	.news .list {
	    margin-top: 40px;
	}
	.news .list ul li a .pic{
		width: 180px;
		height: 120px;
	}
	.news .list ul li a .content{
		width: calc(100% - 200px);
	}
	.news .list ul li a h3 {
	    font-size: 14px;
	}
	.news .list ul li a span {
	    font-size: 12px;
	    margin: 10px 0 16px;
	}
	.news .list ul li a p{
		font-size: 12px;
    	line-height: 20px;
		-webkit-line-clamp: 2;
	}
	
	/*合作伙伴*/
	.partner{
		padding: 70px 0;
	}
	.partner .p_title h3{
		font-size: 36px;
		margin-bottom: 16px;
	}
	.partner .p_title h4{
		font-size: 18px;
	}
	.partner .list {
	    margin-top: 40px;
	}

}

@media only screen and (max-width: 767px) {
	/*banner*/
	.banner {
		margin-top: 60px;
	}
	.banner ul li {
	    max-height: 30vh;
	}
	.banner .banbox dl dt{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.banner .banbox dl dd{
		font-size: 12px;
	}
	
	/*首页 栏目标题*/
	.sy-title span{
		font-size: 18px;
	}
	.sy-title h3{
		font-size: 24px;
		margin-top: 10px;
	}
	.sy-title h3 i {
	    width: 20px;
	    height: 2px;
	    margin: 0 12px;
	}

	/*关于我们*/
	.about{
		padding: 50px 0;
	}
	.about .summary {
	    margin: 30px 0 0;
	}
	.about .summary .content{
		width: 100%;
		padding: 30px 20px;
	}
	.about .summary .content h2{
		font-size: 18px;
	}
	.about .summary .content p{
		margin: 12px 0 24px;
	}
	.about .summary .content a{
		width: 110px;
		line-height: 44px;
	}
	.about .process li span{
		font-size: 14px;
	}
	.about .process ul .line{
		width: 60px;
	}
	 .about .summary .pic{
	 	width: 100%;
	}
	.process{
	 	display: none;
	}
	
	/*服务项目*/
	.service{
		padding: 50px 0;
	}
	.service .list {
	    margin-top: 30px;
	}
	.service .list ul{
		margin: -6px;
	}
	.service .list ul li{
		width: 100%;
		padding: 6px;
	}
	.service .list ul li a .pic{
		height: 300px;
	}
	
	/*新闻资讯*/
	.news{
		padding: 50px 0;
	}
	.news .list {
	    margin-top: 30px;
	}
	.news .list ul {
	    margin: -6px 0;
	}
	.news .list ul li{
		width: 100%;
		padding: 6px 0;
	}
	.news .list ul li a{
		padding: 0;
	}
	.news .list ul li a .pic{
		width: 140px;
		height: 90px;
	}
	.news .list ul li a .content{
		width: calc(100% - 140px);
		padding: 0 16px;
	}
	.news .list ul li a h3 {
	    font-size: 14px;
	}
	.news .list ul li a span {
	    font-size: 12px;
	    margin: 10px 0 0;
	}
	.news .list ul li a p{
		display: none;
	}
	
	/*合作伙伴*/
	.partner{
		padding: 50px 0;
	}
	.partner .p_title h3{
		font-size: 28px;
		margin-bottom: 12px;
	}
	.partner .p_title h4{
		font-size: 14px;
	}
	.partner .list {
	    margin-top: 30px;
	}
	.partner .list ul {
		margin: -2px;
	}
	.partner .list ul li{
		width: calc(100% / 3);
		padding: 2px;
	}
}