.page-body{
    padding: 59px 15px 30px;
    max-width: 480px;
    margin: 0 auto;
    background:#FFFFFF;
    min-height: 100vh;
    box-sizing: border-box;
}
.page-body.has-tabs{
    padding: 100px 15px 30px;
}
.body-item{
    display: flex;
    justify-content: center;
    color: #999999;
    padding: 10px 0;
    align-items: flex-start;
    cursor: pointer;
}.body-item .image-box{
     width: 150px;
     height: 100px;
     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;
    min-height: 100px;
}
.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: 5px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 12px;
}
.none-tips{
    position: relative;
    margin: 15px;
    text-align: center;
    padding: 55px 0;
}
.none-tips-image{
    font-size: 100px;
    margin: 0 auto;
    display: block;
    color: #999;
    opacity: .4;
}
.none-tips-text{
    font-size: 14px;
    color: #999;
}
.fixed-view{
    width: 100%;
    height: 40px;
    border-bottom: 1px solid #f4f4f4;
    overflow-x: auto;
    position: fixed;
    top: 44px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 750px;
    display: flex;
    background: #FFFFFF;
    z-index: 999;
    border-bottom: 1px solid #f4f4f4;
}
.news-tab{
    display: flex;
    flex-wrap: nowrap;
    height: 40px;
}
.tab-item{
    width: 72px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #303133;
}
.tab-item.has-bar{
    position: relative;
}
.tab-item.has-bar .bar{
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 20px;
    transform: translateX(-50%);
    height: 3px;
    opacity: 1;
    border-radius: 3px;
}
