/* 图片显示样式 */

.swiper-contione {
    width: 1920px;
    height: 570px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.swiper {
    width: 9999999px;
    height: 570px;
    transition: all 1s ease;
}

.swiper-item {
    width: 1920px;
    height: 570px;
    float: left;
    position: relative;
}

.swiper-item img {
    width: 1920px;
    height: 570px;
}

.swiper-item p {
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

.swiper-point {
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.point {
    width: 78px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 7px;
    margin-right: 15px;
    float: left;
}

.point.active {
    background: #EB622F;
}

.swiper-left {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -92px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.swiper-right {
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -92px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.swiper-left img,
.swiper-right img {
    cursor: pointer;
    width: 92px;
    height: 92px;
}

.swiper-contione:hover .swiper-left {
    left: 104px;
}

.swiper-contione:hover .swiper-right {
    right: 104px;
}