@media screen and (max-width: 1200px) {
    main {
        background-color: rgba(245, 245, 245, 1);
    }

    figure {
        width: 100%;
        height: 20vh;
        background-image: url("/images/news/h_banner.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    section {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .news_content {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .nav_bar {
        width: 100%;
        display: flex;
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0px;
        line-height: 2.4rem;
        color: rgba(34, 34, 34, 1);
        vertical-align: middle;
        cursor: pointer;
        margin-bottom: 1rem;
    }

    .nav_bar nav:first-child {
        margin-right: 2rem;
    }

    .nav_bar .active {
        color: rgba(25, 161, 230, 1);
        border-bottom: 2px solid rgba(25, 161, 230, 1);
    }

    .content {
        width: 100%;
        box-sizing: border-box;
        padding: 1rem;
        background-color: #fff;
    }

    .content_list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid rgba(224, 224, 224, 1);
    }

    .content_list :last-child {
        margin-bottom: 1rem;
    }

    .content_list_img {
        width: 100%;
        height: auto;
        margin-right: 0;
        flex-shrink: 0;
    }

    .content_list_img:hover img {
        transform: scale(1.05);
        transition: all 0.2s;
    }

    .content_list img {
        width: 100%;
        height: auto;
    }

    .content_p {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .content_p h3 {
        font-size: 1.2rem;
        font-weight: 400;
        color: rgba(34, 34, 34, 1);
        margin-bottom: 1rem;
        max-width: 70%;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        display: block;
    }

    .content_p p {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 1.6rem;
        color: rgba(128, 128, 128, 1);
        width: 100%;
        display: block;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
    }

    .read_more {
        padding: .6rem 1rem;
        border: 1px solid rgba(25, 161, 230, 1);
        text-align: center;
        font-size: 1rem;
        color: rgba(25, 161, 230, 1);
        margin-top: 1.2rem;
        cursor: pointer;
    }

    .read_more:hover {
        background-color: var(--theme-color);
        border: 1px solid var(--theme-color);
        color: #fff;
    }

    .page_foot {
        display: flex;
        align-items: center;
    }

}