.news-list {
    margin: 0 -18px;
}
.news-list li {
    width: 25%;
    padding: 0 18px 30px;
}
.news-list li a {
    border: 1px solid #ccc;
    padding: 8px 14px 0;
}
.news-list .pic {
    margin: 0 -3px;
    border: 1px solid #ccc;
    overflow: hidden;
}
.news-list .pic img {
    width: 100%;
    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
}
.news-list a:hover .pic img {
    -webkit-transform: scale(1.15);
       -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
         -o-transform: scale(1.15);
            transform: scale(1.15);
}
.news-list .date,
.news-date {
    position: relative;
    display: block;
    margin: -15px auto 0;
    background: #4FA9B2;
    color: #fff;
    line-height: 30px;
    text-align: center;
    max-width: 180px;
}
.news-list .name {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    margin: 10px 0 5px;
    color: #444;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-list a:hover .name {
    color: #F87A00;
    text-decoration: underline;
}
.news-list .description {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    height: 38px;
    display: block;
    margin-bottom: 10px;
    overflow: hidden;
}
.news-list .more {
    display: block;
    margin: 0 -14px;
    background: #4FA9B2;
    color: #fff;
    text-align: center;
    line-height: 40px;
}
.news-list a:hover .more {
    background: #F97B00;
}
.news-list .more:after {
    content: "";
    background: url(../images/_icon/more_arrow.png) no-repeat;
    width: 21px;
    height: 17px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 8px;
}
.news-date {
    margin: 0 auto 30px;
}
.news-title {
    background-color: #F5F5F5;
    border: 1px solid #ccc;
    text-align: center;
    color: #444;
    font-size: 17px;
    font-weight: bold;
    padding: 6px 12px;
    margin-bottom: 35px;
}
.news-detail {
    padding-bottom: 30px;
}

@media screen and (max-width: 1200px) {
    .news-list {
        margin: 0 -8px;
    }
    .news-list li {
        width: 33.33%;
        padding: 0 8px 30px;
    }
}
@media screen and (max-width: 767px) {
    .news-list li {
        width: 50%;
    }
}
@media screen and (max-width: 479px) {
    .news-list li {
        float: none;
        width: auto;
    }
    .news-list .name {
        height: auto;
    }
}