/*------------ 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;
    position: relative;
    margin: 0 auto;
    padding-bottom: 22px;
    background: #fff;
    max-width: 355px;
    box-sizing: border-box;
}
.news-list li .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 {
}

.news-list li .pic {
    position: relative;
    box-sizing: border-box;
}
.news-list .pic-box{
    overflow: hidden;
}
.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 1.3s ease;
    -moz-transition: all 1.3s ease;
    -ms-transition: all 1.3s ease;
    -o-transition: all 1.3s ease;
    transition: all 1.3s ease;
}
.news-list .box:hover .pic img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.news-list li .date,
.news-date {
    position: absolute;
    width: 120px;
    height: 30px;
    line-height: 30px;
    color: #EEF0E1;
    font-size: 13px;
    text-align: center;
    bottom: -16px;
    right: 0;
    z-index: 15;
    letter-spacing: 0.35px;
    background: #7B6228;
    font-family: Josefin Sans;
    font-weight: bold;
}
.news-date{
    left: 0;
    margin: auto;
}


.news-list li .name {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    margin: 37px 0 0px;
    padding: 0 20px;
}

.news-list .box:hover .name {
}




/*------------ detail-main ------------*/

.news-detail {
    background: #fff;
    padding: 0 15px 50px;
}

.news-title {
    position: relative;
    margin: 0 -15px 35px;
    text-align: center;
    padding: 35px 20px 40px 20px;
    letter-spacing: 2px;
    color: #000000;
    font-size: 22px;
    border-bottom: 1px solid #e0dfc1;
    line-height: 1.5;
}

.news-date small {
    color: #AAAAAA;
    position: absolute;
    left: 100%;
    top: 0;
    margin: 12px 0 0 15px;
}

.news-detail .editor {
    max-width: 1100px;
    margin: 0 auto;
}

.news-detail .years {
    margin-top: 5px;
    display: block;
}



/*------------ rwd ------------*/

@media screen and (max-width: 1000px) {
    .news-list li {
        padding: 0 4px 20px;
    }
    .news-list li .name {
        font-size: 14px;
        line-height: 1.4;
        height: auto;
        margin: 29px 0 5px;
    }
    .news-list li a {
        padding: 8px;
    }
    .news-list {
        margin: 0px;
    }
    .news-title {
        font-size: 15px;
        line-height: 1.4;
    }
    .news-detail .news-title {
        margin: 0 0 18px;
    }
    .news-detail {
        padding: 0 0px 10px;
    }
    .news-editor p {
        margin: 0px;
        line-height: 1.75;
    }
}

@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 li .date,
    .news-date {
        left: 0px;
        right: 0;
        margin: auto;
    }
    .news-title {
       padding: 32px 5px 30px;
    }
}

@media screen and (max-width: 480px) {}