/* 轮播图 */
#carousel {
    width: 100%;
    height: 3.3125rem;
    text-align: center;
}

#carousel .scroll {
    position: relative;
    background-size: cover;
    background-repeat: round;
}

#carousel .scroll .img {
    display: none;
    width: 100%;
    height: 3.3125rem;
    object-fit: cover;
}

#carousel .scroll .current {
    display: block;
}

.scroll .lf {
    position: absolute;
    top: 50%;
    left: 2%;
    background-image: url('/images/left_lightarrow.png');
    width: 41px;
    height: 69px;
    cursor: pointer;
    transform: translateY(-50%);
}

.scroll .lr {
    position: absolute;
    top: 50%;
    right: 2%;
    background-image: url('/images/right_lightarrow.png');
    width: 41px;
    height: 69px;
    cursor: pointer;
    transform: translateY(-50%);
}

.dots {
    position: absolute;
    bottom: 0.078125rem;
    right: 0.5rem;
    width: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.dots>span {
    display: inline-block;
    box-sizing: border-box;
    width: 0.057291666666666rem;
    height: 0.057291666666666rem;
    border: 0.015625rem solid rgba(204, 204, 204, 0.2);
    border-radius: 0.078125rem;
    cursor: pointer;
}

.dots>span:not(:last-child) {
    margin-right: 0.0261rem;
}

/* 小圆点的颜色 */
.dots .square {
    background: rgba(0, 0, 0, 0.41);
}