﻿: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; }
        
        .dl-header { text-align: center; padding: 80px 0 40px; }
        .dl-header h1 { font-size: 42px; margin-bottom: 20px; font-weight: 800; color: var(--text-main); }
        .dl-header p { font-size: 18px; color: var(--text-sub); max-width: 700px; margin: 0 auto; }

        .dl-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 80px; }
        .dl-card { background: var(--bg-white); border-radius: 20px; padding: 50px 40px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.05); position: relative; overflow: hidden; border: 2px solid transparent; transition: 0.3s; }
        .dl-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .dl-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:6px; background:var(--primary); }
        .dl-icon { width: 80px; height: 80px; background: var(--bg-light); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 40px; margin-bottom: 25px; }
        .dl-card h3 { font-size: 28px; margin-bottom: 15px; }
        .dl-card p { color: var(--text-sub); margin-bottom: 30px; font-size: 15px; }
        .btn-download { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: #111; color: #fff; padding: 15px 40px; border-radius: 50px; font-size: 18px; font-weight: bold; width: 100%; transition: 0.3s; }
        .btn-download:hover { background: var(--primary); color: #111; }

        .dl-steps { background: var(--bg-white); padding: 60px; border-radius: 20px; margin-bottom: 80px; box-shadow: 0 5px 20px rgba(0,0,0,0.02); }
        .dl-steps h2 { text-align: center; font-size: 32px; margin-bottom: 40px; }
        .step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; position: relative; }
        .step-item { text-align: center; position: relative; z-index: 2; }
        .step-num { width: 50px; height: 50px; background: var(--primary); color: #111; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; font-weight: bold; margin-bottom: 20px; border: 4px solid #fff; box-shadow: 0 4px 10px rgba(139,233,253,0.3); }
        .step-item h4 { font-size: 20px; margin-bottom: 15px; }
        .step-item p { font-size: 15px; color: var(--text-sub); }

        .env-table { width: 100%; background: var(--bg-white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); margin-bottom: 80px; border-collapse: collapse; }
        .env-table th { background: var(--bg-light); padding: 20px; text-align: left; font-size: 18px; color: var(--text-main); }
        .env-table td { padding: 20px; border-top: 1px solid var(--border); color: var(--text-sub); }
        .env-table tr:hover td { background: #fafbfc; }

        .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; }
            .dl-actions { grid-template-columns: 1fr; }
            .step-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-inner { grid-template-columns: 1fr; }
        }