@charset "utf-8";
/*-------------------------------   index 首页---------------------------------*/

/*-----首页 banner（参考理光官网：从右到左切入）-----*/
.slideBox {
    width: 100%;
    height: 532px;
    overflow: hidden;
    position: relative;
}
.slideBox .hd {
    overflow: hidden;
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 100%;
    z-index: 1;
}
.slideBox .hd ul {
    display: flex;
    justify-content: center;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}
/* 指示条样式（参考理光官网 ricoh.com.cn） */
.slideBox .hd ul li {
    display: inline-block;
    width: 24px;
    height: 1px;
    margin: 0 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    font-size: 0;
    transition: width 0.25s ease, background 0.25s ease;
}
.slideBox .hd ul li:hover {
    background: rgba(255, 255, 255, 0.7);
}
.slideBox .hd ul li.on {
    width: 36px;
    background: #fff;
    border-radius: 2px;
}
.slideBox .bd {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.slideBox .bd ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.slideBox .bd ul li {
    float: left;
    width: 100%;
    height: 532px;
    box-sizing: border-box;
    overflow: hidden;
}
.slideBox .bd li a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slideBox .bd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slideBox .prev,
.slideBox .next {
    display: none;
    position: absolute;
    left: 3%;
    top: 50%;
    margin-top: -30px;
    width: 30px;
    height: 60px;
    background: url("../images/arrow_left.png") no-repeat;
}
.slideBox .next {
    left: auto;
    right: 3%;
    background: url("../images/arrow_right.png") no-repeat;
}
.slideBox .prev:hover,
.slideBox .next:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -khtml-opacity: 0.7;
}
.slideBox .prevStop {
    display: none;
}
.slideBox .nextStop {
    display: none;
}

/* slideBox02 与 slideBox 一致：从右到左、li 全宽 */
.slideBox02 .bd02 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}
.slideBox02 .bd02 ul li {
    float: left;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.slideBox02 .bd02 li a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 移动端适配 */
@media screen and (max-width: 1024px) {
    .slideBox {
        height: 133.33vw;
    }
    .slideBox .bd ul li {
        height: 133.33vw;
    }
    .slideBox .bd ul li a {
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .slideBox .hd ul li {
        width: 24px;
        height: 1px;
    }
    .slideBox .hd ul li.on {
        width: 36px;
    }
}
