index10.html 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  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. :root {
  16. --primary-color: #1890ff;
  17. --primary-hover: #096dd9;
  18. --text-color: #333;
  19. --text-secondary: #666;
  20. --text-light: #999;
  21. --bg-color: #f0f2f5;
  22. --bg-white: #fff;
  23. --border-color: #e8e8e8;
  24. --shadow-color: rgba(0, 0, 0, 0.08);
  25. --shadow-hover: rgba(0, 0, 0, 0.12);
  26. --transition: all 0.3s ease;
  27. }
  28. * {
  29. margin: 0;
  30. padding: 0;
  31. box-sizing: border-box;
  32. }
  33. body {
  34. font-family: 'Microsoft YaHei', sans-serif;
  35. line-height: 1.6;
  36. color: var(--text-color);
  37. background-color: var(--bg-color);
  38. min-height: 100vh;
  39. }
  40. .container {
  41. max-width: 1200px;
  42. margin: 0 auto;
  43. padding: 0;
  44. }
  45. .top-bar {
  46. background: #001529;
  47. padding: 10px 0;
  48. border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  49. position: fixed;
  50. top: 0;
  51. left: 0;
  52. right: 0;
  53. z-index: 1000;
  54. }
  55. .top-bar-content {
  56. max-width: 1200px;
  57. margin: 0 auto;
  58. display: flex;
  59. justify-content: space-between;
  60. align-items: center;
  61. padding: 0 20px;
  62. }
  63. .top-bar-left {
  64. display: flex;
  65. align-items: center;
  66. gap: 20px;
  67. }
  68. .top-bar-right {
  69. display: flex;
  70. align-items: center;
  71. gap: 20px;
  72. }
  73. .top-bar-link {
  74. color: var(--text-light);
  75. text-decoration: none;
  76. font-size: 0.9em;
  77. transition: var(--transition);
  78. }
  79. .top-bar-link:hover {
  80. color: var(--primary-color);
  81. }
  82. .nav {
  83. background: #001529;
  84. padding: 15px 0;
  85. position: fixed;
  86. top: 0;
  87. left: 0;
  88. right: 0;
  89. z-index: 999;
  90. box-shadow: 0 2px 8px var(--shadow-color);
  91. }
  92. .nav-content {
  93. max-width: 1200px;
  94. margin: 0 auto;
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: center;
  98. padding: 0 20px;
  99. }
  100. .nav-logo {
  101. font-size: 1.5em;
  102. font-weight: bold;
  103. color: var(--bg-white);
  104. text-decoration: none;
  105. }
  106. .nav-menu {
  107. display: flex;
  108. gap: 30px;
  109. }
  110. .nav-link {
  111. color: var(--text-light);
  112. text-decoration: none;
  113. font-size: 1em;
  114. transition: var(--transition);
  115. position: relative;
  116. }
  117. .nav-link::after {
  118. content: '';
  119. position: absolute;
  120. bottom: -5px;
  121. left: 0;
  122. width: 100%;
  123. height: 2px;
  124. background: var(--primary-color);
  125. transform: scaleX(0);
  126. transition: var(--transition);
  127. }
  128. .nav-link:hover {
  129. color: var(--primary-color);
  130. }
  131. .nav-link:hover::after {
  132. transform: scaleX(1);
  133. }
  134. .header {
  135. text-align: center;
  136. padding: 120px 0 100px;
  137. background: var(--bg-white);
  138. position: relative;
  139. overflow: hidden;
  140. }
  141. .header::before {
  142. content: '';
  143. position: absolute;
  144. top: 0;
  145. left: 0;
  146. right: 0;
  147. bottom: 0;
  148. background: linear-gradient(135deg, rgba(24, 144, 255, 0.05) 0%, rgba(24, 144, 255, 0.1) 100%);
  149. z-index: 0;
  150. }
  151. .header h1 {
  152. font-size: 3em;
  153. margin-bottom: 20px;
  154. color: var(--text-color);
  155. font-weight: bold;
  156. position: relative;
  157. z-index: 1;
  158. }
  159. .header p {
  160. font-size: 1.4em;
  161. color: var(--text-secondary);
  162. position: relative;
  163. z-index: 1;
  164. }
  165. .content {
  166. background: var(--bg-white);
  167. padding: 0;
  168. margin-top: 0;
  169. position: relative;
  170. z-index: 1;
  171. }
  172. .section {
  173. margin-bottom: 0;
  174. padding: 80px 0;
  175. background: var(--bg-white);
  176. position: relative;
  177. border-bottom: 1px solid var(--border-color);
  178. }
  179. .section:nth-child(even) {
  180. background: var(--bg-color);
  181. }
  182. .section h2 {
  183. color: var(--text-color);
  184. margin-bottom: 40px;
  185. font-size: 2em;
  186. position: relative;
  187. display: inline-block;
  188. font-weight: bold;
  189. text-align: center;
  190. width: 100%;
  191. }
  192. .section h2::after {
  193. content: '';
  194. position: absolute;
  195. bottom: -15px;
  196. left: 50%;
  197. transform: translateX(-50%);
  198. width: 50px;
  199. height: 3px;
  200. background: var(--primary-color);
  201. transition: var(--transition);
  202. }
  203. .section:hover h2::after {
  204. width: 80px;
  205. }
  206. .features {
  207. display: grid;
  208. grid-template-columns: repeat(3, 1fr);
  209. gap: 30px;
  210. margin-top: 40px;
  211. padding: 0 20px;
  212. }
  213. .feature-item {
  214. background: var(--bg-white);
  215. padding: 40px 30px;
  216. border-radius: 8px;
  217. box-shadow: 0 2px 8px var(--shadow-color);
  218. position: relative;
  219. transition: var(--transition);
  220. text-align: center;
  221. overflow: hidden;
  222. }
  223. .feature-item::before {
  224. content: '';
  225. position: absolute;
  226. top: 0;
  227. left: 0;
  228. width: 100%;
  229. height: 3px;
  230. background: var(--primary-color);
  231. transform: scaleX(0);
  232. transition: var(--transition);
  233. }
  234. .feature-item:hover {
  235. transform: translateY(-5px);
  236. box-shadow: 0 4px 12px var(--shadow-hover);
  237. }
  238. .feature-item:hover::before {
  239. transform: scaleX(1);
  240. }
  241. .highlight {
  242. color: var(--primary-color);
  243. font-weight: bold;
  244. position: relative;
  245. display: inline-block;
  246. }
  247. .highlight::after {
  248. content: '';
  249. position: absolute;
  250. bottom: -2px;
  251. left: 0;
  252. width: 100%;
  253. height: 1px;
  254. background: var(--primary-color);
  255. transform: scaleX(0);
  256. transition: var(--transition);
  257. }
  258. .highlight:hover::after {
  259. transform: scaleX(1);
  260. }
  261. .contact {
  262. text-align: center;
  263. padding: 80px 0;
  264. background: var(--bg-white);
  265. position: relative;
  266. }
  267. .contact::before {
  268. content: '';
  269. position: absolute;
  270. top: 0;
  271. left: 0;
  272. right: 0;
  273. bottom: 0;
  274. background: linear-gradient(135deg, rgba(24, 144, 255, 0.05) 0%, rgba(24, 144, 255, 0.1) 100%);
  275. z-index: 0;
  276. }
  277. .contact p {
  278. font-size: 1.3em;
  279. margin-bottom: 30px;
  280. color: var(--text-secondary);
  281. position: relative;
  282. z-index: 1;
  283. }
  284. .contact-buttons {
  285. display: flex;
  286. justify-content: center;
  287. gap: 20px;
  288. margin-top: 30px;
  289. position: relative;
  290. z-index: 1;
  291. }
  292. .contact-button {
  293. display: inline-block;
  294. padding: 14px 40px;
  295. background: var(--primary-color);
  296. color: var(--bg-white);
  297. text-decoration: none;
  298. border: none;
  299. border-radius: 4px;
  300. font-weight: bold;
  301. transition: var(--transition);
  302. box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
  303. position: relative;
  304. overflow: hidden;
  305. }
  306. .contact-button::before {
  307. content: '';
  308. position: absolute;
  309. top: 0;
  310. left: -100%;
  311. width: 100%;
  312. height: 100%;
  313. background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  314. transition: 0.5s;
  315. }
  316. .contact-button:hover {
  317. background: var(--primary-hover);
  318. transform: translateY(-2px);
  319. box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
  320. }
  321. .contact-button:hover::before {
  322. left: 100%;
  323. }
  324. .section-content {
  325. max-width: 800px;
  326. margin: 0 auto;
  327. text-align: center;
  328. padding: 0 20px;
  329. position: relative;
  330. z-index: 1;
  331. }
  332. .section-content p {
  333. color: var(--text-secondary);
  334. font-size: 1.1em;
  335. line-height: 1.8;
  336. margin-bottom: 20px;
  337. }
  338. .footer {
  339. background: #001529;
  340. color: var(--bg-white);
  341. padding: 60px 0;
  342. position: relative;
  343. }
  344. .footer-content {
  345. max-width: 1200px;
  346. margin: 0 auto;
  347. display: grid;
  348. grid-template-columns: repeat(4, 1fr);
  349. gap: 40px;
  350. padding: 0 20px;
  351. }
  352. .footer-column h3 {
  353. color: var(--bg-white);
  354. font-size: 1.2em;
  355. margin-bottom: 20px;
  356. position: relative;
  357. }
  358. .footer-column h3::after {
  359. content: '';
  360. position: absolute;
  361. bottom: -10px;
  362. left: 0;
  363. width: 30px;
  364. height: 2px;
  365. background: var(--primary-color);
  366. }
  367. .footer-links {
  368. list-style: none;
  369. }
  370. .footer-links li {
  371. margin-bottom: 10px;
  372. }
  373. .footer-links a {
  374. color: var(--text-light);
  375. text-decoration: none;
  376. transition: var(--transition);
  377. }
  378. .footer-links a:hover {
  379. color: var(--primary-color);
  380. }
  381. .footer-bottom {
  382. text-align: center;
  383. padding-top: 40px;
  384. margin-top: 40px;
  385. border-top: 1px solid rgba(255, 255, 255, 0.1);
  386. color: var(--text-light);
  387. }
  388. @media (max-width: 768px) {
  389. .top-bar {
  390. display: none;
  391. }
  392. .nav {
  393. top: 0;
  394. }
  395. .header {
  396. padding: 120px 0 60px;
  397. }
  398. .section {
  399. padding: 60px 0;
  400. }
  401. .features {
  402. grid-template-columns: 1fr;
  403. gap: 20px;
  404. }
  405. .contact-buttons {
  406. flex-direction: column;
  407. gap: 15px;
  408. }
  409. .contact-button {
  410. width: 100%;
  411. text-align: center;
  412. }
  413. .section h2 {
  414. font-size: 1.8em;
  415. }
  416. .footer-content {
  417. grid-template-columns: 1fr;
  418. gap: 30px;
  419. }
  420. }
  421. </style>
  422. </head>
  423. <body>
  424. <nav class="nav">
  425. <div class="nav-content">
  426. <a href="#" class="nav-logo">极速支付</a>
  427. <div class="nav-menu">
  428. <a href="#home" class="nav-link">首页</a>
  429. <a href="#products" class="nav-link">产品服务</a>
  430. <a href="#solutions" class="nav-link">解决方案</a>
  431. <a href="#support" class="nav-link">技术支持</a>
  432. <a href="#about" class="nav-link">关于我们</a>
  433. <a href="articles/index.html" class="nav-link">文章列表</a>
  434. </div>
  435. </div>
  436. </nav>
  437. <div class="container">
  438. <header class="header" role="banner">
  439. <h1>极速支付</h1>
  440. <p>一手通道 · 专业支付解决方案</p>
  441. </header>
  442. <main class="content" role="main">
  443. <section class="section" id="home" aria-labelledby="home-title">
  444. <div class="section-content">
  445. <h2 id="home-title">首页</h2>
  446. <p>欢迎使用极速支付,您的专业支付解决方案</p>
  447. </div>
  448. </section>
  449. <section class="section" id="products" aria-labelledby="products-title">
  450. <div class="section-content">
  451. <h2 id="products-title">产品服务</h2>
  452. <div class="features">
  453. <div class="feature-item">
  454. <h3>支付通道</h3>
  455. <p>提供多种支付通道,满足不同场景需求</p>
  456. </div>
  457. <div class="feature-item">
  458. <h3>会员服务</h3>
  459. <p>专属会员权益,享受更多优惠</p>
  460. </div>
  461. <div class="feature-item">
  462. <h3>技术支持</h3>
  463. <p>7*24小时技术支持,解决您的所有问题</p>
  464. </div>
  465. </div>
  466. </div>
  467. </section>
  468. <section class="section" id="solutions" aria-labelledby="solutions-title">
  469. <div class="section-content">
  470. <h2 id="solutions-title">解决方案</h2>
  471. <div class="features">
  472. <div class="feature-item">
  473. <h3>机场解决方案</h3>
  474. <p>专业的机场支付解决方案,安全可靠</p>
  475. </div>
  476. <div class="feature-item">
  477. <h3>发卡解决方案</h3>
  478. <p>高效的发卡支付系统,快速结算</p>
  479. </div>
  480. <div class="feature-item">
  481. <h3>影视解决方案</h3>
  482. <p>稳定的影视支付通道,支持多种场景</p>
  483. </div>
  484. </div>
  485. </div>
  486. </section>
  487. <section class="section" id="support" aria-labelledby="support-title">
  488. <div class="section-content">
  489. <h2 id="support-title">技术支持</h2>
  490. <div class="features">
  491. <div class="feature-item">
  492. <h3>技术文档</h3>
  493. <p>详细的技术文档,快速接入</p>
  494. </div>
  495. <div class="feature-item">
  496. <h3>API接口</h3>
  497. <p>完善的API接口,支持多种开发语言</p>
  498. </div>
  499. <div class="feature-item">
  500. <h3>常见问题</h3>
  501. <p>常见问题解答,帮助您快速解决问题</p>
  502. </div>
  503. </div>
  504. </div>
  505. </section>
  506. <section class="section" id="about" aria-labelledby="about-title">
  507. <div class="section-content">
  508. <h2 id="about-title">关于我们</h2>
  509. <div class="features">
  510. <div class="feature-item">
  511. <h3>公司简介</h3>
  512. <p>专业的支付服务提供商,致力于为客户提供最优质的服务</p>
  513. </div>
  514. <div class="feature-item">
  515. <h3>发展历程</h3>
  516. <p>多年行业经验,持续创新发展</p>
  517. </div>
  518. <div class="feature-item">
  519. <h3>企业文化</h3>
  520. <p>以客户为中心,追求卓越品质</p>
  521. </div>
  522. </div>
  523. </div>
  524. </section>
  525. <section class="section" aria-labelledby="business-scope">
  526. <div class="section-content">
  527. <h2 id="business-scope">业务范围</h2>
  528. <p>机场/发卡/影视/游戏/</p>
  529. </div>
  530. </section>
  531. <section class="section" aria-labelledby="fee-description">
  532. <div class="section-content">
  533. <h2 id="fee-description">费率说明</h2>
  534. <p>费率:<span class="highlight">6%上浮0.2</span></p>
  535. <p>结算:<span class="highlight">D0 实时汇率</span></p>
  536. <p>系统:自研系统,成功率99%</p>
  537. </div>
  538. </section>
  539. <section class="section" aria-labelledby="member-benefits">
  540. <div class="section-content">
  541. <h2 id="member-benefits">👑 独家会员模式 - 会员权益 👑</h2>
  542. <div class="features">
  543. <div class="feature-item">
  544. ✅ 上百条一手通道,会员任选
  545. </div>
  546. <div class="feature-item">
  547. ✅ 1元流水也可享受一手通道低费率
  548. </div>
  549. <div class="feature-item">
  550. ✅ 高额担保,安全收款,告别跑路
  551. </div>
  552. </div>
  553. </div>
  554. </section>
  555. <section class="section">
  556. <div class="section-content">
  557. <p>无套路,费率所见即所得,让我们一起重新定义支付!</p>
  558. </div>
  559. </section>
  560. <section class="contact" aria-labelledby="contact-info">
  561. <div class="section-content">
  562. <h2 id="contact-info" class="visually-hidden">联系方式</h2>
  563. <p>立即加入我们:</p>
  564. <div class="contact-buttons">
  565. <a href="https://t.me/Jsupay" class="contact-button" target="_blank">加入群组</a>
  566. <a href="https://t.me/jsupaykf_bot" class="contact-button" target="_blank">联系客服</a>
  567. </div>
  568. </div>
  569. </section>
  570. </main>
  571. <footer class="footer">
  572. <div class="footer-content">
  573. <div class="footer-column">
  574. <h3>关于我们</h3>
  575. <ul class="footer-links">
  576. <li><a href="#">公司简介</a></li>
  577. <li><a href="#">发展历程</a></li>
  578. <li><a href="#">企业文化</a></li>
  579. <li><a href="#">招贤纳士</a></li>
  580. </ul>
  581. </div>
  582. <div class="footer-column">
  583. <h3>产品服务</h3>
  584. <ul class="footer-links">
  585. <li><a href="#">支付通道</a></li>
  586. <li><a href="#">会员服务</a></li>
  587. <li><a href="#">技术支持</a></li>
  588. <li><a href="#">安全保障</a></li>
  589. </ul>
  590. </div>
  591. <div class="footer-column">
  592. <h3>帮助中心</h3>
  593. <ul class="footer-links">
  594. <li><a href="#">常见问题</a></li>
  595. <li><a href="#">使用教程</a></li>
  596. <li><a href="#">服务条款</a></li>
  597. <li><a href="#">隐私政策</a></li>
  598. </ul>
  599. </div>
  600. <div class="footer-column">
  601. <h3>联系我们</h3>
  602. <ul class="footer-links">
  603. <li><a href="#">在线客服</a></li>
  604. <li><a href="#">商务合作</a></li>
  605. <li><a href="#">投诉建议</a></li>
  606. <li><a href="#">联系方式</a></li>
  607. </ul>
  608. </div>
  609. </div>
  610. <div class="footer-bottom">
  611. <p>Copyright © 2024 极速支付 版权所有</p>
  612. </div>
  613. </footer>
  614. </div>
  615. </body>
  616. </html>