body {
    background: #F7F5F6;
}

.honor_container * {
    box-sizing: border-box;
}

.honor_container {
    max-width: 1300px;
    margin: 0 auto;
    font-family: "微软雅黑";
    position: relative;
}

.honor_container a {
    text-decoration: none;
    display: block;
    position: relative;
    height: 80%;
    padding: 1%;

    text-align: center;
    color: #333333;
    /* 保留原有transition，但后续取消hover触发，不删除不影响 */
    transition: color 600ms ease, background 600ms ease, border 600ms ease, opacity 600ms ease, transform 600ms ease, box-shadow 600ms ease;
}

.honor_container .swiper-container {
    height: 100%;
}

.honor_container .swiper_arrow div {
    background: none;
    text-align: center;
    border: 1px solid #bfbfc0;
    color: #bfbfc0;
    border-radius: 50%;
    font-weight: bold;
    width: 36px;
    height: 36px;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 600ms ease;
    vertical-align: middle;
}

.honor_container .swiper_arrow div:hover,
.honor_container .swiper_arrow div:hover svg path {
    border-color: #017cc3;
    background-color: #017cc3;
    color: #fff;
    fill: #fff;
}

.honor_container .swiper-button-prev {
    transform: rotate(180deg);
    left: -8%;
}

.honor_container .swiper-button-next {
    right: -8%;
}

/* 1. 取消swiper-slide的padding（移除图片间距）+ 删除hover效果 */
.honor_container .swiper-slide {
    height: auto;
    padding: 0; /* 原padding:10px 2px 10px 0，改为0取消间距 */
}

/* 2. 完全删除slide的hover效果（核心取消鼠标经过效果） */
/* 注释/删除原hover样式，等同于取消效果 */

.honor_container .honor_title {
    font-size: 16px;
    max-height: 52px;
    overflow: hidden;
    line-height: 1.6;
}


.honor_container .honor_img {
    max-width: 200px; /* 原360px改为200px */
    margin: 0 auto;
    height: 200px; /* 原266px改为200px */
    margin-bottom: 38px; /* 保留原有margin-bottom */
} 
.honor_container .honor_img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    object-fit: scale-down;
}

@media (max-width: 768px) {
    .honor_container .swiper_arrow {
        text-align: center;
        margin-top: 5px;
    }
    .honor_container .swiper_arrow div {
        position: inherit;
        display: inline-block;
    }
    .honor_container .swiper_arrow div svg {
        vertical-align: middle;
    }
}