.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 {
    position: relative;
    overflow: hidden;
    max-width: 250px;
    margin: 0 auto 25px;
    border-radius: 100%;
    border: 4px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow:1px 0 #ECCFBF, 0 1px #ECCFBF, -1px 0 #ECCFBF, 0 -1px #ECCFBF;
    box-shadow:1px 0 #ECCFBF, 0 1px #ECCFBF, -1px 0 #ECCFBF, 0 -1px #ECCFBF;
    transition: all .6s;
    border: 4px solid #fff;
}
.news-list .pic img{
    -webkit-transition: all .6s;
    transition: all .6s;
    border-radius: 100%;
}
.news-list .box:hover .pic{
    border-radius: 20px;
    -webkit-box-shadow:1px 0 #ACC7E8, 0 1px #ACC7E8, -1px 0 #ACC7E8, 0 -1px #ACC7E8;
    box-shadow:1px 0 #ACC7E8, 0 1px #ACC7E8, -1px 0 #ACC7E8, 0 -1px #ACC7E8;
    
}
.news-list .box:hover .pic img{
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
.news-list .name:before{
    content: '';
    display: block;
    width: 2px;
    height: 30px;
    border-left: 2px solid transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -57px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.news-list .box:hover .name:before{
    height: 30px;
    -webkit-transform: translate(0px,-15px);
    transform: translate(0px,-15px);
    top: -25px;
    border-left: 2px solid #ACC7E8;
}

.news-list .name {
    color: #4C4C4C;
    font-size: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    /*    overflow: hidden;*/
    position: relative;
    height: 41px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin-top: 25px;
}
.news-list a:hover .name {
    /* color:#3B86D6; */
    /* -webkit-transform: translate(15px,0); */
    /* transform: translate(0px,15px); */
}
.news-list .date::before{
        content: '';
        display: block;
        width: 2px;
        height: 16px;
        /* background: #ACC7E8; */
        /* position: absolute; */
        left: 0;
        right: 0;
        margin: 0 auto;
        /* top: -40px; */
        -webkit-transition: all .4s ease-in-out;
        transition: all .4s ease-in-out;
        border-left: 2px dotted #E4BA9B;
}
.news-list .date,
.news-header .date {
    display: block;
    border-width: 1px 0;
    width: 100%;
    margin: 10px auto 15px;
    color: #E4BB9C;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    line-height: 26px;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list a:hover .date {
    -webkit-transform: translate(15px,0);
    transform: translate(0px,15px);
    color: #ACC7E8;
    margin-top: 0px;
}
.news-list a:hover .date::before{
    border-left:2px solid #ACC7E8
}

.news-header .date{
    color: #E4BB9C;
    margin-top: 8px;
}
.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;
    }
}