.news-list {
    margin: 0 -6px;
}
.news-list .item {
    width: 25%;
    padding: 0 6px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    max-width: 320px;
    margin: 0 auto 40px;
    background: #fff;
    border: solid 1px #E0E0E0;
    position: relative;
}
.news-list .box:after{
    content: '';
    background: url(../../images/common/news/shadow.png) no-repeat center top;
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 0;
}
.news-list .box:hover:after {
    opacity: 1;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .box .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list .box:hover .pic:before{
    opacity: 0.6;
}
.news-list .box .pic:after{
    content: '';
    display: block;
   background: url(../../images/common/news/txt.png) no-repeat 50% 50%;
    width: 39px;
    height: 13px;
    position: absolute;
    left: 0;
    right: 0;
    margin:auto;
    top: 50%;
    opacity: 0;
    bottom: 0;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    -webkit-transform: translate(0,-10px);
    transform: translate(0,-10px);
    height: 0;
}
.news-list .box:hover .pic:after{
    opacity: 0;
    top: 0;
    height: 13px;
    -webkit-transform: translate(0,0px);
    transform: translate(0,0px);
}
.news-list .box .pic svg {
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    margin:auto;
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.news-list .box .pic svg circle {
    stroke-dashoffset: 2000;    
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    stroke-width: 2;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
	display:none;
}
.news-list .box:hover .pic svg circle {
    stroke-dashoffset: 0;
    -webkit-transition: all 1.2s ease .5s;
    transition: all 1.2s ease .5s;
}

.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;
    height: 21px;
}

.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;
    height: 57px;
    margin: 8px 0 14px;
}
.news-list .date {
    display: block;
    border: 1px solid #777777;
    font-size: 13px;
    text-align: center;
    line-height: 30px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    color: #fff;
    background: #777777;
}
.news-list .box:hover .date {
    color: #444444;
    border-color: #444444;
    background: #FFF;
}

.news-detail .date {
    display: block;
    border-width: 1px 0;
    color: #D90000;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    width: 100%;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

@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;
    }
}