.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;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto 10px;
    border-radius: 100%;
    border: 5px solid #DDE1E5;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.news-list .box:hover .pic {
    border-color: #DF2A2A;
}
.news-list .pic img {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-radius: 100%;
}
.news-list .box:hover .pic img {

}
.news-list .name {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}
.news-list a:hover .name {
}
.news-list .date,
.news-header .date {
    display: block;
    max-width: 150px;
    background: #000;
    margin: 15px auto 0;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 17px;
    position: relative;
    z-index: 3;
    font-family: 'Roboto Condensed', sans-serif;
}
.news-list .date:before{
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: #D90000;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: -1;
}
.news-list .box:hover .date:before{
    width: 100%;
}

.news-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}
.news-header .title {
    max-width: 1045px;
    margin: 0 auto 25px;
    color: #111;
    font-size: 22px;
    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;
}
.share_box{
	margin-top: 30px;
}
@media screen and (max-width: 1000px) {
.news-list {
    margin: 10px auto 0;
}
.news-list .name{
     font-size: 14px;
}
.news-list .date,
.news-header .date {
       line-height: 25px;
     font-size: 13px;
      margin: 8px auto 0;
}
.news-list .box {
    margin: 0 auto 10px;
}
.news-header .title{
     margin: 0 auto 5px;
    font-size: 16px;
}
.share_box{
    margin-top: 10px;
}
.news-header {
    padding-bottom: 10px;
}
.news-detail {
        padding: 8px 0;
    }
}
@media screen and (max-width: 900px) {
    .news-list {
        max-width: 700px;
    }
    .news-list .item{
        width: 50%;
         margin-bottom:15px;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 500px) {
    .news-list {
    margin: 5px auto 0;
}

}
/*@media screen and (max-width: 440px) {
    .news-list .item{
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}*/