/*
 * swiper 2.7.0
*/
* {
    margin: 0;
    padding: 0;
}
.swiper-container {
    /*焦点图宽高*/
    width: 580px;
    height: 360px;
    margin: 0 auto;
    margin-top:30px;
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    /* fix of webkit flickering */
    z-index: 1;
}

.swiper-container img{
    width: 580px;
    height: 360px;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    -webkit-transition-property: -webkit-transform, left, top;
    -webkit-transition-duration: 0s;
    -webkit-transform: translate3d(0px, 0, 0);
    -webkit-transition-timing-function: ease;

    -moz-transition-property: -moz-transform, left, top;
    -moz-transition-duration: 0s;
    -moz-transform: translate3d(0px, 0, 0);
    -moz-transition-timing-function: ease;

    -o-transition-property: -o-transform, left, top;
    -o-transition-duration: 0s;
    -o-transform: translate3d(0px, 0, 0);
    -o-transition-timing-function: ease;
    -o-transform: translate(0px, 0px);

    -ms-transition-property: -ms-transform, left, top;
    -ms-transition-duration: 0s;
    -ms-transform: translate3d(0px, 0, 0);
    -ms-transition-timing-function: ease;

    transition-property: transform, left, top;
    transition-duration: 0s;
    transform: translate3d(0px, 0, 0);
    transition-timing-function: ease;

    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    float: left;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/* ie10 windows phone 8 fixes */
.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
}

/* ===============================================================
自定义
================================================================*/

/*焦点图每一个图片*/
.swiper-slide {
    line-height: 300px;
    color: #fff;
    font-size: 36px;
    text-align: center;
}

/*点*/
.pagination {
    position: absolute;
    z-index: 20;
    bottom: 15px;
    right: 10px;
    text-align: right;
}

/*非当前图片圆点样式*/
.swiper-pagination-switch {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 8px;
    background: #fff;
    margin: 0 5px;
    opacity: 0.8;
    /*border: 1px solid #fff;*/
    cursor: pointer;
}

/*当前图的点样式*/
.swiper-active-switch {
    background: #df0000;
}

/*左侧按钮*/
.dz-prev-btn {
    width: 25px;
    height: 35px;
    position: absolute;
    top: 45%;
    left: 10px;
    background: url(/uploads/image/i129/swiper_button_004.png) no-repeat left top;
    cursor: pointer;
}

/*右侧按钮*/
.dz-next-btn {
    width: 25px;
    height: 35px;
    position: absolute;
    top: 45%;
    right: 10px;
    background: url(/uploads/image/i129/swiper_button_004.png) no-repeat right top;
    cursor: pointer;
}

/*焦点图标题样式*/
.dz-swiper-title {
    /*width: 100%;*/
    position: absolute;
    bottom: 0;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-align: left;
    text-indent: 2em;
    filter: progid:dximagetransform.microsoft.gradient(startcolorstr=#0f000000, endcolorstr=#0f000000);
    background-color: rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 813px) {
    .swiper-container { width: 100%; height: 360px;}
    .swiper-container img{ width: 100%; height: auto;}
}

@media screen and (max-width: 770px) {
    .swiper-container { width: 100%; height: 480px;}
    .swiper-container img{ width: 100%; height: auto;}
}

@media screen and (max-width: 768px) {
    .swiper-container { width: 100%; height: 230px;}
    .swiper-container img{ width: 100%; height: auto; }
    .dz-swiper-title{ text-indent: 10px; 
        width: 80%;
        overflow:hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .swiper-container {margin-top: 10px;}



}