<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>纸飞机官网 - 正版软件免费下载 | 安全无捆绑</title>
    <meta name="description" content="纸飞机官方下载，提供免费高效的通讯工具，支持安卓、苹果、电脑全平台客户端下载，2025最新版本，安全稳定，功能强大。">
    <meta name="keywords" content="纸飞机,telegram下载,telegram官网,纸飞机下载,纸飞机官网,纸飞机安卓下载,纸飞机苹果下载,纸飞机电脑版,纸飞机最新版本">
    <meta name="robots" content="index, follow">
    <meta name="author" content="纸飞机下载">
    <meta name="language" content="zh-CN">
    <meta name="revisit-after" content="7 days">
    <meta name="distribution" content="global">
    <meta name="rating" content="general">
    <link rel="canonical" href="/">
    <link rel="icon" type="image/x-icon" href="/favicon.ico">
    <link rel="apple-touch-icon" sizes="180x180" href="/favicon.ico">
    <link rel="icon" type="image/png" sizes="32x32" href="/favicon.ico">
    <link rel="icon" type="image/png" sizes="16x16" href="/favicon.ico">
    <link rel="manifest" href="/site.webmanifest">
    
    
    <script type="application/ld+json">
    {
        "@context": "https://schema.org",
        "@type": "SoftwareApplication",
        "name": "纸飞机",
        "description": "高效安全的通讯工具，支持全平台客户端下载，功能强大，操作便捷",
        "applicationCategory": "CommunicationApplication",
        "operatingSystem": "Windows, macOS, Android, iOS",
        "offers": {
            "@type": "Offer",
            "price": "0",
            "priceCurrency": "CNY"
        },
        "aggregateRating": {
            "@type": "AggregateRating",
            "ratingValue": "4.8",
            "ratingCount": "5000"
        }
    }
    </script>
    
    <style>
        /* 黑蓝搭配变量定义 - 核心优化 */
        :root {
            --primary-blue: #007bff; /* 主蓝色 */
            --dark-blue: #0056b3; /* 深蓝光 */
            --light-blue: #40a9ff; /* 浅蓝光 */
            --black: #121212; /* 纯黑主背景 */
            --dark-gray: #1e1e1e; /* 深灰辅助背景 */
            --text: #f8f9fa; /* 浅白主文本 */
            --text-light: #e9ecef; /* 浅灰次文本 */
            --text-lighter: #adb5bd; /* 深灰提示文本 */
            --bg: #121212; /* 全局主背景 */
            --bg-light: #1e1e1e; /* 局部辅助背景 */
            --border: #343a40; /* 深色边框 */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
        }
        
        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            font-size: 16px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部样式 - 黑蓝搭配优化 */
        header {
            background-color: var(--bg);
            box-shadow: 0 2px 10px rgba(0, 123, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            font-size: 28px;
            margin-right: 10px;
            /* 黑蓝渐变图标 - 替换原有多彩样式 */
            background: linear-gradient(45deg, var(--primary-blue), var(--black));
            -webkit-background-clip: text;
            color: transparent;
        }
        
        .logo-text {
            font-size: 22px;
            font-weight: 700;
            /* 黑蓝渐变文字 - 替换原有多彩样式 */
            background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
            -webkit-background-clip: text;
            color: transparent;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            font-size: 16px;
        }
        
        nav ul li a:hover {
            /* 黑蓝hover变色效果 - 替换原有多彩样式 */
            background: linear-gradient(45deg, var(--light-blue), var(--primary-blue));
            -webkit-background-clip: text;
            color: transparent;
        }
        
        /* 英雄区域 - 黑蓝渐变背景 */
        .hero {
            padding: 100px 0 80px;
            background: linear-gradient(135deg, var(--black), var(--dark-gray), var(--dark-blue));
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--text);
            font-weight: 700;
            /* 黑蓝渐变标题 - 替换原有多彩样式 */
            background: linear-gradient(45deg, var(--light-blue), var(--primary-blue));
            -webkit-background-clip: text;
            color: transparent;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--text-light);
        }
        
        .download-btn {
            display: inline-flex;
            align-items: center;
            /* 黑蓝渐变按钮 - 替换原有多彩样式 */
            background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 16px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }
        
        .download-btn:hover {
            background: linear-gradient(45deg, var(--dark-blue), var(--black));
            transform: translateY(-2px);
        }
        
        .download-btn .icon {
            margin-right: 10px;
            font-size: 20px;
        }
        
        /* 优先下载区域（安卓+苹果 - 带视频） */
        .priority-download {
            padding: 60px 0;
            background: var(--bg-light);
            text-align: center;
        }
        
        .priority-download .section-title {
            margin-bottom: 40px;
            font-size: 2rem;
            background: linear-gradient(45deg, var(--light-blue), var(--primary-blue));
            -webkit-background-clip: text;
            color: transparent;
        }
        
        .download-grid {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .download-card {
            text-align: center;
        }
        
        .video-container {
            width: 304px;
            height: 240px;
            margin: 0 auto 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
        }
        
        .download-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .pc-download-card {
            text-align: center;
            margin-top: 30px;
        }
        
        .pc-img-container {
            width: 304px;
            height: 240px;
            margin: 0 auto 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
        }
        
        .pc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .platform-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 15px;
        }
        
        .platform-btn:hover {
            background: linear-gradient(45deg, var(--dark-blue), var(--black));
            transform: translateY(-2px);
        }
        
        /* 特性区域 - 6个核心特性（黑蓝风格） */
        .features {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            font-size: 2rem;
            color: var(--text);
            font-weight: 700;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid var(--border);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
        }
        
        /* 黑蓝搭配特性图标 - 替换原有多彩颜色 */
        .feature-icon.color1 { color: var(--primary-blue); }
        .feature-icon.color2 { color: var(--light-blue); }
        .feature-icon.color3 { color: var(--dark-blue); }
        .feature-icon.color4 { color: var(--primary-blue); }
        .feature-icon.color5 { color: var(--light-blue); }
        .feature-icon.color6 { color: var(--dark-blue); }
        
        .feature-icon {
            font-size: 48px;
            margin-bottom: 25px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text);
        }
        
        .feature-card p {
            color: var(--text-light);
            font-size: 16px;
        }
        
        /* 24篇短文章区域 - 标题均以纸飞机下载开头 */
        .articles {
            padding: 80px 0;
            background: var(--bg-light);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        
        .article-card {
            background: var(--bg);
            padding: 20px 15px;
            border-radius: 8px;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }
        
        .article-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1);
        }
        
        .article-card h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text);
        }
        
        .article-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.5;
        }
        
        /* 传统平台下载区域（电脑端） */
        .platforms {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .platform-card {
            background: var(--bg-light);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
            transition: transform 0.3s;
            border: 1px solid var(--border);
        }
        
        .platform-card:hover {
            transform: translateY(-5px);
        }
        
        .platform-icon {
            font-size: 56px;
            margin-bottom: 25px;
            background: linear-gradient(45deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            color: transparent;
        }
        
        .platform-card h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text);
        }
        
        .platform-card p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        /* FAQ区域 */
        .faq {
            padding: 80px 0;
            background: var(--bg);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-question {
            background: var(--bg-light);
            padding: 20px 25px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text);
            font-size: 17px;
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background: var(--dark-gray);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--text-light);
        }
        
        .faq-answer.active {
            padding: 25px;
            max-height: 500px;
        }
        
        /* 页脚 - 横向10条友情链接（黑蓝风格） */
        footer {
            background: var(--black);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 25px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
        }
        
        .footer-column p {
            color: #a0a7b8;
            line-height: 1.7;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #a0a7b8;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }
        
        .footer-column ul li a:hover {
            color: var(--primary-blue);
        }
        
        /* 横向友情链接区域 - 10条固定链接 */
        .friend-links {
            padding: 30px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 30px;
        }
        
        .friend-links h3 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: #ffffff;
        }
        
        .links-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        
        .links-list a {
            color: #a0a7b8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .links-list a:hover {
            color: var(--primary-blue);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 14px;
            color: #a0a7b8;
        }
        
        /* 响应式设计 - 保留原有结构 */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            nav ul li {
                margin: 0 10px 10px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .download-grid {
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 70px 0 50px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .features, .platforms, .faq, .articles, .priority-download {
                padding: 60px 0;
            }
            
            .links-list {
                gap: 15px;
            }
        }
    </style>
</head>
<body>
    <header>
        <div class="container">
            <div class="header-content">
                <div class="logo">
                    
                    <div class="logo-icon">✈️</div>
                    <div class="logo-text">纸飞机官方下载</div>
                </div>
                <nav>
                    <ul>
                        <li><a href="#">纸飞机官网</a></li>
                        <li><a href="#priority-download">纸飞机下载</a></li>
                        <li><a href="#faq">常见问题</a></li>
                    </ul>
                </nav>
            </div>
        </div>
    </header>

    <section class="hero">
        <div class="container">
            <h1>纸飞机官网 - 高效安全的全平台通讯工具</h1>
            <p>纸飞机官方下载提供免费稳定的通讯服务，支持安卓、苹果、Windows、Mac全平台客户端下载，2025最新版本，功能丰富，操作便捷。</p>
            <a href="#priority-download" class="download-btn">
                <span class="icon">✈️</span>
                <span>立即获取纸飞机</span>
            </a>
            <p style="margin-top: 15px; font-size: 14px; color: var(--text-lighter);">免费下载 · 安全可靠 · 官方正版</p>
        </div>
    </section>

    
    <section class="priority-download" id="priority-download">
        <div class="container">
            <h2 class="section-title">纸飞机官网下载安卓版 & 苹果ios版</h2>
            <div class="download-grid">
                
                <div class="download-card">
                    <h3>安卓版纸飞机</h3>
                    <div class="video-container">
                        <video class="download-video" autoplay loop muted playsinline poster="/android-poster.jpg">
                            <source src="https://yinyue-yun.com.cn/template/news/zhifeiji001/static/picture/Android_demo.mp4" type="video/mp4">
                            您的浏览器不支持视频播放
                        </video>
                    </div>
                    <a href="#" class="platform-btn">下载安卓版</a>
                </div>

                
                <div class="download-card">
                    <h3>苹果版纸飞机</h3>
                    <div class="video-container">
                        <video class="download-video" autoplay loop muted playsinline poster="/ios-poster.jpg">
                            <source src="https://yinyue-yun.com.cn/template/news/zhifeiji001/static/picture/iOS_demo.mp4" type="video/mp4">
                            您的浏览器不支持视频播放
                        </video>
                    </div>
                    <a href="#" class="platform-btn">下载苹果版</a>
                </div>
            </div>

            
            <div class="pc-download-card">
                <h3>电脑端纸飞机（Windows/Mac）</h3>
                <div class="pc-img-container">
                    <img src="https://yinyue-yun.com.cn/template/news/zhifeiji001/static/picture/desk.png" alt="电脑端纸飞机" class="pc-img">
                </div>
                <a href="#download" class="platform-btn">下载电脑版</a>
            </div>
        </div>
    </section>

    
    <section class="features" id="features">
        <div class="container">
            <h2 class="section-title">为什么选择纸飞机 - 六大核心优势</h2>
            <div class="features-grid">
                <div class="feature-card">
                    <div class="feature-icon color1">🚀</div>
                    <h3>极速通讯体验</h3>
                    <p>采用全球分布式服务器架构，确保消息发送与接收无延迟，语音视频通话清晰流畅，不受网络环境限制。</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon color2">🔒</div>
                    <h3>端到端加密安全</h3>
                    <p>采用顶级端到端加密技术，所有消息和文件均经过加密处理，只有收发双方可解密，全面保护隐私安全。</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon color3">🌍</div>
                    <h3>全球无障碍连接</h3>
                    <p>支持全球多区域节点部署，轻松突破地域限制，实现跨区域无障碍通讯，随时随地与亲友、同事保持联系。</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon color4">💻</div>
                    <h3>全平台无缝同步</h3>
                    <p>支持Android、iOS、Windows、Mac多平台使用，消息、文件、联系人无缝同步，一个账户全终端通用。</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon color5">📁</div>
                    <h3>大文件极速传输</h3>
                    <p>支持超大文件传输，无文件格式和大小限制，传输速度远超传统通讯工具，满足办公和生活的各类传输需求。</p>
                </div>
                <div class="feature-card">
                    <div class="feature-icon color6">✨</div>
                    <h3>极简操作无广告</h3>
                    <p>采用极简主义操作界面，新手快速上手，全程无弹窗广告干扰，带来纯净流畅的使用体验。</p>
                </div>
            </div>
        </div>
    </section>

    
    <section class="articles" id="articles">
        <div class="container">
            <h2 class="section-title">纸飞机相关资讯</h2>
            <div class="articles-grid">
                
                <div class="article-card">
                    <h3>纸飞机下载_最新版本更新日志</h3>
                    <p>介绍纸飞机2025最新版本的功能新增与bug修复，提升使用体验。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_安卓版安装教程</h3>
                    <p>详细讲解纸飞机安卓版的下载、安装及初始化配置步骤，新手必看。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_苹果版获取方法</h3>
                    <p>分享纸飞机苹果版的官方获取渠道及安装注意事项，避免非正版风险。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_电脑版使用技巧</h3>
                    <p>汇总纸飞机电脑版的实用操作技巧，提升办公通讯效率。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_消息加密设置教程</h3>
                    <p>教你如何开启纸飞机端到端加密，进一步保护私人通讯隐私。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_大文件传输指南</h3>
                    <p>详解纸飞机大文件传输的操作步骤及提速技巧，轻松传输高清文件。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_跨平台同步设置</h3>
                    <p>如何实现纸飞机多平台消息、文件无缝同步，实现全终端互通。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_常见问题解决方案</h3>
                    <p>汇总纸飞机使用过程中的常见问题及对应解决方案，快速排障。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_群组创建与管理</h3>
                    <p>教你如何创建纸飞机群组并进行成员管理、权限设置等操作。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_语音通话质量优化</h3>
                    <p>分享提升纸飞机语音视频通话质量的设置方法，告别卡顿模糊。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_隐私保护功能详解</h3>
                    <p>全面解析纸飞机的各项隐私保护功能，打造安全通讯环境。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_自定义界面教程</h3>
                    <p>如何根据个人喜好自定义纸飞机的界面主题、字体大小等样式。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_备份与恢复教程</h3>
                    <p>详解纸飞机消息和文件的备份与恢复方法，避免数据丢失。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_第三方插件推荐</h3>
                    <p>推荐实用的纸飞机第三方插件，拓展纸飞机的功能边界。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_办公场景应用案例</h3>
                    <p>分享纸飞机在企业办公中的应用案例，提升团队协作效率。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_生活场景使用分享</h3>
                    <p>汇总纸飞机在日常生活中的实用使用场景，方便亲友沟通。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_账号安全保护指南</h3>
                    <p>如何设置纸飞机账号安全防护，避免账号被盗或信息泄露。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_离线消息接收设置</h3>
                    <p>教你如何设置纸飞机离线消息接收，不错过重要信息。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_文件分类管理技巧</h3>
                    <p>如何对纸飞机接收的文件进行分类管理，方便快速查找。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_多国语言切换教程</h3>
                    <p>如何切换纸飞机的界面语言，满足不同语言用户的使用需求。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_低电量模式设置</h3>
                    <p>详解纸飞机低电量模式的开启方法，延长移动端使用时长。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_官方客服联系方式</h3>
                    <p>提供纸飞机官方客服的多种联系方式，方便问题反馈与咨询。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_正版与盗版区别</h3>
                    <p>教你辨别纸飞机正版与盗版的区别，避免使用非正版带来的风险。</p>
                </div>
                <div class="article-card">
                    <h3>纸飞机下载_未来功能更新预告</h3>
                    <p>提前了解纸飞机未来的功能更新计划，掌握最新产品动态。</p>
                </div>
            </div>
        </div>
    </section>

    
    <section class="platforms" id="download">
        <div class="container">
            <h2 class="section-title">纸飞机电脑端下载 - 全平台支持</h2>
            <div class="platforms-grid">
                <div class="platform-card">
                    <div class="platform-icon">💻</div>
                    <h3>Windows 客户端</h3>
                    <p>支持Windows 7/8/10/11系统，一键安装，简单易用</p>
                    <a href="#" class="platform-btn">下载 Windows 版</a>
                </div>
                <div class="platform-card">
                    <div class="platform-icon">🍎</div>
                    <h3>Mac 客户端</h3>
                    <p>支持macOS 10.12及以上系统，原生支持，性能优化</p>
                    <a href="#" class="platform-btn">下载 Mac 版</a>
                </div>
            </div>
            <p style="text-align: center; margin-top: 30px; color: var(--text-light); font-size: 16px;">所有版本均为官方正版，免费下载使用，安全无病毒</p>
        </div>
    </section>

    <section class="faq" id="faq">
        <div class="container">
            <h2 class="section-title">常见问题</h2>
            <div class="faq-list">
                <div class="faq-item">
                    <div class="faq-question">
                        <span>纸飞机是免费的吗？</span>
                        <span>+</span>
                    </div>
                    <div class="faq-answer">
                        <p>纸飞机提供永久免费版和付费增值版。免费版已满足日常通讯、文件传输等核心需求，付费版将解锁更多高级功能，如超大文件极速传输、专属节点等。</p>
                    </div>
                </div>
                <div class="faq-item">
                    <div class="faq-question">
                        <span>纸飞机安全吗？</span>
                        <span>+</span>
                    </div>
                    <div class="faq-answer">
                        <p>是的，纸飞机采用顶级端到端加密技术，严格遵循无日志政策，不会记录用户的通讯内容、浏览轨迹等隐私信息，确保用户的通讯安全与隐私保护。</p>
                    </div>
                </div>
                <div class="faq-item">
                    <div class="faq-question">
                        <span>支持哪些设备和平台？</span>
                        <span>+</span>
                    </div>
                    <div class="faq-answer">
                        <p>纸飞机支持Android 5.0及以上、iOS 11.0及以上、Windows 7及以上、macOS 10.12及以上系统，一个账户最多支持10台设备同时在线。</p>
                    </div>
                </div>
                <div class="faq-item">
                    <div class="faq-question">
                        <span>如何安装和使用？</span>
                        <span>+</span>
                    </div>
                    <div class="faq-answer">
                        <p>下载对应平台的客户端后，按照安装向导完成安装。打开应用后，注册或登录账户，即可开始使用核心功能，首次使用将有引导教程帮助快速上手。</p>
                    </div>
                </div>
                <div class="faq-item">
                    <div class="faq-question">
                        <span>文件传输有大小限制吗？</span>
                        <span>+</span>
                    </div>
                    <div class="faq-answer">
                        <p>纸飞机免费版支持单文件2GB以内传输，付费版无文件大小限制，且传输速度更快，支持批量文件一次性传输，满足各类大文件传输需求。</p>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <footer id="footer">
        <div class="container">
            <div class="footer-content">
                <div class="footer-column">
                    <h3>纸飞机</h3>
                    <p>提供高效安全的通讯工具，支持全平台客户端下载，保护您的通讯隐私，提升沟通效率，让连接更简单。</p>
                </div>
                <div class="footer-column">
                    <h3>快速下载</h3>
                    <ul>
                        <li><a href="#">安卓版下载</a></li>
                        <li><a href="#">苹果版下载</a></li>
                        <li><a href="#">Windows版下载</a></li>
                        <li><a href="#">Mac版下载</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>相关资讯</h3>
                    <ul>
                        <li><a href="#articles">使用教程</a></li>
                        <li><a href="#articles">常见问题</a></li>
                        <li><a href="#articles">版本更新</a></li>
                        <li><a href="#articles">功能详解</a></li>
                    </ul>
                </div>
                <div class="footer-column">
                    <h3>公司</h3>
                    <ul>
                        <li><a href="#">关于我们</a></li>
                        <li><a href="#">隐私政策</a></li>
                        <li><a href="#">服务条款</a></li>
                        <li><a href="#">联系我们</a></li>
                    </ul>
                </div>
            </div>

            
            <div class="friend-links">
                <h3>友情链接</h3>
                <div class="links-list">
 <a href="http://m8g8.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhiefiji.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://fffkk.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://oldculture.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://1717520.cn/" target="_blank">纸飞机官网</a>   <a href="http://jackycheung.cn/" target="_blank">纸飞机官网</a>   <a href="http://tougai.cn/" target="_blank">纸飞机官网</a>   <a href="http://aisi-ai.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://biying-aisi.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://bangxuanfang.cn/" target="_blank">纸飞机官网</a>   <a href="http://tele-ios.com/" target="_blank">纸飞机官网</a>   <a href="http://surshark-hk.com/" target="_blank">纸飞机官网</a>   <a href="http://fayi-youdao.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://cn-feijizhan.com/" target="_blank">纸飞机官网</a>   <a href="http://guoqingri.cn/" target="_blank">纸飞机官网</a>   <a href="http://ais-ai.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://qq-hk.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://fayl-youdao.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://anydes.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://wowam.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhifeiij.com/" target="_blank">纸飞机官网</a>   <a href="http://cqjieqian99.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhanzhai.cn/" target="_blank">纸飞机官网</a>   <a href="http://feiji-fj.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://feiji-ios.com/" target="_blank">纸飞机官网</a>   <a href="http://millesgarden.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://damii.cn/" target="_blank">纸飞机官网</a>   <a href="http://nettruyenzin.com/" target="_blank">纸飞机官网</a>   <a href="http://xiaofeiji.org.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhifeiji-9.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://zxzmp.cn/" target="_blank">纸飞机官网</a>   <a href="http://telegyam-ios.com/" target="_blank">纸飞机官网</a>   <a href="http://aaminamuse.com/" target="_blank">纸飞机官网</a>   <a href="http://www-tey.com/" target="_blank">纸飞机官网</a>   <a href="http://172183.cn/" target="_blank">纸飞机官网</a>   <a href="http://tg-xz.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://fe-net.org/" target="_blank">纸飞机官网</a>   <a href="http://a1gm.cn/" target="_blank">纸飞机官网</a>   <a href="http://ai4ios.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://radyo-tunca.com/" target="_blank">纸飞机官网</a>   <a href="http://erin-halfwaydays.org/" target="_blank">纸飞机官网</a>   <a href="http://penking.cn/" target="_blank">纸飞机官网</a>   <a href="http://zifeiji.org.cn/" target="_blank">纸飞机官网</a>   <a href="http://ptpsp.cn/" target="_blank">纸飞机官网</a>   <a href="http://50811.cn/" target="_blank">纸飞机官网</a>   <a href="http://mmrh.cn/" target="_blank">纸飞机官网</a>   <a href="http://yingtaigaode.cn/" target="_blank">纸飞机官网</a>   <a href="http://b541.cn/" target="_blank">纸飞机官网</a>   <a href="http://cqjieqian88.cn/" target="_blank">纸飞机官网</a>   <a href="http://jumeiwei.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhifeiji-4.com/" target="_blank">纸飞机官网</a>   <a href="http://xfbin.cn/" target="_blank">纸飞机官网</a>   <a href="http://wangyi-mumu.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://thegreenusgroup.com/" target="_blank">纸飞机官网</a>   <a href="http://zhiefji.com/" target="_blank">纸飞机官网</a>   <a href="http://tyask.cn/" target="_blank">纸飞机官网</a>   <a href="http://tg-fj.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://www-te.com/" target="_blank">纸飞机官网</a>   <a href="http://lovedmw.cn/" target="_blank">纸飞机官网</a>   <a href="http://videyooz.com/" target="_blank">纸飞机官网</a>   <a href="http://zx395.cn/" target="_blank">纸飞机官网</a>   <a href="http://onoct.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://erhuo.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://sogou-hk.com/" target="_blank">纸飞机官网</a>   <a href="http://vewojq.cn/" target="_blank">纸飞机官网</a>   <a href="http://ia4ios.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhiaifei.com/" target="_blank">纸飞机官网</a>   <a href="http://feijizhi.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://dywmw.com/" target="_blank">纸飞机官网</a>   <a href="http://ai-aisi.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://rygx.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://zhouri.com.cn/" target="_blank">纸飞机官网</a>   <a href="http://aizhifeiji.com/" target="_blank">纸飞机官网</a>   <a href="http://cqzkr.cn/" target="_blank">纸飞机官网</a>   <a href="http://ruanqie.cn/" target="_blank">纸飞机官网</a>   <a href="http://piaogou.com.cn/" target="_blank">纸飞机官网</a>                  </div>
            </div>

            <div class="copyright">
                <p>&copy; 2026 纸飞机官网 版权所有</p>
            </div>
        </div>
    </footer>

<script charset="UTF-8" id="LA_COLLECT" src="//sdk.51.la/js-sdk-pro.min.js"></script>
<script>
    LA.init({id:"KuQBFLgiov9PX2As",ck:"KuQBFLgiov9PX2As"});
    
    // FAQ展开收起功能
    document.querySelectorAll('.faq-question').forEach(question => {
        question.addEventListener('click', () => {
            const answer = question.nextElementSibling;
            const icon = question.querySelector('span:last-child');
            
            answer.classList.toggle('active');
            icon.textContent = answer.classList.contains('active') ? '-' : '+';
        });
    });
</script>
</body>
</html>