@charset "UTF-8";

.news-list {
    margin-bottom: 80px;
}

.news-list .section-title-h {
    text-align: center;
    margin-bottom: 20px;
}

.news-list .news-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-bottom: 40px;
}

.news-list .news-items li .img {
    margin-bottom: 10px;
}

.news-list .news-items li time {
    color: #4D4D4D;
    font-size: 12px;
}

.news-list .news-items li .title {
    color: #4D4D4D;
    font-size: 14px;
    margin-top: 10px;
}

.news-list .pagenation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-list .pagenation li {
    margin: 0 10px;
}

.news-post {
    display: flex;
}

.news-post .post {
    width: 100%;
    max-width: 680px;
    margin-right: 40px;
}

.news-post .post .thumbnail {
    margin-bottom: 40px;
}

.news-post .thumbnail img {
    width: 100%;
}

.news-post .post .info {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.news-post .post .info time {
    font-size: 12px;
}

.news-post .post .info .category {
    background-color: #305D6E;
    color: #fff;
    font-size: 12px;
    padding: 2px 4px;
    margin-left: 10px;
}

.news-post .post .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
}

.news-post .post .content p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.news-post .sidebar {
    max-width: 280px;
}

.news-post .sidebar .title {
    border-bottom: solid 1px #4D4D4D;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.news-post .sidebar .tag-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.news-post .sidebar .tag-list li {
    background-color: #305D6E;
    font-size: 12px;
    padding: 2px 4px;
    margin: 0 10px 10px 0;
}

.news-post .sidebar .tag-list li a {
    color: #fff;
}

.news-post .sidebar .post-list li {
    margin-bottom: 10px;
}

.news-post .sidebar .post-list a {
    display: flex;
    align-items: center;
}

.news-post .sidebar .post-list .post-thumbnail {
    max-width: 80px;
    flex-shrink: 0;
    margin-right: 10px;
}

.news-post .sidebar .post-list .post-title {
    font-size: 12px;
    color: #4D4D4D;
}

.btn {
    margin: 0 auto 80px;
}

@media screen and (max-width:767px) {

    /*======max-width:767px======*/

    .news-list {
        margin-bottom: 60px;
    }

    .news-list .news-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-post {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .news-post .post {
        margin: 0 0 40px;
    }

    .btn {
        margin: 0 auto 60px;
    }

}