<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
            background-color: #ffffff;
            color: #1a2c3e;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* 蓝色主色调变量 */
        :root {
            --zoom-blue: #0e72ed;
            --zoom-dark-blue: #0a5ec9;
            --zoom-light-bg: #f5f9ff;
            --zoom-gray: #f9fafb;
            --border-light: #e9ecef;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 头部导航 */
        header {
            background: white;
            box-shadow: 0 1px 0 rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(0px);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
        }
        .logo h1 {
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            text-decoration: none;
            color: #0b2b3d;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo i {
            font-size: 32px;
            color: var(--zoom-blue);
        }
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: #1f2f3a;
            transition: color 0.2s;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--zoom-blue);
        }
        /* 按钮通用 */
        .btn-primary {
            background-color: var(--zoom-blue);
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn-primary:hover {
            background-color: var(--zoom-dark-blue);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--zoom-blue);
            color: var(--zoom-blue);
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s;
        }
        .btn-outline:hover {
            background: var(--zoom-blue);
            color: white;
        }

        /* 满屏下载 Hero */
        .hero-download {
            background: linear-gradient(135deg, #eef5ff 0%, #ffffff 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 24px;
        }
        .hero-content h2 {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0e72ed, #2b9eff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: #3a5468;
        }
        .btn-group {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* 通用版块样式 */
        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            color: #0b2b3d;
        }
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }
        .card {
            background: white;
            border-radius: 28px;
            padding: 28px 20px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            text-align: center;
            border: 1px solid var(--border-light);
        }
        .card i {
            font-size: 42px;
            color: var(--zoom-blue);
            margin-bottom: 18px;
        }
        .card h3 {
            font-size: 1.6rem;
            margin-bottom: 12px;
        }
        /* 左右布局 */
        .two-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .bullet-list {
            list-style: none;
        }
        .bullet-list li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .bullet-list li i {
            color: var(--zoom-blue);
            font-size: 20px;
        }
        .right-image {
            background: #eef2fa;
            border-radius: 32px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #2c6280;
        }
        /* 合作客户与长文案 */
        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
        }
        .client-icon {
            background: #f0f4fc;
            width: 100px;
            height: 100px;
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: #0e72ed;
        }
        .long-text {
            background: #f8faff;
            padding: 32px;
            border-radius: 32px;
            line-height: 1.7;
            color: #2c3e50;
        }
        /* FAQ 折叠 */
        .faq-item {
            margin-bottom: 16px;
            border: 1px solid var(--border-light);
            border-radius: 20px;
            overflow: hidden;
        }
        .faq-question {
            background: white;
            padding: 20px 24px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }
        .faq-question:hover {
            background: #f5f9ff;
        }
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background: #fefefe;
            border-top: 0px solid #eee;
        }
        .faq-item.active .faq-answer {
            padding: 20px 24px;
            max-height: 400px;
            border-top: 1px solid var(--border-light);
        }
        .faq-question i {
            transition: transform 0.2s;
        }
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        /* 评价 */
        .testimonial-card {
            background: white;
            border-radius: 28px;
            padding: 28px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.03);
            border: 1px solid var(--border-light);
        }
        /* 资讯 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
            gap: 30px;
        }
        .news-card {
            background: #fff;
            border-radius: 24px;
            padding: 20px;
            border: 1px solid #eef2f6;
        }
        .news-date {
            color: var(--zoom-blue);
            font-size: 0.85rem;
            margin-bottom: 8px;
        }
        /* 友情链接与底部 */
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            margin-bottom: 40px;
        }
        .friend-links a {
            color: #1f3b4c;
            text-decoration: none;
        }
        .footer {
            background: #0b2027;
            color: #cddfe7;
            padding: 48px 0 24px;
        }
        .footer a {
            color: #cddfe7;
            text-decoration: none;
        }
        .keyword-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0;
        }
        .keyword-tags span {
            background: #1e3a47;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .two-columns { grid-template-columns: 1fr; }
            .hero-content h2 { font-size: 2.2rem; }
            .navbar { flex-direction: column; gap: 15px; }
            .nav-links { gap: 24px; }
            section { padding: 50px 0; }
        }
    </style>