@charset "utf-8";
/* CSS Document */

#certify {
	position: relative;
	width: 1200px;
	margin: 0 auto
}
@media screen and (max-width: 1200px) {
	#certify {
		width: 100%;
	}
}
#certify .swiper-container {
	padding-bottom: 60px;
}

#certify  .swiper-slide {
	width: 600px;
	height: 380px;
	background: #fff;

}
#certify  .swiper-slide-active {
	box-shadow: 0 8px 15px 0px #ddd;
}
#certify  .swiper-slide img{
	display:block;
	width: 100%;
	height: 100%;
}
#certify  .swiper-slide p {
	display: none;
}
#certify  .swiper-slide-active p {
	display: block;
	line-height: 50px;
	padding-top: 0;
	text-align: center;
	color: #636363;
	font-size: 1.1em;
	margin: 0;
	background: #f1f0f0;
	height: 100%;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: block;
	width: 60px;
	height: 60px;
	margin-top: -80px;
	line-height: 60px;
	text-align: center;
	font-size: 28px;
	cursor: pointer;
	background-color: rgba(0, 0, 0, .5);
	background-size: 24px auto;
	color: #fff;
	opacity: 0;
	transition: all .3s;
}

.swiper-button-prev .iconfont,
.swiper-button-next .iconfont {
	font-size: 28px;
	font-weight: normal;
	color: #FFFFFF;
	display: block;
}


.swiper-button-prev {
	transform: translate(-50px, 0);
	left: 0;
	background-image: none;
}
#certify:hover .swiper-button-prev,
#certify:hover .swiper-button-next{
	opacity: 1;
	transform: translate(0, 0);
}

.swiper-button-next {
	transform: translate(50px, 0);
	right: 0;
	background-image: none;
}



