/*===================
    carouselLiist-css
======================*/


.carousel {
    width: 693px;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.carousel > ul {
    /*width: 999999999px;*/
    height: 280px;
    position: absolute;
    top:0;
    left: 0;
}

.carousel > ul > li  {
    float: left;
    height: 280px;
}

.carousel > ul > li > a {
    display: block;
    font-size: 200px;
    text-align: center;
    line-height: 280px;
    font-weight: bold;
}
.carousel > ul > li > a >img {
    height: 280px;
	width: 100%;
}

.left-btn,.right-btn {
    width: 61px;
    height: 61px;
    position: absolute;
    top: 45%;
    right: 30px;
    background: url("../img/right-1.png");
    cursor: pointer;
}

.left-btn {
    left: 30px;
    background: url("../img/left-1.png");
}

.img-btn-list {
    /*width: 100%;*/
    position: absolute;
    bottom: 10px;
    right: 0;
	margin-right:100px;
	display:block;
	background: rgba(218,218,218,0.5);
	border-radius:8px;
	padding:5px;
    text-align: center;
}

.img-btn-list > span  {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ffffff;
    cursor: pointer;
	border-radius:50%;
}

.img-btn-list > span.current {
    border-bottom: 3px solid #084ff;
    background: #4283c5;
}








