.news-list li:nth-child(4n+1) {
    clear: left;
}

.news-list {
    margin: 0 -6px;
}

.news-list .item {
    width: 25%;
    padding: 0 6px 40px;
}

.news-list .box {
    max-width: 254px;
    margin: 0 auto;
}

.news-list .box:hover {
    background: #fff;
}

.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .txt {
    position: relative;
    padding: 7px 0 0;
}

.news-list .name {
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
    padding: 5px 10px;
    transition: all .2s;
}

.news-list .box:hover .name {
    color: #fff;
    background: #BB1C21;
}

.news-list .description {
    color: #999;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    padding: 0 10px;
    margin: 8px 0 14px;
}

.news-list .date {
    display: block;
    color: #BB1C21;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    transition: all .2s;
    font-weight: bold;
}

.news-list .box:hover .date {
    color: #000;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    width: 100%;
}

.news-detail .title {
    font-size: 20px;
    text-align: left;
    margin: 1px auto;
    color: #BB1C21;
    font-weight: bold;
    padding: 5px 0;
}

@media screen and (max-width: 850px) {
    .news-list {
        max-width: 720px;
        margin: 0 auto;
    }
    .news-list .item {
        width: 50%;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 580px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}
