.page-body{
    padding: 59px 15px;
    max-width: 480px;
    margin: 0 auto;
    background:#FFFFFF;
    min-height: 100vh;
    box-sizing: border-box;
}
.body-item{
    display: flex;
    justify-content: center;
    color: #999999;
    padding: 10px 0;
    cursor: pointer;
}
.body-item .image-box{
    width: 90px;
    height: 90px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.body-item .image-box .image {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.body-item .image-box .image-bg {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.body-item .msg{
    flex: 1;
    padding: 0 10px;
    display: flex;
    flex-flow: column;
    color: #999;
    position: relative;
}
.body-item .msg .ellipsis{
    font-weight: 700;
    margin: 0;
    color: #222;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.body-item .msg .min{
    font-weight: normal;
    margin: 2px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
}
.body-item .msg .price{
    position: absolute;
    bottom: 0;
    font-size: 12px;
    line-height: 1;
}
.body-item .msg .price .old-price{
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}
