.honor-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            text-align: center;
        }

        .honor-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .honor-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background-color: #b71c1c;
            margin: 10px auto 0;
        }

        /* 卡片容器 */
        .honor-container {
            display: flex;
            flex-wrap: wrap;
            /* justify-content: space-between; */
            gap: 20px;
            margin-bottom: 40px;
        }

        .honor-item {
            flex: 0 0 calc(20% - 16px);
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .honor-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .honor-image-wrapper {
            width: 100%;
            padding-top: 141.4%; /* A4比例 */
            position: relative;
            background: #e0e0e0;
        }

        .honor-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .honor-caption {
            padding: 15px;
            font-size: 0.9rem;
            color: #666;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* 分页器样式 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            font-size: 14px;
        }

        .pagination a,
        .pagination span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 4px;
            text-decoration: none;
            color: #666;
            background: #f0f0f0;
            transition: all 0.2s ease;
        }

        .pagination a:hover {
            background: #e0e0e0;
            color: #333;
        }

        .pagination .current {
            background: #b71c1c;
            color: #fff;
            font-weight: bold;
        }

        .pagination .ellipsis {
            background: transparent;
            color: #999;
            cursor: default;
        }

        .pagination .arrow {
            font-size: 16px;
            font-weight: bold;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .honor-item {
                flex: 0 0 calc(33.333% - 13.33px);
            }
        }

        @media (max-width: 768px) {
            .honor-item {
                flex: 0 0 calc(50% - 10px);
            }
            .honor-title {
                font-size: 1.5rem;
            }
            .pagination {
                gap: 6px;
            }
            .pagination a,
            .pagination span {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .honor-item {
                flex: 0 0 100%;
            }
            .honor-container {
                gap: 15px;
            }
            .pagination {
                gap: 4px;
            }
            .pagination a,
            .pagination span {
                width: 26px;
                height: 26px;
                font-size: 12px;
            }
            .pagination .arrow {
                font-size: 14px;
            }
        }