
/*banner*/
/*图片自适应*/


/*full-slider*/
#full-slider{
	width:100%;
	position: relative;/*定义一个参考点，用来定位按钮，小圆点*/
}


#full-slider ul{
	margin: 0px;
	padding: 0px;
}

/*img_list*/
.img_list{
	
	width:100%;
	position: relative;


}
.img_list ul{width: 100%;}
.img_list ul li{
	z-index:0;/*默认都为0，好显示一个默认图片*/
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
	
.img_list ul li img{
	max-width:1920px;
	width:100%;
	padding:0px;
	display: block;
}



/*小圆点*/
.item{
	z-index: 10;
	width: 25%;
	position: absolute;
    right: 0;
	bottom:10px;
}

.item ul{margin-left:15px;width:140px;}
.item ul li{width:16px;height: 16px;float: left;margin-right: 10px; list-style-type:none;}

.item ul li a{
	display:block;
	width: 12px;
	height: 12px;
	
	border:1px solid orange;
	text-align: center;
	line-height: 15px;
	color:#FFFFFF;
	text-decoration: none;
	
	border-radius: 50%; /*css3 圆角*/
	background:url(about:blank);/*解决空a 事件 ie7,8无效的问题*/
}

.item ul li a.active{
	background-color: orange;
}