|
@@ -0,0 +1,318 @@
|
|
|
+<!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="极速支付,支付文章,支付教程,支付动态">
|
|
|
+ <meta name="author" content="极速支付">
|
|
|
+ <style>
|
|
|
+ :root {
|
|
|
+ --color-bg-default: #ffffff;
|
|
|
+ --color-bg-secondary: #f6f8fa;
|
|
|
+ --color-border: #d0d7de;
|
|
|
+ --color-text-primary: #24292f;
|
|
|
+ --color-text-secondary: #57606a;
|
|
|
+ --color-accent: #0969da;
|
|
|
+ --color-accent-hover: #1b1f23;
|
|
|
+ --shadow-small: 0 1px 3px rgba(27,31,36,0.04);
|
|
|
+ --shadow-medium: 0 3px 6px rgba(27,31,36,0.04);
|
|
|
+ }
|
|
|
+
|
|
|
+ * {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ body {
|
|
|
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
|
|
|
+ line-height: 1.5;
|
|
|
+ color: var(--color-text-primary);
|
|
|
+ background-color: var(--color-bg-default);
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav {
|
|
|
+ background-color: var(--color-bg-default);
|
|
|
+ border-bottom: 1px solid var(--color-border);
|
|
|
+ padding: 16px 0;
|
|
|
+ position: sticky;
|
|
|
+ top: 0;
|
|
|
+ z-index: 100;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-container {
|
|
|
+ max-width: 1280px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0 24px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-logo {
|
|
|
+ font-size: 24px;
|
|
|
+ font-weight: 600;
|
|
|
+ color: var(--color-text-primary);
|
|
|
+ text-decoration: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-links {
|
|
|
+ display: flex;
|
|
|
+ gap: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-link {
|
|
|
+ color: var(--color-text-secondary);
|
|
|
+ text-decoration: none;
|
|
|
+ font-size: 14px;
|
|
|
+ font-weight: 500;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-link:hover {
|
|
|
+ color: var(--color-accent);
|
|
|
+ }
|
|
|
+
|
|
|
+ .container {
|
|
|
+ max-width: 1280px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-header {
|
|
|
+ text-align: center;
|
|
|
+ padding: 80px 0;
|
|
|
+ background-color: var(--color-bg-secondary);
|
|
|
+ border-bottom: 1px solid var(--color-border);
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-header h1 {
|
|
|
+ font-size: 48px;
|
|
|
+ font-weight: 600;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ color: var(--color-text-primary);
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-header p {
|
|
|
+ font-size: 20px;
|
|
|
+ color: var(--color-text-secondary);
|
|
|
+ max-width: 600px;
|
|
|
+ margin: 0 auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-grid {
|
|
|
+ display: grid;
|
|
|
+ grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
|
+ gap: 32px;
|
|
|
+ padding: 64px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-card {
|
|
|
+ background: var(--color-bg-default);
|
|
|
+ border: 1px solid var(--color-border);
|
|
|
+ border-radius: 8px;
|
|
|
+ overflow: hidden;
|
|
|
+ transition: all 0.3s ease;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-card:hover {
|
|
|
+ transform: translateY(-4px);
|
|
|
+ box-shadow: var(--shadow-medium);
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-card a {
|
|
|
+ text-decoration: none;
|
|
|
+ color: inherit;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-image {
|
|
|
+ width: 100%;
|
|
|
+ height: 200px;
|
|
|
+ object-fit: cover;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-content {
|
|
|
+ padding: 24px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-category {
|
|
|
+ display: inline-block;
|
|
|
+ padding: 4px 12px;
|
|
|
+ background: var(--color-bg-secondary);
|
|
|
+ color: var(--color-text-secondary);
|
|
|
+ border-radius: 16px;
|
|
|
+ font-size: 12px;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-title {
|
|
|
+ font-size: 20px;
|
|
|
+ font-weight: 600;
|
|
|
+ margin-bottom: 12px;
|
|
|
+ color: var(--color-text-primary);
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-excerpt {
|
|
|
+ color: var(--color-text-secondary);
|
|
|
+ font-size: 14px;
|
|
|
+ margin-bottom: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-meta {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ gap: 16px;
|
|
|
+ color: var(--color-text-secondary);
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-date {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ gap: 4px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .article-views {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ gap: 4px;
|
|
|
+ }
|
|
|
+
|
|
|
+ @media (max-width: 768px) {
|
|
|
+ .nav-links {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-header {
|
|
|
+ padding: 48px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-header h1 {
|
|
|
+ font-size: 36px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-header p {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .articles-grid {
|
|
|
+ grid-template-columns: 1fr;
|
|
|
+ padding: 32px 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <nav class="nav">
|
|
|
+ <div class="nav-container">
|
|
|
+ <a href="/" class="nav-logo">极速支付</a>
|
|
|
+ <div class="nav-links">
|
|
|
+ <a href="../index8.html#features" class="nav-link">功能特点</a>
|
|
|
+ <a href="../index8.html#pricing" class="nav-link">费率说明</a>
|
|
|
+ <a href="index.html" class="nav-link">文章列表</a>
|
|
|
+ <a href="../index8.html#contact" class="nav-link">联系我们</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </nav>
|
|
|
+
|
|
|
+ <div class="container">
|
|
|
+ <header class="articles-header">
|
|
|
+ <h1>文章列表</h1>
|
|
|
+ <p>了解支付行业动态,掌握最新技术资讯</p>
|
|
|
+ </header>
|
|
|
+
|
|
|
+ <div class="articles-grid">
|
|
|
+ <article class="article-card">
|
|
|
+ <a href="posts/2024-payment-trends.html">
|
|
|
+ <img src="https://via.placeholder.com/300x200" alt="支付行业动态" class="article-image">
|
|
|
+ <div class="article-content">
|
|
|
+ <span class="article-category">行业动态</span>
|
|
|
+ <h2 class="article-title">2024年支付行业发展趋势分析</h2>
|
|
|
+ <p class="article-excerpt">深入分析2024年支付行业的发展趋势,探讨新技术对支付行业的影响...</p>
|
|
|
+ <div class="article-meta">
|
|
|
+ <span class="article-date">2024-03-20</span>
|
|
|
+ <span class="article-views">阅读 1,234</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </article>
|
|
|
+
|
|
|
+ <article class="article-card">
|
|
|
+ <a href="posts/payment-success-rate.html">
|
|
|
+ <img src="https://via.placeholder.com/300x200" alt="技术分享" class="article-image">
|
|
|
+ <div class="article-content">
|
|
|
+ <span class="article-category">技术分享</span>
|
|
|
+ <h2 class="article-title">如何提高支付成功率</h2>
|
|
|
+ <p class="article-excerpt">分享提高支付成功率的关键技术和方法,帮助您优化支付体验...</p>
|
|
|
+ <div class="article-meta">
|
|
|
+ <span class="article-date">2024-03-18</span>
|
|
|
+ <span class="article-views">阅读 2,345</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </article>
|
|
|
+
|
|
|
+ <article class="article-card">
|
|
|
+ <a href="posts/payment-integration-guide.html">
|
|
|
+ <img src="https://via.placeholder.com/300x200" alt="使用教程" class="article-image">
|
|
|
+ <div class="article-content">
|
|
|
+ <span class="article-category">使用教程</span>
|
|
|
+ <h2 class="article-title">极速支付接入指南</h2>
|
|
|
+ <p class="article-excerpt">详细的接入指南,帮助您快速接入极速支付系统...</p>
|
|
|
+ <div class="article-meta">
|
|
|
+ <span class="article-date">2024-03-15</span>
|
|
|
+ <span class="article-views">阅读 3,456</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </article>
|
|
|
+
|
|
|
+ <article class="article-card">
|
|
|
+ <a href="posts/payment-security-guide.html">
|
|
|
+ <img src="https://via.placeholder.com/300x200" alt="安全指南" class="article-image">
|
|
|
+ <div class="article-content">
|
|
|
+ <span class="article-category">安全指南</span>
|
|
|
+ <h2 class="article-title">支付安全防护指南</h2>
|
|
|
+ <p class="article-excerpt">全面的支付安全防护指南,保障您的资金安全...</p>
|
|
|
+ <div class="article-meta">
|
|
|
+ <span class="article-date">2024-03-12</span>
|
|
|
+ <span class="article-views">阅读 4,567</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </article>
|
|
|
+
|
|
|
+ <article class="article-card">
|
|
|
+ <a href="posts/success-cases.html">
|
|
|
+ <img src="https://via.placeholder.com/300x200" alt="案例分析" class="article-image">
|
|
|
+ <div class="article-content">
|
|
|
+ <span class="article-category">案例分析</span>
|
|
|
+ <h2 class="article-title">成功案例分享</h2>
|
|
|
+ <p class="article-excerpt">分享使用极速支付的成功案例,了解如何提升业务效率...</p>
|
|
|
+ <div class="article-meta">
|
|
|
+ <span class="article-date">2024-03-10</span>
|
|
|
+ <span class="article-views">阅读 5,678</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </article>
|
|
|
+
|
|
|
+ <article class="article-card">
|
|
|
+ <a href="posts/payment-faq.html">
|
|
|
+ <img src="https://via.placeholder.com/300x200" alt="常见问题" class="article-image">
|
|
|
+ <div class="article-content">
|
|
|
+ <span class="article-category">常见问题</span>
|
|
|
+ <h2 class="article-title">支付常见问题解答</h2>
|
|
|
+ <p class="article-excerpt">解答支付过程中遇到的常见问题,帮助您快速解决问题...</p>
|
|
|
+ <div class="article-meta">
|
|
|
+ <span class="article-date">2024-03-08</span>
|
|
|
+ <span class="article-views">阅读 6,789</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </a>
|
|
|
+ </article>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|