.news-list {
    margin: 0 -15px;
}

.news-list .item {
    width: 25%;
    padding: 0 15px;
}

.news-list .item:nth-child(4n+1) {
    clear: left;
}

.news-list .box {
     max-width: 320px;
    margin: 0 auto 50px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    transition: all .3s ease;
}

.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
}

.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .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.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.news-list .box:hover .pic img {
     -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.news-list .txt {
    padding: 20px 20px 25px;
}
.news-list .pic:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background-color: rgba(41, 51, 47, .25);
    opacity: 0;
}

.news-list .box:hover .pic:before {
    opacity: 1;
}
.news-list .date {
    display: block;
    width: 120px;
    line-height: 30px;
    color: #6BBD0F;
    font-family: 'Calibri', serif;
    font-size: 16px;
    margin: 0;
    background: #FFFFFF;
    letter-spacing: 2px;
    text-align: center;
    position: absolute;
    z-index: 2;
    bottom: 0;
    transition: all .3s ease;
}
.news-list .box:hover .date {
    background: #6BBD0F;
    color: #ffffff;
}
.news-list .name {
     color: #535B59;
    font-size: 20px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 54px;
    margin-bottom: 15px;
    font-weight: 500;
}
.news-list .box:hover .name {
    color: #65813A;
    text-decoration: underline;
}
.news-list .description {
   color: #7F8581;
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 65px;
}


.news-detail {
    padding: 0 6% 60px;
}

.news-detail .date {
    display: block;
    width: 120px;
    line-height: 30px;
    font-family: 'Calibri', serif;
    font-size: 16px;
    margin: 0 auto;
     background: #6BBD0F;
    color: #ffffff;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
}

.news-detail .title {
    color: #101010;
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    line-height: 1.6;
}

.news-detail .title:after {
    content: '';
    display: block;
    border-top:3px solid #dadada;
    width: 60px;
    margin: 25px auto 30px;
}

@media screen and (max-width: 1200px) {
    .news-list {
        margin: 0 -7px;
    }

    .news-list .item {
        padding: 0 7px;
    }
}

@media screen and (max-width: 1000px) {
    .news-list {
        max-width: 800px;
        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;
    }

    .news-detail {
        padding: 0 4% 45px;
    }

    .news-list .name {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .news-list .date {
        margin: 10px 0 0;
    }

    .news-detail .title {
        font-size: 18px;
        line-height: 1.8;
    }

    .news-detail .date {
        font-size: 14px;
        margin-bottom: 0;
    }

}

@media screen and (max-width: 767px) {
    .news-list {
        margin: 0 -7px;
    }

    .news-list .box {
        margin-bottom: 30px;
    }

    .news-detail {
        padding: 0 15px 30px;
    }
}

@media screen and (max-width: 500px) {
    .news-list .item {
        width: 100%;
    }

    .news-list .item:nth-child(n) {
        clear: none;
    }
}