/* head.html (68326 chars) */
/* === è§è§åºç¡è®¾ç½® === */
        :root {
            --tea-dark: #1A3C2F;
            --tea-light: #5D7A6E;
            --tea-gold: #C8A064;
            --tea-bg: #F9F9F7;
            --party-red: #C41E3A;
            /* æ°å¢ï¼è¶è²é´å½±ï¼æ¯çº¯é»é´å½±æ´é«çº§ */
            --shadow-tea: rgba(26, 60, 47, 0.08);
            --shadow-gold: rgba(200, 160, 100, 0.2);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC', sans-serif;
            background-color: var(--tea-bg);
            color: #2C2C2C;
            scroll-behavior: smooth;
            background-image: radial-gradient(#d1d5db 1px, transparent 1px);
            background-size: 24px 24px;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* å¨å±éä¸­æå­é¢è² */
        ::selection {
            background: var(--tea-gold);
            color: #fff;
        }

        /* èªå®ä¹æ»å¨æ¡ */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
            transition: 0.3s;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--tea-gold);
        }

        .font-serif { font-family: 'Songti SC', 'STSong', 'SimSun', 'FangSong', serif; }

        /* éç¨æ é¢è£é¥°æ¡ */
        .section-title-deco {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--tea-dark) 0%, var(--tea-gold) 100%);
            margin: 16px auto 24px;
            border-radius: 2px;
            opacity: 0.8;
        }
        .section-title-deco.light {
            background: linear-gradient(90deg, var(--tea-gold) 0%, rgba(255,255,255,0.5) 100%);
        }

        /* å¯¼èªæ ä¼å */
        nav {
            border-bottom: 1px solid rgba(26, 60, 47, 0.05) !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
        }
        
        /* === é¡¶é¨ä¿¡æ¯æ  === */
        .top-bar {
            background: linear-gradient(135deg, #1A3C2F 0%, #234d3c 25%, #1A3C2F 50%, #234d3c 75%, #1A3C2F 100%);
            background-size: 200% 200%;
            animation: gradient-flow 15s ease infinite;
            color: rgba(255,255,255,0.95);
            padding: 0;
            font-size: 13px;
            position: relative;
            overflow: hidden;
            height: 36px;
            display: flex;
            align-items: center;
        }
        @keyframes gradient-flow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200,160,100,0.5), transparent);
        }
        .top-bar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(200,160,100,0.3), transparent);
        }
        .top-bar-inner {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .brand-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(200,160,100,0.15);
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid rgba(200,160,100,0.3);
        }
        .brand-badge .icon {
            font-size: 14px;
        }
        .brand-badge span {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .top-bar-divider {
            width: 1px;
            height: 16px;
            background: rgba(255,255,255,0.2);
        }
        .top-bar-links {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 12px;
        }
        .top-bar-links a {
            color: rgba(255,255,255,0.7);
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .top-bar-links a:hover {
            color: var(--tea-gold);
        }
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .hotline {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: rgba(255,255,255,0.8);
        }
        .hotline .icon {
            color: var(--tea-gold);
        }
        .date-display {
            background: rgba(0,0,0,0.2);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 11px;
            color: rgba(255,255,255,0.7);
            font-family: 'Menlo', 'Monaco', 'Consolas', monospace;
        }
        .tea-quote {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .quote-icon {
            font-size: 14px;
            animation: leaf-sway 3s ease-in-out infinite;
        }
        @keyframes leaf-sway {
            0%, 100% { transform: rotate(-5deg); }
            50% { transform: rotate(5deg); }
        }
        .quote-text {
            font-size: 13px;
            color: rgba(255,255,255,0.95);
            font-family: "æ¥·ä½", "KaiTi", "STKaiti", serif;
            letter-spacing: 2px;
            font-weight: 400;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }
        .quote-text.fade {
            opacity: 0;
        }
        
        /* å¯¼èªæ å¨æ */
        .nav-link { position: relative; cursor: pointer; white-space: nowrap; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 2px;
            background: var(--tea-gold); transition: all 0.4s; transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 80%; }

        /* è½®æ­å¾æç¤ºå¨æ ·å¼ */
        .indicator {
            width: 10px; height: 10px; background: rgba(255,255,255,0.4); 
            border-radius: 50%; cursor: pointer; transition: 0.3s;
            border: 1px solid rgba(255,255,255,0.6);
        }
        .indicator.active {
            background: var(--tea-gold); border-color: var(--tea-gold); transform: scale(1.2);
        }

        /* === ç»ç»æ¶ææ éæ»å¨ === */
        @keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
        
        .marquee-container {
            width: 100%; overflow: hidden; display: flex;
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            padding: 20px 0;
        }
        
        .marquee-track { display: flex; gap: 24px; width: max-content; animation: scroll-left 30s linear infinite; }
        .marquee-track.reverse { animation: scroll-right 35s linear infinite; }
        .marquee-container:hover .marquee-track { animation-play-state: paused; }

        .leader-card {
            width: 220px; flex-shrink: 0; background: white; border-radius: 8px; overflow: hidden;
            box-shadow: 0 4px 6px -1px var(--shadow-tea); transition: 0.4s; border: none;
        }
        .leader-card:hover { transform: translateY(-5px); box-shadow: 0 20px 25px -5px var(--shadow-gold); }
        .leader-img { width: 100%; height: 260px; overflow: hidden; position: relative; box-shadow: inset 0 -20px 40px -10px rgba(0,0,0,0.05); }\n        .leader-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
        
        /* åä¼é¢å¯¼åºåï¼å·¦è¾¹æ»å¨+å³è¾¹åºå®æé® */
        .leaders-with-join {
            display: flex;
            align-items: stretch;
            gap: 0;
            position: relative;
        }
        .leaders-with-join .marquee-container {
            flex: 1;
            mask-image: linear-gradient(to right, transparent, black 3%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 90%, transparent);
        }
        .leader-join-fixed {
            width: 140px;
            flex-shrink: 0;
            background: linear-gradient(145deg, var(--tea-dark), #234d3c);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.4s;
            margin: 20px 12px 20px 0;
            box-shadow: 0 4px 20px rgba(26,60,47,0.3);
        }
        .leader-join-fixed:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(26,60,47,0.4);
        }
        .leader-join-fixed .join-icon-box {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--tea-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tea-gold);
            transition: 0.3s;
        }
        .leader-join-fixed:hover .join-icon-box {
            background: var(--tea-gold);
            color: var(--tea-dark);
        }
        .leader-join-fixed h4 {
            color: white;
            font-size: 14px;
            font-weight: 700;
        }
        .leader-join-fixed p {
            color: rgba(255,255,255,0.6);
            font-size: 11px;
        }
        @media (max-width: 768px) {
            .leaders-with-join {
                flex-direction: column;
            }
            .leader-join-fixed {
                width: 100%;
                flex-direction: row;
                padding: 16px 24px;
                margin: 0 12px 20px 12px;
                border-radius: 12px;
            }
        }

        .member-card {
            width: 160px; flex-shrink: 0; background: white; border-radius: 12px; overflow: hidden;
            box-shadow: 0 4px 15px var(--shadow-tea); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer; border: 1px solid rgba(0,0,0,0.03);
        }
        .member-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 30px var(--shadow-gold); border-color: var(--tea-gold); }
        .member-img { width: 100%; height: 120px; object-fit: cover; display: flex; align-items: center; justify-content: center; }
        .member-card.member-pending { opacity: 0.6; cursor: default; border: 1px dashed #ddd; }
        .member-card.member-pending:hover { transform: none; box-shadow: 0 4px 15px var(--shadow-tea); border-color: #ddd; }

        /* === æ ¸å¿ä¸å¡ (Glass Bar) === */
        .glass-bar { 
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 
                0 4px 6px -1px rgba(0, 0, 0, 0.05), 
                0 2px 4px -1px rgba(0, 0, 0, 0.03),
                inset 0 0 0 1px rgba(255,255,255,0.8);
            position: relative; z-index: 30;
        }
        .glass-bar:hover {
            box-shadow: 
                0 20px 25px -5px rgba(0, 0, 0, 0.05), 
                0 10px 10px -5px rgba(0, 0, 0, 0.02),
                inset 0 0 0 1px rgba(255,255,255,0.9);
        }
        .service-card { display: flex; align-items: center; padding: 30px; transition: all 0.2s; cursor: pointer; border-right: 1px solid #f0f0f0; position: relative; overflow: hidden; }
        .service-card:hover { background: #f9fdfa; }
        .service-icon { width: 56px; height: 56px; background: #F0F4F3; color: var(--tea-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-right: 20px; transition: 0.4s; flex-shrink: 0; }
        .service-card:hover .service-icon { background: var(--tea-dark); color: var(--tea-gold); transform: rotate(15deg); }

        /* === ä¸å®¶è¯å§ (ç»çå¡ç) === */
        .expert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
        .judge-glass-card { 
            background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(12px); 
            border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 16px; padding: 24px; text-align: center; 
            transition: 0.4s; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
        }
        .judge-glass-card:hover { transform: translateY(-5px); border-color: var(--tea-gold); box-shadow: 0 15px 40px rgba(200, 160, 100, 0.15); background: rgba(255, 255, 255, 0.95); }
        .judge-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid rgba(255,255,255,0.8); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .judge-tag { background: var(--tea-dark); color: var(--tea-gold); padding: 4px 10px; font-size: 10px; border-radius: 4px; display: inline-block; margin-bottom: 8px; }

        /* === äººæåºæ°æ ·å¼ === */
        /* === äººæåºï¼å±é£æé£ç´ç¹æ === */
        .talent-accordion-box {
            display: flex;
            width: 100%;
            height: 500px;
            gap: 12px;
            overflow: hidden;
            padding: 10px;
        }

        .talent-panel {
            position: relative;
            flex: 1;
            border-radius: 24px;
            background-size: cover;
            background-position: center top;
            background-repeat: no-repeat;
            cursor: pointer;
            transition: flex 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            filter: saturate(0.8) brightness(0.9);
        }

        .talent-panel:hover, .talent-panel.active {
            flex: 3.5;
            filter: saturate(1.05) brightness(1);
            box-shadow: 0 20px 40px rgba(26,60,47,0.25);
            border: 1px solid rgba(255,255,255,0.4);
        }

        .talent-panel-more {
            flex: 0.5;
            filter: none;
        }
        .talent-panel-more:hover {
            flex: 0.8;
            filter: none;
        }

        .talent-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,60,47,0.95) 0%, rgba(26,60,47,0.3) 40%, transparent 100%);
            opacity: 0.85;
            transition: 0.5s;
        }
        .talent-panel:hover .talent-overlay, .talent-panel.active .talent-overlay {
            opacity: 0.4;
            background: linear-gradient(to top, rgba(26,60,47,0.9) 0%, transparent 60%);
        }

        /* ç«ææå­ (æ¶èµ·ç¶æ) */
        .talent-collapsed-info {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            transition: 0.4s;
            opacity: 1;
            writing-mode: vertical-rl;
            text-orientation: upright;
            letter-spacing: 4px;
            white-space: nowrap;
            z-index: 2;
        }
        .talent-panel:hover .talent-collapsed-info, .talent-panel.active .talent-collapsed-info {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }

        .vertical-name {
            font-family: "æ¥·ä½", "KaiTi", "STKaiti", serif;
            font-size: 20px;
            font-weight: bold;
            color: var(--tea-gold);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            margin-left: 8px;
        }
        .vertical-title {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            font-family: 'Songti SC', 'STSong', 'SimSun', 'FangSong', serif;
        }

        /* æ¨ªæè¯¦æ (å±å¼ç¶æ) */
        .talent-expanded-info {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: 0.6s 0.1s;
            z-index: 3;
            text-align: left;
        }
        .talent-panel:hover .talent-expanded-info, .talent-panel.active .talent-expanded-info {
            opacity: 1;
            transform: translateY(0);
        }

        .expanded-badge {
            display: inline-block;
            padding: 5px 14px;
            background: var(--tea-gold);
            color: var(--tea-dark);
            font-size: 11px;
            font-weight: bold;
            border-radius: 4px;
            margin-bottom: 10px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .expanded-badge.senior {
            background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
            color: #333;
        }
        .expanded-badge.backbone {
            background: linear-gradient(135deg, #B8D4CE, #9FC5BC);
            color: var(--tea-dark);
        }
        .expanded-name {
            font-size: 32px;
            color: white;
            font-family: "æ¥·ä½", "KaiTi", "STKaiti", serif;
            margin-bottom: 6px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            letter-spacing: 4px;
        }
        .expanded-desc {
            font-size: 13px;
            color: rgba(255,255,255,0.85);
            line-height: 1.7;
            max-width: 85%;
        }

        /* ç§»å¨ç«¯éé */
        @media (max-width: 768px) {
            .talent-accordion-box {
                flex-direction: row;
                overflow-x: auto;
                height: 400px;
                gap: 16px;
                padding-right: 20px;
                -webkit-overflow-scrolling: touch;
            }
            .talent-panel {
                min-width: 260px;
                flex: 0 0 auto;
                filter: none;
                border-radius: 20px;
            }
            .talent-panel:hover {
                flex: 0 0 auto;
            }
            .talent-panel-more {
                min-width: 120px;
            }
            .talent-collapsed-info { display: none; }
            .talent-expanded-info {
                opacity: 1;
                transform: translateY(0);
            }
            .talent-overlay {
                opacity: 0.5;
            }
            .expanded-name {
                font-size: 24px;
            }
        }

        /* å¼¹çªåçç­çº§å°å¾½ç«  */
        .talent-level-badge {
            position: absolute;
            bottom: -2px;
            right: -2px;
            padding: 2px 6px;
            font-size: 9px;
            font-weight: 600;
            border-radius: 8px;
            color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.15);
        }
        .talent-level-badge.gold {
            background: linear-gradient(135deg, #C8A064, #E8C98A);
        }
        .talent-level-badge.silver {
            background: linear-gradient(135deg, #888, #aaa);
        }
        
        /* å å¥äººæåºæé® */
        .join-talent-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--tea-dark), #2d5a48);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(26,60,47,0.3);
            position: relative;
            overflow: hidden;
        }
        .join-talent-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        .join-talent-btn:hover::before {
            left: 100%;
        }
        .join-talent-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(26,60,47,0.4);
            background: linear-gradient(135deg, #234d3c, var(--tea-dark));
        }
        .join-talent-btn .btn-icon {
            font-size: 18px;
        }
        .join-talent-btn .btn-arrow {
            transition: 0.3s;
        }
        .join-talent-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        /* === å å¥äººæåºå¼¹çªæ ·å¼ === */
        .join-talent-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
        .join-talent-intro {
            text-align: center;
            margin-bottom: 40px;
        }
        .join-talent-intro h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--tea-dark);
            margin-bottom: 12px;
            font-family: "æ¥·ä½", "KaiTi", "STKaiti", serif;
            letter-spacing: 2px;
        }
        .join-talent-intro p {
            font-size: 14px;
            color: #666;
        }
        .join-qr-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        @media (max-width: 640px) {
            .join-qr-grid {
                grid-template-columns: 1fr;
            }
        }
        .join-qr-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            text-align: center;
            transition: all 0.4s;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .join-qr-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(26,60,47,0.1);
            border-color: var(--tea-gold);
        }
        .join-qr-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        .join-qr-icon {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .join-qr-icon.wechat {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            color: #2e7d32;
        }
        .join-qr-icon.gzh {
            background: linear-gradient(135deg, #f0f4f3, #e0ebe8);
            color: var(--tea-dark);
        }
        .join-qr-title {
            text-align: left;
        }
        .join-qr-title h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--tea-dark);
            margin-bottom: 4px;
        }
        .join-qr-title p {
            font-size: 12px;
            color: #999;
        }
        .join-qr-image {
            width: 180px;
            height: 180px;
            margin: 0 auto 20px;
            background: linear-gradient(145deg, #fafafa, #f0f0f0);
            border-radius: 16px;
            padding: 12px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
        }
        .join-qr-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }
        .join-qr-tip {
            font-size: 13px;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 16px;
            background: #f9f9f7;
            border-radius: 8px;
        }
        .join-qr-tip span {
            font-size: 14px;
        }
        .join-talent-note {
            background: linear-gradient(135deg, #f8f9f7, #f0f2ef);
            border-radius: 16px;
            padding: 24px 30px;
            border-left: 4px solid var(--tea-gold);
        }
        .join-talent-note h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--tea-dark);
            margin-bottom: 16px;
        }
        .join-talent-note ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .join-talent-note li {
            position: relative;
            padding-left: 24px;
            margin-bottom: 10px;
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }
        .join-talent-note li:last-child {
            margin-bottom: 0;
        }
        .join-talent-note li::before {
            content: 'â';
            position: absolute;
            left: 0;
            color: var(--tea-gold);
            font-weight: bold;
        }

        /* === ä¸ªäººå¼¹çªå·¦å³å¸å± === */
        .person-card {
            display: flex;
            gap: 50px;
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            align-items: stretch;
            min-height: calc(100vh - 200px);
        }
        @media (max-width: 768px) {
            .person-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 24px;
                gap: 24px;
                min-height: auto;
            }
        }
        .person-photo-wrap {
            flex-shrink: 0;
            position: relative;
            display: flex;
            align-items: flex-start;
        }
        .person-photo {
            width: 280px;
            height: 360px;
            border-radius: 12px;
            background: linear-gradient(145deg, #f5f5f5, #e8e8e8);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .person-photo span {
            color: #bbb;
            font-size: 14px;
        }
        .person-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .person-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, var(--tea-dark), #2d5a48);
            color: var(--tea-gold);
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26,60,47,0.3);
            white-space: nowrap;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            font-weight: 600;
        }
        .person-info-wrap {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .person-header {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid #eee;
        }
        .person-name {
            font-size: 36px;
            font-weight: 700;
            color: var(--tea-dark);
            font-family: "æ¥·ä½", "KaiTi", "STKaiti", serif;
            letter-spacing: 8px;
            margin-bottom: 10px;
        }
        .person-alias {
            font-size: 15px;
            color: #666;
        }
        .person-divider {
            display: none;
        }
        .person-bio-section {
            flex: 1;
        }
        .person-bio-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--tea-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .person-bio-title::before {
            content: '';
            width: 4px;
            height: 18px;
            background: var(--tea-gold);
            border-radius: 2px;
        }
        .person-bio {
            line-height: 2.2;
            background: #FAFAF8;
            padding: 24px;
            border-radius: 12px;
            border-left: 3px solid var(--tea-gold);
        }
        .person-bio p {
            font-size: 15px;
            color: #444;
            margin-bottom: 8px;
        }
        .person-bio p:last-child {
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .person-photo {
                width: 200px;
                height: 260px;
            }
            .person-name {
                font-size: 28px;
                letter-spacing: 4px;
            }
        }

        /* === å¯ä¼é¿åä½å¼¹çªæ ·å¼ === */
        .unit-card {
            display: flex;
            gap: 50px;
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            align-items: flex-start;
            min-height: 400px;
        }
        @media (max-width: 768px) {
            .unit-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 24px;
                gap: 24px;
                min-height: auto;
            }
        }
        .unit-logo-wrap {
            flex-shrink: 0;
            position: relative;
        }
        .unit-logo {
            width: 200px;
            height: 200px;
            border-radius: 16px;
            background: linear-gradient(145deg, #f8f8f8, #efefef);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid #fff;
        }
        .unit-logo span {
            color: #bbb;
            font-size: 14px;
        }
        .unit-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
        }
        .unit-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, var(--tea-dark), #2d5a48);
            color: var(--tea-gold);
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(26,60,47,0.3);
        }
        .unit-info-wrap {
            flex: 1;
            min-width: 0;
        }
        .unit-header {
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .unit-name {
            font-size: 28px;
            font-weight: 700;
            color: var(--tea-dark);
            letter-spacing: 2px;
        }
        .unit-bio-section {
            margin-bottom: 24px;
        }
        .unit-bio-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--tea-dark);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .unit-bio-title::before {
            content: '';
            width: 3px;
            height: 16px;
            background: var(--tea-gold);
            border-radius: 2px;
        }
        .unit-bio {
            background: #FAFAF8;
            padding: 20px;
            border-radius: 12px;
            border-left: 3px solid var(--tea-gold);
            line-height: 1.8;
        }
        .unit-bio p {
            font-size: 14px;
            color: #555;
        }
        .unit-contact-grid {
            display: grid;
            gap: 12px;
        }
        .unit-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            background: #f9f9f7;
            border-radius: 8px;
            font-size: 14px;
            color: #555;
        }
        .unit-contact-item .icon {
            font-size: 16px;
        }

        /* === ç²¾è´æé£ç´æ ·å¼ === */
        .judges-accordion {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 20px 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .judges-accordion::-webkit-scrollbar { display: none; }
        
        .accordion-item {
            flex-shrink: 0;
            width: 80px;
            height: 200px;
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 60px;
            padding: 16px 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .accordion-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(26,60,47,0.03) 100%);
            opacity: 0;
            transition: 0.3s;
        }
        .accordion-item:hover {
            width: 200px;
            border-radius: 24px;
            border-color: var(--tea-gold);
            box-shadow: 0 20px 40px rgba(200,160,100,0.2);
            background: linear-gradient(145deg, #ffffff 0%, #fffdf8 100%);
        }
        .accordion-item:hover::before { opacity: 1; }
        
        .accordion-avatar {
            position: relative;
            flex-shrink: 0;
        }
        .accordion-avatar .avatar-placeholder {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #666;
            transition: 0.4s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .accordion-item:hover .avatar-placeholder {
            width: 72px;
            height: 72px;
            font-size: 11px;
        }
        .avatar-ring {
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid transparent;
            background: linear-gradient(135deg, var(--tea-gold), var(--tea-dark)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: 0.4s;
        }
        .accordion-item:hover .avatar-ring { opacity: 1; }
        
        .accordion-info {
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s;
            margin-top: 12px;
        }
        .accordion-item:hover .accordion-info {
            opacity: 1;
            transform: translateY(0);
        }
        .accordion-info h4 {
            font-weight: 700;
            color: var(--tea-dark);
            font-size: 15px;
            margin: 8px 0 4px;
            white-space: nowrap;
        }
        .accordion-info p {
            font-size: 11px;
            color: #666;
            white-space: nowrap;
        }
        .accordion-tag {
            display: inline-block;
            padding: 3px 10px;
            font-size: 10px;
            border-radius: 20px;
            background: var(--tea-dark);
            color: var(--tea-gold);
            font-weight: 600;
        }
        .accordion-tag.gold {
            background: linear-gradient(135deg, #C8A064 0%, #a88544 100%);
            color: white;
        }
        .accordion-tag.silver {
            background: linear-gradient(135deg, #8c8c8c 0%, #666 100%);
            color: white;
        }
        
        /* æ¥çå¨é¨æé® */
        .accordion-expand {
            flex-shrink: 0;
            width: 100px;
            height: 200px;
            border-radius: 60px;
            cursor: pointer;
            position: relative;
            background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
            backdrop-filter: blur(20px);
            border: 2px dashed rgba(200,160,100,0.4);
            transition: all 0.4s;
            overflow: hidden;
        }
        .accordion-expand::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(200,160,100,0.05) 0%, rgba(200,160,100,0.15) 100%);
            opacity: 0;
            transition: 0.3s;
        }
        .accordion-expand:hover {
            width: 140px;
            border-radius: 24px;
            border-style: solid;
            border-color: var(--tea-gold);
            box-shadow: 0 15px 35px rgba(200,160,100,0.25);
        }
        .accordion-expand:hover::before { opacity: 1; }
        
        .expand-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            z-index: 1;
        }
        .expand-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--tea-dark) 0%, #2d5a48 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.4s;
        }
        .expand-icon svg {
            width: 22px;
            height: 22px;
            color: var(--tea-gold);
        }
        .accordion-expand:hover .expand-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 20px rgba(26,60,47,0.3);
        }
        .expand-text {
            font-size: 12px;
            font-weight: 700;
            color: var(--tea-dark);
            opacity: 0;
            transition: 0.3s;
        }
        .expand-count {
            font-size: 10px;
            color: #666;
            opacity: 0;
            transition: 0.3s;
        }
        .accordion-expand:hover .expand-text,
        .accordion-expand:hover .expand-count { opacity: 1; }

        /* === ç²¾éå¥½è¯¾ === */
        .course-card { background: white; border-radius: 20px; overflow: hidden; border: none; box-shadow: 0 4px 6px -1px var(--shadow-tea); transition: 0.4s; cursor: pointer; display: flex; flex-direction: column; height: 100%; }
        .course-card:hover { box-shadow: 0 20px 40px var(--shadow-gold); transform: translateY(-8px); }
        .course-img-box { position: relative; height: 200px; overflow: hidden; }
        .course-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
        .course-card:hover .course-img { transform: scale(1.1); }
        .course-date-badge { position: absolute; top: 15px; left: 15px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 6px; font-size: 10px; font-weight: bold; color: var(--tea-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

        /* === å¼¹çªéç¨æ ·å¼ === */
        .full-modal { position: fixed; inset: 0; background: #F9F9F7; z-index: 100; transform: translateY(100%); transition: 0.5s; overflow-y: auto; display: flex; flex-direction: column; }
        .full-modal.active { transform: translateY(0); }
        /* è¯¦æå¼¹çªå±çº§æ´é«ï¼å¯ä»¥å¨å¶ä»å¼¹çªä¸æ¾ç¤º */
        #person-modal, #unit-modal, #news-detail-modal { z-index: 110; }
        .modal-header { padding: 20px 40px; border-bottom: 1px solid rgba(0,0,0,0.03); display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.85); backdrop-filter: blur(15px); position: sticky; top: 0; z-index: 10; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
        .modal-close { width: 40px; height: 40px; background: #F3F4F6; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
        .modal-close:hover { background: #111; color: white; transform: rotate(90deg); }
        .modal-body { padding: 40px; max-width: 1200px; margin: 0 auto; width: 100%; flex-grow: 1; line-height: 1.8; }

        /* === å³äºåä¼å¼¹çªTabæ ·å¼ === */
        .about-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .about-tab-btn { 
            padding: 12px 24px; background: #f5f5f5; border: none; border-radius: 8px; 
            cursor: pointer; font-size: 14px; font-weight: 600; color: #666; transition: 0.3s;
        }
        .about-tab-btn:hover { background: #e8e8e8; }
        .about-tab-btn.active { background: var(--tea-dark); color: var(--tea-gold); }
        .about-tab-content { display: none; animation: fadeIn 0.3s; }
        .about-tab-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* === ç« ç¨æå æ ·å¼ === */
        .charter-chapter { margin-bottom: 20px; border: none; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 2px 5px var(--shadow-tea); }
        .charter-chapter-header { 
            padding: 20px 24px; background: #fff; cursor: pointer; display: flex; 
            justify-content: space-between; align-items: center; transition: 0.3s; border-bottom: 1px solid #f5f5f5;
        }
        .charter-chapter-header:hover { background: #fafafa; }
        .charter-chapter-header h4 { font-weight: 700; color: var(--tea-dark); margin: 0; }
        .charter-chapter-header .toggle-icon { transition: 0.3s; color: #999; }
        .charter-chapter.open .toggle-icon { transform: rotate(180deg); }
        .charter-chapter.open { box-shadow: 0 10px 30px rgba(26,60,47,0.06); }
        .charter-chapter-body { padding: 0 20px; max-height: 0; overflow: hidden; transition: all 0.3s; }
        .charter-chapter.open .charter-chapter-body { padding: 20px; max-height: 2000px; }
        .charter-article { margin-bottom: 12px; padding-left: 16px; border-left: 3px solid var(--tea-gold); }
        .charter-article strong { color: var(--tea-dark); }

        /* === èµè®¯ä¸­å¿Tabæ ·å¼ === */
        .consult-tab-btn {
            padding: 10px 24px; background: #f5f5f5; border: none; border-radius: 8px;
            cursor: pointer; font-size: 14px; font-weight: 600; color: #666; transition: 0.3s;
        }
        .consult-tab-btn:hover { background: #e8e8e8; }
        .consult-tab-btn.active { background: var(--tea-dark); color: var(--tea-gold); }
        .consult-tab-content { display: none; animation: fadeIn 0.3s; }
        .consult-tab-content.active { display: block; }
        .consult-sub-btn {
            padding: 6px 16px; background: #f0f0f0; border: none; border-radius: 6px;
            cursor: pointer; font-size: 12px; font-weight: 500; color: #666; transition: 0.3s;
        }
        .consult-sub-btn:hover { background: #e0e0e0; }
        .consult-sub-btn.active { background: var(--tea-gold); color: white; }
        .consult-sub-content { display: none; }
        .consult-sub-content.active { display: block; }

        /* === æ¥èæåTabæ ·å¼ === */
        .cert-tab-btn {
            padding: 10px 24px; background: #f5f5f5; border: none; border-radius: 8px;
            cursor: pointer; font-size: 14px; font-weight: 600; color: #666; transition: 0.3s;
        }
        .cert-tab-btn:hover { background: #e8e8e8; }
        .cert-tab-btn.active { background: var(--tea-dark); color: var(--tea-gold); }
        .cert-tab-content { display: none; animation: fadeIn 0.3s; }
        .cert-tab-content.active { display: block; }
        .sub-tab-btn {
            padding: 6px 16px; background: #f0f0f0; border: none; border-radius: 20px;
            cursor: pointer; font-size: 13px; color: #666; transition: 0.3s;
        }
        .sub-tab-btn:hover { background: #e0e0e0; }
        .sub-tab-btn.active { background: var(--tea-gold); color: white; }
        .sub-content { display: none; animation: fadeIn 0.3s; }
        .sub-content.active { display: block; }

        /* === ç»ç»æ¶æå¾æ ·å¼ === */
        .org-chart { text-align: center; padding: 30px 0; }
        .org-node { 
            display: inline-block; padding: 12px 24px; background: var(--tea-dark); color: white; 
            border-radius: 8px; margin: 8px; font-weight: 600; min-width: 120px;
        }
        .org-node.gold { background: var(--tea-gold); color: var(--tea-dark); }
        .org-node.light { background: #f5f5f5; color: var(--tea-dark); border: 1px solid #ddd; }
        .org-level { margin: 20px 0; position: relative; }
        .org-connector { width: 2px; height: 30px; background: #ddd; margin: 0 auto; }
        .org-h-line { height: 2px; background: #ddd; margin: 0 auto; }

        /* è½®æ­å¾ */
        .carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; pointer-events: none; }
        .carousel-slide.active { opacity: 1; pointer-events: auto; z-index: 10; }
        .hero-carousel .carousel-slide:first-child { opacity: 1; pointer-events: auto; z-index: 5; }
        .carousel-img { width: 100%; height: 100%; object-fit: cover; object-position: center center; aspect-ratio: 16/9; transition: transform 6s ease-out; }
        .carousel-slide.active .carousel-img { transform: scale(1.08); } 
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%); padding: 40px; display: flex; flex-direction: column; justify-content: flex-end; }
        
        /* åä¼çé */
        .selection-card { height: 360px; border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; }
        .selection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
        .selection-card:hover img { transform: scale(1.1); }
        .selection-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,60,47,0.8), transparent); opacity: 0.6; transition: 0.3s; }
        .selection-card:hover .selection-overlay { opacity: 0.9; }

        /* ç§»å¨ç«¯èåæ§å¶ */
        #mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 49; opacity: 0; pointer-events: none; transition: 0.3s; }
        #mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }
        #mobile-menu-panel { 
            position: fixed; top: 0; bottom: 0; right: 0; width: 80%; max-width: 300px; 
            background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
            z-index: 50; transform: translateX(100%); transition: transform 0.3s ease-in-out; 
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            border-left: 1px solid rgba(255,255,255,0.3);
            display: flex; flex-direction: column;
        }
        #mobile-menu-panel.open { transform: translateX(0); }

        /* ä¾§è¾¹æ ç¾åä¼å */
        .sidebar-item-new {
            padding: 24px 28px;
            border-bottom: 1px solid rgba(0,0,0,0.03);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        .sidebar-item-new:hover { background-color: #FAFAF8; padding-left: 32px; }
        .sidebar-item-new::before {
            content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
            background: var(--tea-gold); opacity: 0; transition: 0.3s; border-radius: 0 2px 2px 0;
        }
        .sidebar-item-new:hover::before { opacity: 1; }
        
        /* === å³ä¸è§æ¬æµ®å²æ ·å¼ === */
        .floating-dock {
            position: fixed;
            bottom: 40px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 90;
        }

        .dock-btn {
            width: 56px;
            height: 56px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            border: 1px solid rgba(0,0,0,0.02);
            color: #666;
        }

        .dock-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(26,60,47,0.2);
            color: var(--tea-dark);
        }

        .dock-btn.active {
            background: var(--tea-dark);
            color: white;
            box-shadow: 0 8px 20px rgba(26,60,47,0.3);
        }

        .dock-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%) translateX(10px);
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
        }
        .dock-btn:hover .dock-tooltip {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }

        /* === äºç»´ç åçæ ·å¼ === */
        .qr-card-container {
            position: fixed;
            bottom: 40px;
            right: 100px;
            z-index: 91;
            pointer-events: none;
        }

        .qr-card {
            background: white;
            padding: 24px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            width: 260px;
            text-align: center;
            position: absolute;
            bottom: 0;
            right: 0;
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border: 1px solid rgba(0,0,0,0.03);
            display: none;
        }

        .qr-card.show {
            display: block;
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .qr-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid #f0f0f0;
        }
        .qr-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .qr-card-icon.gzh {
            background: linear-gradient(135deg, #f0f4f3, #e5ebe9);
            color: var(--tea-dark);
        }
        .qr-card-icon.wechat {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            color: #2e7d32;
        }
        .qr-card-title {
            text-align: left;
        }
        .qr-card-title h4 {
            font-weight: 700;
            font-size: 15px;
            color: var(--tea-dark);
            margin-bottom: 2px;
        }
        .qr-card-title p {
            font-size: 11px;
            color: #999;
        }

        .qr-image-box {
            width: 180px;
            height: 180px;
            margin: 0 auto 16px;
            background: linear-gradient(145deg, #fafafa, #f0f0f0);
            border-radius: 16px;
            padding: 12px;
            border: 1px solid #eee;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
        }
        
        .qr-image-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .qr-card-footer {
            font-size: 12px;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .qr-card-footer::before {
            content: 'ð±';
            font-size: 14px;
        }

        /* === å¥ä¼é¡»ç¥ä¸è½½æé® === */
        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--tea-dark);
            color: white;
            border-radius: 8px;
            font-weight: 600;
            transition: 0.3s;
            text-decoration: none;
        }
        .download-btn:hover {
            background: var(--tea-gold);
            color: var(--tea-dark);
            transform: translateY(-2px);
        }
        
        @media (max-width: 1024px) {
            .glass-bar { flex-direction: column; height: auto; padding: 0; border-radius: 16px; }
            .service-card { width: 100%; border-right: none; border-bottom: 1px solid #f0f0f0; padding: 20px; }
            .service-card:last-child { border-bottom: none; }
            .expert-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 640px) {
            .expert-grid { grid-template-columns: 1fr; }
            .floating-dock { bottom: 20px; right: 20px; gap: 12px; }
            .dock-btn { width: 48px; height: 48px; }
            .qr-card-container { right: 20px; bottom: 90px; }
            .qr-card { width: 240px; padding: 20px; }
            .dock-tooltip { display: none; }
            .about-tabs { gap: 6px; }
            .about-tab-btn { padding: 10px 16px; font-size: 13px; }
        }
        
        /* åå»ºæ´»å¨Tabæ ·å¼ */
        .party-tab-btn {
            padding: 12px 24px;
            font-weight: bold;
            color: #666;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
        }
        .party-tab-btn:hover { color: #C41E3A; }
        .party-tab-btn.active {
            color: #C41E3A;
            border-bottom-color: #C41E3A;
        }
        .party-tab-content { display: none; }
        .party-tab-content.active { display: block; }
        
        /* ä¸æèåæ ·å¼ */
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            min-width: 160px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 50;
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
        }
        .dropdown-item {
            display: block;
            padding: 10px 20px;
            color: #666;
            font-size: 14px;
            transition: all 0.2s;
        }
        .dropdown-item:hover {
            background: #f5f5f5;
            color: #1A3C2F;
        }
        .submenu {
            position: relative;
        }
        .submenu-menu {
            position: absolute;
            left: 100%;
            top: 0;
            background: white;
            min-width: 140px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 8px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .submenu:hover .submenu-menu {
            opacity: 1;
            visibility: visible;
        }

        /* =========================================
           é«çº§æç¾åè¡¥ä¸ (High-End Aesthetic Patch)
           ========================================= */

        /* 1. å­ä½æçä¼åï¼å¢å å¼å¸æ */
        body {
            line-height: 1.75 !important;
            letter-spacing: 0.02em;
        }
        h1, h2, h3, h4, h5, h6, .font-serif {
            letter-spacing: 0.05em;
        }

        /* 2. å¾çè´¨æä¼åï¼çµå½±ææ»¤é */
        img {
            transition: filter 0.5s ease, transform 0.6s ease;
        }
        .carousel-img, .course-img, .leader-img, .selection-card img {
            filter: saturate(0.92) contrast(1.03);
        }
        .group:hover img, .course-card:hover .course-img, .selection-card:hover img, .leader-card:hover .leader-img {
            filter: saturate(1.1) contrast(1);
        }

        /* 3. ç»çææåçº§ï¼å¢å åªç¹è´¨æ */
        .glass-bar, .modal-header {
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"), 
                          linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0.85));
            backdrop-filter: blur(20px) saturate(180%);
        }

        /* 4. éè²æå­åçº§ï¼æµåé */
        .text-\[\#C8A064\] {
            background: linear-gradient(135deg, #C8A064 0%, #E6C896 50%, #B38848 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* 5. éè²æé®æµåææ */
        .join-talent-btn, .about-tab-btn.active {
            position: relative;
            overflow: hidden;
        }
        .join-talent-btn::before, .about-tab-btn.active::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-25deg);
            animation: btn-shine 5s infinite;
        }
        @keyframes btn-shine {
            0% { left: -100%; }
            20% { left: 200%; }
            100% { left: 200%; }
        }

        /* 6. å¼¹çªéè¯»å®½åº¦ä¼å */
        .modal-body {
            max-width: 1100px;
        }

        /* 7. æ é¢å¾®å¼±æµ®éæ */
        h1, h2, h3 {
            text-shadow: 0 1px 1px rgba(0,0,0,0.04);
        }

        /* 8. æ¥æ/æ°å­è¡¬çº¿ä½ */
        .date-display, .course-card span, .sidebar-item-new span, .top-bar-date {
            font-family: 'Songti SC', 'STSong', 'SimSun', Georgia, serif;
            font-variant-numeric: oldstyle-nums;
        }

        /* 9. å¡çæ¬åå¼å¸ææ */
        .leader-card, .course-card, .talent-card, .selection-card {
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* 10. äººæåºå¤´åæº¢åºææ */
        .talent-avatar {
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .talent-card:hover .talent-avatar {
            transform: translateY(-5px) scale(1.05);
        }

        /* 11. Footeräºç»´ç ç¾å */
        .footer-qr-box {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 12px;
            padding: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin: 0 auto;
            transition: transform 0.3s;
        }
        .footer-qr-box:hover {
            transform: scale(1.05);
        }
        .footer-qr-box img {
            border-radius: 6px;
        }

        /* 12. ç»å½æé®ä¼å */
        .login-btn {
            background: transparent;
            color: var(--tea-dark);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            border: 1px solid rgba(26,60,47,0.2);
            transition: all 0.3s;
            white-space: nowrap;
        }
        .login-btn:hover {
            background: var(--tea-dark);
            color: var(--tea-gold);
            border-color: var(--tea-dark);
            box-shadow: 0 4px 15px rgba(26,60,47,0.2);
        }

        /* =================================================================
           â¼â¼â¼ æç»ç¾å­¦åçº§è¡¥ä¸ (CSS Polish Pack) â¼â¼â¼
           ================================================================= */

        /* 1. å¨å±è´¨æåçº§ï¼å¼å¥"å®£çº¸"åªç¹ä¸æåèæ¯ */
        body {
            background-image: 
                url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E"),
                radial-gradient(#d1d5db 1px, transparent 1px);
            background-color: #F8F8F6;
        }

        /* 2. å­ä½å¾®è°ï¼å¢å éè¯»çé«çº§æ */
        body, p, li {
            letter-spacing: 0.02em;
        }
        h1, h2, h3, .font-serif {
            letter-spacing: 0.05em;
        }
        .date-display, .course-card span, .sidebar-item-new span {
            font-family: 'Songti SC', 'STSong', 'SimSun', Georgia, serif;
            font-variant-numeric: oldstyle-nums;
        }

        /* 3. "ç·å¨æ"å¡çï¼ä¼åé´å½±ååæ³½ */
        .course-card, .leader-card, .unit-card, .person-card {
            border: 1px solid rgba(255,255,255,0.8);
            box-shadow: 
                0 4px 6px -1px rgba(26, 60, 47, 0.05), 
                0 10px 15px -3px rgba(26, 60, 47, 0.03);
            background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
        }
        .course-card:hover, .leader-card:hover {
            transform: translateY(-4px) scale(1.005);
            box-shadow: 0 20px 40px -5px rgba(200, 160, 100, 0.15);
        }

        /* 4. å¾çç»ä¸è°è²ï¼çµå½±ææ»¤é */
        .course-img, .leader-img, .selection-card img, .carousel-img {
            filter: saturate(0.85) contrast(1.05) sepia(0.1); 
            transition: filter 0.6s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .group:hover img, .course-card:hover .course-img, .selection-card:hover img {
            filter: saturate(1.1) contrast(1) sepia(0);
            transform: scale(1.05);
        }

        /* 5. å¯¼èªæ ä¸æ¯ç»çå¢å¼º */
        nav, .glass-bar, .modal-header {
            background: rgba(255, 255, 255, 0.85) !important;
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255,255,255,0.5) !important;
        }

        /* 6. éè²æå­æµåç¹æ */
        .text-\[\#C8A064\], .expanded-badge:not(.senior):not(.backbone) {
            background: linear-gradient(135deg, #C8A064 0%, #e6c896 50%, #b38848 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .bg-\[\#C8A064\], .talent-badge.gold {
            -webkit-text-fill-color: initial; 
            background: linear-gradient(135deg, #d4af76 0%, #C8A064 100%);
            box-shadow: 0 4px 15px rgba(200, 160, 100, 0.3);
        }

        /* 7. ä¼åäººæåºæé£ç´çç»è */
        .talent-panel {
            border: 1px solid rgba(255,255,255,0.3);
        }
        .talent-overlay {
            background: linear-gradient(to top, 
                rgba(26,60,47, 0.95) 0%, 
                rgba(26,60,47, 0.5) 30%, 
                rgba(26,60,47, 0.1) 60%, 
                transparent 100%);
        }
        .talent-panel.active .talent-overlay {
            background: linear-gradient(to top, rgba(26,60,47, 0.9) 0%, transparent 40%);
        }

        /* 8. æ»å¨æ¡ç¾å */
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #d1d5db, #9ca3af);
            border: 2px solid #F9F9F7;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--tea-gold);
        }

        /* 9. å¼¹çªä¼åï¼è®©åå®¹åæå°å¨çº¸ä¸ */
        .modal-body {
            line-height: 2;
            color: #444;
        }
        .full-modal {
            background-color: #Fdfdfc;
        }

        /* 10. åä¼å¨æä¾§è¾¹æ èå */
        .hero-sidebar {
            border-left: none !important;
            box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        }
        .sidebar-item-new:hover {
            background: linear-gradient(to right, #fafafa, #ffffff);
        }

        /* 11. æé®ç¹å»å¾®è§¦æ */
        button, .join-talent-btn, .login-btn, .about-tab-btn, .consult-tab-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        button:active, .join-talent-btn:active, .login-btn:active {
            transform: scale(0.95);
        }

        /* 12. ç§»å¨ç«¯æ¬æµ®å²ä½ç½®ä¼å */
        @media (max-width: 640px) {
            .floating-dock {
                bottom: 80px;
            }
        }

        /* âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
           æ»å¨æ­ç¤ºç¹æ - Scroll Reveal Effects
           âââââââââââââââââââââââââââââââââââââââââââââââââââââââââââ */
        :root {
            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal {
            opacity: 0;
            transition: all 0.8s var(--ease-out-expo);
        }

        .reveal.visible {
            opacity: 1;
        }

        /* åä¸æ·¡å¥ */
        .reveal-up {
            transform: translateY(40px);
        }
        .reveal-up.visible {
            transform: translateY(0);
        }

        /* ä»å·¦æ»å¥ */
        .reveal-left {
            transform: translateX(-40px);
        }
        .reveal-left.visible {
            transform: translateX(0);
        }

        /* ä»å³æ»å¥ */
        .reveal-right {
            transform: translateX(40px);
        }
        .reveal-right.visible {
            transform: translateX(0);
        }

        /* ç¼©æ¾åºç° */
        .reveal-scale {
            transform: scale(0.9);
        }
        .reveal-scale.visible {
            transform: scale(1);
        }

        /* äº¤éå»¶è¿ */
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* æå¡å¡çæ¬ååæ³½ææ */
        .service-card {
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }
        .service-card:hover::before {
            left: 100%;
        }

/* index.html (11146 chars) */
/* 模态框样式 - 必须在head中定义 */

        .full-modal { position: fixed; inset: 0; background: #F9F9F7; z-index: 100; transform: translateY(100%); transition: 0.5s; overflow-y: auto; display: flex; flex-direction: column; }

        .full-modal.active { transform: translateY(0); }

        #person-modal, #unit-modal, #news-detail-modal { z-index: 110; }

        .modal-header { padding: 20px 40px; border-bottom: 1px solid rgba(0,0,0,0.03); display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.85); backdrop-filter: blur(15px); position: sticky; top: 0; z-index: 10; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }

        .modal-close { width: 40px; height: 40px; background: #F3F4F6; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }

        .modal-close:hover { background: #111; color: white; transform: rotate(90deg); }

        .modal-body { padding: 40px; max-width: 1200px; margin: 0 auto; width: 100%; flex-grow: 1; line-height: 1.8; }

        /* 下拉菜单样式 */

        .dropdown { position: relative; }

        .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: white; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); opacity: 0; visibility: hidden; transition: 0.3s; min-width: 180px; padding: 8px 0; z-index: 50; }

        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }

        .dropdown-item { display: block; padding: 10px 20px; color: #4B5563; transition: 0.15s; font-size: 13px; cursor: pointer; }

        .dropdown-item:hover { background: #F9F9F7; color: #1A3C2F; }

        .submenu { position: relative; }

        .submenu-menu { position: absolute; left: 100%; top: 0; background: white; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); min-width: 150px; padding: 8px 0; opacity: 0; visibility: hidden; transition: 0.3s; }

        .submenu:hover .submenu-menu { opacity: 1; visibility: visible; }

        /* Tab切换 */

        .about-tabs, .party-tabs, .cert-tabs { display: flex; gap: 0; border-bottom: 1px solid #E5E7EB; margin-bottom: 24px; flex-wrap: wrap; }

        .about-tab-btn, .party-tab-btn, .cert-tab-btn { padding: 12px 24px; font-size: 14px; color: #6B7280; cursor: pointer; border-bottom: 2px solid transparent; transition: 0.3s; background: none; }

        .about-tab-btn:hover, .party-tab-btn:hover, .cert-tab-btn:hover { color: #1A3C2F; }

        .about-tab-btn.active, .party-tab-btn.active, .cert-tab-btn.active { color: #FFFFFF; background: #1A3C2F; border-bottom-color: #C8A064; font-weight: 600; border-radius: 8px 8px 0 0; }

        .about-tab-content, .party-tab-content, .cert-tab-content { display: none; }

        .about-tab-content.active, .party-tab-content.active, .cert-tab-content.active { display: block; }

        /* 章程折叠 */

        .charter-chapter { border: 1px solid #E5E7EB; border-radius: 8px; margin-bottom: 12px; overflow: hidden; }

        .charter-chapter-header { padding: 16px 20px; background: #F9F9F7; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }

        .charter-chapter-header h4 { margin: 0; font-size: 14px; color: #1A3C2F; }

        .charter-chapter-body { max-height: 0; overflow: hidden; transition: max-height 0.3s; padding: 0 20px; background: white; }

        .charter-chapter.open .charter-chapter-body { max-height: 2000px; padding: 20px; }

        .charter-article { margin-bottom: 12px; font-size: 13px; color: #4B5563; line-height: 1.6; }

        /* 组织架构图 */

        .org-chart { text-align: center; padding: 20px 0; }

        .org-level { margin: 16px 0; }

        .org-node { display: inline-block; padding: 10px 24px; background: #F3F4F6; border-radius: 8px; font-weight: 600; color: #374151; }

        .org-node.gold { background: linear-gradient(135deg, #C8A064 0%, #A67C3D 100%); color: white; }

        .org-node.light { background: white; border: 1px solid #E5E7EB; }

        .org-connector { width: 2px; height: 20px; background: #D1D5DB; margin: 0 auto; }

        .org-h-line { height: 2px; background: #D1D5DB; margin: 0 auto; }

        /* 移动端菜单 */

        #mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 49; opacity: 0; pointer-events: none; transition: 0.3s; }

        #mobile-menu-overlay.open { opacity: 1; pointer-events: auto; }

        #mobile-menu-panel { position: fixed; top: 0; right: 0; width: 280px; height: 100%; background: white; z-index: 50; transform: translateX(100%); transition: 0.3s; overflow-y: auto; }

        #mobile-menu-panel.open { transform: translateX(0); }

    







        /* ====== 浮动栏样式 ====== */

        .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

        .line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }



        .floating-dock {

            position: fixed;

            bottom: 40px;

            right: 30px;

            display: flex;

            flex-direction: column;

            gap: 16px;

            z-index: 90;

        }

        .dock-btn {

            width: 56px;

            height: 56px;

            background: white;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            box-shadow: 0 4px 20px rgba(0,0,0,0.08);

            cursor: pointer;

            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

            position: relative;

            border: 1px solid rgba(0,0,0,0.02);

            color: #666;

        }

        .dock-btn:hover {

            transform: scale(1.1);

            box-shadow: 0 8px 30px rgba(26,60,47,0.2);

            color: #1A3C2F;

        }

        .dock-btn.active {

            background: #1A3C2F;

            color: white;

            box-shadow: 0 8px 20px rgba(26,60,47,0.3);

        }

        .dock-tooltip {

            position: absolute;

            right: 70px;

            top: 50%;

            transform: translateY(-50%) translateX(10px);

            background: rgba(0,0,0,0.75);

            color: white;

            padding: 6px 12px;

            border-radius: 6px;

            font-size: 12px;

            white-space: nowrap;

            opacity: 0;

            pointer-events: none;

            transition: 0.3s;

        }

        .dock-btn:hover .dock-tooltip {

            opacity: 1;

            transform: translateY(-50%) translateX(0);

        }

        .qr-card-container {

            position: fixed;

            bottom: 40px;

            right: 100px;

            z-index: 91;

            pointer-events: none;

        }

        .qr-card {

            background: white;

            padding: 24px;

            border-radius: 20px;

            box-shadow: 0 20px 60px rgba(0,0,0,0.1);

            width: 260px;

            text-align: center;

            position: absolute;

            bottom: 0;

            right: 0;

            opacity: 0;

            transform: translateY(20px) scale(0.95);

            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

            border: 1px solid rgba(0,0,0,0.03);

            display: none;

        }

        .qr-card.show {

            display: block;

            opacity: 1;

            transform: translateY(0) scale(1);

            pointer-events: auto;

        }

        .qr-card-header {

            display: flex;

            align-items: center;

            gap: 12px;

            margin-bottom: 20px;

            padding-bottom: 16px;

            border-bottom: 1px solid #f0f0f0;

        }

        .qr-card-icon {

            width: 44px;

            height: 44px;

            border-radius: 12px;

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 20px;

            flex-shrink: 0;

        }

        .qr-card-icon.gzh {

            background: linear-gradient(135deg, #f0f4f3, #e5ebe9);

            color: #1A3C2F;

        }

        .qr-card-icon.wechat {

            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);

            color: #2e7d32;

        }

        .qr-card-title { text-align: left; }

        .qr-card-title h4 {

            font-weight: 700;

            font-size: 15px;

            color: #1A3C2F;

            margin-bottom: 2px;

        }

        .qr-card-title p { font-size: 11px; color: #999; }

        .qr-image-box {

            width: 180px;

            height: 180px;

            margin: 0 auto 16px;

            background: linear-gradient(145deg, #fafafa, #f0f0f0);

            border-radius: 16px;

            padding: 12px;

            border: 1px solid #eee;

            box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);

        }

        .qr-image-box img {

            width: 100%; height: 100%;

            object-fit: contain;

            border-radius: 8px;

        }

        .qr-card-footer {

            font-size: 12px;

            color: #666;

            display: flex;

            align-items: center;

            justify-content: center;

            gap: 6px;

        }

        @media (max-width: 640px) {

            .floating-dock { bottom: 20px; right: 20px; gap: 12px; }

            .dock-btn { width: 48px; height: 48px; }

            .qr-card-container { right: 20px; bottom: 90px; }

            .qr-card { width: 240px; padding: 20px; }

            .dock-tooltip { display: none; }

        }

        /* 人才库详情弹窗样式 */

        .person-card { display: flex; gap: 40px; background: white; border-radius: 16px; padding: 32px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); align-items: stretch; }

        @media (max-width: 768px) { .person-card { flex-direction: column; align-items: center; text-align: center; padding: 20px; gap: 20px; } }

        .person-photo-wrap { flex-shrink: 0; position: relative; display: flex; align-items: flex-start; }

        .person-badge { position: absolute; top: -10px; left: -10px; padding: 4px 14px; border-radius: 20px; font-size: 11px; font-weight: bold; color: white; z-index: 2; white-space: nowrap; }

        .person-photo { width: 180px; height: 220px; border-radius: 8px; overflow: hidden; background: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #999; font-size: 14px; border: 3px solid #fff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }

        @media (max-width: 768px) { .person-photo { width: 140px; height: 170px; } }

        .person-info-wrap { flex: 1; display: flex; flex-direction: column; justify-content: center; }

        .person-header { margin-bottom: 20px; }

        #person-name { color: #1A3C2F !important; }

        .person-bio-section { border-top: 1px solid #eee; padding-top: 16px; }

        .person-bio-title { font-weight: bold; color: #1A3C2F; margin-bottom: 8px; font-size: 15px; }

        .person-bio p { color: #555; line-height: 1.8; font-size: 14px; margin-bottom: 6px; }