﻿<!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="私密聊天是全球领先的全场景伪装型私密通讯系统。旗下拥有口袋闹钟小程序、雨滴时钟小程序、青后办公APP等三大旗舰产品，通过行业顶级的端到端加密算法与完美的日常外壳伪装技术，为您提供绝对安全、防窥视、不留痕迹的社交与办公秘密通讯信道。">
    <meta name="keywords" content="私密聊天软件, 伪装聊天app, 口袋闹钟小程序, 雨滴时钟聊天, 青后办公APP, 阅后即焚, 端到端加密通讯, 隐私社交空间, 防监听聊天, 安全社交软件">
    
    <style>
        /* 全局现代科技感暗黑变量定义 */
        :root {
            --bg-main: #030712;
            --bg-card: rgba(17, 24, 39, 0.7);
            --border-glow: rgba(59, 130, 246, 0.15);
            --text-primary: #f9fafb;
            --text-secondary: #9ca3af;
            --text-muted: #4b5563;
            --accent-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-purple: #8b5cf6;
            --accent-green: #10b981;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 1. 顶通大厂导航栏 */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 0;
            background: rgba(3, 7, 18, 0.8);
            backdrop-filter: blur(12px);
            z-index: 100;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: #fff; }

        .nav-btn {
            background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
            color: #fff;
            padding: 10px 24px;
            border-radius: 10px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: transform 0.2s;
        }
        .nav-btn:hover { transform: translateY(-1px); }

        /* 2. Hero 苹果风视觉首屏区 */
        .hero {
            text-align: center;
            padding: 120px 0 60px 0;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: #60a5fa;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
            background: linear-gradient(to right, #ffffff, #9ca3af);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero h1 span {
            background: linear-gradient(to right, #3b82f6, #8b5cf6, #06b6d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.35rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 40px auto;
            font-weight: 400;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        .btn-primary {
            background: #fff;
            color: #030712;
            padding: 16px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }
        .btn-primary:hover { opacity: 0.95; transform: translateY(-1px); }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.03);
            color: #fff;
            padding: 16px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.2s;
        }
        .btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

        /* 通用模块标题 */
        .section-title {
            text-align: center;
            margin: 100px 0 60px 0;
        }

        .section-title h2 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-title p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* 3. 核心优势矩阵 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .adv-card {
            background: var(--bg-card);
            border: 1px solid var(--border-glow);
            padding: 40px 32px;
            border-radius: 20px;
            backdrop-filter: blur(8px);
            transition: all 0.3s;
        }

        .adv-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.05);
        }

        .adv-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.03);
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .adv-card h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .adv-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            text-align: justify;
        }

        /* 4. 旗舰产品生态排版区（左文右图交错流式） */
        .product-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 60px;
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 28px;
            padding: 60px;
            backdrop-filter: blur(12px);
        }

        .product-row.reverse {
            flex-direction: row-reverse;
        }

        .product-text {
            flex: 1;
        }

        .product-media {
            flex: 0 0 280px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(0, 0, 0, 0.2);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }

        .p-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 20px;
            letter-spacing: 0.5px;
        }
        .p-badge.clock-b { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.2); }
        .p-badge.rain-b { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.2); }
        .p-badge.office-b { background: rgba(139, 92, 246, 0.15); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.2); }

        .product-text h3 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 16px;
            font-weight: 800;
        }

        .product-text .intro {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 28px;
            text-align: justify;
        }

        .feature-bullets {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .feature-bullets li {
            font-size: 0.95rem;
            color: var(--text-primary);
            position: relative;
            padding-left: 24px;
        }

        .feature-bullets li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: 900;
        }

        /* 二维码图片精致留位框 */
        .qr-wrapper {
            background: #090d16;
            border: 2px dashed rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            width: 180px;
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            margin-bottom: 16px;
            transition: all 0.3s;
        }

        .qr-wrapper:hover {
            border-color: var(--accent-blue);
            background: #0c1322;
        }

        .qr-placeholder {
            color: var(--text-secondary);
            font-size: 0.8rem;
            text-align: center;
            line-height: 1.5;
            padding: 12px;
        }

        .qr-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 14px;
            display: block;
        }

        .qr-tip {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        /* 5. 独创：大厂对比看板板块（极大提高页面专业度与词重） */
        .compare-section {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 24px;
            padding: 40px;
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        .compare-table th, .compare-table td {
            padding: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .compare-table th {
            color: #fff;
            font-weight: 700;
            font-size: 1.05rem;
        }

        .compare-table td {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .compare-table .highlight {
            color: var(--accent-cyan);
            font-weight: 600;
        }

        /* 6. 独创：FAQ 常见问题树状折叠区（爬虫最爱的问答抓取区） */
        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        details {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            margin-bottom: 16px;
            padding: 20px;
            transition: all 0.3s;
        }

        details[open] {
            border-color: rgba(59, 130, 246, 0.3);
        }

        summary {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            position: relative;
            padding-right: 30px;
        }

        summary::after {
            content: "+";
            position: absolute;
            right: 0;
            color: var(--text-secondary);
            font-size: 1.4rem;
            top: 50%;
            transform: translateY(-50%);
        }

        details[open] summary::after {
            content: "−";
        }

        details p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-top: 12px;
            line-height: 1.6;
            text-align: justify;
        }

        /* 7. 页脚大型链接地图 */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 80px 0 40px 0;
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-top: 100px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h5 {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover { color: #fff; }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }

        /* 极致移动端跨端响应式 */
        @media (max-width: 960px) {
            .product-row, .product-row.reverse {
                flex-direction: column;
                padding: 40px 24px;
            }
            .product-media {
                flex: none;
                width: 100%;
            }
            .hero h1 { font-size: 2.8rem; }
            .nav-links { display: none; }
            .feature-bullets { grid-template-columns: 1fr; }
        }
    </style>
</head>
<body>

    <div class="container">
        
        <nav>
            <div class="logo">私密聊天</div>
            <ul class="nav-links">
                <li><a href="#features">技术架构</a></li>
                <li><a href="#products">旗舰产品</a></li>
                <li><a href="#compare">方案对比</a></li>
                <li><a href="#faq">常见问题</a></li>
            </ul>
            <a href="#products" class="nav-btn">立即体验</a>
        </nav>

        <header class="hero">
            <span class="hero-badge">✨ 2026 全维安全架构升级</span>
            <h1>构建无懈可击的<span>全隐蔽私密通讯空间</span></h1>
            <p>基于顶级端到端非对称加密算法，为您量身定制外观绝对无痕、暗号秒速唤醒的跨端隐蔽聊天生态系统。让核心信息与个人隐私重回安全无界状态。</p>
            <div class="hero-btns">
                <a href="#products" class="btn-primary">获取旗舰产品终端</a>
                <a href="#compare" class="btn-secondary">查看安全对比白皮书</a>
            </div>
        </header>

        <section id="features" class="advantages-grid">
            <div class="adv-card">
                <div class="adv-icon">🔒</div>
                <h3>端到端零留痕加密</h3>
                <p>每一条对话、图片、语音文件均采用高强度密钥在本地设备执行单向加密。传输信道完全黑匣化，运营商与系统方均无法还原明文。</p>
            </div>
            <div class="adv-card">
                <div class="adv-icon">👁️</div>
                <h3>全生态多态外壳</h3>
                <p>完美模拟日常高频工具面板，深度切入微信小程序生态及原生App底层。在多任务切换、桌面图标、消息挂机上具备完美掩护性。</p>
            </div>
            <div class="adv-card">
                <div class="adv-icon">⏳</div>
                <h3>内存级销毁解构</h3>
                <p>支持消息定时自毁。一经阅读，系统直接对设备物理内存和本地缓存执行0代码解构覆写，确保取证软件也无法找回任何痕迹。</p>
            </div>
            <div class="adv-card">
                <div class="adv-icon">📱</div>
                <h3>系统底层防截屏</h3>
                <p>独家接管OS底层截屏与录屏中断信号，全面屏蔽任何恶意抓屏或截屏分享动作，从根本上锁死信息图片化外泄的可能。</p>
            </div>
        </section>

        <section id="products" class="product-section">
            <div class="section-title">
                <h2>三大旗舰级隐蔽通讯信道</h2>
                <p>从小程序即开即用到企业级App终端，多维覆盖您的沟通防窥场景</p>
            </div>

            <div class="product-row">
                <div class="product-text">
                    <span class="p-badge clock-b">微信小程序 · 轻量防窥</span>
                    <h3>口袋闹钟 —— 精准时间管理伪装空间</h3>
                    <p class="intro">专为轻量化、即时性社交防窥需求设计。表面是一款功能完备的时间效率管理、日程清单小程序。一旦在暗号设置面板输入配对的专属数字口令，系统瞬间一键切换，打开内置的高闭环无痕社交信道。</p>
                    <ul class="feature-bullets">
                        <li>原生高仿计时器与日程看板</li>
                        <li>特定数字暗号组合解锁</li>
                        <li>微信下拉即用，不占物理内存</li>
                        <li>一键摇晃手机瞬间返回计时器</li>
                        <li>历史记录零云端，支持本地清空</li>
                        <li>支持文本及无痕图片多媒体交互</li>
                    </ul>
                </div>
                <div class="product-media">
                    <div class="qr-wrapper">
                        <div class="qr-placeholder"><img src="http://aiporia.com/koudai.jpg"></div>
                    </div>
                    <p class="qr-tip">微信扫码 立即启用</p>
                </div>
            </div>

            <div class="product-row reverse">
                <div class="product-text">
                    <span class="p-badge rain-b">微信小程序 · 美学隐匿</span>
                    <h3>雨滴时钟 —— 极简唯美翻页加密通道</h3>
                    <p class="intro">主打高审美极简白噪音环境音与翻页时间显示，为手机桌面提供绝佳的艺术伪装。雨滴时钟摒弃了传统的数字开锁，独创手势几何轨迹混淆技术。只有长按特定光影区并滑出专属轨迹，才能激活底层的社交聊天界面。</p>
                    <ul class="feature-bullets">
                        <li>高美感时钟UI与舒缓背景音</li>
                        <li>自定义手势滑动轨迹隐形解密</li>
                        <li>系统无任何敏感字符推送</li>
                        <li>端到端全链路加密通讯</li>
                        <li>阅读即自毁，不留任何物理凭证</li>
                        <li>后台运行全挂机自动伪装机制</li>
                    </ul>
                </div>
                <div class="product-media">
                    <div class="qr-wrapper">
                        <div class="qr-placeholder"><img src="http://aiporia.com/yudi.jpg"></div>
                    </div>
                    <p class="qr-tip">微信扫码 艺术隐匿</p>
                </div>
            </div>

            <div class="product-row">
                <div class="product-text">
                    <span class="p-badge office-b">原生独立 APP · 企业商用级</span>
                    <h3>青后办公 —— 全重构协同办公防监听系统</h3>
                    <p class="intro">专为高级核心研发、高度敏感商业谈判打造的重型安全移动终端。外观100%对标主流企业协同OA（具备文档协同、待办看板、团队共享流），内核接入行业顶级的非对称密钥反取证架构，让机密沟通自然隐匿于工作中。</p>
                    <ul class="feature-bullets">
                        <li>完整度极高的商业协同办公外壳</li>
                        <li>多任务后台缩略图全拦截模糊化</li>
                        <li>系统级API严厉限制截屏录屏</li>
                        <li>支持多重账号和虚拟面具切换</li>
                        <li>不经过公共服务器明文留存中转</li>
                        <li>支持超大加密文件及高码率语音</li>
                    </ul>
                </div>
                <div class="product-media">
                    <div class="qr-wrapper">
                        <div class="qr-placeholder"><img src="http://aiporia.com/qinghou.jpg"></div>
                    </div>
                    <p class="qr-tip">扫描二维码 下载客户端</p>
                </div>
            </div>
        </section>

        <section id="compare" class="section-title">
            <h2>为什么选择 私密聊天 体系</h2>
            <p>全景对比，唯有技术架构能提供真正的安全防护</p>
        </section>
        <div class="compare-section">
            <table class="compare-table">
                <thead>
                    <tr>
                        <th>安全特性 / 维度</th>
                        <th class="highlight">私密聊天系统 (闹钟/时钟/办公)</th>
                        <th>传统通用社交软件</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>桌面与外壳表现</td>
                        <td class="highlight">100% 日常效率工具/协同外壳伪装，防翻阅</td>
                        <td>明文社交软件图标，极易引发关注</td>
                    </tr>
                    <tr>
                        <td>信息加密机制</td>
                        <td class="highlight">端到端非对称强加密，服务商无解密密钥</td>
                        <td>服务器明文/单向加密，易被检索或导出</td>
                    </tr>
                    <tr>
                        <td>截屏/录屏防护</td>
                        <td class="highlight">底层 API 强制拦截，拒绝任何抓屏图片外泄</td>
                        <td>无系统拦截，聊天记录可被随时截屏转发</td>
                    </tr>
                    <tr>
                        <td>缓存物理自毁</td>
                        <td class="highlight">退出立即覆写内存，彻底粉碎数据残留</td>
                        <td>本地数据库明文或易破译存储，卸载亦可恢复</td>
                    </tr>
                </tbody>
            </table>
        </div>

        <section id="faq" class="section-title">
            <h2>关于安全隐私的常见解答</h2>
            <p>解密 私密聊天 底层技术原理</p>
        </section>
        <div class="faq-wrapper">
            <details>
                <summary>口袋闹钟与雨滴时钟小程序，聊天数据会经过微信服务器吗？</summary>
                <p>我们采用端到端加密（E2EE）技术。微信小程序生态仅作为数据的流转信道，其传输的所有文本和图片在离开您的手机前，就已经被高度复杂的本地密钥转换为了乱码黑匣子。无论是微信官方还是任何第三方，都无法中途监听或明文还原您的沟通内容。</p>
            </details>
            <details>
                <summary>青后办公APP如何做到防截屏和多任务隐藏？</summary>
                <p>青后办公APP调用了Android及iOS的系统底层Flag安全接口。在私密模式激活时，系统级截屏组合键将被OS强制失效；同时，当您切换至手机多任务后台时，该应用在后台缩略图中会自动显示为一片全黑或高斯模糊的工作文档面板，有效防止身边人的无意窥视。</p>
            </details>
            <details>
                <summary>如果忘记了暗号口令或手势，聊天记录还能找回吗？</summary>
                <p>由于本系统严格坚守“零知识证明”与“无中心化备份”的顶级安全原则，您的解锁暗号和本地私钥是恢复数据的唯一凭证。如果您不慎遗忘，平台因没有备份主密钥，将无法为您重置。这种极端的设定，是为了确保即便设备丢失，也绝无任何人能暴力破解您的隐私空间。</p>
            </details>
        </div>

        <footer>
            <div class="footer-grid">
                <div class="footer-col">
                    <h5>旗舰终端家族</h5>
                    <ul>
                        <li><a href="#products">口袋闹钟（轻量效率伪装）</a></li>
                        <li><a href="#products">雨滴时钟（白噪音美学伪装）</a></li>
                        <li><a href="#products">青后办公（企业级OA协同伪装）</a></li>
                    </ul>
                </div>
                <div class="footer-col">
                    <h5>核心安全技术</h5>
                    <ul>
                        <li><a href="#features">端到端非对称算法（E2EE）</a></li>
                        <li><a href="#features">几何手势模糊算法</a></li>
                        <li><a href="#features">内存0粉碎取证防御</a></li>
                        <li><a href="#features">底层防抓屏API接管</a></li>
                    </ul>
                </div>
                <div class="footer-col">
                    <h5>开发者与合规</h5>
                    <ul>
                        <li><a href="#features">零知识证明技术白皮书</a></li>
                        <li><a href="#features">商业机密合规防御指南</a></li>
                        <li><a href="#features">独立密钥生成器说明</a></li>
                    </ul>
                </div>
            </div>
            <div class="footer-bottom">
                <p>© 2026 山东青后信息科技有限公司. <a href="http://www.beian.miit.gov.cn" target="_blank" >鲁ICP备19022749号</a></p>
                <p>合规声明：本系统产品仅用于企业合法的商业机密保护、数据安全协同以及完全合法的个人隐私防窥交互。</p>
            </div>
        </footer>

    </div>

</body>
</html>