.news-container {
    border-top: 1px solid #ccc;
    margin-left: 0.3rem;
}

.news-item {
    border-bottom: 1px solid #ccc;
    padding: 0.3rem 0;
}

.news-dateTime {
    padding: 0.15rem 0.1rem;
    color: #fe5862;
    background-color: #F8F8F8;
    text-align: center;
    width: 1.45rem;
}

.news-date {
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.18rem;
    line-height: 0.3rem;
}

.news-day {
    font-size: 0.25rem;
    line-height: 0.4rem;
    font-weight: bold;
}

.news-title a {
    font-size: 0.2rem;
    font-weight: bold;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    margin-bottom: 0.2rem;
}

.news-content {
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-item:hover a, .news-item:hover .news-content {
    color: #fe5862;
}

@media screen and (max-width: 960px) {

    .news-container {
        margin-left: 0;
    }

    .news-dateTime {
        width: 1.45rem;
    }
}