123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691 |
- <!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>
- :root {
- --primary-color: #1890ff;
- --primary-hover: #096dd9;
- --text-color: #333;
- --text-secondary: #666;
- --text-light: #999;
- --bg-color: #f0f2f5;
- --bg-white: #fff;
- --border-color: #e8e8e8;
- --shadow-color: rgba(0, 0, 0, 0.08);
- --shadow-hover: rgba(0, 0, 0, 0.12);
- --transition: all 0.3s ease;
- }
-
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- body {
- font-family: 'Microsoft YaHei', sans-serif;
- line-height: 1.6;
- color: var(--text-color);
- background-color: var(--bg-color);
- min-height: 100vh;
- }
-
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0;
- }
-
- .top-bar {
- background: #001529;
- padding: 10px 0;
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 1000;
- }
-
- .top-bar-content {
- max-width: 1200px;
- margin: 0 auto;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 20px;
- }
-
- .top-bar-left {
- display: flex;
- align-items: center;
- gap: 20px;
- }
-
- .top-bar-right {
- display: flex;
- align-items: center;
- gap: 20px;
- }
-
- .top-bar-link {
- color: var(--text-light);
- text-decoration: none;
- font-size: 0.9em;
- transition: var(--transition);
- }
-
- .top-bar-link:hover {
- color: var(--primary-color);
- }
-
- .nav {
- background: #001529;
- padding: 15px 0;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- z-index: 999;
- box-shadow: 0 2px 8px var(--shadow-color);
- }
-
- .nav-content {
- max-width: 1200px;
- margin: 0 auto;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 20px;
- }
-
- .nav-logo {
- font-size: 1.5em;
- font-weight: bold;
- color: var(--bg-white);
- text-decoration: none;
- }
-
- .nav-menu {
- display: flex;
- gap: 30px;
- }
-
- .nav-link {
- color: var(--text-light);
- text-decoration: none;
- font-size: 1em;
- transition: var(--transition);
- position: relative;
- }
-
- .nav-link::after {
- content: '';
- position: absolute;
- bottom: -5px;
- left: 0;
- width: 100%;
- height: 2px;
- background: var(--primary-color);
- transform: scaleX(0);
- transition: var(--transition);
- }
-
- .nav-link:hover {
- color: var(--primary-color);
- }
-
- .nav-link:hover::after {
- transform: scaleX(1);
- }
-
- .header {
- text-align: center;
- padding: 120px 0 100px;
- background: var(--bg-white);
- position: relative;
- overflow: hidden;
- }
-
- .header::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(135deg, rgba(24, 144, 255, 0.05) 0%, rgba(24, 144, 255, 0.1) 100%);
- z-index: 0;
- }
-
- .header h1 {
- font-size: 3em;
- margin-bottom: 20px;
- color: var(--text-color);
- font-weight: bold;
- position: relative;
- z-index: 1;
- }
-
- .header p {
- font-size: 1.4em;
- color: var(--text-secondary);
- position: relative;
- z-index: 1;
- }
-
- .content {
- background: var(--bg-white);
- padding: 0;
- margin-top: 0;
- position: relative;
- z-index: 1;
- }
-
- .section {
- margin-bottom: 0;
- padding: 80px 0;
- background: var(--bg-white);
- position: relative;
- border-bottom: 1px solid var(--border-color);
- }
-
- .section:nth-child(even) {
- background: var(--bg-color);
- }
-
- .section h2 {
- color: var(--text-color);
- margin-bottom: 40px;
- font-size: 2em;
- position: relative;
- display: inline-block;
- font-weight: bold;
- text-align: center;
- width: 100%;
- }
-
- .section h2::after {
- content: '';
- position: absolute;
- bottom: -15px;
- left: 50%;
- transform: translateX(-50%);
- width: 50px;
- height: 3px;
- background: var(--primary-color);
- transition: var(--transition);
- }
-
- .section:hover h2::after {
- width: 80px;
- }
-
- .features {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 30px;
- margin-top: 40px;
- padding: 0 20px;
- }
-
- .feature-item {
- background: var(--bg-white);
- padding: 40px 30px;
- border-radius: 8px;
- box-shadow: 0 2px 8px var(--shadow-color);
- position: relative;
- transition: var(--transition);
- text-align: center;
- overflow: hidden;
- }
-
- .feature-item::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 3px;
- background: var(--primary-color);
- transform: scaleX(0);
- transition: var(--transition);
- }
-
- .feature-item:hover {
- transform: translateY(-5px);
- box-shadow: 0 4px 12px var(--shadow-hover);
- }
-
- .feature-item:hover::before {
- transform: scaleX(1);
- }
-
- .highlight {
- color: var(--primary-color);
- font-weight: bold;
- position: relative;
- display: inline-block;
- }
-
- .highlight::after {
- content: '';
- position: absolute;
- bottom: -2px;
- left: 0;
- width: 100%;
- height: 1px;
- background: var(--primary-color);
- transform: scaleX(0);
- transition: var(--transition);
- }
-
- .highlight:hover::after {
- transform: scaleX(1);
- }
-
- .contact {
- text-align: center;
- padding: 80px 0;
- background: var(--bg-white);
- position: relative;
- }
-
- .contact::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(135deg, rgba(24, 144, 255, 0.05) 0%, rgba(24, 144, 255, 0.1) 100%);
- z-index: 0;
- }
-
- .contact p {
- font-size: 1.3em;
- margin-bottom: 30px;
- color: var(--text-secondary);
- position: relative;
- z-index: 1;
- }
-
- .contact-buttons {
- display: flex;
- justify-content: center;
- gap: 20px;
- margin-top: 30px;
- position: relative;
- z-index: 1;
- }
-
- .contact-button {
- display: inline-block;
- padding: 14px 40px;
- background: var(--primary-color);
- color: var(--bg-white);
- text-decoration: none;
- border: none;
- border-radius: 4px;
- font-weight: bold;
- transition: var(--transition);
- box-shadow: 0 2px 8px rgba(24, 144, 255, 0.3);
- position: relative;
- overflow: hidden;
- }
-
- .contact-button::before {
- content: '';
- position: absolute;
- top: 0;
- left: -100%;
- width: 100%;
- height: 100%;
- background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
- transition: 0.5s;
- }
-
- .contact-button:hover {
- background: var(--primary-hover);
- transform: translateY(-2px);
- box-shadow: 0 4px 12px rgba(24, 144, 255, 0.4);
- }
-
- .contact-button:hover::before {
- left: 100%;
- }
-
- .section-content {
- max-width: 800px;
- margin: 0 auto;
- text-align: center;
- padding: 0 20px;
- position: relative;
- z-index: 1;
- }
-
- .section-content p {
- color: var(--text-secondary);
- font-size: 1.1em;
- line-height: 1.8;
- margin-bottom: 20px;
- }
-
- .footer {
- background: #001529;
- color: var(--bg-white);
- padding: 60px 0;
- position: relative;
- }
-
- .footer-content {
- max-width: 1200px;
- margin: 0 auto;
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 40px;
- padding: 0 20px;
- }
-
- .footer-column h3 {
- color: var(--bg-white);
- font-size: 1.2em;
- margin-bottom: 20px;
- position: relative;
- }
-
- .footer-column h3::after {
- content: '';
- position: absolute;
- bottom: -10px;
- left: 0;
- width: 30px;
- height: 2px;
- background: var(--primary-color);
- }
-
- .footer-links {
- list-style: none;
- }
-
- .footer-links li {
- margin-bottom: 10px;
- }
-
- .footer-links a {
- color: var(--text-light);
- text-decoration: none;
- transition: var(--transition);
- }
-
- .footer-links a:hover {
- color: var(--primary-color);
- }
-
- .footer-bottom {
- text-align: center;
- padding-top: 40px;
- margin-top: 40px;
- border-top: 1px solid rgba(255, 255, 255, 0.1);
- color: var(--text-light);
- }
-
- @media (max-width: 768px) {
- .top-bar {
- display: none;
- }
-
- .nav {
- top: 0;
- }
-
- .header {
- padding: 120px 0 60px;
- }
-
- .section {
- padding: 60px 0;
- }
-
- .features {
- grid-template-columns: 1fr;
- gap: 20px;
- }
-
- .contact-buttons {
- flex-direction: column;
- gap: 15px;
- }
-
- .contact-button {
- width: 100%;
- text-align: center;
- }
-
- .section h2 {
- font-size: 1.8em;
- }
-
- .footer-content {
- grid-template-columns: 1fr;
- gap: 30px;
- }
- }
- </style>
- </head>
- <body>
- <nav class="nav">
- <div class="nav-content">
- <a href="#" class="nav-logo">极速支付</a>
- <div class="nav-menu">
- <a href="#home" class="nav-link">首页</a>
- <a href="#products" class="nav-link">产品服务</a>
- <a href="#solutions" class="nav-link">解决方案</a>
- <a href="#support" class="nav-link">技术支持</a>
- <a href="#about" class="nav-link">关于我们</a>
- <a href="articles/index.html" 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" id="home" aria-labelledby="home-title">
- <div class="section-content">
- <h2 id="home-title">首页</h2>
- <p>欢迎使用极速支付,您的专业支付解决方案</p>
- </div>
- </section>
-
- <section class="section" id="products" aria-labelledby="products-title">
- <div class="section-content">
- <h2 id="products-title">产品服务</h2>
- <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>7*24小时技术支持,解决您的所有问题</p>
- </div>
- </div>
- </div>
- </section>
-
- <section class="section" id="solutions" aria-labelledby="solutions-title">
- <div class="section-content">
- <h2 id="solutions-title">解决方案</h2>
- <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>
- </div>
- </section>
-
- <section class="section" id="support" aria-labelledby="support-title">
- <div class="section-content">
- <h2 id="support-title">技术支持</h2>
- <div class="features">
- <div class="feature-item">
- <h3>技术文档</h3>
- <p>详细的技术文档,快速接入</p>
- </div>
- <div class="feature-item">
- <h3>API接口</h3>
- <p>完善的API接口,支持多种开发语言</p>
- </div>
- <div class="feature-item">
- <h3>常见问题</h3>
- <p>常见问题解答,帮助您快速解决问题</p>
- </div>
- </div>
- </div>
- </section>
-
- <section class="section" id="about" aria-labelledby="about-title">
- <div class="section-content">
- <h2 id="about-title">关于我们</h2>
- <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>
- </div>
- </section>
-
- <section class="section" aria-labelledby="business-scope">
- <div class="section-content">
- <h2 id="business-scope">业务范围</h2>
- <p>机场/发卡/影视/游戏/</p>
- </div>
- </section>
-
- <section class="section" aria-labelledby="fee-description">
- <div class="section-content">
- <h2 id="fee-description">费率说明</h2>
- <p>费率:<span class="highlight">6%上浮0.2</span></p>
- <p>结算:<span class="highlight">D0 实时汇率</span></p>
- <p>系统:自研系统,成功率99%</p>
- </div>
- </section>
-
- <section class="section" aria-labelledby="member-benefits">
- <div class="section-content">
- <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>
- </div>
- </section>
-
- <section class="section">
- <div class="section-content">
- <p>无套路,费率所见即所得,让我们一起重新定义支付!</p>
- </div>
- </section>
-
- <section class="contact" aria-labelledby="contact-info">
- <div class="section-content">
- <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>
- </div>
- </section>
- </main>
-
- <footer class="footer">
- <div class="footer-content">
- <div class="footer-column">
- <h3>关于我们</h3>
- <ul class="footer-links">
- <li><a href="#">公司简介</a></li>
- <li><a href="#">发展历程</a></li>
- <li><a href="#">企业文化</a></li>
- <li><a href="#">招贤纳士</a></li>
- </ul>
- </div>
- <div class="footer-column">
- <h3>产品服务</h3>
- <ul class="footer-links">
- <li><a href="#">支付通道</a></li>
- <li><a href="#">会员服务</a></li>
- <li><a href="#">技术支持</a></li>
- <li><a href="#">安全保障</a></li>
- </ul>
- </div>
- <div class="footer-column">
- <h3>帮助中心</h3>
- <ul class="footer-links">
- <li><a href="#">常见问题</a></li>
- <li><a href="#">使用教程</a></li>
- <li><a href="#">服务条款</a></li>
- <li><a href="#">隐私政策</a></li>
- </ul>
- </div>
- <div class="footer-column">
- <h3>联系我们</h3>
- <ul class="footer-links">
- <li><a href="#">在线客服</a></li>
- <li><a href="#">商务合作</a></li>
- <li><a href="#">投诉建议</a></li>
- <li><a href="#">联系方式</a></li>
- </ul>
- </div>
- </div>
- <div class="footer-bottom">
- <p>Copyright © 2024 极速支付 版权所有</p>
- </div>
- </footer>
- </div>
- </body>
- </html>
|