123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <!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="极速支付最新行业资讯、技术文章和解决方案。">
- <meta name="keywords" content="支付行业,支付技术,支付安全,跨境支付">
- <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, #000000 0%, #1a1a2e 100%);
- min-height: 100vh;
- overflow-x: hidden;
- }
-
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 20px;
- }
-
- .header {
- text-align: center;
- padding: 60px 0;
- background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(26,26,46,0.8) 100%);
- position: relative;
- overflow: hidden;
- }
-
- .header h1 {
- font-size: 3em;
- margin-bottom: 20px;
- color: #fff;
- text-shadow: 0 0 10px #0ff,
- 0 0 20px #0ff,
- 0 0 30px #0ff;
- animation: neon 1.5s ease-in-out infinite alternate;
- }
-
- @keyframes neon {
- from {
- text-shadow: 0 0 10px #0ff,
- 0 0 20px #0ff,
- 0 0 30px #0ff;
- }
- to {
- text-shadow: 0 0 5px #0ff,
- 0 0 10px #0ff,
- 0 0 15px #0ff;
- }
- }
-
- .back-button {
- display: inline-block;
- padding: 10px 20px;
- background: rgba(0, 255, 255, 0.1);
- color: #0ff;
- text-decoration: none;
- border: 1px solid #0ff;
- border-radius: 5px;
- margin: 20px 0;
- transition: all 0.3s ease;
- }
-
- .back-button:hover {
- background: rgba(0, 255, 255, 0.2);
- transform: translateY(-2px);
- }
-
- .articles-list {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 30px;
- padding: 40px 0;
- }
-
- .article-card {
- background: rgba(0, 0, 0, 0.4);
- border-radius: 15px;
- border: 1px solid #0ff;
- padding: 30px;
- transition: all 0.3s ease;
- }
-
- .article-card:hover {
- transform: translateY(-5px);
- box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
- }
-
- .article-card h2 {
- color: #0ff;
- margin-bottom: 15px;
- font-size: 1.5em;
- }
-
- .article-card p {
- color: #ccc;
- margin-bottom: 20px;
- line-height: 1.6;
- }
-
- .article-meta {
- color: #888;
- font-size: 0.9em;
- margin-bottom: 15px;
- }
-
- .read-more {
- display: inline-block;
- padding: 8px 16px;
- background: rgba(0, 255, 255, 0.1);
- color: #0ff;
- text-decoration: none;
- border: 1px solid #0ff;
- border-radius: 5px;
- transition: all 0.3s ease;
- }
-
- .read-more:hover {
- background: rgba(0, 255, 255, 0.2);
- }
-
- @media (max-width: 768px) {
- .header {
- padding: 40px 0;
- }
-
- .header h1 {
- font-size: 2em;
- }
-
- .articles-list {
- grid-template-columns: 1fr;
- gap: 20px;
- }
- }
- </style>
- </head>
- <body>
- <div class="container">
- <header class="header">
- <h1>行业资讯与文章</h1>
- <p>探索支付行业最新动态与技术发展</p>
- <a href="index4.html" class="back-button">返回首页</a>
- </header>
-
- <div class="articles-list">
- <article class="article-card">
- <h2>2024年支付行业趋势分析</h2>
- <div class="article-meta">发布时间:2024-03-20 | 作者:极速支付研究院</div>
- <p>深度解析2024年支付行业发展趋势,包括移动支付、跨境支付、数字货币等领域的现状和未来展望。</p>
- <a href="articles/trend-analysis-2024.html" class="read-more">阅读全文</a>
- </article>
-
- <article class="article-card">
- <h2>支付安全最佳实践指南</h2>
- <div class="article-meta">发布时间:2024-03-19 | 作者:极速支付安全团队</div>
- <p>从技术到运营,全方位解析如何构建安全的支付环境,保护用户资金安全。</p>
- <a href="articles/payment-security-guide.html" class="read-more">阅读全文</a>
- </article>
-
- <article class="article-card">
- <h2>跨境支付解决方案</h2>
- <div class="article-meta">发布时间:2024-03-18 | 作者:极速支付国际业务部</div>
- <p>深入解析跨境支付面临的挑战与解决方案,助力企业实现全球化支付布局。</p>
- <a href="articles/cross-border-payment-solutions.html" class="read-more">阅读全文</a>
- </article>
-
- <article class="article-card">
- <h2>数字人民币应用与发展</h2>
- <div class="article-meta">发布时间:2024-03-17 | 作者:极速支付数字金融研究院</div>
- <p>深入解析数字人民币的发展历程、技术特点及应用场景,展望未来发展趋势。</p>
- <a href="articles/digital-yuan-development.html" class="read-more">阅读全文</a>
- </article>
-
- <article class="article-card">
- <h2>支付技术创新与未来展望</h2>
- <div class="article-meta">发布时间:2024-03-16 | 作者:极速支付技术研究院</div>
- <p>探索支付领域的前沿技术创新,展望未来支付生态的发展方向。</p>
- <a href="articles/payment-technology-innovation.html" class="read-more">阅读全文</a>
- </article>
- </div>
- </div>
- </body>
- </html>
|