.news-list .item {
    width: 33.33%;
}
.news-list .item a {
    background: url(../images/news/shadow.png) no-repeat 100% 50%;
    padding: 0 20px;
    margin: 0 auto;
}
.news-list .item:nth-child(3n) a {
    background: none;
}
.news-list .date,
.news-detail .date {
    display: block;
    background: #6a9a97;
    line-height: 30px;
    width: 136px;
    color: #fff;
    text-align: center;
}
.news-list .title {
    color: #333;
    font-size: 19px;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px 0;
}
.news-list a:hover .title {
    color: #6a9a97;
}
.news-list .description {
    font-size: 15px;
    line-height: 1.55;
    overflow: hidden;
    height: 46px;
}

.news-detail .title {
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 32px;
}
.news-detail .date {
    margin: 0 auto 32px;
}

@media screen and (max-width: 1000px) {
    .news-list .item {
        width: auto;
        float: none;
        border-bottom: 1px solid #f7f8f8;
    }
    .news-list .item a {
        background: none;
        padding: 20px 0;
    }
    .news-list .description {
        height: auto;
        max-height: 46px;
    }
}