
/* 横向滚动
------------------------------border-radius:6px;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	-o-border-radius:6px;
	-ms-border-radius:6px; */

.scroll_horizontal {
  position: relative;
  width:1250px;
  height:320px;
  padding:0px;box-sizing: border-box;
  margin:30px auto 30px auto;
}

.scroll_horizontal .box{overflow: hidden;position: relative;width:1110px;margin: 0 auto;}
.scroll_horizontal .list{overflow: hidden;width:9999px;}
.scroll_horizontal .list li{float: left;width:285px; height:320px;font-size:14px;line-height:40px;text-align: left;position: relative;}
.scroll_horizontal .list li .box{
	position:absolute;
	z-index:1;
	bottom:0px;
	width:255px;
	height:250px;
	transition:0.5s all;
	background-color: #FFF;
	box-sizing: border-box;
	border-radius:5px;
}
.scroll_horizontal .list li a:hover .box{background-color: #C30;height:300px;}
.scroll_horizontal .list li a:hover .bt{color:#fff;}
.scroll_horizontal .list li a:hover span{color:#fff; font-weight:bold;}
.scroll_horizontal .list li .bt{
	position:absolute;
	z-index:2;
	top:170px;
	width:255px;
	text-align:center;
	font-size:14px;
	line-height:1.5;
	color:#666;
}
.scroll_horizontal .list li span{
	line-height:40px;
	font-size:20px;
	color: #333;
}
.scroll_horizontal .list li a{ color: #666;}
.scroll_horizontal .list li img{width:155px;height:155px;border-radius:80px; margin:auto;position: absolute; left:50px;z-index:2;border:0px solid #efefef;}
.scroll_horizontal .prev, .scroll_horizontal .next {
  position: absolute;
  top: 50%;
  margin:-25px 0 0 0;
  width: 40px;
  height: 50px;
  background: url(../images/control.png)  no-repeat center center;
  background-repeat: no-repeat;
  font: 0/0 Arial;
  cursor: pointer;
}
.scroll_horizontal .prev{left:0px;background-position: 0 0;border-radius:5px 0 0 5px;}
.scroll_horizontal .next{right:0px;background-position: -40px 0;border-radius:0 5px 5px 0;}
.scroll_horizontal .prev:hover{ background-position: 0 -50px; background-color: #d2530e; }
.scroll_horizontal .next:hover{ background-position: -40px -50px;background-color: #d2530e; }