.picSlider{
	width: 100%;
	height: 100%;
	position: relative;
}
.picSlider-wrap{
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
}
.picSlider-wrap > li{
	position: absolute;
	display: inline-block;
	list-style: none;
	width: 100%;
	height: 100%;
	text-align: center;
}
.picDot-wrap{
	width: 100%;
	position: absolute;
	bottom: 24px;
	text-align: center;
}
.picDot-wrap > li{
	display: inline-block;
	width: 12px;
	height: 12px;
	background-color: #999;
	border-radius: 6px;
	margin-right: 4px;
	transition:background-color 1s;
	cursor: pointer;
}
.picDot-wrap > .on{
	background-color: #fff;
}
