.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 50px;
    border:  1px solid #D5D7E0;
    transition: all .3s ease;
}

.news-list .box:hover {
    background: #F1F2F7;
}

.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .item .pic a:before,
.news-list .item .pic a:after {
    content: "";
    position: absolute;
    opacity: 0;
    z-index: 10;
}

.news-list .item .pic a:before {
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: url('../../images/common/readmore.png')center center no-repeat rgba(28, 32, 50, 0.7);
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-list .item:hover .pic a:before {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.news-list .item .pic a:after {
    content: "";
    width: 72px;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 60%;
    -webkit-transform: translate(0, 50px);
    transform: translate(0, 50px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-list .item:hover .pic a:after {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.news-list .txt {
    position: relative;
    padding: 15px 20px;
}

.news-list .name a {
    color: #323646;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    transition: all .3s ease;
}

.news-list .box:hover .name {
    color: #EA273B;
}

.news-list .description a {
    color: #666;
    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;
    transition: all .3s ease;
}

.news-list .box:hover .description a {
    color: #666;
}

.news-list .date {
    display: block;
    color: #323646;
    font-size: 12px;
    text-align: center;
    line-height: 30px;
    position: relative;
    margin-top: 25px;
}

.news-list .date:before {
    content: '';
    display: block;
    height: 1px;
    background: #ccc;
    position: absolute;
    left: 40%;
    right: 40%;
    top: -8px;
    transition: all .3s ease;
}

.news-list .box:hover .date:before {
    left: 0;
    right: 0;
}

.news-detail .date {
    display: block;
    color: #fe0000;
    font-weight: bold;
    font-family: 'Century Gothic';
    text-align: left;
    line-height: 22px;
    width: 100%;
    margin-bottom: 10px;
}

.news-detail .title {
    font-size: 20px;
    font-weight: normal;
    text-align: left;
    margin: 1px auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

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