@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}

	70% {
		-webkit-transform: scale(.9);
	}

	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}

	70% {
		-moz-transform: scale(.9);
	}

	100% {
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}

	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}

	70% {
		-o-transform: scale(.9);
	}

	100% {
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

#et-slider-wrapper{
	position: relative;
	width: 100%;
	max-width: 1920px;
	height: 650px;
	margin: 0px auto;
	background-color: #1e1e1e;
	z-index: 99;
	overflow: hidden;
}

#et-slider-wrapper .w1300{
	position: absolute;
	top: 500px;
	left: 0px;
	width: 100%;
	height: 200px;
	text-align: center;
	overflow: hidden;
}

.mousedown{
	display: inline-block;
	position: relative;
	width: 36px;
	height: 200px;
	z-index: 100;
}

.mousedown b{
	display: block;
	position:absolute;
	top: 0px;
	left: 0px;
	width: 36px;
	height: 36px;
	background: url(b_icon.png);
	animation: mousedown 2s infinite;
	-moz-animation: mousedown 2s infinite;
	-webkit-animation: mousedown 2s infinite;
	-o-animation: mousedown 2s infinite;
}

@keyframes mousedown{
	0% {top:0px; opacity:0;}
	50%{top:50px; opacity:1;}
	100%{top:100px; opacity:0;}
}

.et-slide{
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.et-slide .description{
	width: 1300px;
	text-align: center;
	margin: 0px auto;
	padding-top: 185px;
	-webkit-animation-duration: .6s;
	-webkit-animation-delay: .4s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	-moz-animation-duration: .6s;
	-moz-animation-delay: .4s;
	-moz-animation-timing-function: ease;
	-moz-animation-fill-mode: both;
	-ms-animation-duration: .6s;
	-ms-animation-delay: .4s;
	-ms-animation-timing-function: ease;
	-ms-animation-fill-mode: both;
	animation-duration: .6s;
	animation-delay: .4s;
	animation-timing-function: ease;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;	
}
	
.description h2{
	color: #fff;
	font-size: 45px;
	line-height: 50px;
	font-weight: 400;
	letter-spacing: 4px;
	font-family: "Simhei","Microsoft yahei";
	text-shadow: 0px 3px 6px rgba(0,0,0,0.5);
}

.description h2 p{
	font-size: 65px;
	line-height: 120px;
	font-weight: 700;
	font-family: "Microsoft yahei";
	margin: auto;
}

.js .et-slide{ display: none;}
.js .et-slide:first-child{ display: block;}

.et-slider-arrows a{display: block;}
	

