.product-wrap{
    padding-bottom: 60px;
}

.product-wrap a{
    margin-right: 34px;
    display: flex;
    width: 294px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}
.product-wrap a .pic{
    width: 100%;
    height: 392px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-wrap a:nth-child(4n){
    margin-right: 0;
}
.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-last-child(1){
    margin-right: 0;
}
.newscat{
    margin-top: 30px;
    margin-bottom: 30px;
}
.newscat a{
    display: block;
    width: 198px;
    margin: 0 10px;
    height: 52px;
    border: 1px solid #EBEEF5;
    border-radius: 4px;
    color: #606266;
    text-align: center;
    line-height: 52px;
    transition: all ease-in-out .2s;
}
.newscat a:hover,.newscat a.active{
    color: #fff;
    background: #005BAC;
    border: 1px solid #005BAC;
}



@media (max-width:769px) {

    .product-wrap{
        display: flex;
        
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .product-wrap a{
        width: 48.1%;
        margin-bottom: 20px;
        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: 14px;
    }
    .newscat a{
        width: auto;
        padding: 0 12px;
        font-size: 14px;
        height: 40px;
        line-height: 40px;
        background-color: #fff;
        margin: 0 4px;
    }

}




