.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: 260px;
    margin: 0 auto 45px;
    text-align: center;
    position: relative;
}
.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto 10px;
    border-radius: 100%;
    border: 5px solid #9c9c9c;
}
.news-list .box:hover .pic {
    border-color: #DBC4A5;
}
.news-list .pic:before {
    content: "";
    background: url(../../images/common/news/hover.png) 50% 60% no-repeat rgba(0,0,0,0.40);
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    border-radius: 100%;
    transition: all 0.3s;
}
.news-list .box:hover .pic:before {
    background-position: 50% 50%;
    opacity: 1;
}

.news-list .pic:after {
    content: '';
    display: block;
    position: absolute;
    left:0;
    right: 0;
    top:0;
    bottom: 0;
    width: 101%;
    height: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.80);
    -webkit-mask: url('../../images/common/btn_mask.png');
    mask: url('../../images/common/btn_mask.png');
    -webkit-mask-size: 7100% 100%;
    mask-size: 7100% 100%;
    border: none;
    color: #fff;
    -webkit-animation: ani 0.7s steps(70) forwards;
    animation: ani 0.7s steps(70) forwards;
    transition: all .3s ease;
    z-index: 1;
}
.news-list .box:hover .pic:after {
    -webkit-animation: ani2 0.7s steps(70) forwards;
    animation: ani2 0.7s steps(70) forwards;

}
.news-list .name {
    color: #666;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 41px;
}
.news-list .box:hover .name {
    color: #d0a86c;
}
.news-list .date,
.news-header .date {
    display: block;
    border: 1px solid #C5A175;
    border-width: 1px 0;
    width: 104px;
    margin: 15px auto 0;
    color: #C5A175;
    font-size: 14px;
    font-weight: bold;
    line-height: 26px;
}

.news-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}
.news-header .title {
    max-width: 1045px;
    margin: 0 auto 25px;
    color: #a78b68;
    font-size: 20px;
    font-weight: bold;
    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;
    }
}