.product . product-list {
    padding: 30px;
}

.product .product-item {
    padding: 0 30px;
}
.product-item-img{
    height: 20vw;
    overflow: hidden;
}
    .product-item-img img{
        height: auto;
    }
    .product .product-item p {
        margin-bottom: 0;
        color: #19BBC6;
        font-size:  1.2vw;
        padding: 15px 15px 0;
    }
.product .product-item p:nth-child(3) {
    color: #999;
    font-size: 0.9vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product .product-item .more {
    color: #333;
    margin-top: 10px;
    position: relative;
    padding-bottom: 20px;
}
.product .product-item .more::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90px;
    height: 1px;
    background: #19BBC6;
}
.product .product-item .more::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 1px;
    background: #333;
}
.product .product-swiper {
    padding: 0 7%;
    position: relative;
    margin-top: 30px;
}
.product-container {
    position: relative;
}
.product-container .swiper-slide>div:first-child{
    text-align: center;
    background: #fff;
    margin-bottom: 20px;
}
.product-container .swiper-slide p{
    background: #19BBC6;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
}
.product-container .swiper-slide img{
    width: auto;
}
.product .swiper-button-prev {
    left: 10px;
    top: 50%;
}
.product .swiper-button-next {
    right:  10px;
    top: 50%;
}
@media (max-width: 768px) {
    .product . product-list {
        padding: 0 15px;
    }
    .product .product-item {
        padding: 0;
        margin-bottom: 20px;
    }
    .product-swiper{
        display: none;
    }
}