  .news {
        padding: 8rem 0;
    }

    .news .news_title {
        font-weight: 600;
        font-size: 4.2rem;
        color: #2D3748;
        text-align: center;
        font-style: normal;
        text-transform: none;
        margin-bottom: 3rem;
        font-family: ROBOTO;
    }

    /* 1111111111 */
    .newsRecommend {
        display: grid;
        grid-template-columns: minmax(0, 68rem) 1fr;
        align-items: center;
        background-color: #F2F4F8;
        padding: 3rem;
    }

    .newsRecommend .newsRecommend_left {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .newsRecommend .newsRecommend_left .newsRecommend_left_img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.3s ease-in-out;
    }



    .newsRecommend .newsRecommend_right {
        padding: 5rem;
    }

    .newsRecommend .newsRecommendTimer {
        display: flex;
        align-items: center;
        font-weight: 400;
        font-size: 1.6rem;
        color: #4A5568;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-bottom: 1.2rem;
    }

    .newsRecommend .newsRecommendTimer img {
        max-width: 1.6rem;
        max-height: 1.6rem;
        margin-right: 0.8rem;
    }

    .newsRecommend .newsRecommend_right_title {
        font-weight: 600;
        font-size: 3.2rem;
        color: #1E3A5F;
        line-height: 3.8rem;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-bottom: 2rem;
        font-family: ROBOTO;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .newsRecommend .newsRecommend_right_desc {
        margin-bottom: 5rem;
        font-weight: 400;
        font-size: 1.6rem;
        color: #4A5568;
        line-height: 2.9rem;
        text-align: left;
        font-style: normal;
        text-transform: none;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .newsRecommend .newsRecommend_right_btn {
        width: 5rem;
        height: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #718096;
        color: #fff;
    }

    .newsRecommend:hover {
        background: #FFFFFF;
        box-shadow: 0px 4px 16px 0px rgba(113, 128, 150, 0.42);

    }

    .newsRecommend:hover .newsRecommend_left_img {
        transform: scale(1.01);
    }

    .newsRecommend:hover .newsRecommend_right_title {
        color: #E7832B;
    }

    .newsRecommend:hover .newsRecommend_right_btn {
        background-color: #E7832B;
        color: #fff;
    }

    /* 11111111111111 */
    .news .news_list {
        margin-top: 3rem;
        margin-bottom: 8rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .news .news_list_item {
        background: #F2F4F8;
        padding: 3rem;
    }

    .news .news_list_item_timer {
        display: flex;
        align-items: center;
        font-weight: 400;
        font-size: 1.4rem;
        color: #4A5568;
        text-align: left;
        font-style: normal;
        text-transform: none;
        margin-bottom: 1.2rem;
    }

    .news .news_list_item_timer img {
        max-width: 1.6rem;
        max-height: 1.6rem;
        margin-right: 0.8rem;
    }

    .news .news_list_title {
        margin-bottom: 2rem;
        font-size: 3.2rem;
        color: #1E3A5F;
        line-height: 3.8rem;
        text-align: left;
        font-style: normal;
        text-transform: none;
        font-family: ROBOTO;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-family: 600;
    }

    .news .news_list_desc {
        font-weight: 400;
        font-size: 1.6rem;
        color: #4A5568;
        line-height: 2.9rem;
        text-align: left;
        font-style: normal;
        text-transform: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 2rem;
    }

    .news .news_list_item_btn {
        width: 5rem;
        height: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #718096;
        color: #fff;
    }

    .news .news_list_item:hover .news_list_title {
        color: #E7832B;
    }

    .news .news_list_item:hover .news_list_item_btn {
        background-color: #E7832B;
        color: #fff;
    }

    .commom_pagination {
        display: flex;
        gap: 3rem;
        align-items: center;
        justify-content: center;
    }

    .commom_pagination a {
        display: block;
        width: 5rem;
        height: 5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 1.6rem;
        color: #4A5568;
        font-style: normal;
        text-transform: none;
        border: 1px solid #dcdee1;
        border-radius: 50%;
    }

    .commom_pagination a:hover {
        color: #fff;
        background-color: #E7832B;
    }

    .commom_pagination a.active {
        color: #fff;
        background-color: #E7832B;
    }

    .commom_pagination a svg,
    .commom_pagination a svg path {
        transition: none !important;
    }

    /* ===== 自适应媒体查询 ===== */

    @media (max-width: 1599px) {
        .news {
            padding: 6rem 0;
        }

        .news .news_title {
            font-size: 3.8rem;
            margin-bottom: 2.5rem;
        }

        .newsRecommend {
            padding: 2.5rem;
        }

        .newsRecommend .newsRecommend_right {
            padding: 4rem;
        }

        .newsRecommend .newsRecommendTimer {
            font-size: 1.5rem;
        }

        .newsRecommend .newsRecommend_right_title {
            font-size: 2.8rem;
            line-height: 3.4rem;
            margin-bottom: 1.8rem;
        }

        .newsRecommend .newsRecommend_right_desc {
            font-size: 1.5rem;
            line-height: 2.6rem;
            margin-bottom: 4rem;
        }

        .newsRecommend .newsRecommend_right_btn {
            width: 4.5rem;
            height: 4.5rem;
        }

        .news .news_list {
            margin-top: 2.5rem;
            margin-bottom: 6rem;
            gap: 1.8rem;
        }

        .news .news_list_item {
            padding: 2.5rem;
        }

        .news .news_list_title {
            font-size: 2.8rem;
            line-height: 3.4rem;
            margin-bottom: 1.8rem;
        }

        .news .news_list_desc {
            font-size: 1.5rem;
            line-height: 2.6rem;
        }

        .news .news_list_item_btn {
            width: 4.5rem;
            height: 4.5rem;
        }

        .commom_pagination {
            gap: 2.5rem;
        }

        .commom_pagination a {
            width: 4.5rem;
            height: 4.5rem;
            font-size: 1.5rem;
        }

        .commom_pagination a svg {
            width: 2.2rem !important;
            height: 2.2rem !important;
        }
    }

    @media (max-width: 1439px) {
        .news {
            padding: 5rem 0;
        }

        .news .news_title {
            font-size: 3.4rem;
            margin-bottom: 2rem;
        }

        .newsRecommend {
            padding: 2rem;
            grid-template-columns: minmax(0, 58rem) 1fr;
        }

        .newsRecommend .newsRecommend_right {
            padding: 3rem;
        }

        .newsRecommend .newsRecommendTimer {
            font-size: 1.4rem;
        }

        .newsRecommend .newsRecommend_right_title {
            font-size: 2.4rem;
            line-height: 3rem;
            margin-bottom: 1.5rem;
        }

        .newsRecommend .newsRecommend_right_desc {
            font-size: 1.4rem;
            line-height: 2.4rem;
            margin-bottom: 3rem;
        }

        .newsRecommend .newsRecommend_right_btn {
            width: 4rem;
            height: 4rem;
        }

        .news .news_list {
            margin-top: 2rem;
            margin-bottom: 5rem;
            gap: 1.6rem;
        }

        .news .news_list_item {
            padding: 2rem;
        }

        .news .news_list_title {
            font-size: 2.4rem;
            line-height: 3rem;
            margin-bottom: 1.5rem;
        }

        .news .news_list_desc {
            font-size: 1.4rem;
            line-height: 2.4rem;
        }

        .news .news_list_item_btn {
            width: 4rem;
            height: 4rem;
        }

        .commom_pagination {
            gap: 2rem;
        }

        .commom_pagination a {
            width: 4rem;
            height: 4rem;
            font-size: 1.4rem;
        }

        .commom_pagination a svg {
            width: 2rem !important;
            height: 2rem !important;
        }
    }

    @media (max-width: 1279px) {
        .news {
            padding: 4rem 0;
        }

        .news .news_title {
            font-size: 3rem;
            margin-bottom: 1.8rem;
        }

        .newsRecommend {
            padding: 1.8rem;
            grid-template-columns: minmax(0, 50rem) 1fr;
        }

        .newsRecommend .newsRecommend_right {
            padding: 2.5rem;
        }

        .newsRecommend .newsRecommendTimer {
            font-size: 1.4rem;
        }

        .newsRecommend .newsRecommend_right_title {
            font-size: 2rem;
            line-height: 2.6rem;
            margin-bottom: 1.2rem;
        }

        .newsRecommend .newsRecommend_right_desc {
            font-size: 1.4rem;
            line-height: 2.2rem;
            margin-bottom: 2.5rem;
        }

        .newsRecommend .newsRecommend_right_btn {
            width: 3.6rem;
            height: 3.6rem;
        }

        .news .news_list {
            margin-top: 1.8rem;
            margin-bottom: 4rem;
            gap: 1.4rem;
        }

        .news .news_list_item {
            padding: 1.8rem;
        }

        .news .news_list_title {
            font-size: 2rem;
            line-height: 2.6rem;
            margin-bottom: 1.2rem;
        }

        .news .news_list_desc {
            font-size: 1.4rem;
            line-height: 2.2rem;
        }

        .news .news_list_item_btn {
            width: 3.6rem;
            height: 3.6rem;
        }

        .commom_pagination {
            gap: 1.8rem;
        }

        .commom_pagination a {
            width: 3.6rem;
            height: 3.6rem;
            font-size: 1.4rem;
        }

        .commom_pagination a svg {
            width: 1.8rem !important;
            height: 1.8rem !important;
        }
    }

    @media (max-width: 1199px) {
        .news {
            padding: 3.5rem 0;
        }

        .news .news_title {
            font-size: 2.6rem;
            margin-bottom: 1.5rem;
        }

        .newsRecommend {
            grid-template-columns: 1fr;
            padding: 1.6rem;
        }

        .newsRecommend .newsRecommend_left {
            height: auto;
        }

        .newsRecommend .newsRecommend_right {
            padding: 2rem;
        }

        .newsRecommend .newsRecommendTimer {
            font-size: 1.4rem;
        }

        .newsRecommend .newsRecommend_right_title {
            font-size: 1.8rem;
            line-height: 2.4rem;
            margin-bottom: 1rem;
        }

        .newsRecommend .newsRecommend_right_desc {
            font-size: 1.4rem;
            line-height: 2rem;
            margin-bottom: 2rem;
        }

        .newsRecommend .newsRecommend_right_btn {
            width: 3.4rem;
            height: 3.4rem;
        }

        .news .news_list {
            grid-template-columns: repeat(2, 1fr);
            margin-top: 1.5rem;
            margin-bottom: 3.5rem;
            gap: 1.4rem;
        }

        .news .news_list_item {
            padding: 1.6rem;
        }

        .news .news_list_title {
            font-size: 1.8rem;
            line-height: 2.4rem;
            margin-bottom: 1rem;
        }

        .news .news_list_desc {
            font-size: 1.4rem;
            line-height: 2rem;
        }

        .news .news_list_item_btn {
            width: 3.4rem;
            height: 3.4rem;
        }

        .commom_pagination {
            gap: 1.5rem;
        }

        .commom_pagination a {
            width: 3.4rem;
            height: 3.4rem;
            font-size: 1.4rem;
        }

        .commom_pagination a svg {
            width: 1.7rem !important;
            height: 1.7rem !important;
        }
    }

    @media (max-width: 991px) {
        .news {
            padding: 3rem 0;
        }

        .news .news_title {
            font-size: 2.4rem;
            margin-bottom: 1.2rem;
        }

        .newsRecommend {
            padding: 1.4rem;
        }

        .newsRecommend .newsRecommend_right {
            padding: 1.6rem;
        }

        .newsRecommend .newsRecommendTimer {
            font-size: 1.4rem;
        }

        .newsRecommend .newsRecommend_right_title {
            font-size: 1.7rem;
            line-height: 2.2rem;
            margin-bottom: 0.8rem;
        }

        .newsRecommend .newsRecommend_right_desc {
            font-size: 1.4rem;
            line-height: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .newsRecommend .newsRecommend_right_btn {
            width: 3rem;
            height: 3rem;
        }

        .news .news_list {
            grid-template-columns: repeat(2, 1fr);
            margin-top: 1.2rem;
            margin-bottom: 3rem;
            gap: 1.2rem;
        }

        .news .news_list_item {
            padding: 1.4rem;
        }

        .news .news_list_title {
            font-size: 1.7rem;
            line-height: 2.2rem;
            margin-bottom: 0.8rem;
        }

        .news .news_list_desc {
            font-size: 1.4rem;
            line-height: 1.8rem;
        }

        .news .news_list_item_btn {
            width: 3rem;
            height: 3rem;
        }

        .commom_pagination {
            gap: 1.2rem;
        }

        .commom_pagination a {
            width: 3rem;
            height: 3rem;
            font-size: 1.4rem;
        }

        .commom_pagination a svg {
            width: 1.5rem !important;
            height: 1.5rem !important;
        }
    }

    @media (max-width: 767px) {
        .news {
            padding: 2.5rem 0;
        }

        .news .news_title {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .newsRecommend {
            padding: 1.2rem;
        }

        .newsRecommend .newsRecommend_right {
            padding: 1.2rem;
        }

        .newsRecommend .newsRecommendTimer {
            font-size: 1.4rem;
        }

        .newsRecommend .newsRecommend_right_title {
            font-size: 1.6rem;
            line-height: 2rem;
            margin-bottom: 0.6rem;
        }

        .newsRecommend .newsRecommend_right_desc {
            font-size: 1.4rem;
            line-height: 1.6rem;
            margin-bottom: 1.2rem;
        }

        .newsRecommend .newsRecommend_right_btn {
            width: 2.8rem;
            height: 2.8rem;
        }

        .news .news_list {
            grid-template-columns: 1fr;
            margin-top: 1rem;
            margin-bottom: 2.5rem;
            gap: 1.2rem;
        }

        .news .news_list_item {
            padding: 1.2rem;
        }

        .news .news_list_title {
            font-size: 1.6rem;
            line-height: 2rem;
            margin-bottom: 0.6rem;
        }

        .news .news_list_desc {
            font-size: 1.4rem;
            line-height: 1.6rem;
        }

        .news .news_list_item_btn {
            width: 2.8rem;
            height: 2.8rem;
        }

        .commom_pagination {
            gap: 1rem;
        }

        .commom_pagination a {
            width: 2.8rem;
            height: 2.8rem;
            font-size: 1.4rem;
        }

        .commom_pagination a svg {
            width: 1.4rem !important;
            height: 1.4rem !important;
        }
    }