.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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 100%;
     -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding: 5px;
}
.news-list .pic:before{
    content: '';
    display: block;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: url(../../images/common/news/bg.png) repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    bottom: 0;
    margin: auto;
    z-index: -1;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list .box:hover .pic:before {
    background:#fff;
}
.news-list .pic img {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-radius: 100%;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.news-list .box:hover .pic img{

    -webkit-transform: scale(1.15);
    transform: scale(1.15);

}
.news-list .name {
    color: #2C261D;
    font-size: 17px;
    line-height: 1.65;
    margin: 15px auto ;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 51px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list a:hover .name {
    color: #4e8c8c;
    font-weight: bold;
}
.news-list .date:before{
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-left: solid 1px #0a1243;
    border-bottom: solid 1px #d6ab00;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 4px auto 6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.news-list .date,
.news-header .date {
    display: block;
    margin: 15px auto 15px;
    color:#ffcc00;
    font-size: 16px;
    font-style: bold;
    letter-spacing: 0.1em;
    line-height: 26px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Roboto Mono', monospace;
}

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