.product{
    /*padding: 0 0.1rem;*/
}
.product-container{

}
@media screen and (min-width: 1025px) {
    .product-container{
        max-width: 1200px;
        min-height: 70vh;
        margin: 36px auto;
        background: #FFFFFF;
    }
    .product-list li{
        width: 277px;
        height: 420px;
        background: #FFFFFF;
        border: 1px solid #B7B7B7;
        transition: all 0.4s ease-out;
        margin-right: 30px;
        margin-bottom: 36px;
        cursor: pointer;
    }
    .product-list li:nth-of-type(4n){
        margin-right: 0;
    }
    .product-list li:hover{
        transform: scale(1.03);
        box-shadow: 0 5px 15px 0 #dcdcdc;
        /*border: 1px solid #5A75DD;*/
        /*background: #889BE5;*/
    }
    .product-list li .product-wrap{
        width: 275px;
        height: 270px;
    }
    .product-list li .product-wrap img{
        width: 100%;
        height: 100%;
    }
    .product-list li .product-con{
        padding: 10px 20px 0;
        background: #FFFFFF;
        word-break:break-all;
    }
    .product-con div{
        font-size: 18px;
        color: #333333;
        display: flex;
    }
    .product-con div span{
        position: relative;
    }
    .product-con div span::after{
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 90px;
        height: 2px;
        background: #5A75DD;
    }
    .product-con p{
        height: 68px;
        margin-top: 32px;
        font-size: 16px;
        color: #999999;
        line-height: 22px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}
@media screen and (max-width: 1024px) {
    .product .product-list {
        width: 3.4rem;
        margin: 0.16rem auto 0.3rem;
        justify-content: space-between;
    }
    .product .product-list li{
        width: 1.6rem;
        height: 2.11rem;
        margin-right: 0.2rem;
        margin-bottom: 0.2rem;
        border: 1px solid #f1f1f1;
    }
    .product .product-list li:nth-of-type(2n){
        margin-right: 0;
    }
    .product-wrap{
        width: 1.58rem;
        height: 1.18rem;
    }
    .product-wrap  img{
        width: 100%;
        height: 100%;
    }
    .product-con{
        padding: 0.04rem 0.12rem 0.14rem;
    }
    .product-con div{
        font-size: 0.14rem;
        color: #333333;
        padding-bottom: 0.02rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        /*border-bottom: 2px solid #5A75DD;*/
        position: relative;
    }
    .product-con div::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0.53rem;
        height: 0.02rem;
        background: #5A75DD;
    }
    .product-con p{
        margin-top: 0.04rem;
        font-size: 0.12rem;
        color: #939393;
        word-break:break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}
.product .product-list{
    display: flex;
    flex-wrap: wrap;
}
