body{
	background: url(../images/about-bg-img.png) repeat !important;
}
.banner-img-wrap {
	position: relative;
}

.banner-img {
	/*min-height: 160px;
	max-height: 796px;
	min-width: 320px;*/
}

.banner-txt {
	position: absolute;
	top: 30%;
	right: 18%;
	z-index: 100;
}

.banner-txt p {
	font-size: 5em;
	color: #fff;
	line-height: 80px;
	text-transform: capitalize;
	font-weight: bold;
	letter-spacing: 8px;
}

.china-txt {
	font-size: 3.125em;
}

.slow-icon {
	animation: moveing 2s ease-out infinite;
	-webkit-animation: moveing 2s ease-out infinite;
	-moz-animation: moveing 2s ease-out infinite;
	-ms-animation: moveing 2s ease-out infinite;
	cursor: pointer;
}
.slow-icon:hover{
	width:70px;
	height: 70px;
}
@media (min-width:1000px) and (max-width:1200px) {
	.banner-txt {
		right: 8%;
	}
	.banner-txt p {
		font-size: 4em;
		line-height: 60px;
	}
	.china-txt {
		font-size: 2.125em;
	}
}
@media (min-width:800px) and (max-width:999px) {
	.banner-txt {
		right: 8%;
	}
	.banner-txt p {
		font-size: 3.5em;
		line-height: 54px;
	}
	.china-txt {
		font-size: 1.65em;
	}
}
@media(max-width:799px) {
	.banner-txt {
		right: 8%;
	}
	.banner-txt p {
		font-size: 3.2em;
		line-height: 50px;
	}
	.china-txt {
		font-size: 2em;
	}
	.slow-icon {
		display: none;
	}
}
@media(max-width:630px) {
	.banner-txt {
		right: 8%;
		top: 24%;
	}
	.banner-txt p {
		font-size: 2.6em;
		line-height: 40px;
	}
	.china-txt {
		font-size: 1.6em;
	}

}
@media(max-width:414px) {
	.banner-txt {
		right: 8%;
		top: 60%;
	}
	.banner-txt p {
		display: none;
	}
	.china-txt {
		font-size: 1.2em;
	}

}




@keyframes moveing {
	0% {
		transform: translateY(30px);
	}
	100% {
		transform: translateY(0px);
	}
}

@-moz-keyframes moveing {
	0% {
		-moz-transform: translateY(30px);
	}
	100% {
		-moz-transform: translateY(0px);
	}
}
/*banner-icon动画*/
@-ms-keyframes moveing {
	0% {
		-ms-transform: translateY(30px);
	}
	100% {
		-ms-transform: translateY(0px);
	}
}

@-webkit-keyframes moveing {
	0% {
		-webkit-transform: translateY(0px);
	}
	100% {
		-webkit-transform: translateY(30px);
	}
}