/* 全局重置与字体 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #f9fafc;
            color: #1e293b;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* 头部样式 */
        .site-header {
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            padding: 24px 0;
            border-bottom: 1px solid #eef2f6;
            margin-bottom: 48px;
        }

        .site-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo a {
            font-size: 2rem;
            font-weight: 700;
            text-decoration: none;
            color: #0f172a;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #2563eb, #7c3aed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo span {
            background: #eef2f6;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 400;
            margin-left: 8px;
            color: #475569;
            -webkit-text-fill-color: #475569;
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.2s;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
        }

        .nav-links a:hover {
            color: #2563eb;
            border-bottom-color: #2563eb;
        }

        /* 页脚样式 */
        .site-footer {
            margin-top: 60px;
            background-color: #ffffff;
            border-top: 1px solid #eef2f6;
            padding: 32px 0;
            text-align: center;
            color: #64748b;
            font-size: 0.95rem;
        }

        /* 文章列表区域 */
        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #0f172a;
            letter-spacing: -0.01em;
            position: relative;
            padding-bottom: 12px;
        }
        .page-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #7c3aed);
            border-radius: 4px;
        }

        .post-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .post-card {
            background: #ffffff;
            border-radius: 28px;
            padding: 36px;
            box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f4f9;
        }

        .post-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px -12px rgba(0, 34, 68, 0.15);
            border-color: #d9e6f5;
        }

        .post-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .post-title a {
            text-decoration: none;
            color: #0f172a;
            transition: color 0.2s;
        }

        .post-title a:hover {
            color: #2563eb;
        }

        .post-meta {
            margin-bottom: 20px;
        }

        .post-date {
            display: inline-block;
            background: #f1f5f9;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.95rem;
            color: #334155;
            font-weight: 500;
        }

        .post-excerpt {
            color: #334155;
            margin-bottom: 28px;
            font-size: 1.1rem;
            line-height: 1.7;
            border-left: 4px solid #2563eb;
            padding-left: 24px;
            background: #f8fafd;
            padding: 20px 24px;
            border-radius: 16px;
        }

        .read-more {
            display: inline-block;
            background-color: #ffffff;
            border: 2px solid #2563eb;
            border-radius: 40px;
            padding: 10px 28px;
            font-size: 1.05rem;
            font-weight: 600;
            color: #2563eb;
            text-decoration: none;
            transition: all 0.25s;
        }

        .read-more:hover {
            background-color: #2563eb;
            color: #ffffff;
        }

        /* 分页样式 */
        .pagination {
            margin-top: 60px;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
        }
        .page-link {
            display: inline-block;
            padding: 10px 18px;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 40px;
            color: #334155;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s;
        }
        .page-link:hover {
            background-color: #2563eb;
            border-color: #2563eb;
            color: white;
        }
        .page-link.current {
            background-color: #2563eb;
            border-color: #2563eb;
            color: white;
            font-weight: 600;
        }
        .page-ellipsis {
            display: inline-block;
            padding: 10px 8px;
            color: #64748b;
        }

        /* 空文章提示 */
        .no-articles {
            text-align: center;
            color: #94a3b8;
            font-size: 1.2rem;
            padding: 40px;
            background: #ffffff;
            border-radius: 28px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .site-header .container {
                flex-direction: column;
                text-align: center;
            }
            .nav-links {
                justify-content: center;
            }
            .post-card {
                padding: 28px;
            }
            .post-title {
                font-size: 1.8rem;
            }
            .post-excerpt {
                font-size: 1rem;
                padding: 16px 20px;
            }
            .page-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .post-card {
                padding: 24px;
            }
            .post-title {
                font-size: 1.5rem;
            }
            .read-more {
                padding: 8px 22px;
                font-size: 0.95rem;
            }
            .page-link {
                padding: 8px 14px;
            }
        }