.news-box {
    background-color: #fff;
    padding: 1.2rem;
}
.news-item {
    padding: 1rem 0;
    display: flex;
    border-bottom: 1px solid #eee;
}
.news-item:last-of-type {
    border-bottom: none;
}
.news-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}
.cover-box {
    width: 10rem;
    height: 7rem;
    overflow: hidden;
    border-radius: 4px;
    border: 0.4px solid #f6f6f6;
}
.cover-box > img {
    width: 100%;
}
.news-item-title {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #222;
    font-family: "Microsoft Yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    word-break: break-all;
}
.news-item-content {
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 0.875rem;
    color: #c9c9c9;
    margin-top: 6px;
    word-break: break-all;
}

.much-image-box {
    display: flex;
    margin-left: -12px;
    margin-top: 10px;
}
.much-image-item {
    flex: 1;
    margin-left: 12px;
    max-height: 10rem;
    overflow: hidden;
}
.much-image-item > img {
    width: 100%;
    border-radius: 4px;
    border: 0.4px solid #f4f4f4;
    box-sizing: border-box;
}

.news-data-box {
    display: flex;
    margin-top: 6px;
}
.news-user {
    display: flex;
    align-items: center;
    color: #888;
    flex: 1;
    width: 0;
    font-size: 0.875rem;
}
img.news-user-head {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    margin-right: 4px;
}
.news-comment-praise {
    display: flex;
    align-items: center;
}
.news-comment, .news-praise {
    margin-left: 1rem;
    color: #999;
    font-size: 0.875rem;
}

.time-info {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    white-space: nowrap;
}
.point {
    display: inline-flex;
    align-items: center;
}
.point:before {
    content: ".";
    padding: 0 4px;
    margin-top: -0.5rem;
}

.mg-right {
    margin-right: 1rem;
}
.mg-left {
    margin-left: 1rem;
}