123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- <!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-color: #0f0f1a;
- min-height: 100vh;
- }
-
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 20px;
- }
-
- .header {
- text-align: center;
- padding: 80px 0;
- background: linear-gradient(135deg, #2a0f49 0%, #0f0f1a 100%);
- position: relative;
- overflow: hidden;
- }
-
- .header::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background:
- linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.1) 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(0,255,255,0.1)" stroke-width="1"/></svg>');
- animation: scan 8s linear infinite;
- }
-
- @keyframes scan {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 100% 0;
- }
- }
-
- .header h1 {
- font-size: 3.5em;
- margin-bottom: 20px;
- color: #00ffff;
- text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
- animation: glow 2s ease-in-out infinite alternate;
- }
-
- @keyframes glow {
- from {
- text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
- }
- to {
- text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
- }
- }
-
- .content {
- background: rgba(15, 15, 26, 0.8);
- padding: 40px;
- border-radius: 10px;
- border: 1px solid rgba(0, 255, 255, 0.2);
- box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
- margin-top: -30px;
- position: relative;
- z-index: 1;
- }
-
- .section {
- margin-bottom: 40px;
- padding: 30px;
- background: rgba(15, 15, 26, 0.5);
- border-radius: 10px;
- border: 1px solid rgba(0, 255, 255, 0.2);
- position: relative;
- overflow: hidden;
- }
-
- .section::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 1px;
- background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
- animation: borderGlow 2s linear infinite;
- }
-
- @keyframes borderGlow {
- 0% {
- transform: translateX(-100%);
- }
- 100% {
- transform: translateX(100%);
- }
- }
-
- .section h2 {
- color: #00ffff;
- margin-bottom: 20px;
- font-size: 2em;
- position: relative;
- display: inline-block;
- }
-
- .section h2::after {
- content: '';
- position: absolute;
- bottom: -5px;
- left: 0;
- width: 100%;
- height: 1px;
- background: linear-gradient(90deg, #00ffff, transparent);
- }
-
- .features {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 30px;
- margin-top: 30px;
- }
-
- .feature-item {
- background: rgba(15, 15, 26, 0.5);
- padding: 25px;
- border-radius: 10px;
- border: 1px solid rgba(0, 255, 255, 0.2);
- position: relative;
- transition: all 0.3s ease;
- }
-
- .feature-item:hover {
- transform: translateY(-5px);
- box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
- border-color: rgba(0, 255, 255, 0.5);
- }
-
- .highlight {
- color: #00ffff;
- font-weight: bold;
- }
-
- .contact {
- text-align: center;
- margin-top: 40px;
- padding: 30px;
- background: rgba(15, 15, 26, 0.5);
- border-radius: 10px;
- border: 1px solid rgba(0, 255, 255, 0.2);
- position: relative;
- }
-
- .contact::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
- animation: gradientMove 3s linear infinite;
- }
-
- @keyframes gradientMove {
- 0% {
- background-position: 0% 50%;
- }
- 100% {
- background-position: 100% 50%;
- }
- }
-
- .contact p {
- font-size: 1.3em;
- margin-bottom: 15px;
- }
-
- .telegram {
- color: #00ffff;
- font-weight: bold;
- font-size: 1.4em;
- text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
- }
-
- .contact-buttons {
- display: flex;
- justify-content: center;
- gap: 20px;
- margin-top: 20px;
- }
-
- .contact-button {
- display: inline-block;
- padding: 12px 30px;
- background: rgba(0, 255, 255, 0.1);
- color: #00ffff;
- text-decoration: none;
- border: 1px solid #00ffff;
- border-radius: 5px;
- font-weight: bold;
- transition: all 0.3s ease;
- position: relative;
- overflow: hidden;
- box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
- }
-
- .contact-button::before {
- content: '';
- position: absolute;
- top: 0;
- left: -100%;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
- transition: 0.5s;
- }
-
- .contact-button::after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
- animation: scan 2s linear infinite;
- }
-
- .contact-button:hover {
- background: rgba(0, 255, 255, 0.2);
- box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
- transform: translateY(-2px);
- }
-
- .contact-button:hover::before {
- left: 100%;
- }
-
- @media (max-width: 768px) {
- .header {
- padding: 60px 0;
- }
-
- .content {
- padding: 20px;
- }
-
- .section {
- padding: 20px;
- }
- }
- </style>
- </head>
- <body>
- <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>
- </section>
-
- <section class="section" aria-labelledby="fee-description">
- <h2 id="fee-description">费率说明</h2>
- <p>费率:<span class="highlight">6%上浮0.2</span></p>
- <p>结算:<span class="highlight">D0 实时汇率</span></p>
- <p>系统:自研系统,成功率99%</p>
- </section>
-
- <section class="section" aria-labelledby="member-benefits">
- <h2 id="member-benefits">👑 独家会员模式 - 会员权益 👑</h2>
- <div class="features">
- <div class="feature-item">
- ✅ 上百条一手通道,会员任选
- </div>
- <div class="feature-item">
- ✅ 1元流水也可享受一手通道低费率
- </div>
- <div class="feature-item">
- ✅ 高额担保,安全收款,告别跑路
- </div>
- </div>
- </section>
-
- <section class="section">
- <p>无套路,费率所见即所得,让我们一起重新定义支付!</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>
|