﻿/**!
* 轮播图
* author: chcnzp
* date:2018-03-26
*/


/* 轮播图 */

/* 多图轮播 */
#ewb-imgscroll-other {
    position: relative;
    width: 998px;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    overflow: hidden;
}

#ewb-imgscroll-other .item {
    display: block;
    height: 100px;
}

#ewb-imgscroll-other img {
    display: block;
    width: 242px;
    height: 10O0px;
}

.owl-dots {
    color: #fff;
}

/* 左右按钮 */

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    width: 30px;
    height: 46px;
    top: 50%;
    margin-top: -23px;
    z-index: 50;
    color: #fff;
    text-indent: 99999;
	display:none;
}

.owl-nav .owl-prev {
    left: 0;
    background: url("../images/left_btn.png") center no-repeat;
}

.owl-nav .owl-next {
    right: 0;
    right: 3px \0;
    /*ie8 */
    *right: 3px;
    background: url("../images/right_btn.png") center no-repeat;
}

:root .owl-nav .owl-next {
    right: 0;
}

.owl-nav.disabled {
    display: block !important;
}

/* 分页按钮 */
.owl-dots {
    position: absolute;
    right: 0;
    bottom: 10px;
    height: 10px;
}

.owl-dots .owl-dot {
    float: left;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin-right: 5px;
    background: #D6D6D6;
    display: block;
    border-radius: 10px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #869791
}