.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;
    position: relative;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}

.news-list .box:hover {
    background: #fff;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}
.news-list .box:hover .pic:before {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    opacity: 1;
}
.news-list .box .pic:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(100px,0);
    transform: translate(100px,0);
    opacity: 0;
    margin: auto;
    background: url('../../images/common/news/hover.png') 100% 100% / 0% auto no-repeat, rgba(78, 78, 78, 0.76);
}
.news-list .txt {
    position: relative;
    padding: 15px 20px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px transparent;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list .box:hover .txt{
    border-color: #313c50;
}
.news-list .name {
    color: #4e4e4e;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
}
.news-list .box:hover .name ,
.news-list .box:hover .description  {
    color: #111;
}
.news-list .description {
    color:#999;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    margin: 8px 0 14px;
}
.news-detail .date,
.news-list .date {
    display: block;
    background: :#313c50;
    color: #fff;
    font-size: 13px;
    font-family: 'Lora', cursive;
    text-align: center;
    line-height: 30px;
    margin: 0 auto;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #e8e8e8;
    color: #111;
}
.news-detail .date{
    margin: 0 0 5px;
    max-width: 140px;
}
.news-list .box:hover .date {
    background:#71141D;
    -webkit-transform: translate(-20px,0);
    transform: translate(-20px,0);
    width: calc(100% + 40px);
    color: #fff;
}
.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    color: #33342e;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1;
}

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