.news-list {
    max-width: 1280px;
    margin: 0 auto;
}
.news-list .item {
    width: 25%;
    padding: 0 5px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 266px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;   
}
.news-list .pic {
    position: relative;
    /*overflow: hidden;*/
    max-width: 250px;
    padding: 5px;
    margin: 0 auto 30px;
    border-radius: 100%;

}
.news-list .pic img{
    position: relative;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
}
.news-list .pic:before{
    content: '';
    background: url(../../images/common/news/bg.png) center no-repeat;
    background-size: contain;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
     -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:before {
    top: -17px;
    left: -17px;
    bottom: -17px;
    right: -17px;
}

.news-list .name{
    color: #4C513F;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 46px;
}
.news-list .box:hover .name{
}
.news-list .date:before,.news-header .date:before{
    content: '';
    display: block;
    width: 20px;
    height: 4px;
    background: #4D513F;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    position: absolute;
     -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 .date:after{
    content: '' ;
    display: block;
    width: 0;
    background: #4D513F;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
     -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 .date:before,
.news-list .box:hover .date:after{
    width: 100%;
}
.news-list .date,
.news-header .date {
    display: block;
    width: 104px;
    margin: 15px auto 0;
    color: #4D513F;
    font-size: 16px;
    font-family: 'Tenor Sans', sans-serif;
    line-height: 55px;
    position: relative;
    display: none;
}

.news-header {
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}
.news-header .title {
    max-width: 1045px;
    margin: 10px auto 10px;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5;
    display: inline-block;
}
.news-detail {
    border-bottom: 1px solid #ccc;
    padding: 25px 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;
    }
}