.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;
    width: 250px;
    height: 250px;
    margin: 0 auto 15px;
    border-radius: 100%;
    overflow: hidden;
}
.news-list .pic img{
    border-radius: 50%;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
    width: 250px;
    height: 250px;
}
.news-list .pic .spinner{
    border: 5px solid #FFFFFF;
    border-right-color:#006000;
    border-bottom-color:#006000;
    border-radius: 50%;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
     width: 250px;
    height: 250px;
    box-sizing: border-box;

}
.news-list .box:hover .pic .spinner {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.news-list .pic .img {
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 10px;
    right: 0;
    width: auto;
    height: auto;
}

.news-list .name {
    color: #666;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 41px;
}
.news-list .date ,.news-header .date {
    display: inline-block;
    margin: 15px auto 0;
    color: #006000;
    padding:0 10px;
    background: #fff;
    font-size: 15px;
    font-weight: bold;
    position: relative;
    line-height: 32px;
    font-family: 'EB Garamond';
}
.news-list .date:before,.news-header .date:before {
    content: '';
    display: block;
    width: 0;
    transition: all .6s ease;
  
    height: 1px;
    background: #006000;
    position: absolute;
    top: 50%;
    margin-top: -0.5px;
    left: 50%;
    
    z-index: -1;
}
.news-list .box:hover .date:before{
     width: 260px;
     margin-left: -130px;
}
.news-list .date:after{
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 50%;
    margin-left: -91.5px;
    background: #006000;
    content: '';
    width: 183px;
     opacity: 0;
    transition: all .6s ease;
}
.news-list .box:hover .date:after{
    opacity: 1;
}


.news-header {
    text-align: center;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 25px;
}
.news-header .title {
    max-width: 1045px;
    margin: 0 auto 25px;
    color: #006000;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.5;
}
.news-detail {
    border-bottom: 1px solid #ccc;
    padding: 40px 0;
}
.news-detail .editor {
    max-width: 1045px;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .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;
    }
    .news-header .title{margin-bottom: 5px;}
    .news-header{
        padding-bottom: 5px
    }
     .news-header .date{
        margin-top: 0;
    }
    .news-detail{
        padding-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {

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