
        #honor-section { margin: 0; padding: 0; box-sizing: border-box; }
        
        #honor-section {
            background: #e8f5fb;
            color: #fff;
            padding: 60px 0;
            font-family: system-ui, -apple-system, sans-serif;
        }
        
        #honor-section .honor-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        #honor-section h2 {
            text-align: center;
            font-size: 36px;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #667eea 0%, #3d804b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .honor-subtitle {
            text-align: center;
            color: #94a3b8;
            margin-bottom: 50px;
        }
        
        .marquee-wrapper {
            position: relative;
            overflow: hidden;
            cursor: grab;
            user-select: none;
            padding: 20px 0;
        }
        
        .marquee-wrapper:active {
            cursor: grabbing;
        }
        
        .marquee-content {
            display: flex;
            gap: 30px;
            width: fit-content;
            will-change: transform;
        }
        
        .honor-card {
            flex-shrink: 0;
            width: 260px;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .honor-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .honor-card img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            pointer-events: none;
        }
        
        .honor-info {
            padding-top: 10px;
            padding-left: 12px;
            padding-bottom: 12px;
        }
        
        .honor-info h3 {
            font-size: 14px;
            margin-bottom: 8px;
            color: #000000;
        }
        
        .honor-info p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 0px;
        }
        
        .badge {
            display: inline-block;
            padding: 4px 12px;
            background: #c5dffa;
            color: #6699CC;
            border-radius: 20px;
            font-size: 12px;
            margin-top: 12px;
            border: 1px solid rgba(99,102,241,0.3);
        }
        
        /* 控制面板 */
        .controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 10px 24px;
            background: rgba(245, 164, 164, 0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: #000000;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }
        
        .btn:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        .btn.active {
            background: #6366f1;
            border-color: #6366f1;
        }
        
        .speed-control {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #94a3b8;
            font-size: 14px;
        }
        
        input[type="range"] {
            width: 120px;
            accent-color: #6366f1;
        }
