/**
 * vmc.slide 图片轮播JQuery插件 v2.0.0
 * 维米客网页工作室 vomoc.com
 * https://github.com/vomoc/vmc.slide
 * vomoc@qq.com
 * 2017/03/20
 **/

.vui-slide-mimic {
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

.vui-slide-scene {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
}

.vui-slide-scene > img {
    height: 100%;
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}

.vui-slide-transfer {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.vui-slide-transfer .vui-slide-grid {
    overflow: hidden;
    position: absolute;
    background-repeat: no-repeat;
}

.vui-slide-transfer .vui-slide-grid img {
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}

.vui-slide-handle-buttons {
    position: absolute;
    bottom: 3%;
    left: 0;
    z-index: 30;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 0;
}

.vui-slide-handle-buttons .vui-slide-handle-button {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: #fff;
    margin: 0 5px;
    cursor: pointer;
    -webkit-box-shadow: #666 0px 0px 6px;
    -moz-box-shadow: #666 0px 0px 6px;
    box-shadow: #666 0px 0px 6px;
}

.vui-slide-handle-buttons .active {
    background-color: #CC0000;
}

.vui-slide-side-buttons {
    z-index: 30;
    position: absolute;
    top: 50%;
    left: 0;
    height: 0;
    width: 100%;
}

.vui-slide-side-buttons .vui-slide-side-button {
    position: absolute;
    top: -60px;
    height: 120px;
    width: 60px;
    background: transparent no-repeat center center;
    background-size: contain;
    cursor: pointer;
}

.vui-slide-side-buttons .next {
    right: 0;
    border-radius: 20px 0 0 20px;
    background-image: url("next.gif");
}

.vui-slide-side-buttons .prev {
    left: 0;
    border-radius: 0 20px 20px 0;
    background-image: url("prev.gif");
}

.vui-slide-side-buttons .hover {
    background-color: #000;
    filter: alpha(Opacity=40);
    -moz-opacity: 0.4;
    opacity: 0.4;
}

.vui-slide-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    height: 20%;
    background: #000;
    filter: alpha(Opacity=30);
    -moz-opacity: 0.3;
    opacity: 0.3;
}

.vui-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 25;
    width: 100%;
    height: 20%;
    overflow: hidden;
}

.vui-slide-text .text {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.vui-slide-text a {
    text-decoration: none;
    color: #ffffff;
}
