/*------------ 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 .2s;
    background: #fff;
    padding: 12px;
    position: relative;
    max-width: 375px;
    margin: 0 auto;
    box-sizing: border-box;
    transition: all .3s ease-in-out;
    position: relative;
    border: solid 1px #fff;
}
.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 li .box:hover {
    border: solid 1px #e8e8e8;
    transform: translate(0,3px);
}

.news-list li .pic {
    position: relative;
    box-sizing: border-box;
}
.news-list .pic:before{
    content: '';
    display: block;
    width: 90%;
    height:90%;
    background: rgba(68, 68, 68, 0.9);
    width: 100%;
    transition: all .3s ease-in-out;
    position: absolute;
    margin: auto;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
}
.news-list .box:hover .pic:before{
    width: 100%;
    height:100%;
    opacity: 1;
}
.news-list .pic:after{
    content: 'Read More';
    display: block;
    border:  solid 1px #fff;
    background: url(../../images/common/plus.png) no-repeat 100% 50%;
    border-width:  1px 0;
    font-family: 'Titillium Web', sans-serif;
    text-align: left;
    position: absolute;
    width: 0px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    letter-spacing: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    transition: all .35s ease-in-out;
    opacity: 0;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 15px;
}
.news-list .box:hover .pic:after{
     opacity: 1;
     width: 150px;
}


.news-list li .date{
    position: absolute;
    width: 57px;
    height: 66px;
    line-height: 1.2;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background: url('../../images/common/news/date.png') no-repeat;
    padding-top: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', serif;
    left: 25px;
    top: 0;
    z-index: 15;
    letter-spacing: 0.35px;
}

.news-date {
    position: absolute;
    width: 57px;
    height: 66px;
    line-height: 1.2;
    color: #fff;
    font-size: 12px;
    text-align: center;
    background: url('../../images/common/news/date.png');
    left: 15px;
    top: 0;
    z-index: 15;
    letter-spacing: 0.35px;
    font-family: 'Montserrat', serif;
    padding-top: 1px;
    box-sizing: border-box;
}

.news-list li .date b,
.news-date b {
    font-size: 25px;
    color: #fff;
    display: block;
    transition: all .2s;
    margin: 5px 0 -2px 0;
    font-family: 'Montserrat', serif;
}

.news-list li .name {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 55px;
    margin: 15px 0 5px;
}

.news-list .box:hover .name {
    text-decoration: underline;
}


/*------------ detail-main ------------*/

.news-detail {
    background: #fff;
    padding: 0 15px 50px;
}

.news-title {
    position: relative;
    margin: 0 -15px 15px;
    padding: 35px 20px 20px 85px;
    letter-spacing: 2px;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #e8e8e8;
    line-height: 1.5;
}

.news-date small {
    color: #AAAAAA;
    position: absolute;
    left: 100%;
    top: 0;
    font-family: 'Montserrat', serif;
    margin: 12px 0 0 15px;
    font-size: 15px;
}


/*------------ rwd ------------*/

@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 0 35px;
    }
}

@media screen and (max-width: 480px) {
    .news-title {
        padding: 85px 20px 20px;
    }
}
