@charset "gb2312";
/* CSS Document */

.banner {
	position: relative;
	width: 100% ;
	overflow: auto;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	color: rgba(255,255,255,.6);
	text-shadow: 0 0 1px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.3);
	background: #ffffff;
	box-shadow: 0 1px 2px rgba(0,0,0,.25);
	margin: auto;
	cursor:pointer;
	padding-top:150px;
}
.banner ul {
	list-style: none;
	width: 300%;
}
.banner ul li {
	display: block;
	float: left;
	width: 33%;
	/* min-height: 350px; */
	min-height: 422px;
	-o-background-size: 100% 100%;
	-ms-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	box-shadow: inset 0 -3px 6px rgba(0,0,0,.1);
}
.banner .dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	width: 100%;
}
.banner .dots li {
	display: inline-block;
	*display: inline;
	zoom: 1;	
	width: 10px;
	height: 10px;
	line-height: 10px;
	margin: 0 4px;
	
	text-indent: -999em;
	*text-indent: 0;
	
	border: 2px solid #fff;
	border-radius: 6px;
	
	cursor: pointer;
	opacity: .4;
	
	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
}
.banner .dots li.active {
	background: #fff;
	opacity: 1;
}