<!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="极速支付提供专业支付通道服务,支持机场/发卡/影视/游戏等业务,费率低至6%,D0实时结算,自研系统成功率99%。">
    <meta name="keywords" content="极速支付,支付通道,一手通道,低费率支付,支付解决方案,D0结算">
    <meta name="author" content="极速支付">
    <meta property="og:title" content="极速支付 - 专业支付通道 | 一手通道 | 低费率支付解决方案">
    <meta property="og:description" content="极速支付提供专业支付通道服务,支持机场/发卡/影视/游戏等业务,费率低至6%,D0实时结算,自研系统成功率99%。">
    <meta property="og:type" content="website">
    <link rel="canonical" href="https://jsupay.com/">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
            color: #fff;
            background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(17, 34, 64, 0.9) 100%);
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(100, 255, 218, 0.15) 50%, transparent 100%),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(100,255,218,0.15)" stroke-width="1"/></svg>');
            animation: scan 8s linear infinite;
            border-radius: 20px;
        }
        
        @keyframes scan {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 100% 0;
            }
        }
        
        .header h1 {
            font-size: 4em;
            margin-bottom: 20px;
            color: #64ffda;
            text-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
            letter-spacing: 2px;
        }
        
        .content {
            background: rgba(17, 34, 64, 0.6);
            padding: 40px;
            border-radius: 20px;
            margin-top: -30px;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .section {
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(17, 34, 64, 0.4);
            border-radius: 15px;
            position: relative;
            transition: transform 0.3s ease;
            border: 2px solid rgba(100, 255, 218, 0.3);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border-color: rgba(100, 255, 218, 0.5);
        }
        
        .section h2 {
            color: #64ffda;
            margin-bottom: 20px;
            font-size: 2.2em;
            position: relative;
            display: inline-block;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
        }
        
        .section h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #64ffda, transparent);
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .feature-item {
            background: rgba(17, 34, 64, 0.4);
            padding: 25px;
            border-radius: 15px;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            background: rgba(17, 34, 64, 0.6);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .feature-item h3 {
            color: #64ffda;
            margin-bottom: 15px;
            font-size: 1.4em;
        }
        
        .highlight {
            color: #64ffda;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
        }
        
        .contact {
            text-align: center;
            margin-top: 40px;
            padding: 40px;
            background: rgba(17, 34, 64, 0.4);
            border-radius: 15px;
            position: relative;
            border: 1px solid rgba(100, 255, 218, 0.1);
        }
        
        .contact p {
            font-size: 1.4em;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .contact-button {
            display: inline-block;
            padding: 15px 35px;
            background: rgba(100, 255, 218, 0.1);
            color: #64ffda;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(100, 255, 218, 0.2);
            font-size: 1.1em;
        }
        
        .contact-button:hover {
            background: rgba(100, 255, 218, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
            border-color: rgba(100, 255, 218, 0.4);
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 60px 20px;
            }
            
            .header h1 {
                font-size: 2.5em;
            }
            
            .content {
                padding: 20px;
            }
            
            .section {
                padding: 20px;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-button {
                width: 100%;
                max-width: 300px;
            }
        }
        
        .nav {
            background: rgba(17, 34, 64, 0.8);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            color: #64ffda;
            font-size: 1.5em;
            font-weight: bold;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        
        .nav-link {
            color: #fff;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            background: rgba(100, 255, 218, 0.1);
            color: #64ffda;
        }
        
        .header {
            padding-top: 120px;  /* 为固定导航栏留出空间 */
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
        }
    </style>
</head>
<body>
    <nav class="nav">
        <div class="nav-container">
            <a href="index6.html" class="nav-logo">极速支付</a>
            <div class="nav-links">
                <a href="articles.html" class="nav-link">文章列表</a>
                <a href="#contact" class="nav-link">联系我们</a>
            </div>
        </div>
    </nav>
    
    <div class="container">
        <header class="header" role="banner">
            <h1>极速支付</h1>
            <p>专业支付通道 · 一手通道 · 低费率支付解决方案</p>
        </header>
        
        <main class="content" role="main">
            <section class="section" aria-labelledby="business-scope">
                <h2 id="business-scope">业务范围</h2>
                <p>我们专注于为以下行业提供专业支付解决方案:</p>
                <div class="features">
                    <div class="feature-item">
                        <h3>机场服务</h3>
                        <p>支持各类机场服务支付,稳定可靠,快速到账</p>
                    </div>
                    <div class="feature-item">
                        <h3>发卡平台</h3>
                        <p>为发卡平台提供安全、高效的支付通道</p>
                    </div>
                    <div class="feature-item">
                        <h3>影视娱乐</h3>
                        <p>支持影视、直播等娱乐行业支付需求</p>
                    </div>
                    <div class="feature-item">
                        <h3>游戏产业</h3>
                        <p>为游戏平台提供专业的支付解决方案</p>
                    </div>
                </div>
            </section>
            
            <section class="section" aria-labelledby="fee-description">
                <h2 id="fee-description">费率说明</h2>
                <div class="features">
                    <div class="feature-item">
                        <h3>基础费率</h3>
                        <p>费率:<span class="highlight">6%上浮0.2</span></p>
                        <p>无隐藏费用,透明收费</p>
                    </div>
                    <div class="feature-item">
                        <h3>结算方式</h3>
                        <p>结算:<span class="highlight">D0 实时汇率</span></p>
                        <p>资金快速到账,无需等待</p>
                    </div>
                    <div class="feature-item">
                        <h3>系统优势</h3>
                        <p>自研系统,成功率99%</p>
                        <p>7*24小时稳定运行</p>
                    </div>
                </div>
            </section>
            
            <section class="section" aria-labelledby="member-benefits">
                <h2 id="member-benefits">👑 独家会员模式 - 会员权益 👑</h2>
                <div class="features">
                    <div class="feature-item">
                        <h3>通道优势</h3>
                        <p>✅ 上百条一手通道,会员任选</p>
                        <p>✅ 通道稳定,支付成功率高</p>
                    </div>
                    <div class="feature-item">
                        <h3>费率优势</h3>
                        <p>✅ 1元流水也可享受一手通道低费率</p>
                        <p>✅ 无最低交易额限制</p>
                    </div>
                    <div class="feature-item">
                        <h3>安全保障</h3>
                        <p>✅ 高额担保,安全收款</p>
                        <p>✅ 资金安全有保障,告别跑路风险</p>
                    </div>
                </div>
            </section>
            
            <section class="section">
                <h2>为什么选择我们?</h2>
                <div class="features">
                    <div class="feature-item">
                        <h3>专业团队</h3>
                        <p>拥有多年支付行业经验的专业团队</p>
                    </div>
                    <div class="feature-item">
                        <h3>技术支持</h3>
                        <p>7*24小时技术支持服务</p>
                    </div>
                    <div class="feature-item">
                        <h3>安全保障</h3>
                        <p>多重安全防护,保障资金安全</p>
                    </div>
                </div>
                <p style="margin-top: 20px; text-align: center;">无套路,费率所见即所得,让我们一起重新定义支付!</p>
            </section>
            
            <section class="contact" aria-labelledby="contact-info">
                <h2 id="contact-info" class="visually-hidden">联系方式</h2>
                <p>立即加入我们:</p>
                <div class="contact-buttons">
                    <a href="https://t.me/Jsupay" class="contact-button" target="_blank">加入群组</a>
                    <a href="https://t.me/jsupaykf_bot" class="contact-button" target="_blank">联系客服</a>
                </div>
            </section>
        </main>
    </div>
</body>
</html>