@charset "utf-8";
/* CSS Document */

.left_div{
	width: 960px;
	height: 410;
	margin: 0 auto;
}
.container{
	width: 960px;/*图片的宽*/
	height: 410px;/*高*/
	margin: 1 auto;
	overflow: hidden;/*超出部分隐藏*/
	position: relative;
}
.container .list{
	width: 6720px;/*五张图片的宽的总像素+2=*7*/
	height: 410px;
	position: absolute;
	visibility: visible;
}
.container img{/*图片的浮动和宽高*/
	float: center;
	width: 956.5px;
	height: 410px;
}
.container a{
	width: 60px;
	line-height: 60px;
	font-size: 47px;
	text-align: left;
	color: red;
	background: #C3C3C3;
	position: absolute;
	top: 40%;
	display: none;
	text-decoration: none;
	visibility: visible;
}
.container a.prev{
	left: 0px;
}
.container a.next{
	right: 0px;
}
.container .buttons{
	position: absolute;
	bottom: 8px;
	right: 27px;
}
.container .buttons span{
	width: 10px; /* 小圆点*/
	line-height: 10px;
	border-radius: 70%;/*圆形的效果*/
	float: left;
	text-align: center;
	background: #c3c3c3;
	margin-left: 8px;
	font-size: 18px;
	color: red;
}
.container .buttons span.on{
	color: green;/*发生移动的图片 伪类on 颜色发生改变*/
	background-color: #8D7D7D;
}
.container:hover a{
	display: block;
}
.left_div .list img{
	cursor: pointer;
}
.left_div .buttons span{
	cursor: pointer;/*手的图标出现*/
}

.container {
      
      box-shadow: 0 0 5px blue;
      
    }
