* {
    margin: 0;
    padding: 0;
}

.swiper-contione,
.swiper2-contione {
    width: 480px;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.swiper,
.swiper2 {
    width: 9999999px;
    height: 320px;
    transition: all 1s ease;
}

.swiper-item,
.swiper2-item {
    width: 480px;
    height: 320px;
    float: left;
    position: relative;
}

.swiper-item img,
.swiper2-item img {
    width: 480px;
    height: 320px;
}

.swiper-point,
.swiper2-point {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    margin-right: 5px;
    float: left;
}

.point.active {
    background: #fff;
}

.swiper-left,
.swiper2-left {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.swiper-right,
.swiper2-right {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.swiper-left img,
.swiper-right img,
.swiper2-left img,
.swiper2-right img {
    cursor: pointer;
}

.swiper-contione:hover .swiper-left,
.swiper2-contione:hover .swiper2-left {
    left: 0;
}

.swiper-contione:hover .swiper-right,
.swiper2-contione:hover .swiper2-right {
    right: 0;
}