    .honor_box {
        padding: 5rem 0;
    }

    .honor_box .honor_title {
        font-weight: 600;
        font-size: 3.2rem;
        color: #333333;
        text-align: center;
        font-style: normal;
        text-transform: none;
        margin-bottom: 1.2rem;
    }

    .honor_box .honor_desc {
        font-weight: normal;
        font-size: 1.6rem;
        color: #333333;
        text-align: center;
        font-style: normal;
        text-transform: none;
        margin-bottom: 5rem;
    }

    .honor_box .honor_list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 5rem;
    }

    .honor_box .honor_item {
        background-image: url("../image/honor/bkbj.png");
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding: 2rem;

    }

    .honor_box .honor_item img {
        max-width: 100%;
        height: auto;
    }

    .honor_list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .honor_item {
        overflow: hidden;
        border-radius: 0.8rem;
        box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
        cursor: pointer;
    }

    .honor_item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .honor_item:hover img {
        transform: scale(1.03);
    }

    /* 图片预览模态框 */
    .image-preview-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .image-preview-modal.active {
        display: block;
        opacity: 1;
    }

    .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        cursor: pointer;
        z-index: 1;
    }

    .modal-close-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 4rem;
        height: 4rem;
        background: rgba(42, 124, 217, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 11;
    }

    .modal-close-btn:hover {
        background: rgba(42, 124, 217, 1);
        transform: scale(1.1);
    }

    .modal-close-btn svg {
        width: 2.4rem;
        height: 2.4rem;
        stroke: #FFFFFF;
        stroke-width: 2.5;
        fill: none;
    }

    .modal-zoom-controls {
        position: absolute;
        bottom: 2rem;
        right: 2rem;
        display: flex;
        gap: 1rem;
        z-index: 11;
    }

    .modal-zoom-in-btn,
    .modal-zoom-out-btn {
        width: 4rem;
        height: 4rem;
        background: rgba(42, 124, 217, 0.9);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .modal-zoom-in-btn:hover,
    .modal-zoom-out-btn:hover {
        background: rgba(42, 124, 217, 1);
        transform: scale(1.1);
    }

    .modal-zoom-in-btn svg,
    .modal-zoom-out-btn svg {
        width: 2.4rem;
        height: 2.4rem;
        stroke: #FFFFFF;
        stroke-width: 2.5;
        fill: none;
    }

    .preview-image {
        max-width: 100%;
        max-height: 80vh;
        object-fit: contain;
        display: block;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 85%;
        max-height: 85%;
        z-index: 5;
    }

    /* ============ 荣誉页面样式自适应媒体查询 ============ */

    /* ≤1599px */
    @media (max-width: 1599px) {
        .honor_box {
            padding: 4.5rem 0;
        }

        .honor_box .honor_title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .honor_box .honor_desc {
            font-size: 1.5rem;
            margin-bottom: 4rem;
        }

        .honor_list {
            gap: 1.5rem;
        }
    }

    /* ≤1439px */
    @media (max-width: 1439px) {
        .honor_box {
            padding: 4rem 0;
        }

        .honor_box .honor_title {
            font-size: 2.6rem;
        }

        .honor_box .honor_desc {
            font-size: 1.4rem;
            line-height: 2.8rem;
            margin-bottom: 3.5rem;
        }

        .honor_list {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.2rem;
        }

        .honor_item {
            border-radius: 0.6rem;
        }
    }

    /* ≤1279px */
    @media (max-width: 1279px) {
        .honor_box {
            padding: 3.5rem 0;
        }

        .honor_box .honor_title {
            font-size: 2.4rem;
            margin-bottom: 0.8rem;
        }

        .honor_box .honor_desc {
            font-size: 1.4rem;
            line-height: 2.4rem;
            margin-bottom: 3rem;
        }

        .honor_list {
            gap: 1rem;
        }

        .honor_item {
            border-radius: 0.5rem;
        }
    }

    /* ≤1199px */
    @media (max-width: 1199px) {
        .honor_box .honor_item {
            padding: 1rem;
        }

        .honor_box .honor_list {
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .honor_box {
            padding: 3rem 0;
        }

        .honor_box .honor_title {
            font-size: 2.2rem;
            margin-bottom: 0.6rem;
        }

        .honor_box .honor_desc {
            font-size: 1.4rem;
            line-height: 2.2rem;
            margin-bottom: 2.5rem;
        }

        .honor_list {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.8rem;
        }

        .modal-close-btn,
        .modal-zoom-in-btn,
        .modal-zoom-out-btn {
            width: 3.5rem;
            height: 3.5rem;
        }

        .modal-close-btn svg,
        .modal-zoom-in-btn svg,
        .modal-zoom-out-btn svg {
            width: 2rem;
            height: 2rem;
        }
    }

    /* ≤991px */
    @media (max-width: 991px) {
        .honor_box {
            padding: 2.5rem 0;
        }

        .honor_box .honor_title {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .honor_box .honor_desc {
            font-size: 1.4rem;
            line-height: 2rem;
            margin-bottom: 2rem;
        }

        .honor_list {
            gap: 0.6rem;
        }

        .honor_item {
            border-radius: 0.4rem;
        }

        .modal-zoom-controls {
            bottom: 1rem;
            right: 1rem;
            gap: 0.6rem;
        }

        .modal-close-btn {
            top: 1rem;
            right: 1rem;
        }
    }

    /* ≤767px */
    @media (max-width: 767px) {
        .honor_box {
            padding: 2rem 0;
        }

        .honor_box .honor_title {
            font-size: 1.8rem;
            margin-bottom: 0.4rem;
        }

        .honor_box .honor_desc {
            font-size: 1.4rem;
            line-height: 1.8rem;
            margin-bottom: 1.5rem;
        }

        .honor_list {
            grid-template-columns: 1fr;
            gap: 0.5rem;
        }

        .honor_item {
            border-radius: 0.3rem;
        }

        .modal-close-btn,
        .modal-zoom-in-btn,
        .modal-zoom-out-btn {
            width: 3rem;
            height: 3rem;
        }

        .modal-close-btn svg,
        .modal-zoom-in-btn svg,
        .modal-zoom-out-btn svg {
            width: 1.6rem;
            height: 1.6rem;
        }

        .modal-content {
            max-width: 95%;
            max-height: 95%;
        }

        .preview-image {
            max-height: 70vh;
        }
    }