/*首页模块*/
/* 设置 honor-item 为弹性布局，使子元素垂直排列 */
.honor-item {
    display: flex;
    flex-direction: column; /* 垂直排列 */
    align-items: center; /* 水平居中 */
    text-align: center; /* 文字居中 */
}

/* 设置 h3 的样式 */
.honor-item h3 {
    margin-top: 10px; /* 图片和文字之间的间距 */
    font-size: 16px; /* 文字大小 */
    color: #333; /* 文字颜色 */
}
/* PC模式下设置图片高度为220px */
.honor-item img {
    height: 220px;   
    filter: grayscale(0%) !important; /* 强制显示彩色 */
    opacity: 1 !important; /* 确保不透明度为 100% */
    object-fit: fill!important;
}

/* 移动端去掉图片高度 */
@media (max-width: 768px) {
    .honor-item img {
        height: auto;
    }
}

/*列表页*/
.list-page-honor-item {
    padding: 15px; /* 添加10px的内边距 */
}
/* PC模式下设置图片高度为300px，并强制覆盖其他样式 */
.list-page-honor-item img {
    height: 300px !important;
    object-fit: fill!important; /* 保持图片比例 */
}

/* 移动端去掉图片高度 */
@media (max-width: 768px) {
    .list-page-honor-item img {
        height: auto !important;
    }
}