@charset "utf-8";
/* banner 目录*/
/*1.PC平台样式*/
/*2.其他平台样式(媒体查询)*/
/*3.CSS3动画*/
/*banner 公用*/
//added by Aimee

@-webkit-keyframes scaleSlow {

	0% {
		opacity: 1;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		transition: all 5s;
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1.05, 1.05);
		transform: scale(1.05, 1.05);
		transition: all 5s;
	}

}


@keyframes scaleSlow {

	0% {
		opacity: 0;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		transition: all 5s;
	}



	100% {
		opacity: 1;
		-webkit-transform: scale(1.05, 1.05);
		transform: scale(1.05, 1.05);
		transition: all 5s;
	}

}



.scaleSlow {
	-webkit-animation-name: scaleSlow;
	animation-name: scaleSlow;
}

.bgPlay {
	/* 设置默认样式，开启3d硬件加速 */
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	/* 设置动画，animation:动画名称 动画播放时长单位秒或微秒 动画播放的速度曲线linear为匀速 动画播放次数infinite为循环播放; */
	-webkit-animation: play 3s linear infinite;
	-moz-animation: play 3s linear infinite;
	animation: play 3s linear infinite;
}

@-webkit-keyframes play {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes play {
	0% {
		-moz-transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(360deg);
	}
}

@keyframes play {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


.index_banner .swiper-button-next,
.index_banner .swiper-button-prev {
	background-color: #333;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	left: 50px;
	opacity: 0;
	transition: all 0.3s;
}

.index_banner .swiper-button-next {
	left: auto;
	right: 50px;
}

.index_banner_container:hover .swiper-button-next,
.index_banner_container:hover .swiper-button-prev {
	opacity: 0.5;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
}

.index_banner {
	width: 100%;
	height: 700px;
	position: relative;
}



.index_banner_container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.index_banner_container .swiper-slide {
	position: relative;
}

.index_banner_container .swiper-slide a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.flipy {
	-moz-transform: scaleY(-1);
	-webkit-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	transform: scaleY(-1);
	/*IE*/
	filter: FlipV;
}

.index_banner .text {
	color: #FFFFFF;
	text-align: left;
}

.index_banner .text h2 {
	font-size: 48px;
	font-weight: bold;
	text-shadow: 1px 0 4px rgba(0, 0, 0, 0.3);
	line-height: 1;
	margin-bottom: 20px;
}

.index_banner .text h3 {
	font-size: 24px;
}

.btn-more {
	font-size: 15px;
	padding: 0 15px 0 20px;
	height: 40px;
	line-height: 40px;
	border-radius: 5px;
	margin-top: 50px;
	text-align: center;
	display: block;
	float: left;
	color: #FFFFFF;
	background-color: #E2211C;
	position: relative;
}

.btn-more:hover {
	color: #FFFFFF;
	background-color: #c61b18;
}

.btn-ty {
	margin-left: 30px;
}

.image-1 {
	position: absolute;
	left: 0;
	bottom: 0;
	
}
.image-1 img {
	width: 80%;
}


.image-2 {
	position: absolute;
	right: 10%;
	bottom: 30%;
}
