/*5、产品展示list 超出4个带分页*/

/*common*/
.product-list-page-wrapper {
    font-family: Helvetica;
    position: relative;
}
.product-list-page-wrapper .about-product-article {
    margin-bottom: 37px;;
    color: #1D1F21;
    font-weight: bold;
    font-size: 28px;
}
.product-list-page-wrapper .swiper-img-prev,.product-list-page-wrapper .swiper-img-next{
    position: absolute;
    top: 183px;
    z-index: 3;
}
.product-list-page-wrapper .swiper-img-prev{
    left: -30px;
}
.product-list-page-wrapper .swiper-img-next{
    right: -30px;
}
.product-list-page-wrapper .prev-icon {
    transform: rotate(90deg);
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.product-list-page-wrapper .next-icon {
    transform: rotate(-90deg);
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.product-list-page-content {
    margin: auto;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}
.flip-page-list {
    display: flex;
    /*justify-content: space-around;*/
}
.product-item {
    /*width: 274px;*/
    /*margin-right: 10px;*/
    width: 294px;
    margin-right: 10px;
    transition-property:all;
}
.product-item a {
    display: inline-block;
}
.product-item .product-img-link {
    /*width: 274px;*/
    /*height: 237px;*/
    width: 100%;
    height: 237px;
    overflow: hidden;
}
.product-a-link {
    color: #44494E;
    font-weight: bold;
}
.product-item .product-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}
.product-item .product-img-link:hover img{
    transform: scale(1.2);
    transition: all 0.4s;
}
/*pc*/
@media only screen and (min-width: 1025px){
    .product-list-page-wrapper {
        margin: 50px auto;
    }
    .product-list-page-content {
        width: 1200px;
        max-width: 100%;
    }
    .product-a-link {
        font-size: 16px;
        margin-top: 15px;
    }
}

/*特殊尺寸处理*/
@media only screen and (min-width: 1024px)and (max-width:1300px){
    /* .product-list-page-wrapper .swiper-img-next{
        right: 0;
    }
    .product-list-page-wrapper .swiper-img-prev{
        left: 0;
    } */
}

/*mobile*/
@media only screen and (max-width: 1024px) {
    .product-list-page-wrapper {
        margin: 50px 0;
    }
    .product-list-page-content {
        width: 100%;
        padding-left: 0.3rem;
    }
    .product-item .product-img-link {
        width: 100%;
        max-height: 120px;
    }
    .product-list-page-content {
        width: 100%;
        padding-left: 0.3rem;
    }
    .product-list-page-wrapper .about-product-article {
        font-size: 0.22rem;
        margin: 0 auto 0.38rem 0.3rem;
    }
    .product-list-page-wrapper {
        margin: 25px 0;
    }
    .prev—icon, .next-icon {
        display: none;
    }
    .flip-page-list {
        width: 100%;
        min-width: 750px;
        margin-bottom: 10px;
        justify-content: flex-start;
    }
    .product-item {
        width: 19%;
        margin-right: 10px;
    }
    .product-a-link {
        font-size: 14px;
        margin-top: 10px;
    }
    .product-list-page-wrapper .next-icon {
        display: none;
    }
    .product-list-page-wrapper .prev-icon {
        display: none;
    }
}
