@charset "utf-8";
/* CSS Document */
.left_div{
	width: 349px;
	height: 100%;
	margin: 0 auto;
}
.container{
	width: 349px;/*图片的宽*/
	height: 237px;/*高*/
	margin: 0 auto;
	overflow: hidden;/*超出部分隐藏*/
	position: relative;
}
.container .list{
	width: 2096px;/*五张图片的宽的总像素*/
	height: 100%;
	position: absolute;
}
.container img{/*图片的浮动和宽高*/
	float: left;
	width: 349px;
	height: 237px;
}
.container a{
	width: 60px;
	line-height: 60px;
	font-size: 45px;
	text-align: center;
	color: red;
	background: #C3C3C3;
	position: absolute;
	top: 40%;
	display: none;
	text-decoration: none;
}
.container a.prev{
	left: 0px;
}
.container a.next{
	right: 0px;
}
.container .buttons{
	position: absolute;
	bottom: 4px;
	right: 4px;
}
.container .buttons span{
	width: 23px;
	line-height: 23px;
	border-radius: 50%;/*圆形的效果*/
	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;/*手的图标出现*/
}