        :root {
            --primary: #1a3a6e;
            --secondary: #e67e22;
            --text-light: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        
        body {
            background-color: #f8fafc;
            color: #2d3748;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* ===== 博客列表模块 - 紧凑优化版 ===== */
        .blog-archive {
            padding: 3.5rem 0; /* 减小上下内边距 */
        }

        .blog-archive-header {
            text-align: center;
            margin-bottom: 2.5rem; /* 减小底部间距 */
            position: relative;
            z-index: 5;
        }

        .blog-archive-header h1 {
            font-size: 2.25rem; /* 略微减小标题大小 */
            color: var(--primary);
            margin-bottom: 1rem; /* 减小底部间距 */
            position: relative;
            font-weight: 700;
            text-shadow: 0 2px 3px rgba(0, 0, 0, 0.05);
        }

        .blog-archive-header h1::after {
            content: "";
            position: absolute;
            bottom: -10px; /* 上移下划线 */
            left: 50%;
            transform: translateX(-50%);
            width: 90px; /* 减小宽度 */
            height: 3px; /* 减小高度 */
            background: var(--secondary);
            border-radius: 2px;
            z-index: 1;
        }

        .blog-archive-header p {
            color: var(--text-light);
            max-width: 700px;
            margin: 1.5rem auto 0; /* 减小顶部间距 */
            font-size: 1.05rem; /* 略微减小字号 */
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .archive-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem; /* 减小网格间距 */
            margin-bottom: 2.5rem; /* 减小底部间距 */
            position: relative;
            z-index: 3;
        }

        .archive-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 减小阴影强度 */
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            z-index: 1;
        }

        .archive-card:hover {
            transform: translateY(-5px); /* 减小悬停移动距离 */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* 减小悬停阴影 */
        }

        .archive-image {
            height: 180px; /* 减小图片高度 */
            background-color: #e9ecef;
            position: relative;
            overflow: hidden;
        }

        .archive-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.3s ease;
        }

        .archive-card:hover .archive-image img {
            transform: scale(1.05); /* 减小缩放比例 */
        }

        .archive-content {
            padding: 1.5rem; /* 减小内边距 */
            position: relative;
            z-index: 2;
        }

        .archive-date {
            font-size: 0.85rem; /* 减小日期字号 */
            color: var(--text-light);
            margin-bottom: 0.8rem; /* 减小底部间距 */
            display: flex;
            align-items: center;
            position: relative;
        }

        .archive-date::before {
            content: "📅";
            margin-right: 0.5rem;
            font-size: 1rem;
            transition: transform 0.3s;
        }

        .archive-content h3 {
            font-size: 1.25rem; /* 减小标题字号 */
            margin-bottom: 0.8rem; /* 减小底部间距 */
            color: var(--primary);
            position: relative;
            line-height: 1.3;
        }

        .archive-excerpt {
            color: var(--text-light);
            margin-bottom: 1rem; /* 减小底部间距 */
            font-size: 0.95rem; /* 减小摘要字号 */
            line-height: 1.6;
        }

        .read-more {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: color 0.3s;
            position: relative;
            font-size: 0.95rem; /* 减小链接字号 */
        }

        .read-more::after {
            content: "→";
            margin-left: 6px;
            transition: margin-left 0.3s;
        }

        .read-more:hover {
            color: var(--primary);
        }

        .read-more:hover::after {
            margin-left: 10px;
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 2.5rem; /* 减小顶部间距 */
            position: relative;
            z-index: 3;
        }

        .pagination a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px; /* 减小分页按钮尺寸 */
            height: 38px;
            margin: 0 4px; /* 减小按钮间距 */
            border-radius: 6px;
            background: white;
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem; /* 减小分页字号 */
            transition: all 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* 减小阴影 */
        }

        .pagination a:hover, .pagination a.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .pagination a.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .blog-archive {
                padding: 2.5rem 0; /* 移动端减小内边距 */
            }
            
            .blog-archive-header h1 {
                font-size: 1.9rem; /* 移动端减小标题大小 */
            }
            
            .blog-archive-header h1::after {
                bottom: -8px;
                width: 70px; /* 移动端减小下划线宽度 */
                height: 3px;
            }
            
            .archive-grid {
                gap: 1.5rem; /* 移动端减小网格间距 */
            }
            
            .archive-content {
                padding: 1.2rem; /* 移动端减小内边距 */
            }
            
            .archive-image {
                height: 160px; /* 移动端减小图片高度 */
            }
            
            .pagination {
                margin-top: 2rem; /* 移动端减小分页顶部间距 */
            }
        }
