.bar{
    height: 550px;
    overflow: hidden;
    padding-top: 92px;
    background-color: #fff;
}
.bar .img-wrap{
    float: left;
    width: 518px;
    height: 336px;
    margin-left: 98px;
    margin-right: -20px;
}
.bar .img-wrap img{
    width: 100%;
}
.bar .title-wrap{
    width: 580px;
    float: left;
}
.bar .title-wrap .title{
    height: 120px;
    line-height: 120px;
    font-size: 32px;
    font-family: "Rubik-Medium";
    color: #000;
}
.bar .title-wrap .desc{
    line-height: 26px;
    font-size: 16px;
    font-family: "Rubik-Light";
    color: #000;
}
.products{
    padding-top: 100px;
    background-color: #f6f9fd;
}
.products .title{
    font-size: 26px;
    color: #000;
    font-family: "Rubik-Medium";
}
.products .product-list {
    overflow: hidden;
    margin-top: 140px;
    margin-left: -24px;
}
.products .product-list .img-wrap{
    width: 376px;
    height: 270px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding-bottom: 30px;
}
.products .product-list .img-wrap img{
    display: block;
    vertical-align: middle;
    margin: 0pa auto;
}
.products .product-list li{
    width: 576px;
    padding: 0 100px 124px;
    float: left;
    height: 420px;
    margin-left: 24px;
}
.products .product-list li .price{
    text-align: center;
    color: #fc275d;
    font-size: 26px;
    font-family: "Rubik-Light";
    padding-bottom: 10px;
}
.products .product-list li .info{
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 20px;
    font-family: "Rubik-Light";
}
.products .product-list li .desc{
    text-align: center;
    color: #000;
    font-size: 12px;
    line-height: 20px;
    font-family: "Rubik-Light";
}
.products .product-list li .desc.warning{
    text-align: center;
    color: #fc275d;
    font-size: 12px;
    line-height: 20px;
    font-family: "Rubik-Light";
}
footer{
    background-color: #fff;
}
/* 手机端 */
@media screen and (max-width: 750px) {
    .bar{
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        padding: 1rem .4rem;
    }
    .bar .img-wrap{
        width: 100%;
        height: auto;
        margin-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .bar .img-wrap img{
        width: 5rem;
    }
    .bar .title-wrap{
        width: auto;
    }
    .bar .title-wrap .title{
        height: 1.6rem;
        line-height: 1.6rem;
        font-size: .48rem;
    }
    .bar .title-wrap .desc{
        font-size: .26rem;
        line-height: .46rem;
        display: inline;
    }
    .bar .br{
        height: .46rem;
    }
    .products{
        padding: 1rem .4rem;
    }
    .products .title{
        font-size: .45rem;
        line-height: .6rem;
    }
    .products .product-list{
        margin-top: 0;
        margin-left: 0;
    }
    .products .product-list li{
        width: 100%;
        margin-top: 1rem;
        margin-left: 0;
        padding: 0;
        height: auto;
    }
    .products .product-list .img-wrap{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .products .product-list .img-wrap img{
        width: 4rem !important;
        transform: translateX(0) !important;
    }
    .products .product-list .img-wrap img.mobile{
        width: 2.4rem !important;
    }
    .products .product-list li .price{
        font-size: .4rem;
        padding-bottom: .1rem;
    }
    .products .product-list li .info{
        font-size: .26rem;
        line-height: .46rem;
    }
    .products .product-list li .desc{
        font-size: .22rem;
        line-height: .3rem;
    }
}