.news-list {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.news-list .left-box {
    display: flex;
    align-items: center;
}

.news-list .right-box {
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-list .left-box img {
    width: 16px;
    height: 16px;
    margin-right: 16px;
}

.news-list .title {
    font-weight: bold;
    transition: all .2s ease-in-out;
}

.news-list .time {
    width: 72px;
    color: #999999;
}

a.news-list:hover .title {
    color: var(--global-primary-color);
}
