.news-list {
    max-width: 1280px;
    margin: 0 auto;
}

.news-list .item {
    width: 25%;
    padding: 0 10px;
}

.news-list .item:nth-child(4n+1) {
    clear: left;
}

.news-list .box {
    max-width: 330px;
    margin: 0 auto 45px;
    text-align: center;
    position: relative;
}

.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 0;
    z-index: 5;
}

.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto 22px;
}

.news-list .box .pic {
    position: relative;
    overflow: hidden;
}

.news-list .box .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.news-list .box:hover .pic img {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
}

.news-list li .news-text {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 90px);
}

.news-list .name {
    color: #666;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 25px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 0 0 6px;
}

.news-list .box:hover .name {
    color: #735751;
}

.news-list .date,
.news-header .date {
    display: inline-block;
    color: #EC8853;
    font-size: 35px;
    line-height: 1;
    text-align: center;
    background: #FFECD9;
    padding: 12px 8px 0;
    vertical-align: middle;
    width: 50px;
    height: 65px;
    margin: 0 15px 0 0;
    font-family: 'Roboto', serif;
}

.news-list .date small,
.news-header .date small {
    display: block;
    font-size: 15px;
    line-height: 23px;
    margin-top: 0;
    color: #EC8853;
}

.news-list .description {
    color: #968C87;
    font-size: 14px;
    letter-spacing: 0.3px;
    max-height: 75px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    text-align: left;
    line-height: 1.65;
}

.news-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}

.news-header .title {
    max-width: 1045px;
    margin: 0 auto 25px;
    color: #666;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.news-detail {
    border-bottom: 1px dashed #ccc;
    padding: 40px 0;
}

.news-detail .editor {
    max-width: 1045px;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {
    .news-list {
        max-width: 700px;
    }

    .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-detail {
        padding: 25px 0;
    }
}

@media screen and (max-width: 440px) {
    .news-list .item {
        width: 100%;
    }

    .news-list .item:nth-child(n) {
        clear: none;
    }
}