.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: 0px auto 30px;
    background: #fff;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-list .box:hover {
    -webkit-transform: translate(0,-10px);
    transform: translate(0,-10px);
    background: #CD1D1C;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
}

.news-list .txt {
    position: relative;
    padding: 15px 20px 10px;
}
.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;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list .box:hover .name{
    color: #fff;
}
.news-list .description {
    color: #6D6D6D;
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 57px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    margin: 8px 0 20px;
}
.news-list .box:hover .description{
    color: #fff;
}
.news-list .date {
    display: block;
    color:#000000;
    font-size: 13px;
    text-align: left;
    line-height: 30px;
    letter-spacing: 0.03em;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
}
.news-list .box:hover .date{
    color: #fff;
}
.news-list .box .date:before {
    content: '';
    display: block;
    background: url(../../images/common/news/arrow.png) no-repeat;
    width: 20px;
    height: 11px;
    position: relative;
    margin: 5px auto 7px;
}
.news-list .box:hover .date:before{
    background-position: 0 100%;
}

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

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