.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;
    max-width: 250px;
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: solid 3px #a3b211;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.news-list .pic img {
    border-radius: 50%;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.news-list .box:hover .pic {
    border-color: #fff;
}
.news-list .pic:before{
    content: '';
    display: block;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: url(../../images/common/news/hover.png) no-repeat 50% 50%, rgba(152, 152, 152, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    z-index: 4;
    border-radius: 50%;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.news-list .box:hover .pic:before{
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.news-list .pic:after {
    content: "";
    display: block;
    width: 0%;
    height: 0%;
    background: #579860;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.news-list .box:hover .pic:after {
    width: 100%;
    height: 100%;
}

.news-list .name {
    color: #656565;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
    max-height: 42px;
}

.news-list a:hover .name {
    color: #000;
}

.news-list .date,
.news-header .date {
    display: block;
    border-width: 1px 0;
    width: 120px;
    margin: 10px auto 0;
    color: #579860;
    font-family: 'Baloo', cursive;
    letter-spacing: 0.1em;
    font-size: 15px;
    line-height: 26px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-list a:hover .date {
    letter-spacing: 0.2em;
}


.news-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}

.news-header .title {
    color: #111;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.07em;
}

.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 {
    }
    .news-list .date,
    .news-header .date {
        line-height: 25px;
        font-size: 15px;
        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;
    }
}*/
