@keyframes kenburnsDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

#banner {
	margin-top: 20px;
}

#banner .swiper-slide {
	position: relative;
}

#banner .swiper-slide .art {
	width: 30%;
	position: absolute;
	left: 5%;
	bottom: 5%;
	z-index: 10;
	color: #fff;
}

#banner .swiper-slide .art .title {
	font-size: 36px;
}

#banner .swiper-slide .art .desc {
	font-size: 16px;
}

#banner .swiper-slide a {
	display: block;
	width: 100%;
	height: auto;
	min-height: 100%;
	transition: 0s linear 0s;
}

#banner .swiper-slide-active a,
#banner .swiper-slide-duplicate-active a {}

#banner .swiper-slide-prev a {}

@media screen and (max-width: 1024px) {
	#banner {
		margin-top: 85px;
	}

	#banner .swiper-slide .art .title {
		font-size: 30px;
	}
}

@media screen and (max-width: 768px) {
	#banner .swiper-slide a {
		height: 400px;
		background-size: cover;
		background-position: 17% 50%;
	}
}

@media screen and (max-width: 640px) {
	#banner .swiper-slide .art {
		width: 40%;
	}

	#banner .swiper-slide .art .title {
		font-size: 26px;
	}

	#banner .swiper-slide a {
		height: 300px;
		background-size: cover;
		background-position: 34% 50%;
	}

}