articles.html 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. box-sizing: border-box;
  12. }
  13. body {
  14. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  15. line-height: 1.6;
  16. color: #303133;
  17. background-color: #f5f7fa;
  18. min-height: 100vh;
  19. }
  20. .container {
  21. max-width: 1200px;
  22. margin: 0 auto;
  23. padding: 20px;
  24. }
  25. .header {
  26. text-align: center;
  27. padding: 40px 0;
  28. background: #fff;
  29. box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  30. margin-bottom: 20px;
  31. }
  32. .header h1 {
  33. font-size: 2em;
  34. color: #409EFF;
  35. font-weight: 500;
  36. }
  37. .article-list {
  38. background: #fff;
  39. border-radius: 4px;
  40. box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
  41. padding: 20px;
  42. }
  43. .article-item {
  44. padding: 20px;
  45. border-bottom: 1px solid #EBEEF5;
  46. transition: all 0.3s ease;
  47. }
  48. .article-item:last-child {
  49. border-bottom: none;
  50. }
  51. .article-item:hover {
  52. background-color: #f5f7fa;
  53. }
  54. .article-title {
  55. font-size: 1.2em;
  56. color: #303133;
  57. margin-bottom: 10px;
  58. font-weight: 500;
  59. }
  60. .article-title a {
  61. color: #303133;
  62. text-decoration: none;
  63. transition: color 0.3s ease;
  64. }
  65. .article-title a:hover {
  66. color: #409EFF;
  67. }
  68. .article-meta {
  69. font-size: 0.9em;
  70. color: #909399;
  71. margin-bottom: 10px;
  72. }
  73. .article-summary {
  74. color: #606266;
  75. margin-bottom: 10px;
  76. }
  77. .article-tags {
  78. display: flex;
  79. gap: 10px;
  80. flex-wrap: wrap;
  81. }
  82. .tag {
  83. padding: 2px 8px;
  84. background: #ecf5ff;
  85. color: #409EFF;
  86. border-radius: 4px;
  87. font-size: 0.9em;
  88. }
  89. .pagination {
  90. display: flex;
  91. justify-content: center;
  92. margin-top: 20px;
  93. gap: 10px;
  94. }
  95. .page-button {
  96. padding: 8px 16px;
  97. background: #fff;
  98. border: 1px solid #DCDFE6;
  99. border-radius: 4px;
  100. color: #606266;
  101. cursor: pointer;
  102. transition: all 0.3s ease;
  103. }
  104. .page-button:hover {
  105. color: #409EFF;
  106. border-color: #c6e2ff;
  107. background-color: #ecf5ff;
  108. }
  109. .page-button.active {
  110. background: #409EFF;
  111. color: #fff;
  112. border-color: #409EFF;
  113. }
  114. @media (max-width: 768px) {
  115. .container {
  116. padding: 10px;
  117. }
  118. .header {
  119. padding: 20px 0;
  120. }
  121. .article-list {
  122. padding: 10px;
  123. }
  124. .article-item {
  125. padding: 15px;
  126. }
  127. }
  128. .nav-buttons {
  129. margin-top: 20px;
  130. display: flex;
  131. gap: 10px;
  132. justify-content: center;
  133. }
  134. .nav-button {
  135. display: inline-block;
  136. padding: 8px 16px;
  137. background: #409EFF;
  138. color: #fff;
  139. text-decoration: none;
  140. border-radius: 4px;
  141. transition: all 0.3s ease;
  142. }
  143. .nav-button:hover {
  144. background: #66b1ff;
  145. }
  146. </style>
  147. </head>
  148. <body>
  149. <div class="container">
  150. <header class="header">
  151. <h1>文章列表</h1>
  152. <div class="nav-buttons">
  153. <a href="index7.html" class="nav-button">返回首页</a>
  154. </div>
  155. </header>
  156. <main class="article-list">
  157. <article class="article-item">
  158. <h2 class="article-title">
  159. <a href="article-detail.html">如何选择合适的支付通道?</a>
  160. </h2>
  161. <div class="article-meta">
  162. 发布时间:2024-03-20 | 阅读量:1234
  163. </div>
  164. <p class="article-summary">
  165. 本文详细介绍了如何根据业务需求选择合适的支付通道,包括费率、结算周期、成功率等多个维度的考量...
  166. </p>
  167. <div class="article-tags">
  168. <span class="tag">支付通道</span>
  169. <span class="tag">费率</span>
  170. <span class="tag">结算</span>
  171. </div>
  172. </article>
  173. <article class="article-item">
  174. <h2 class="article-title">
  175. <a href="article-d0.html">D0结算的优势与注意事项</a>
  176. </h2>
  177. <div class="article-meta">
  178. 发布时间:2024-03-19 | 阅读量:986
  179. </div>
  180. <p class="article-summary">
  181. 深入解析D0结算模式的特点,以及在使用过程中需要注意的关键事项,帮助您更好地管理资金流...
  182. </p>
  183. <div class="article-tags">
  184. <span class="tag">D0结算</span>
  185. <span class="tag">资金管理</span>
  186. </div>
  187. </article>
  188. <article class="article-item">
  189. <h2 class="article-title">
  190. <a href="article-security.html">支付系统安全防护指南</a>
  191. </h2>
  192. <div class="article-meta">
  193. 发布时间:2024-03-18 | 阅读量:1567
  194. </div>
  195. <p class="article-summary">
  196. 全面介绍支付系统的安全防护措施,包括风控策略、异常监控、数据加密等多个方面的最佳实践...
  197. </p>
  198. <div class="article-tags">
  199. <span class="tag">安全防护</span>
  200. <span class="tag">风控</span>
  201. <span class="tag">数据安全</span>
  202. </div>
  203. </article>
  204. </main>
  205. <div class="pagination">
  206. <button class="page-button active">1</button>
  207. <button class="page-button">2</button>
  208. <button class="page-button">3</button>
  209. <button class="page-button">下一页</button>
  210. </div>
  211. </div>
  212. </body>
  213. </html>