.product-wrap{
    padding-bottom: 60px;
}

.product-wrap a{
    margin-right: 40px;
    display: flex;
    width: 400px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.product-wrap a .pic{
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-wrap a .pic img{
    object-fit: cover;
    display: block;
    width: 100%;
    transition: all ease-in-out .8s;
}
.product-wrap a:hover .pic img{
    transform: scale(1.1);
}
.product-wrap a p{
    width: 100%;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    margin-top: 24px;
}
.product-wrap a:nth-child(3n){
    margin-right: 0;
}



@media (max-width:769px) {

    .product-wrap{
        display: flex;
        
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .product-wrap a{
        width: 48.1%;
        margin-bottom: 14px;
        margin-right: 0;
    }
    .product-wrap a .pic{
        height: auto;
    }
    .product-wrap a img{
        width: 100%;
    }
    .product-wrap a p{
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-top: 10px;
        font-size: 14px;
    }

}




