index.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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. <meta name="author" content="极速支付">
  10. <style>
  11. :root {
  12. --color-bg-default: #ffffff;
  13. --color-bg-secondary: #f6f8fa;
  14. --color-border: #d0d7de;
  15. --color-text-primary: #24292f;
  16. --color-text-secondary: #57606a;
  17. --color-accent: #0969da;
  18. --color-accent-hover: #1b1f23;
  19. --shadow-small: 0 1px 3px rgba(27,31,36,0.04);
  20. --shadow-medium: 0 3px 6px rgba(27,31,36,0.04);
  21. }
  22. * {
  23. margin: 0;
  24. padding: 0;
  25. box-sizing: border-box;
  26. }
  27. body {
  28. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  29. line-height: 1.5;
  30. color: var(--color-text-primary);
  31. background-color: var(--color-bg-default);
  32. }
  33. .nav {
  34. background-color: var(--color-bg-default);
  35. border-bottom: 1px solid var(--color-border);
  36. padding: 16px 0;
  37. position: sticky;
  38. top: 0;
  39. z-index: 100;
  40. }
  41. .nav-container {
  42. max-width: 1280px;
  43. margin: 0 auto;
  44. padding: 0 24px;
  45. display: flex;
  46. justify-content: space-between;
  47. align-items: center;
  48. }
  49. .nav-logo {
  50. font-size: 24px;
  51. font-weight: 600;
  52. color: var(--color-text-primary);
  53. text-decoration: none;
  54. }
  55. .nav-links {
  56. display: flex;
  57. gap: 24px;
  58. }
  59. .nav-link {
  60. color: var(--color-text-secondary);
  61. text-decoration: none;
  62. font-size: 14px;
  63. font-weight: 500;
  64. }
  65. .nav-link:hover {
  66. color: var(--color-accent);
  67. }
  68. .container {
  69. max-width: 1280px;
  70. margin: 0 auto;
  71. padding: 0 24px;
  72. }
  73. .articles-header {
  74. text-align: center;
  75. padding: 80px 0;
  76. background-color: var(--color-bg-secondary);
  77. border-bottom: 1px solid var(--color-border);
  78. }
  79. .articles-header h1 {
  80. font-size: 48px;
  81. font-weight: 600;
  82. margin-bottom: 16px;
  83. color: var(--color-text-primary);
  84. }
  85. .articles-header p {
  86. font-size: 20px;
  87. color: var(--color-text-secondary);
  88. max-width: 600px;
  89. margin: 0 auto;
  90. }
  91. .articles-grid {
  92. display: grid;
  93. grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  94. gap: 32px;
  95. padding: 64px 0;
  96. }
  97. .article-card {
  98. background: var(--color-bg-default);
  99. border: 1px solid var(--color-border);
  100. border-radius: 8px;
  101. overflow: hidden;
  102. transition: all 0.3s ease;
  103. }
  104. .article-card:hover {
  105. transform: translateY(-4px);
  106. box-shadow: var(--shadow-medium);
  107. }
  108. .article-card a {
  109. text-decoration: none;
  110. color: inherit;
  111. }
  112. .article-image {
  113. width: 100%;
  114. height: 200px;
  115. object-fit: cover;
  116. }
  117. .article-content {
  118. padding: 24px;
  119. }
  120. .article-category {
  121. display: inline-block;
  122. padding: 4px 12px;
  123. background: var(--color-bg-secondary);
  124. color: var(--color-text-secondary);
  125. border-radius: 16px;
  126. font-size: 12px;
  127. margin-bottom: 12px;
  128. }
  129. .article-title {
  130. font-size: 20px;
  131. font-weight: 600;
  132. margin-bottom: 12px;
  133. color: var(--color-text-primary);
  134. }
  135. .article-excerpt {
  136. color: var(--color-text-secondary);
  137. font-size: 14px;
  138. margin-bottom: 16px;
  139. }
  140. .article-meta {
  141. display: flex;
  142. align-items: center;
  143. gap: 16px;
  144. color: var(--color-text-secondary);
  145. font-size: 12px;
  146. }
  147. .article-date {
  148. display: flex;
  149. align-items: center;
  150. gap: 4px;
  151. }
  152. .article-views {
  153. display: flex;
  154. align-items: center;
  155. gap: 4px;
  156. }
  157. @media (max-width: 768px) {
  158. .nav-links {
  159. display: none;
  160. }
  161. .articles-header {
  162. padding: 48px 0;
  163. }
  164. .articles-header h1 {
  165. font-size: 36px;
  166. }
  167. .articles-header p {
  168. font-size: 16px;
  169. }
  170. .articles-grid {
  171. grid-template-columns: 1fr;
  172. padding: 32px 0;
  173. }
  174. }
  175. </style>
  176. </head>
  177. <body>
  178. <nav class="nav">
  179. <div class="nav-container">
  180. <a href="/" class="nav-logo">极速支付</a>
  181. <div class="nav-links">
  182. <a href="../index8.html#features" class="nav-link">功能特点</a>
  183. <a href="../index8.html#pricing" class="nav-link">费率说明</a>
  184. <a href="index.html" class="nav-link">文章列表</a>
  185. <a href="../index8.html#contact" class="nav-link">联系我们</a>
  186. </div>
  187. </div>
  188. </nav>
  189. <div class="container">
  190. <header class="articles-header">
  191. <h1>文章列表</h1>
  192. <p>了解支付行业动态,掌握最新技术资讯</p>
  193. </header>
  194. <div class="articles-grid">
  195. <article class="article-card">
  196. <a href="posts/2024-payment-trends.html">
  197. <img src="https://via.placeholder.com/300x200" alt="支付行业动态" class="article-image">
  198. <div class="article-content">
  199. <span class="article-category">行业动态</span>
  200. <h2 class="article-title">2024年支付行业发展趋势分析</h2>
  201. <p class="article-excerpt">深入分析2024年支付行业的发展趋势,探讨新技术对支付行业的影响...</p>
  202. <div class="article-meta">
  203. <span class="article-date">2024-03-20</span>
  204. <span class="article-views">阅读 1,234</span>
  205. </div>
  206. </div>
  207. </a>
  208. </article>
  209. <article class="article-card">
  210. <a href="posts/payment-success-rate.html">
  211. <img src="https://via.placeholder.com/300x200" alt="技术分享" class="article-image">
  212. <div class="article-content">
  213. <span class="article-category">技术分享</span>
  214. <h2 class="article-title">如何提高支付成功率</h2>
  215. <p class="article-excerpt">分享提高支付成功率的关键技术和方法,帮助您优化支付体验...</p>
  216. <div class="article-meta">
  217. <span class="article-date">2024-03-18</span>
  218. <span class="article-views">阅读 2,345</span>
  219. </div>
  220. </div>
  221. </a>
  222. </article>
  223. <article class="article-card">
  224. <a href="posts/payment-integration-guide.html">
  225. <img src="https://via.placeholder.com/300x200" alt="使用教程" class="article-image">
  226. <div class="article-content">
  227. <span class="article-category">使用教程</span>
  228. <h2 class="article-title">极速支付接入指南</h2>
  229. <p class="article-excerpt">详细的接入指南,帮助您快速接入极速支付系统...</p>
  230. <div class="article-meta">
  231. <span class="article-date">2024-03-15</span>
  232. <span class="article-views">阅读 3,456</span>
  233. </div>
  234. </div>
  235. </a>
  236. </article>
  237. <article class="article-card">
  238. <a href="posts/payment-security-guide.html">
  239. <img src="https://via.placeholder.com/300x200" alt="安全指南" class="article-image">
  240. <div class="article-content">
  241. <span class="article-category">安全指南</span>
  242. <h2 class="article-title">支付安全防护指南</h2>
  243. <p class="article-excerpt">全面的支付安全防护指南,保障您的资金安全...</p>
  244. <div class="article-meta">
  245. <span class="article-date">2024-03-12</span>
  246. <span class="article-views">阅读 4,567</span>
  247. </div>
  248. </div>
  249. </a>
  250. </article>
  251. <article class="article-card">
  252. <a href="posts/success-cases.html">
  253. <img src="https://via.placeholder.com/300x200" alt="案例分析" class="article-image">
  254. <div class="article-content">
  255. <span class="article-category">案例分析</span>
  256. <h2 class="article-title">成功案例分享</h2>
  257. <p class="article-excerpt">分享使用极速支付的成功案例,了解如何提升业务效率...</p>
  258. <div class="article-meta">
  259. <span class="article-date">2024-03-10</span>
  260. <span class="article-views">阅读 5,678</span>
  261. </div>
  262. </div>
  263. </a>
  264. </article>
  265. <article class="article-card">
  266. <a href="posts/payment-faq.html">
  267. <img src="https://via.placeholder.com/300x200" alt="常见问题" class="article-image">
  268. <div class="article-content">
  269. <span class="article-category">常见问题</span>
  270. <h2 class="article-title">支付常见问题解答</h2>
  271. <p class="article-excerpt">解答支付过程中遇到的常见问题,帮助您快速解决问题...</p>
  272. <div class="article-meta">
  273. <span class="article-date">2024-03-08</span>
  274. <span class="article-views">阅读 6,789</span>
  275. </div>
  276. </div>
  277. </a>
  278. </article>
  279. </div>
  280. </div>
  281. </body>
  282. </html>