<style type="text/css">
* {
	margin:0;
	padding:0;
	list-style-type:none;
}
.banner {
	overflow:hidden;
	height:70px;
	position:relative;
}
.banList {
	position:absolute;
	height:70px
}
.banList li {
	height:70px;
	opacity:0;
	position:absolute;
	transform:scale(0);
	transition:leave 0.5s ease 0s, opacity 1.5s ease 0s;
	z-index:1;
}  /*fade�� tinker��leave blank*/
.banList li.active {
	opacity:1;
	transform:scale(1);
	z-index:2;
}
.fomW {
	position:absolute;
	bottom:5px;
	z-index:9;
	width:130px;
	right:0px;
}
.jsNav {
	text-align:center;
}
.jsNav a {
	display:inline-block;
	background:#fff;
	width:5px;
	height:5px;
	border-radius:50%;
	margin:0 5px;
}
.jsNav a.current {
	background:#fc8f0f;
	cursor:pointer
}
</style>