@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 {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-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-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 50px;
} 
.index_banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 6px;
}

.index_banner .swiper-pagination-bullet {
	width: 50px;
	height: 8px;
	border: 1px solid #fff;
	margin-right:30px;
	border-radius: 0;
	background: none;
}
.index_banner .swiper-pagination-bullet-active {
    background-color: #fff;
}

.index_banner .swiper-button-next,
.index_banner .swiper-button-prev {
	border: 1px solid #fff;
	color: #fff;
	background: none;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	right: 80px;
	left: auto !important;
	opacity: 1;
	transition: all 0.3s;
	position: absolute;
}

.index_banner .swiper-button-next:hover,
.index_banner .swiper-button-prev:hover {
    border-color: #05a2c9;
    color: #05a2c9;
}

.index_banner .swiper-button-next {
	left: auto;
	right: 20px;
}


.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px;
}

.index_banner {
	width: 100%;
	height: 100vh;
	position: relative;
}

.index_banner_container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.index_banner_container .swiper-slide {
	text-align: center;
	font-size: 14px;
	background: #EEEEEE;
	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;
}

.index_banner_container .swiper-slide .container {
	margin-top: 50px;
}

.flipy {
	-moz-transform: scaleY(-1);
	-webkit-transform: scaleY(-1);
	-o-transform: scaleY(-1);
	transform: scaleY(-1);
	/*IE*/
	filter: FlipV;
}

.index_banner .text {
    text-align: left;
}

.index_banner .text h2 {
	font-size: 48px;
	font-weight: bold;
	line-height: 1;
}

.index_banner .text h3 {
	font-size: 26px;
	padding: 45px 0;
}

.index_banner .text p {
	color: #666666;
}

.banner_fnav {
    bottom: 40px;
    height: 50px;
    position: absolute;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}

a.btn-more {
	font-size: 16px;
	padding: 12px 25px;
	margin: 55px 40px 0 0;
	border-radius: 10px;
	display: inline-block;
	color: #FFFFFF;
	transition: all 0.3s;
	background-image: linear-gradient(150deg, #00c78b 38%, #05a2c9 100%);
}

a.btn-more:hover {
	color: #FFFFFF;
	background-image: linear-gradient(150deg, #00c78b 38%, #0584f8 100%);
}

a.btn-more2 {
	color: #05a2c9;
	background: no-repeat;
	border: 1px solid #05a2c9;
}

.navbg-open {
	background-color: #FFFFFF;
	height: 0;
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
}

.index_banner1 .navbg-open {
	height: 80px; width: 100%;	
}

.index_banner1,.index_banner1 .text p {
	color: #FFFFFF;
}

.index_banner1 a.btn-more2 {
	color: #FFFFFF;
	border-color: #FFFFFF;
}

.index_banner1 a.btn-more2:hover {
	border: 1px solid #05a2c9;
}