articles.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  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="极速支付最新行业资讯、技术文章和解决方案。">
  8. <meta name="keywords" content="支付行业,支付技术,支付安全,跨境支付">
  9. <style>
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. }
  15. body {
  16. font-family: 'Microsoft YaHei', sans-serif;
  17. line-height: 1.6;
  18. color: #fff;
  19. background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%);
  20. min-height: 100vh;
  21. overflow-x: hidden;
  22. }
  23. .container {
  24. max-width: 1200px;
  25. margin: 0 auto;
  26. padding: 20px;
  27. }
  28. .header {
  29. text-align: center;
  30. padding: 60px 0;
  31. background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(26,26,46,0.8) 100%);
  32. position: relative;
  33. overflow: hidden;
  34. }
  35. .header h1 {
  36. font-size: 3em;
  37. margin-bottom: 20px;
  38. color: #fff;
  39. text-shadow: 0 0 10px #0ff,
  40. 0 0 20px #0ff,
  41. 0 0 30px #0ff;
  42. animation: neon 1.5s ease-in-out infinite alternate;
  43. }
  44. @keyframes neon {
  45. from {
  46. text-shadow: 0 0 10px #0ff,
  47. 0 0 20px #0ff,
  48. 0 0 30px #0ff;
  49. }
  50. to {
  51. text-shadow: 0 0 5px #0ff,
  52. 0 0 10px #0ff,
  53. 0 0 15px #0ff;
  54. }
  55. }
  56. .back-button {
  57. display: inline-block;
  58. padding: 10px 20px;
  59. background: rgba(0, 255, 255, 0.1);
  60. color: #0ff;
  61. text-decoration: none;
  62. border: 1px solid #0ff;
  63. border-radius: 5px;
  64. margin: 20px 0;
  65. transition: all 0.3s ease;
  66. }
  67. .back-button:hover {
  68. background: rgba(0, 255, 255, 0.2);
  69. transform: translateY(-2px);
  70. }
  71. .articles-list {
  72. display: grid;
  73. grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  74. gap: 30px;
  75. padding: 40px 0;
  76. }
  77. .article-card {
  78. background: rgba(0, 0, 0, 0.4);
  79. border-radius: 15px;
  80. border: 1px solid #0ff;
  81. padding: 30px;
  82. transition: all 0.3s ease;
  83. }
  84. .article-card:hover {
  85. transform: translateY(-5px);
  86. box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  87. }
  88. .article-card h2 {
  89. color: #0ff;
  90. margin-bottom: 15px;
  91. font-size: 1.5em;
  92. }
  93. .article-card p {
  94. color: #ccc;
  95. margin-bottom: 20px;
  96. line-height: 1.6;
  97. }
  98. .article-meta {
  99. color: #888;
  100. font-size: 0.9em;
  101. margin-bottom: 15px;
  102. }
  103. .read-more {
  104. display: inline-block;
  105. padding: 8px 16px;
  106. background: rgba(0, 255, 255, 0.1);
  107. color: #0ff;
  108. text-decoration: none;
  109. border: 1px solid #0ff;
  110. border-radius: 5px;
  111. transition: all 0.3s ease;
  112. }
  113. .read-more:hover {
  114. background: rgba(0, 255, 255, 0.2);
  115. }
  116. @media (max-width: 768px) {
  117. .header {
  118. padding: 40px 0;
  119. }
  120. .header h1 {
  121. font-size: 2em;
  122. }
  123. .articles-list {
  124. grid-template-columns: 1fr;
  125. gap: 20px;
  126. }
  127. }
  128. </style>
  129. </head>
  130. <body>
  131. <div class="container">
  132. <header class="header">
  133. <h1>行业资讯与文章</h1>
  134. <p>探索支付行业最新动态与技术发展</p>
  135. <a href="index4.html" class="back-button">返回首页</a>
  136. </header>
  137. <div class="articles-list">
  138. <article class="article-card">
  139. <h2>2024年支付行业趋势分析</h2>
  140. <div class="article-meta">发布时间:2024-03-20 | 作者:极速支付研究院</div>
  141. <p>深度解析2024年支付行业发展趋势,包括移动支付、跨境支付、数字货币等领域的现状和未来展望。</p>
  142. <a href="articles/trend-analysis-2024.html" class="read-more">阅读全文</a>
  143. </article>
  144. <article class="article-card">
  145. <h2>支付安全最佳实践指南</h2>
  146. <div class="article-meta">发布时间:2024-03-19 | 作者:极速支付安全团队</div>
  147. <p>从技术到运营,全方位解析如何构建安全的支付环境,保护用户资金安全。</p>
  148. <a href="articles/payment-security-guide.html" class="read-more">阅读全文</a>
  149. </article>
  150. <article class="article-card">
  151. <h2>跨境支付解决方案</h2>
  152. <div class="article-meta">发布时间:2024-03-18 | 作者:极速支付国际业务部</div>
  153. <p>深入解析跨境支付面临的挑战与解决方案,助力企业实现全球化支付布局。</p>
  154. <a href="articles/cross-border-payment-solutions.html" class="read-more">阅读全文</a>
  155. </article>
  156. <article class="article-card">
  157. <h2>数字人民币应用与发展</h2>
  158. <div class="article-meta">发布时间:2024-03-17 | 作者:极速支付数字金融研究院</div>
  159. <p>深入解析数字人民币的发展历程、技术特点及应用场景,展望未来发展趋势。</p>
  160. <a href="articles/digital-yuan-development.html" class="read-more">阅读全文</a>
  161. </article>
  162. <article class="article-card">
  163. <h2>支付技术创新与未来展望</h2>
  164. <div class="article-meta">发布时间:2024-03-16 | 作者:极速支付技术研究院</div>
  165. <p>探索支付领域的前沿技术创新,展望未来支付生态的发展方向。</p>
  166. <a href="articles/payment-technology-innovation.html" class="read-more">阅读全文</a>
  167. </article>
  168. </div>
  169. </div>
  170. </body>
  171. </html>