/**
 * Swiper模块
 * @file swiper.css
 */
.mod-swiper{
    position: relative;
    margin: 0 auto;
}
.mod-swiper-body{
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.mod-swiper-item{
    position: absolute;
    overflow: hidden;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    top: 0;
}
.mod-swiper-item.current{
    z-index: 9
}
.mod-swiper-item.maybe{
    z-index: 5;
}
.mod-swiper-item.impossible{
    display: none!important;
    z-index: 1;
}
.mod-swiper-subject{
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.mod-swiper-desc{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 5px 3px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
}
.mod-swiper-control{
    position: absolute;
    z-index: 2;
    width: 18px;
    height: 42px;
    font-size: 18px;
}
.mod-swiper-footer{
    position: relative;
    width: 100%;
    min-height: 24px;
    z-index: 3;
}
.mod-swiper-dots{
    list-style: none;
    width: 100%;
    min-height: 24px;
}
.mod-swiper-dots li{
    width: 8px;
    height: 8px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    margin-right: 5px;
    background-color: rgba(221, 221, 221, 0.45);
    cursor: pointer;
}
.mod-swiper-dots li.on{
    background-color: #333;
    border: 1px solid #666;
}
.mod-swiper-dots li:last-child{
    margin-right: 0;
}
/*********************************/
.mod-swiper.dots-float-none .mod-swiper-footer{
    display: none;
}
.mod-swiper.dots-float-bottom .mod-swiper-footer,
.mod-swiper.dots-float-right .mod-swiper-footer{
    position: absolute;
    left: 0;
    bottom: 0;
}
.mod-swiper.dots-float-right .mod-swiper-dots{
           -webkit-box-pack: end;
              -ms-flex-pack: end;
        -ms-justify-content: flex-end;
       -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end; 
}
.mod-swiper.dots-float-right .mod-swiper-dots li:last-child{
    margin-right: 5px;
}
.mod-swiper.goto-after .mod-swiper-item,
.mod-swiper.goto-before .mod-swiper-item{
    /*animation: name duration timing-function delay iteration-count direction;*/
    /*running | paused*/
    -webkit-animation-play-state: running;
       -moz-animation-play-state: running;
        -ms-animation-play-state: running;
            animation-play-state: running;
    /*none | forwards | backwards | both*/        
    /*-webkit-animation-fill-mode: both; 
       -moz-animation-fill-mode: both;
        -ms-animation-fill-mode: both;
            animation-fill-mode: both; */
    -webkit-animation-duration: 1s;
       -moz-animation-duration: 1s;
        -ms-animation-duration: 1s;
            animation-duration: 1s; 
    -webkit-animation-timing-function: ease;
       -moz-animation-timing-function: ease;
        -ms-animation-timing-function: ease;
            animation-timing-function: ease;
    -webkit-animation-delay: 0s;
       -moz-animation-delay: 0s;
        -ms-animation-delay: 0s;
            animation-delay: 0s; 
    -webkit-animation-iteration-count: 1;
       -moz-animation-iteration-count: 1;
        -ms-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-direction: normal;
       -moz-animation-direction: normal;
        -ms-animation-direction: normal;
            animation-direction: normal;
}

/***********************************/




