.box {
    background: #fff;
}


.productList ul {
    overflow: hidden;
}

.productList ul>li {
    float: left;
    position: relative;
    padding: .306667rem 0rem;
    width: 49%;
    background: #f1f3f5;
    margin-bottom: .266667rem;
    border-radius: 4px;
}

.productList ul>li:nth-child(even) {
    float: right;
}

.productList ul>li .u-img {
    display: block;
    width: 4rem;
    height: 4rem;
    background: #f1f3f5;
    padding: 0 7%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

.productList ul>li .u-img img {
    display: block;
    margin: 0 auto;
    max-width: 4rem;
    max-height: 4rem;
    width: expression(this.width > 4rem && this.width > this.height ? 4rem: true);
    height: expression(this.height >4rem ? 4rem: true);
    vertical-align: middle;
    overflow: hidden;
}

.productList ul>li .tit {
    display: block;
    margin: .2rem 0 0.15rem;
    height: 0.6rem;
    line-height: 0.6rem;
    color: #333;
    font-size: .32rem;
    text-align: center;
    overflow: hidden;
}

.productList ul>li .numPrice {
    clear: both;
    font-size: .28rem;
    color: #999;
    height: 2rem;
    line-height: .5rem;
    overflow: hidden;
    padding: 0px 8px;
}

.productList ul>li .numPrice .num {
    float: left;
    display: block;
    width: 100%;
}

.productList ul>li .numPrice .price {
    /* float: right; */
    display: block;
    /* width:2.2rem; */
    /* text-align: right; */
    text-align: center;
    margin-right: 0;
}

.productList ul>li .numPrice .price span {
    color: #224b81;
    font-size: .3125rem;
}

.productList ul li.b-tip {
    width: 99%;
    height: 1rem;
}