.factory {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.factory .factory-left {
    width: 40%;
    padding: 50px;
}

.factory-swiper {
    position: relative;
}

.caseSlide-pagination {
    width: 15%;
    position: absolute;
    display: flex;
    justify-content: space-around;
    bottom: -10px;
    left: 3%;
}

.caseSlide-pagination .swiper-pagination-bullet {
    width: 0;
    font-size: 20px;
}

.factory-name {
    font-size: 1.8vw;
    font-weight: 500;
    color: #19BBC6;
    margin-bottom: 10px;
}

.factory-content {
    font-size: 1vw;
    font-weight: 500;
    color: #999;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.factory img {
    width: 50%;
}

.caseSlide-button-prev, .caseSlide-button-next {
    width: 50px;
    height: 50px;
    background-size: 20px 20px;
    border-radius: 50%;
    cursor: pointer;
}

.caseSlide-button-box {
    padding:  2.5vw 0;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
}

.caseSlide-button-next {
    outline: none;
    background: url("../../images/product/right-arrow.png") no-repeat 50% 50%;
    background-size: 30% 30%;
}

.caseSlide-button-prev {
    outline: none;
    background: url("../../images/product/left-arrow.png") no-repeat 50% 50%;
    background-size: 30% 30%;
}

@media (max-width: 768px) {
    .factory{
        display: block;
    }
    .factory .factory-left {
        padding: 15px;
        width: 100%;
    }
        .factory img{
            width: 100%;
        }
}