/*------------ news ------------*/

.news-list {
    margin: 0 -20px;
}

.news-list li {
    width: calc((100% / 3) - 0.1px);
    padding: 0 20px 35px;
}

.news-list li:nth-child(3n+1) {
    clear: left;
}

.news-list li .box {
    transition: all .3s ease;
    position: relative;
    max-width: 375px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 10px 0 0;
}

.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    font-size: 0;
}

.news-list li .pic {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.news-list li .pic::before {
    content: '';
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid #AAAAAA66;
    top: 5px;
    left: 5px;
    z-index: 5;
    transition: all 0.3s ease;
}

.news-list li:hover .pic:before {
    border-color: #F08519;
}

.news-list .pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.news-list li:hover .pic img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.news-list li .date, .news-date {
    position: absolute;
    width: 57px;
    height: 63px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: url('../../images/common/news/date.png') 0 0% no-repeat;
    left: 25px;
    top: 0;
    z-index: 15;
    letter-spacing: 0.35px;
    font-family: 'Poppins', serif;
}

.news-date {
    position: absolute;
    width: 57px;
    height: 63px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: url('../../images/common/news/date.png') 0 100% no-repeat;
    left: 25px;
    top: 0;
    z-index: 15;
    letter-spacing: 0.35px;
    font-family: 'Poppins', serif;
}

.news-list li:hover .date {
    background-position: 0 100%;
}

.news-list li .date b, .news-date b {
    font-size: 25px;
    color: #fff;
    display: block;
    transition: all .3s ease;
    margin: 5px 0 -2px 0;
}

.news-list li .name {
    font-size: 16px;
    line-height: 1.5;
    color: #3D3939;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    margin: 15px 0 5px;
    letter-spacing: 0.5px;
}

/*------------ detail-main ------------*/

.news-detail {
    background: #fff;
    padding: 0 30px 50px;
}

.news-title {
    position: relative;
    margin: 0 0 20px;
    padding: 0 20px 20px 105px;
    letter-spacing: 2px;
    color: #3D3939;
    font-size: 18px;
    border-bottom: 1px solid #E4E4E4;
    line-height: 1.5;
}

.news-title h1 {
    display: inline-block;
    font-size: 18px;
    margin: 0;
}

.news-date small {
    color: #AAAAAA;
    position: absolute;
    left: 100%;
    top: 0;
    margin: 12px 0 0 15px;
}

/*------------ rwd ------------*/

@media screen and (max-width: 1000px) {
    .news-detail {
        padding: 0 15px 50px;
    }
}

@media screen and (max-width: 900px) {
    .news-list li {
        width: 50%;
    }
    .news-list li:nth-child(3n+1) {
        clear: none;
    }
    .news-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 600px) {
    .news-list {
        margin: 0;
    }
    .news-list li {
        width: 100%;
        padding: 0 14px 35px;
    }
    .news-list {
        margin: 0 -14px;
    }
}

@media screen and (max-width: 480px) {
    .news-title {
        padding: 85px 20px 20px;
    }
}