.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;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.news-list .pic img{
    border-radius: 100%;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto 15px;
    border-radius: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.news-list .pic:before {
    content: "";
    background: url(../../images/common/news/hover.png) 50% 60% no-repeat rgba(0,0,0,0.5);
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.news-list .box:hover .pic:before {
    background-position: 50% 50%;
    opacity: 1;
}

.news-list .name {
    color:#666666;
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 46px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list a:hover .name {
    color: #000000;
}
.news-list .date,
.news-header .date {
    display: block;
    border-width: 1px 0;
    width: 100%;;
    margin: 25px auto 15px;
    color: #666666;
    font-size: 14px;
    letter-spacing: 1.5px;
    line-height: 26px;
    position: relative;
    font-family: 'Unica One', cursive;
}

.news-list a:hover .date{
    color: #f02731;
}

.news-list .date:before{
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    position: absolute;
    background: #ffb94a;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -14px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.news-list .box:hover .date:before{
    width: 100%;
    border-radius: 0%;
     background: -webkit-gradient(linear, left top, right top, from(rgba(255, 239, 152, 0.2)) , color-stop(#ffb94a) , to(rgba(255, 239, 152, 0.2)));
     background: linear-gradient(to right, rgba(255, 239, 152, 0.2) , #ffb94a , rgba(255, 239, 152, 0.2));
}

.news-header .date{
    color: #f02731;
    margin-top: 8px;
    font-family: 'Unica One', cursive;
}
.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: 21px;
    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;
    }
}