



.banner_small{
	width: 495px;
	height: 331px;
	/*background: black;*/

	/*子绝对定位 父相对定位*/
	position: relative;

	/*超出部分全部隐藏，解决横向滚动条*/
	overflow: hidden;
}

.banner_small .mask_layer{
    width:100%;
	height:50px;
	line-height:50px;
	position:absolute;
	bottom:0;
	background-color:#000000;
    filter:alpha(opacity=50);
    opacity: 0.5;
	z-index:100;
}

.banner_small .n_title{
    width:420px;
	height:50px;
	line-height:50px;

	margin-left:9px;
	color:#ffffff;
	position:absolute;
	bottom:0;
	font-size:16px;
	z-index:200;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner_small ul{
	position: absolute;
}

.banner_small ul li{
	/*这个100%是相对于父盒子的（会把父盒子的宽度继承过来,如父盒子300%,这这里的100%就会相当于300%）*/
	width: 100%;

	/*height: 560px;*/
	height: 100%;

	float: left;
	background:  no-repeat center center;
	overflow:hidden;
}





/*.banner_small ul li:nth-child(1){*/
	/*background: url('./1.jpg') no-repeat center center;*/
/*}*/
/*.banner_small ul li:nth-child(2){*/
	/*background: url('./2.jpg') no-repeat center center;*/
/*}*/
/*.banner_small ul li:nth-child(3){*/
	/*background: url('./3.jpg') no-repeat center center;*/
/*}*/

.banner_small ol{
	/*width: 60px;
	height: 20px;*/
	/*background: rgba(0,0,0,0.5);*/
	position: absolute;
	right:5px;
	bottom:4px;
	z-index:10000;

	/*margin-left: -40px;
	padding: 0 10px;
	border-radius: 10px;*/
}

.banner_small ol li{
	width: 10px;
	height: 10px;
	float: left;
	margin: 15px 5px;
	cursor: pointer;
	color:#ffffff;
	text-align:center;
	border-radius:5px;

	background: #ffffff;
}

.banner_small ol .current{
	background: #e8232e;
}

.banner_small i{
	/*width: 49px;
	height: 120px;*/
    width:49px;
	height:92px;
	position: absolute;
	top: 50%;
	margin-top: -46px;
	cursor: pointer;
	border-radius: 5px;
	display: none;
}

.banner_small .left{
	left: 55px;
	background: url('../../images/img_8.png') no-repeat 0px 0px;
	/*background-color: rgba(0, 0, 0, 0.31);*/
	border-top-left-radius:8px;
	border-bottom-left-radius:8px;
}

.banner_small .right{
	right: 55px;
	background: url('../../images/img_9.png') no-repeat 0px 0px;
	/*background-color: rgba(0, 0, 0, 0.31);*/
	border-top-right-radius:8px;
	border-bottom-right-radius:8px;
}

.banner_small .left:hover ,
.banner_small .right:hover{
	background-color: rgba(0, 0, 0, 0.31);
}



/* ------------------------------ */
.banner_small ul li img{
    width:100%;
}