﻿:root {
            --primary: rgb(139,233,253);
            --primary-dark: #5ee0fa;
            --text-main: #1a1a1a;
            --text-sub: #666;
            --bg-light: #f4f6f8;
            --bg-white: #ffffff;
            --border: #e2e8f0;
        }
        * { box-sizing: border-box; }
        body { font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif; color: var(--text-main); background: var(--bg-light); line-height: 1.6; margin: 0; padding: 0; }
        a { color: inherit; text-decoration: none; transition: 0.3s; }
        a:hover { color: var(--primary-dark); }
        img { max-width: 100%; height: auto; display: block; }
        
        .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; flex-shrink: 0; }
        .logo span { display: inline-block; font-size: 20px; font-weight: 800; line-height: 1; color: var(--text-main); white-space: nowrap; }

        .header { background: var(--bg-white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .header-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 70px; padding: 0 20px; }
        .desktop-nav { display: flex; gap: 24px; align-items: center; }
        .desktop-nav a { font-weight: 500; font-size: 16px; }
        .desktop-nav a:hover { color: var(--primary-dark); }
        .menu-btn { display: none; font-size: 28px; cursor: pointer; color: var(--text-main); }

        .mobile-drawer { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: var(--bg-white); z-index: 999; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 2px 0 15px rgba(0,0,0,0.1); overflow-y: auto; padding: 20px; }
        .mobile-drawer.active { left: 0; }
        .drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
        .drawer-close { font-size: 28px; cursor: pointer; color: var(--text-sub); }
        .drawer-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 16px; font-weight: 500; }
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; display: none; opacity: 0; transition: 0.3s; }
        .drawer-overlay.active { display: block; opacity: 1; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .page-banner { background: #111; color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
        .page-banner::after { content:''; position:absolute; right:10%; top:-20%; width:300px; height:300px; background:var(--primary); filter:blur(100px); opacity:0.3; }
        .page-banner h1 { font-size: 40px; margin-bottom: 20px; font-weight: 800; position: relative; z-index: 2; }
        .page-banner p { font-size: 18px; color: #aaa; max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }

        .about-section { padding: 80px 0; background: var(--bg-white); }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .about-text h2 { font-size: 32px; margin-bottom: 25px; color: var(--text-main); }
        .about-text p { font-size: 16px; color: var(--text-sub); margin-bottom: 20px; line-height: 1.8; }
        .about-text ul { list-style: none; padding: 0; margin-top: 30px; }
        .about-text li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 16px; font-weight: 500; }
        .about-text li::before { content: '✓'; display: inline-flex; width: 28px; height: 28px; background: var(--primary); color: #111; align-items: center; justify-content: center; border-radius: 50%; font-size: 14px; font-weight: bold; }
        .about-img img { border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        .stats-section { padding: 60px 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
        .stat-item h3 { font-size: 40px; color: var(--primary-dark); margin-bottom: 10px; font-weight: 900; }
        .stat-item p { font-size: 16px; color: var(--text-sub); font-weight: 500; }

        .mission-section { padding: 80px 0; text-align: center; background: var(--bg-white); }
        .mission-inner { max-width: 800px; margin: 0 auto; }
        .mission-inner h2 { font-size: 32px; margin-bottom: 30px; }
        .mission-card { background: var(--bg-light); padding: 40px; border-radius: 16px; border-left: 6px solid var(--primary); text-align: left; font-size: 18px; color: var(--text-sub); line-height: 1.8; font-style: italic; }

        .footer { background: #1a1a1a; color: #aaa; padding: 60px 20px 20px; border-top: 5px solid #222; }
        .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-logo .logo span { color: #fff; }
        .footer-desc { margin-top: 20px; font-size: 14px; line-height: 1.8; max-width: 400px; }
        .footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: bold; }
        .footer-nav { list-style: none; padding: 0; margin: 0; }
        .footer-nav li { margin-bottom: 12px; }
        .footer-nav a { color: #aaa; }
        .footer-nav a:hover { color: var(--primary); padding-left: 5px; }
        .footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; flex-wrap: wrap; gap: 15px; }
        .footer-links a { color: #aaa; margin-left: 15px; }
        .footer-links a:hover { color: var(--primary); }

        @media(max-width: 992px) {
            .desktop-nav { display: none; }
            .menu-btn { display: block; }
            .about-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            .footer-inner { grid-template-columns: 1fr; }
        }