/* 横向滚动
------------------------------ */
.scroll_horizontal {
	position: relative;
	width: 1170px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
	
}

.scroll_horizontal .box {
	overflow: hidden;
	position: relative;
	width: 1170px;
	height: auto;
	margin: 0 auto;
	overflow: hidden;
}

.scroll_horizontal .list {
	padding-left: 0px;
	overflow: hidden;
	width: 9999px;
}

.scroll_horizontal .list li {
	float: left;
	width: 295px;
	position: relative;
}
.scroll_horizontal .list li p{
	position: absolute;
	left: 70px;
	top: 120px;
	width: 140px;
	height: 55px;
	line-height: 55px;
	color: #fff;
	background: rgba(0,0,0,.3);
	font-size: 20px;
	text-align: center;
	border: 1px solid #fff;
	border-radius: 50px;

}
.scroll_horizontal .prev,
.scroll_horizontal .next {
	position: absolute;
	top: 45%;
	width: 45px;
	height: 45px;
	cursor: pointer;
	z-index: 2;
}

.scroll_horizontal .prev {
	left: 270px;
	background: url(../images/left.png)no-repeat 0px 0px;
}

.scroll_horizontal .next {
	right: 265px;
	background: url(../images/right.png)no-repeat 0px 0px;}
 
