        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        html { font-size: 16px; scroll-behavior: smooth; }
        :root { 
            --primary: #2563eb;
            --secondary: #7c3aed;
            --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
            --light-bg: #f8fafc;
            --white: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-color: #e2e8f0;
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }
        body { font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, sans-serif; background: var(--white); color: var(--text-primary); line-height: 1.6; }
        
        /* Navbar */
        .navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 0.8rem 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: all 0.3s; }
        .navbar.scrolled { padding: 0.5rem 0; box-shadow: var(--shadow-lg); }
        .nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1600px; margin: 0 auto; padding: 0 4%; }
        .logo { font-size: 1.4rem; font-weight: bold; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }
        .nav-links { display: flex; list-style: none; gap: 3rem; align-items: center; }
        .nav-links a { color: var(--text-primary); text-decoration: none; font-weight: 500; transition: all 0.3s; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary); }
		.nav-links li.active a{color:#3a72ff}
        .nav-cta { background: var(--gradient); color: white !important; padding: 0.6rem 1.5rem; border-radius: 25px; font-weight: 600; font-size: 0.9rem !important; }
        .nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
        .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; color: var(--text-primary); }
        
        .page-header { padding: 160px 5% 60px; text-align: center; background: linear-gradient(135deg, #eff6ff 0%, #fff 50%, #f5f3ff 100%); }
        .page-title { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 1rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .page-subtitle { color: var(--text-secondary); font-size: 1.3rem; }
        
        .section { padding: 80px 5%; max-width: 1600px; margin: 0 auto; }
/* ========================================
   浮动联系菜单
   ======================================== */
.float-menu { 
    position: fixed; 
    right: 20px; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 999; 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.float-item { 
    position: relative; 
    width: 55px; 
    height: 55px; 
    background: white; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.5rem; 
    cursor: pointer; 
    box-shadow: var(--shadow-lg); 
    border: 2px solid var(--border-color); 
    transition: all 0.3s; 
	text-decoration:none;
}
.float-item:hover { 
    transform: scale(1.1); 
    border-color: var(--primary); 
}
.float-item .float-icon { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.float-item .float-popup { 
    position: absolute; 
    right: 70px; 
    top: 50%; 
    transform: translateY(-50%) translateX(20px); 
    background: white; 
    padding: 1.5rem; 
    border-radius: 15px; 
    box-shadow: var(--shadow-xl); 
    border: 2px solid var(--border-color); 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s; 
    white-space: nowrap; 
    min-width: 200px; 
}
.float-item:hover .float-popup { 
    opacity: 1; 
    visibility: visible; 
    transform: translateY(-50%) translateX(0); 
}
.float-popup-title { 
    font-weight: 700; 
    color: var(--text-primary); 
    margin-bottom: 0.8rem; 
    font-size: 0.95rem; 
}
.float-popup-content { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}
.float-popup-phone { 
    font-size: 1.1rem; 
    color: var(--primary); 
    font-weight: 600; 
}
.float-popup-qr { 
    width: 120px; 
    height: 120px; 
    background: var(--light-bg); 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 3rem; 
    border: 2px dashed var(--border-color); 
}
.float-popup-qr img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    border-radius: 8px; 
}
.float-item.phone:hover { 
    background: linear-gradient(135deg, #10b981, #059669); 
    border-color: transparent; 
}
.float-item.phone .float-icon { 
    color: white; 
}
.float-item.wechat:hover { 
    background: linear-gradient(135deg, #07c160, #06ad56); 
    border-color: transparent; 
}
.float-item.wechat .float-icon { 
    color: white; 
}
.float-item.qq:hover { 
    background: linear-gradient(135deg, #12b7f5, #0ea5e9); 
    border-color: transparent; 
}
.float-item.qq .float-icon { 
    color: white; 
}
        /* Filter */
        .news-filter { display: flex; justify-content: center; gap: 1.2rem; padding: 2.5rem 5%; flex-wrap: wrap; }
        .filter-btn { padding: 1rem 2rem; background: white; border: 2px solid var(--border-color); border-radius: 25px; color: var(--text-primary); cursor: pointer; transition: all 0.3s; font-weight: 500; }
        .filter-btn:hover, .filter-btn.active { background: var(--gradient); border-color: transparent; color: white; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
        
        /* Featured Article */
        .featured-article { background: white; border-radius: 30px; overflow: hidden; border: 2px solid var(--gradient); margin-bottom: 5rem; }
        .featured-content { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
        .featured-image { height: 100%; min-height: 450px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 12rem; animation: float 6s ease-in-out infinite; }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
        .featured-details { padding: 4rem; display: flex; flex-direction: column; justify-content: center; }
        .featured-category { color: var(--primary); font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
        .featured-title { font-size: 2.5rem; margin-bottom: 2rem; line-height: 1.3; color: var(--text-primary); }
        .featured-excerpt { color: var(--text-secondary); font-size: 1.15rem; margin-bottom: 2.5rem; line-height: 1.9; }
        .read-more { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 0.8rem; transition: all 0.3s; }
        .read-more:hover { gap: 1.5rem; }
        
        /* News Grid */
        .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
        .news-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); transition: all 0.4s; }
        .news-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }
        .news-image { height: 240px; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 6rem; position: relative; }
        .news-date { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.98); padding: 0.6rem 1.2rem; border-radius: 20px; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; }
        .news-content { padding: 2.5rem; }
        .news-category { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(37,99,235,0.1); color: var(--primary); border-radius: 20px; font-size: 0.85rem; margin-bottom: 1.2rem; font-weight: 700; letter-spacing: 0.5px; }
        .news-title { font-size: 1.4rem; margin-bottom: 1.2rem; line-height: 1.5; color: var(--text-primary); }
        .news-excerpt { color: var(--text-secondary); font-size: 1rem; margin-bottom: 1.8rem; line-height: 1.8; }
        .news-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border-color); }
        .read-more-link { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 0.6rem; transition: all 0.3s; }
        .read-more-link:hover { gap: 1.2rem; }
        .read-time { color: var(--text-secondary); font-size: 0.9rem; }
        
        /* Footer */
        footer { background: #0f172a; padding: 50px 4% 25px; color: #94a3b8; }
        .footer-grid { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
        .footer-brand h3 { font-size: 1.3rem; color: white; margin-bottom: 0.8rem; }
        .footer-brand p { margin-bottom: 1.2rem; line-height: 1.7; font-size: 0.9rem; }
        .social-links { display: flex; gap: 0.8rem; }
        .social-link { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.3s; }
        .social-link:active { background: var(--gradient); transform: translateY(-3px); }
        .footer-links h4 { color: white; margin-bottom: 1.2rem; font-weight: 600; font-size: 1rem; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 0.7rem; }
        .footer-links a { color: #94a3b8; text-decoration: none; transition: all 0.3s; font-size: 0.9rem; }
        .footer-links a:active { color: white; }
        .copyright { text-align: center; padding-top: 1.5rem; border-top: 1px solid #1e293b; font-size: 0.85rem; }
		.copyright a{color:#ffffff;text-decoration: none;}
        
        @media (max-width: 1024px) {
            .featured-content { grid-template-columns: 1fr; }
            .featured-image { min-height: 250px; font-size: 6rem; }
            .featured-details { padding: 3rem; }
            .featured-title { font-size: 2rem; }
            .news-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-links { position: fixed; top: 60px; gap: 1.2rem; left: 0; right: 0; background: white; flex-direction: column; padding: 1.5rem; transform: translateY(-100%); opacity: 0; transition: all 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); visibility: hidden; }
            .nav-links.active { transform: translateY(0); opacity: 1; visibility: visible; }
            .nav-links li { width: 100%; text-align: center; }
            .nav-links a { display: block; padding: 0.8rem; font-size: 1.1rem; }
            .nav-cta { display: inline-block; margin-top: 0.5rem; }
            .news-grid { grid-template-columns: 1fr; }

            .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
            .footer-brand { grid-column: 1 / -1; }
            .social-links { justify-content: center; }
            /* 移动端隐藏浮动菜单 */
            .float-menu { display: none; }
        }
		
		        @media (max-width: 480px) {
            html { font-size: 14px; }
            .nav-container { padding: 0 3%; }
            .logo { font-size: 1.2rem; }
            
            .about-stats { grid-template-columns: 1fr; }
            .cert-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
			
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-brand { grid-column: 1; }
            .social-links { justify-content: center; }
            /* 移动端隐藏浮动菜单 */
            .float-menu { display: none; }
        }