.main {
    display: flex;
    gap: 20px;
    background: #fff;
}

.container {
    display: flex;
    flex-direction: column;
}

/* 每一条 */
.content-box {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.2625rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 类型 */
.item-type {
    width: 8rem;
    text-align: center;
    font-size: 0.225rem;
    color: #888;
}

/* 日期 */
.item-date {
    width: 2rem;
    text-align: right;
    font-size: 0.225rem;
    color: #888;
}

.newslist .content-box a, .newslist .content-box span {
    line-height: .8rem;
}

/* 最后一条去掉线 */
.content-box:last-child {
    border-bottom: none;
}