.article-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 8px;
}

.article-list .article-item {
    align-items: stretch;
    display: flex;
    margin-left: 16px;
    padding: 8px 0;
    width: 45%;
    width: calc(33.33% - 24px);
}

.article-list .article-banner {
    border-radius: 4px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 142px;
}

.article-list .article-banner {
    margin-right: 12px;
}

.article-list .article-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 0;
}

.article-list .article-title {
    color: #5e5e5e;
    font-weight: 500;
    line-height: 20px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-list .updated {
    color: #a6a6a6;
    font-size: 12px;
    line-height: 16px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-list .article-item:nth-child(-n+2) {
    padding-top: 0;
}

.article-list .article-item:nth-child(n+3) {
    border-top: 1px solid #f0f2f4;
}

@media screen and (max-width:719px) {
    .article-list .article-item {
        margin: 0 16px;
        width: 100%;
    }

    .article-list .article-banner {
        height: 70px;
        width: 124.44px;
    }
}