/* News =======================================================================*/
.news-list {
    padding-bottom: 90px;
}

.news-list .news-items {
    border-bottom: 1px dotted #4c4c4c;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.news-list span {
    display: block;
    text-align: left;
    color: #6A6A6A;
    transition: all .2s;
}

.news-list figure {
    width: 171px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.news-list figure img {
    width: auto;
    max-height: 210px;
    transition: all .2s;
}

.news-list a:hover figure img {
    transform: scale(1.1);
}

.news-list .time {
    font-size: 18px;
    color: #ababab;
    margin-bottom: 10px;
}

.news-list .title {
    font-size: 19px;
    color: #282828;
    text-align: left;
    margin-bottom: 10px;
    line-height: 28px;
}

.news-list .text {
    font-size: 14px;
    max-height: 72px;
}

.btn-moreText {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 108px;
    width: 108px;
    border-radius: 108px;
    color: #fff !important;
    background: #628e59;
    font-size: 12px !important;
}

@media only screen and (min-width: 993px) {
    .news-list .news-items {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .news-list .content {
        width: calc(100% - 108px - 171px - 29px - 89px);
        padding-right: 22px;
        border-right: 4px solid #628e59;
    }

}

@media only screen and (max-width: 992px) {
    .news-list .news-items {
        text-align: center;
    }

    .news-list figure {
        width: 100%;
    }

    .btn-moreText {
        display: inline-flex;
        margin: 24px auto 0 auto;
    }
}

/* News Detail =======================================================================*/
.news_detail {
}

.news_detail .time {
    font-size: 18px;
    color: #ababab;
    padding-bottom: 15px;
}

.news_detail .name {
    font-size: 24px;
    color: #282828;
    padding-bottom: 15px;
}

.news_detail .text {
    border-top: 10px;
}

.newsButton {
    padding: 50px 0 10px 0;
}