/*------------ news ------------*/
.news-list {
    margin: 90px -20px 0;
}
.news-list li {
    width: calc((100% / 4) - 0.1px);
    padding: 0 20px 40px;
    position: relative;
    text-align: center;
}
.news-list li:nth-child(4n+1) {
    clear: left;
}
.news-list li .box {
    padding: 55px 30px 0;
    position: relative;
    background: #FFF;
    transition: all 0.3s ease;
    top: 0;
    border-radius: 20px;
    margin-bottom: 60px;
}
.news-list li .box:before {
    content: "";
    width: calc(100% - 13px);
    height: calc(100% - 13px);
    position: absolute;
    left: calc(5px);
    top: calc(5px);
    border: 1px solid #B9D28C;
    border-radius: 20px;
}
.news-list li .box:hover {
    top: -10px;
}
.news-list li .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    font-size: 0;
}
.news-list .date {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin: -36px 0 0 -38.5px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}
.news-list .date .circle {
    display: inline-block;
    border-radius: 50%;
}
.news-list .date .circle span {
    width: 77px;
    height: 77px;
    border-radius: 50%;
    display: block;
    background: #6B9F0D;
    line-height: 1.1;
    color: #FFF;
    box-sizing: border-box;
    padding: 15px 0 0 0;
    font-weight: 500;
    transition: all 0.3s ease;
}
.news-list .box:hover .date .circle span {
    background: #457704;
    color: #fff;
}
.news-list .date .circle b {
    display: block;
    font-size: 30px;
    font-weight: normal;
}
.news-list li .text {
    text-align: left;
    overflow: hidden;
}
.news-list li .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 47px;
    font-size: 17px;
    color: #594C44;
    font-weight: 500;
    transition: all .3s ease;
    letter-spacing: 0.5px;
    margin-bottom: 13px;
}
.news-list li .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #594C44;
    line-height: 1.6;
    height: 63px;
    margin: 12px 0 0 0;
    font-size: 14px;
    letter-spacing: 0.6px;
}
.news-list .more {
    width: 50px;
    height: 50px;
    display: block;
    color: #6D4909;
    margin: 0 0 0 -25px;
    text-align: center;
    background: #F3CF0C;
    position: absolute;
    bottom: -20px;
    left: 50%;
    z-index: 10;
    transition: all .3s ease;
    font-size: 0;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.news-list .more:before {
    content: "MORE";
    display: block;
    font-size: 12px;
    line-height: 50px;
}
.news-list li .box:hover .more {
    color: #fff;
    transition: all .3s ease;
}
.news-list li .box .more::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #483730;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.58, 1);
    transform: scale(0);
    transition: all .3s ease;
    z-index: -1;
}
.news-list li .box:hover .more::after {
    transition: opacity 0.45s cubic-bezier(0.23, 1, 0.58, 1), transform 0.6s cubic-bezier(0.23, 1, 0.58, 1);
    transform: scale(1.1);
}
.news-list .news-line{
    background: url('../../images/common/news/news-line.png') repeat;
    width: 100%;
    height: 1px;
}
/*------------ detail-main ------------*/
.news-date {
    font-size: 20px;
    color: #457704;
    font-weight: normal;
}
.news-title {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
    line-height: 28px;
}
article.editor{
    margin-bottom: 30px;
}
/*------------ rwd ------------*/
@media screen and (max-width: 1100px) {
    .news-list {
        margin: 0px -20px;
        margin-top: 60px
    }
}
@media screen and (max-width: 900px) {
    .news-list {
        max-width: 700px;
        margin: 0 auto;
        margin-top: 60px;
    }
    .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 {
        width: 100%;
        padding: 0 0 40px;
    }
}
