/* 网上轮播 */

.slider-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-list {
    display: -webkit-box;
    width: 100%;
    height: 100%;
}

.slider-item {
    width: 100%;
    list-style: none;
}

.slider-item a {
    display: block;
}

.slider-item img {
    width: 100%;
}

.transitionable {
    -webkit-transition: all 0.3s ease-in-out;
}

.slider-page {
    width: 100%;
    position: absolute;
    bottom: 7px;
    text-align: right;
}

.slider-page ul {
    display: inline-block;
    text-align: right;
}

.slider-page ul li {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    margin: 0 5px;
    background: rgb(255, 255, 255);
}

.slider-page ul li.active {
    background: rgb(255, 242, 103);
}

.img-wrap {
    width: 100%;
    height: 100%;
}