
/*商品列表*/
.items .items-li{
    display: inline-block;
    width:244px;
    height:300px;
    box-sizing: border-box;
    border:1px solid #eee;
    padding:10px;
    margin: 5px 0 0 5px;
}
.items .items-li:hover{
    background: #ceeedf;
    border-color:#e9e9e9;
    box-shadow: 0 0 2px 2px #F8F8F8;
}
.items .items-li .s-name{
    display: inline-block;
    width:100%;
    height: 38px;
    overflow: hidden;
}
.items .img-div{
    height:200px;
    box-sizing: border-box;
    /*margin: 0 auto 10px;*/
}
.items .img-div img{
    width:100%;
    height:100%;
}
.items .price{
    height:40px;
    line-height: 40px;
}
.items .price>i{
    display: inline-block;
    width:52px;
    height:20px;
    overflow: hidden;
    margin-bottom: -4px;
}
.items .price .hot{
    background: url("../img/hot.png") center center no-repeat;
}
.items .price .tj{
    background: url("../img/offers.png") center center no-repeat;
}
.items .price .price-txt{
    color:#0f8549;
    margin-right: 10px;
}