.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 25%;
    padding: 0 6px;
    margin-bottom: 25px ;
}
.news-list .box {
    max-width: 254px;
    margin: 0 auto;
    background: #fff;
    transition: all .3s ease;
    border:solid 1px #E0E0E0;
     margin: 0 auto 20px;

}
.news-list .item:nth-child(4n+1) {
    clear: left;
}

.news-list .box:before{
    content: '';
    display: block;
    background: url(../../images/common/news/shadow.png) no-repeat center top;
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -8px;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
	
}
.news-list .box:hover:before {
    opacity: 1;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .txt {
    position: relative;
    padding: 15px 20px;
}
.news-list .name {
    color: #373737;
    font-size: 16px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-list .description {
    color: #8E8E8E;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0 14px;
}
.news-list .box .date:before {
    width: 68px;
    height: 2px;
    background: #777777;
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
}
.news-list .box .date:after {
    width: 68px;
    height: 2px;
    background: #777777;
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
}
.news-list .date {
    position: relative;
    display: block;
    border-width: 1px 0;
    color: #333333;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    font-family: 'arial';
    background: #fff;
    margin: 0 -20px;
    width: calc(100% + 40px);
    box-sizing: content-box;
    align-items: center;
}
.news-list .box:hover .date {
    color: #111;
    border-color: #9c9c9c;
}


.news-list a .pic .hover{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0;
    top: 0;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -o-transition: all .8s ease;
    -ms-transition: all .8s ease;
    transition: all .8s ease;
    opacity: 0;
    background:rgba(0,174,229,.85); 
}
.news-list a:hover .pic .hover{
    opacity: 1;
}
.news-list a .pic .hover .more{
    color: white;
    position: absolute;
    font-weight: bold;
    left: 50%;
    top: 50%;
    margin-top: -12px;
    margin-left: -54px;
    width: 100px;
    text-align: center;
    line-height: 30px;
    overflow: hidden;
    height: 30px;

    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size:16px;
    font-stretch:condensed;
    letter-spacing:1pt;



}
.news-list a .pic .hover .more b{
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    bottom: -25px;
    font-weight: 600;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.news-list a:hover .pic .hover .more b{
    -webkit-transition: all 1.2s ease .5s;
    -moz-transition: all 1.2s ease .5s;
    -o-transition: all 1.2s ease .5s;
    -ms-transition: all 1.2s ease .5s;
    transition: all 1.2s ease .5s;
    bottom: -0;
}
.news-list a .pic svg {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -75px;
    margin-top: -72px;    z-index: 2;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.news-list a .pic svg circle {
    stroke-dashoffset: 2000;    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    stroke-width: 2;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.news-list a:hover .pic svg circle {
    stroke-dashoffset: 0;
        -webkit-transition: all 1.2s ease .5s;
    -moz-transition: all 1.2s ease .5s;
    -o-transition: all 1.2s ease .5s;
    -ms-transition: all 1.2s ease .5s;
    transition: all 1.2s ease .5s;
}
@media screen and (max-width: 850px) {
    .news-list {
        max-width: 720px;
        margin: 0 auto;
    }
    .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-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 580px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}