/* Swiper 2.7.0 */
* {
    margin: 0;
    padding: 0;
}
.swiper-container {
    /*焦点图宽高*/
    width: 580px;
    height: 372px;
    margin: 0 auto;
    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 {
    width: 580px;
    height: 372px;
}
.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: 372px;*/
    color: #fff;
    font-size: 36px;
    text-align: center;
}

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

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

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

/*左侧按钮*/
/*.dz-prev-btn {
    width: 25px;
    height: 35px;
    position: absolute;
    top: 45%;
    left: 10px;
    background: url(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(swiper_button_004.png) no-repeat right top;
    cursor: pointer;
}*/

/*焦点图标题样式*/
.dz-swiper-title {
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    text-align: left;
    padding-left: 20px;
    /*text-indent: 2em;*/
    filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr=#0f000000, endColorstr=#0f000000);
    background-color: rgba(0, 0, 0, .1);
}

/* ============================================
                  移动端样式
===============================================*/
@media screen and (max-width: 700px) {
    .swiper-container { width: 100%; height: 240px; }
    /*.swiper-wrapper{ height: 100px !important; }*/
    .swiper-container img{ width: 100%; height: auto; }
    .dz-swiper-title{ text-indent: 10px; }
}

@media screen and (max-width: 321px) {
    .swiper-container {  height: 210px; }
}