index.html 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>极速支付 - 专业支付通道 | 一手通道 | 低费率支付解决方案</title>
  7. <meta name="description" content="极速支付提供专业支付通道服务,支持机场/发卡/影视/游戏等业务,费率低至6%,D0实时结算,自研系统成功率99%。">
  8. <meta name="keywords" content="极速支付,支付通道,一手通道,低费率支付,支付解决方案,D0结算">
  9. <meta name="author" content="极速支付">
  10. <meta property="og:title" content="极速支付 - 专业支付通道 | 一手通道 | 低费率支付解决方案">
  11. <meta property="og:description" content="极速支付提供专业支付通道服务,支持机场/发卡/影视/游戏等业务,费率低至6%,D0实时结算,自研系统成功率99%。">
  12. <meta property="og:type" content="website">
  13. <link rel="canonical" href="https://jsupay.com/">
  14. <style>
  15. * {
  16. margin: 0;
  17. padding: 0;
  18. box-sizing: border-box;
  19. }
  20. body {
  21. font-family: 'Microsoft YaHei', sans-serif;
  22. line-height: 1.6;
  23. color: #333;
  24. background-color: #f5f5f5;
  25. }
  26. .container {
  27. max-width: 800px;
  28. margin: 0 auto;
  29. padding: 20px;
  30. }
  31. .nav {
  32. background: white;
  33. padding: 15px;
  34. border-radius: 10px;
  35. margin-bottom: 20px;
  36. box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  37. }
  38. .nav-list {
  39. display: flex;
  40. justify-content: center;
  41. list-style: none;
  42. gap: 20px;
  43. }
  44. .nav-link {
  45. color: #1e3c72;
  46. text-decoration: none;
  47. font-weight: bold;
  48. padding: 8px 15px;
  49. border-radius: 5px;
  50. transition: all 0.3s ease;
  51. }
  52. .nav-link:hover {
  53. background: #f0f0f0;
  54. color: #2a5298;
  55. }
  56. .header {
  57. text-align: center;
  58. padding: 40px 0;
  59. background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  60. color: white;
  61. border-radius: 10px;
  62. margin-bottom: 30px;
  63. }
  64. .header h1 {
  65. font-size: 2.5em;
  66. margin-bottom: 10px;
  67. }
  68. .content {
  69. background: white;
  70. padding: 30px;
  71. border-radius: 10px;
  72. box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  73. }
  74. .section {
  75. margin-bottom: 30px;
  76. }
  77. .section h2 {
  78. color: #1e3c72;
  79. margin-bottom: 15px;
  80. font-size: 1.5em;
  81. }
  82. .features {
  83. display: grid;
  84. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  85. gap: 20px;
  86. margin-top: 20px;
  87. }
  88. .feature-item {
  89. background: #f8f9fa;
  90. padding: 20px;
  91. border-radius: 8px;
  92. border-left: 4px solid #1e3c72;
  93. }
  94. .highlight {
  95. color: #e74c3c;
  96. font-weight: bold;
  97. }
  98. .contact {
  99. text-align: center;
  100. margin-top: 40px;
  101. padding: 30px;
  102. background: #f8f9fa;
  103. border-radius: 10px;
  104. box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  105. }
  106. .contact-buttons {
  107. display: flex;
  108. justify-content: center;
  109. gap: 20px;
  110. margin-top: 20px;
  111. }
  112. .contact-button {
  113. display: inline-block;
  114. padding: 12px 30px;
  115. background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  116. color: #fff;
  117. text-decoration: none;
  118. border: none;
  119. border-radius: 5px;
  120. font-weight: bold;
  121. transition: all 0.3s ease;
  122. box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  123. position: relative;
  124. overflow: hidden;
  125. }
  126. .contact-button::before {
  127. content: '';
  128. position: absolute;
  129. top: 0;
  130. left: -100%;
  131. width: 100%;
  132. height: 100%;
  133. background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  134. transition: 0.5s;
  135. }
  136. .contact-button:hover {
  137. background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  138. box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  139. transform: translateY(-2px);
  140. }
  141. .contact-button:hover::before {
  142. left: 100%;
  143. }
  144. .contact p {
  145. font-size: 1.2em;
  146. margin-bottom: 10px;
  147. }
  148. .telegram {
  149. color: #0088cc;
  150. font-weight: bold;
  151. }
  152. </style>
  153. </head>
  154. <body>
  155. <div class="container">
  156. <nav class="nav" role="navigation">
  157. <ul class="nav-list">
  158. <li><a href="index.html" class="nav-link">首页</a></li>
  159. <li><a href="payment-guide.html" class="nav-link">支付指南</a></li>
  160. <li><a href="member-benefits.html" class="nav-link">会员权益</a></li>
  161. <li><a href="security-guide.html" class="nav-link">安全指南</a></li>
  162. </ul>
  163. </nav>
  164. <header class="header" role="banner">
  165. <h1>极速支付</h1>
  166. <p>一手通道 · 专业支付解决方案</p>
  167. </header>
  168. <main class="content" role="main">
  169. <section class="section" aria-labelledby="business-scope">
  170. <h2 id="business-scope">业务范围</h2>
  171. <p>VPN机场、vps、发卡、游戏、论坛、视频影视等低客诉业务</p>
  172. <p class="highlight">🈲任何涉及于赌博,诈骗等资金,请切勿接入将无条件冻结资金</p>
  173. </section>
  174. <section class="section" aria-labelledby="fee-description">
  175. <h2 id="fee-description">费率说明</h2>
  176. <p>支付通道:<span class="highlight">微信/支付宝</span></p>
  177. <p>通道费率:<span class="highlight">6% U上浮0.2</span></p>
  178. <p>结算周期:<span class="highlight">D0</span></p>
  179. <p>结算方式:<span class="highlight">USDT 可设置满结,满100元随时结算</span></p>
  180. <p>结算汇率:<span class="highlight">欧易实时汇率结算</span></p>
  181. </section>
  182. <section class="section" aria-labelledby="member-benefits">
  183. <h2 id="member-benefits">👑 独家会员模式 - 会员权益 👑</h2>
  184. <div class="features">
  185. <div class="feature-item">
  186. ✅ 聚合几十家支付通道,一手费率6%
  187. </div>
  188. <div class="feature-item">
  189. ✅ 实时U价结算,无上浮,0手续费
  190. </div>
  191. <div class="feature-item">
  192. ✅ 自研支付系统,成功率99%
  193. </div>
  194. <div class="feature-item">
  195. ✅ 独家会员模式,上百条通道自由选择
  196. </div>
  197. <div class="feature-item">
  198. ✅ 安全无忧,无惧跑路
  199. </div>
  200. </div>
  201. </section>
  202. <section class="section">
  203. <p>我们把支付费率打下来,让您获得实实在在的优惠</p>
  204. <p>没有门槛,1元流水也可享受低费率一手通道</p>
  205. <p>从此杜绝支付跑路风险,让您随时可以安全无忧收款</p>
  206. <p class="highlight">💰 更低费率,更高成功率,更强安全保障! 🚀</p>
  207. </section>
  208. <section class="contact" aria-labelledby="contact-info">
  209. <h2 id="contact-info" class="visually-hidden">联系方式</h2>
  210. <p>立即加入我们:</p>
  211. <div class="contact-buttons">
  212. <a href="https://t.me/Jsupay" class="contact-button" target="_blank">加入群组</a>
  213. <a href="https://t.me/jsupaykf_bot" class="contact-button" target="_blank">联系客服</a>
  214. </div>
  215. </section>
  216. </main>
  217. </div>
  218. </body>
  219. </html>