/*轮播图样式*/


/*banner的长宽根据图片大小设置*/

.banner {
    position: relative;
    top: 0;
    width: 100%;
}

.move ul,
.move ul li {
    position: absolute;
}

.ctrl {
    position: absolute;
    width: 100%;
    bottom: -30px;
    text-align: center;
}

.ctrl .libs {
    display: inline-block;
    margin-left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #333;
    z-index: 50;
    cursor: pointer;
    display: none;
}

.ctrl span.active {
    background-color: #fff;
}

.ctrl .arrow {
    display: block;
    position: absolute;
    width: 75px;
    height: 75px;
    top: 50%;
    margin-top: -30px;
    background-color: #333;
    cursor: pointer;
    font: 30px/58px "宋体";
    opacity: .5;
    color: #fff;
    text-align: center;
    line-height: 75px;
}

.ctrl .next {
    top: -140px;
    right:50px;
    background: #000;
    color: #fff;
}

.ctrl .prev {
    top: -140px;
    right:125px;
    background: #fff;
    color: #000;
}

.ctrl .arrow:hover {
    opacity: 1;
}
