
.productLists{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.productLists .productslist{
    box-sizing: border-box;
    padding: 5px;
    width: 100%;
}
.productLists.two .productslist{
    width: 50%;

}
.productLists.three .productslist{
    width: 33.3%;
}
.productLists.four .productslist{
    width: 25%;
}
.productLists .productslist .productBorder{
    border: 1px solid #f2f2f2;
    cursor: pointer;
}
.productLists .productslist .imgbox{
    width: 100%;
    height: 220px;
}
.productLists .productslist .info{
    
    padding: 10px 6px;
    display: flex;
    flex-flow: wrap;
    height: 92px;
}
.productLists .productslist .info .product_info_top{
    display: flex;
    margin-bottom: 5px;
    width: 100%;
}
.productLists .productslist .info .product_info_top .product_info_left{
    display: flex;
    align-items: center;
    flex: 1;
}
.productLists .productslist .info .product_info_top .product_info_left .price{
    font-size: 11px;
    color: #d5164f;
    margin-right: 5px;
}
.productLists .productslist .info .product_info_top .product_info_left .price span{
    font-size: 16px;
}
.productLists .productslist .info .product_info_top .product_info_right{
    display: flex;
    align-items: center;
}
.productLists .productslist .info .product_info_top .product_info_right .collect{
    display: block;
    background: url(../img/collect_new.png) no-repeat;
    background-size: 18px auto;
    width: 18px;
    height: 18px;
    margin-left: 5px;
}
.productLists .productslist .info .product_info_top .product_info_right .collect.collected{
    background: url(../img/collected_new.png) no-repeat;
    background-size: 18px auto;
}

.productLists .productslist .info .product_info_desc{
    margin-bottom: 5px;
    color: #444;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.productLists .productslist .info .product_info_bottom{
    display: flex;
    align-items: center;
    width: 100%;
}
.productLists .productslist .info .product_info_top .soldNumber{
    color: #808080;
    font-size: 12px;
}
.productLists .productslist .info .product_info_bottom .soldNumber{
    color: #808080;
    font-size: 12px;
}
.productLists .productslist .info .product_author{
    display: flex;
    align-items: center;
    width: 100%;
}
.productLists .productslist .info .product_author a{
    display: flex;
    align-items: center;
    width: 100%;
}
.productLists .productslist .info .product_author .authorlogo{
    width: 16px;
    height: 16px;
    border-radius: 8px;
    margin-right: 5px;
}
.productLists .productslist .info .product_author .authorName{
    color: #808080;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex:1;
}
.productLists .productslist .info .product_info_bottom .addtoCart{
    display: inline-block;
    background-color: #d5164f;
    color: #fff;
    padding: 0px 6px;
    border-radius: 2px;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    margin-left: auto;
    width: auto;
    flex-shrink: 0;
}
@media (max-width: 900px){
    .productLists.four .productslist{
        width: 33.3%;
    }
}

@media (max-width: 640px){
    .productLists.two .productslist{
        width: 50%;
    }
    .productLists.three .productslist{
        width: 50%;
    }
    .productLists.four .productslist{
        width: 50%;
    }
    .productLists .productslist .imgbox{
        height: 175px;
    }
}
