.news {
    padding: 100px 0;
}

.news .news_cen {
    display: flex;
    flex-wrap: wrap;
}

.news .news_cen .news_box {
    width: 31.43%;
    margin-right: 2.855%;
    margin-bottom: 40px;
}

.news .news_cen .news_box:nth-child(3n) {
    margin-right: 0;
}

.news_box a .news_prc {
    width: 100%;
    aspect-ratio: 440/240;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news_box a .news_prc img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news_box a:hover .news_prc img {
    transform: scale(1.05);
}

.news_box a .news_name {
    font-size: 24px;
    line-height: 32px;
    font-family: "HarmonyOS_Sans_Regular";
    color: #000000;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.news_box a:hover .news_name {
    color: #f47900;
}

.news_box a .news_text {
    font-size: 15px;
    line-height: 22px;
    color: #808080;
    font-family: "HarmonyOS_Sans_Regular";
    margin-top: 16px;
}

.news_box a .news_more {
    margin-top: 40px;
    width: 80px;
    height: 30px;
    border-radius: 30px;
    border: 1px solid #cccccc;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    color: #f47900;
}

.news_box a:hover .news_more {
    background: #f47900;
    border-color: #f47900;
    color: #fff;
}

@media (max-width: 1500px) {
    .news {
        padding: 80px 0;
    }
}

@media (max-width: 1200px) {
    .news {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .news .news_cen .news_box {
        width: 48%;
        margin-right: 4%;
    }

    .news {
        padding: 50px 0;
    }

    .news .news_cen .news_box:nth-child(3n) {
        margin-right: 4%;
    }

    .news .news_cen .news_box:nth-child(2n) {
        margin-right: 0;
    }

    .news_box a .news_name {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    .news {
        padding: 36px 0;
    }

    .news .news_cen .news_box {
        width: 100%;
        margin-right: 0 !important;
    }

    .news_box a .news_name {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .news {
        padding: 50px 0;
    }

    .news .news_cen .news_box {
        margin-bottom: 30px;
    }



    .news_box a .news_text {
        font-size: 14px;
        line-height: 20px;
        margin-top: 10px;
    }

    .news_box a .news_more {
        margin-top: 20px;
    }
}