#swipe_banner {
	width: 100%;
	margin: 0 auto;
}
#swipe_banner .bd {
	position: relative;
}
#swipe_banner .swipe {
	overflow: hidden;
	visibility: hidden;
	position: relative;
}
#swipe_banner .swipe-wrap {
	overflow: hidden;
	position: relative;
}
#swipe_banner .swipe-wrap .swipe-slide {
	float: left;
	width: 100%;
	position: relative;
}
/*next 按钮需要是可以将display:none;
 去掉*/
#swipe_banner .swipe-next {
	display: none;
	position: absolute;
	z-index: 3;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #fff;
	border: 1px solid #dfdfdf;
	right: 0;
	top: 0;
}
/*prev 按钮*/
#swipe_banner .swipe-prev {
	display: none;
	position: absolute;
	z-index: 3;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #fff;
	border: 1px solid #dfdfdf;
	left: 0;
	top: 0;
}
/*状态栏样式*/
#swipe_banner .swipe-navi {
	position: absolute;
	width: 100%;
	bottom: 12px;
	height: 10px;
	line-height: 0;
	padding: 5px 0;
	text-align: center;
}
#swipe_banner .swipe-navi li {
	display: inline-block;
	width: 12px;
	height: 12px;
	font-size: 0;
	line-height: 0;
	background: #343434;
	margin-right: 5px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}
/*当前状态样式*/
#swipe_banner .swipe-navi .on {
	background: #ec4f2d;
}