 :root {
            --primary-white: #ffffff;
            --secondary-white: #f8f9fa;
            --accent-blue: #0878E5;
            --accent-gold: #b38728;
            --text-dark: #2d3748;
            --text-gray: #718096;
            --border-light: #e2e8f0;
        }
/*         
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
        } */
        body {
            background: linear-gradient(135deg, var(--secondary-white) 0%, var(--primary-white) 100%);
            color: var(--text-dark);
            min-height: 100vh;  font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
            line-height: 1.6; 
        }
        html{font-size: 16px!important;}
       .container-honorr {  max-width: 1400px; margin: 0 auto; padding: 2rem; }
       .header-honor {  text-align: center;  margin-bottom: 3rem;  position: relative;  padding:0 0 3rem 0; }
        
       .header-honor::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue));
            border-radius: 2px;
        }
        
        .h1-honor {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--accent-blue);
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .subtitle-honor {
            color: var(--text-gray);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }
        
        .description-honor {
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem 2rem;
            background: var(--primary-white);
            border-radius: 16px;
            border: 1px solid var(--border-light);
            min-width: 200px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .stat-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-blue);
        }
        
        .stat-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(26, 68, 128, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .stat-item:hover::after {
            left: 100%;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--accent-blue);
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover .stat-number {
            transform: scale(1.1);
        }
        
        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .stat-item:hover .stat-label {
            color: var(--accent-blue);
        }
        
        .stat-tooltip {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-blue);
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.8rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            z-index: 100;
        }
        
        .stat-item:hover .stat-tooltip {
            opacity: 1;
            visibility: visible;
            bottom: -35px;
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .category-tab {
            padding: 1rem 2rem;
            background: var(--primary-white);
            border: 2px solid var(--border-light);
            border-radius: 50px;
            color: var(--text-gray);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            position: relative;
        }
        
        .category-tab.active, .category-tab:hover {
            background: var(--accent-blue);
            color: var(--primary-white);
            border-color: var(--accent-blue);
            transform: translateY(-2px);
            /* box-shadow: 0 6px 20px rgba(26, 68, 128, 0.2); */
        }
        
        .category-tab.active::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: var(--accent-blue);
            border-radius: 50%;
        }
        
        .honors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 2rem;
        }
        
        .honor-card {
            background: var(--primary-white);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 320px;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-light);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            cursor: pointer;
        }
        
        .honor-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
            border-color: var(--accent-blue);
        }
        
        .card-header {
            padding: 2rem 2rem 1rem;
            /* background: linear-gradient(135deg, var(--accent-blue) 0%, #2d5aa0 100%); */
            background: var(--accent-blue);
            color: white;
            text-align: center;
            position: relative;
        }
        
        .card-header::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: var(--accent-blue);
            border-radius: 50%;
            z-index: 1;
        }
        
        .card-header::before {
            content: '';
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary-white);
            border-radius: 50%;
            z-index: 0;
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-white);
        }
        
        .honor-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        
        .card-body {
            padding: 2.5rem 2rem 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .issuer {
            color: var(--accent-blue);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }
        
        .year-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            /* background: linear-gradient(135deg, var(--accent-gold) 0%, #d4af37 100%); */
            background:var(--accent-blue);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            margin-top: auto;
            box-shadow: 0 4px 15px rgba(179, 135, 40, 0.3);
            transition: transform 0.3s ease;
        }
        
        .honor-card:hover .year-badge {
            transform: scale(1.1);
        }
        
        .footer {
            text-align: center;
            margin-top: 5rem;
            padding: 3rem 0;
            color: var(--text-gray);
            font-size: 1rem;
            border-top: 1px solid var(--border-light);
        }
        
        .footer p {
            margin: 0.5rem 0;
        }
        
        .company-name {
            color: var(--accent-blue);
            font-weight: 600;
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        
        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            position: relative;
            animation: modalFadeIn 0.3s ease;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }
        
        .close-modal:hover {
            color: var(--accent-blue);
        }
        
        @media (max-width: 768px) {
            .honors-grid {
                grid-template-columns: 1fr;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .stats-bar {
                gap: 1.5rem;
            }
            
            .stat-item {
                min-width: 160px;
                padding: 1.2rem 1.5rem;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .category-tab {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .modal-content {
                padding: 2rem;
            }
        }