.honor {
    width: calc(max(120px, 20.3125vw) * 2);
    display: flex;
    position: relative;
    background-color: #fff;
    z-index: 1;
}

.honor>div:last-child {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #D7141C;
    z-index: -1;
}

.honor>div {
    width: max(120px, 20.3125vw);
    /* height: 72px; */
    padding: max(12px, 0.9375vw) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .6s ease;
    font-family: '苹方-简 中粗体';
    font-size: var(--21px--);
}

.Hactive {
    color: #fff;
}

.hon2 {
    width: 100%;
    padding: 5%;
    position: relative;
}

.hon2>div {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
}

.hon2>div>img {
    width: 100%;
    object-fit: contain;
    align-self: center;
}

@media (max-width: 1200px) {
    .hon2>div {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hon2>div {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hon2>div {
        grid-template-columns: repeat(1, 1fr);
    }
}