        /* 主内容区样式 */
        main {
            padding: 15px 0 30px;
            min-height: calc(100vh - 100px);
        }
        
        .page-header {
            margin-bottom: 20px;
            padding: 15px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            border-radius: 8px;
            color: var(--white);
            box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
        }
        
        .page-header h1 {
            font-size: 2.2rem;
            margin-bottom: 8px;
        }
        
        .page-header p {
            font-size: 1.4rem;
            opacity: 0.9;
        }
        
        /* 紧凑文章列表 */
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .article-item {
            background: var(--white);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
        }
        
        .article-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .article-content {
            flex: 1;
        }
        
        .article-content h2 {
            font-size: 1.6rem;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .article-content h2 a {
            color: var(--text-dark);
        }
        
        .article-content h2 a:hover {
            color: var(--primary-color);
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 1.1rem;
            color: var(--text-light);
        }
        
        .article-meta i {
            margin-right: 4px;
        }
        
        .article-meta .category {
            margin-right: 12px;
            background: rgba(139, 69, 19, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        
        .article-excerpt {
            color: var(--text-light);
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .article-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .read-more {
            display: inline-block;
            padding: 5px 12px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 15px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .read-more:hover {
            background: var(--primary-light);
            color: var(--white);
            transform: translateX(3px);
        }
        
        .article-views {
            font-size: 1.1rem;
            color: var(--text-light);
        }
        