img {
	border: 0;
}
.ck-slide-pic ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.ck-slide-pic{
	position: relative;
	overflow: hidden;
}
.ck-slide-pic ul.ck-slide-wrapper-pic {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	margin: 0;
	padding: 0;
}
.ck-slide-pic ul.ck-slide-wrapper-pic li {
	position: absolute; margin-top:0;
}
.ck-slide-pic ul.ck-slide-wrapper-pic li a{
	/*a标签是行内元素，宽高对a标签不起作用，这里必须添加line-height:0px;display:black，否则垂直滚动<li>之间会出现间隔*/
	line-height:0;
	display:block;
}
.ck-slide-pic .ck-prev-pic, .ck-slide-pic .ck-next-pic {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 35px;
	height: 70px;
	margin-top: -35px;
	border-radius: 3px;
	opacity: 0.3;
	background: red;
	text-indent: -9999px;
	background-repeat: no-repeat;
	transition: opacity .2s linear 0s;
}
.ck-slide-pic .ck-prev-pic {
	left: 5px;
	background: url(imagesarrow-left.png) #000 50% no-repeat;
}
.ck-slide-pic .ck-next-pic {
	right: 5px;
	background: url(imagesarrow-right.png) #000 50% no-repeat;
}



