﻿.banner{
	height: 30vw;
	display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.banner .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.banner .swiper-button-prev i,
.banner .swiper-button-next i{
	color: #fff;
	font-size: 40px;
	margin: 0 auto;
	opacity: 0.5;
	/*transform: scaleY(1.2);*/
}
.banner .swiper-button-prev:hover i,
.banner .swiper-button-next:hover i{
	opacity: 1;
}
.banner .swiper-button-prev{
	display: none;
	align-items: center;
	text-align: center;
	width: 15%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	margin: 0;
	background: -webkit-linear-gradient(left, rgba(0,0,0,0.5), rgba(0,0,0,0));
}
.banner .swiper-button-next{
	display: none;
	align-items: center;
	text-align: center;
	width: 15%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	background: -webkit-linear-gradient(right, rgba(0,0,0,0.5), rgba(0,0,0,0));
}
.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next{
	display: flex;
}
.banner .swiper-pagination-bullet-active{
	background: #000;
}
.more{
	margin-top: 40px;
	text-align: center;
}
.more a{
	margin: 0 auto;
	width: 150px;
	display: block;
	padding: 10px;
	border-color: #666;
	background: none;
	transition: all 0.3s linear 0s;
}
.more a:hover{
	color: #fff;
	border-color: #22a7d9;
	background: #22a7d9;
}
/*业务*/

.hm-business{
	padding-bottom: 30px;
}
.business-item{
	margin-bottom: 30px;
}
@media (max-width: 767px){
.business-item{
	margin-bottom: 10px;
}
}
.business-intro{
	display: block;
	position: relative;
	transition: all 0.5s linear 0s;
}
.business-intro:hover{
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
}
.business-intro_pic{
	overflow: hidden;
}
.business-intro_pic img{
	width:100%;
	transition: all 200ms ease 0s;
}
.business-intro_title{
	font-size: 22px;
	padding: 40px 20px 15px 20px;
        text-align: center;
}
.business-intro p{
	color: #888;
	font-size: 14px;
	line-height: 1.5;
	padding: 0 20px 30px 20px;
}

@media (min-width:768px ) {

	
	/*业务*/
	.hm-business{
		padding-bottom: 50px;
	}
	.business-intro:hover .business-intro_pic img{
		transform: scale(1.1);
	}
	.business-intro:after{
		display: block;
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		height: 3px;
		width: 0;
		background: #22a7d9;
		transition: all 1s ease 0s;
	}
	.business-intro:hover:after{
		width: 100%;
	}
	.business-intro_pic{
		height: 260px;
	}
	.business-intro p{
		height: 95px;
                overflow: hidden;
	}
}



/**/
.hm-solution{
	background-size: cover;	
	padding-bottom: 60px;
}
.solution-swiper{
	/*height: 750px;*/
	padding: 20px 0;
}
.solution-swiper  .swiper-slide {
	width: 570px;
	/*height: 680px;*/
	padding-bottom: 30px;
	text-align: center;
	background: #fff;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.2);
}
.solution-swiper  .swiper-slide img{
	display:block;
}
.solution-swiper .swiper-pagination {
	width: 100%;
	bottom: 20px;
	display: none;
}
.solution-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

.solution-swiper  .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #00aadc;
	background-color: #fff;
}

.solution-swiper .swiper-button-prev {
	left: -30px;
	width: 45px;
	height: 45px;
	background: url(../images/wm_button_icon.png) no-repeat;
	background-position: 0 0;
	background-size: 100%;
}

.solution-swiper  .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}

.solution-swiper .swiper-button-next {
	right: -30px;
	width: 45px;
	height: 45px;
	background: url(../images/wm_button_icon.png) no-repeat;
	background-position: 0 -93px;
	background-size: 100%;
}

.solution-swiper  .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}

.solution_pic{
	margin-bottom: 40px;
	height: 230px;
	overflow: hidden;
}

.solution_pic img{
	width: 100%;
        padding:3px;
}

.solution_title{
    color: #22a7d9;
    font-size: 24px;
    margin: 20px 0;
    font-weight: 400;
}
.solution_sub-title{
   	color: #22a7d9;
   	opacity: 0.6;
   	font-size: 16px;
   	display: none;
}
.solution_text{
	color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    margin: 40px 30px;
    line-height: 1.5;
    text-align: left;
}
.solution_link{
	color: #22a7d9;
	font-size: 14px;
}
.solution_link .fa{
	margin-left: 5px;
}
@media (min-width: 768px){
	.solution_pic{
		margin-bottom: 40px;
		height: 319px;
		overflow: hidden;
	}
}

/*优势*/
.advantage-list{
	padding: 30px 0;
	display: flex;
	flex-flow: wrap;
}
.advantage-item{
	/*flex: 1;*/
	float: none;
	overflow: hidden;
	margin-bottom: 50px;
}
.advantage-item_icon{
	text-align: center;
	padding-bottom: 40px;
	overflow: hidden;
}
.advantage-item_icon img{
	height: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.advantage-item_title {
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.advantage-item_title:after{
   display: block;
   content: "";
   position: absolute;
   left: 0;
   bottom: -1px;
   height: 2px;
   width: 0;
   background: #22a7d9;
   transition: all 0.5s linear 0s;
}
.advantage-item:hover .advantage-item_title{
	color: #555;
        font-weight:600;
}
.advantage-item:hover .advantage-item_title:after{
   width: 100%;
}
.advantage-item_text {
	display: block;
    color: #999;
    font-size: 14px;
    padding-bottom: 5px;
}
@media (min-width: 768px) {
	.advantage-item_title {
    text-align: center;
	}
	.advantage-item_text {

	}
}
/*新闻*/
.hm-news{
	background: #f9f9f9;
	padding-bottom: 30px;
}
.hm-news .section-head h2{
	color: #333;
}

.news-list{
	display: flex;
	flex-flow: wrap;
	position: relative;
}
.news-item{
	padding: 15px;
	position: relative;
	margin-bottom: 35px;
	transition: all 0.3s linear 0s;
}
.news-item:hover{
	box-shadow: 0px 5px 15px 0 rgba(0,0,0,0.2);
}
.news-item_title{
	color: #333;
	font-size: 18px;
	padding-bottom: 0.5rem;
	line-height: 1.5;
}
.news-item_title:hover{
	color: #22a7d9;
}
.news-item_desc{
	font-size: 14px;
	line-height: 1.6;
	color: #888;
	margin: 10px 0 5px 0;
}
.news-item_date{
	font-size: 14px;
	color: #999;
}
@media (min-width:768px ) {
	.hm-news{
		padding-top: 60px;
		padding-bottom: 100px;
	}
}