/* 列表页内容 */
        .list-section {
            padding: 60px 0;
            background: var(--section-bg);
        }
        
        .list-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .breadcrumb {
            padding: 15px 20px;
            background: var(--section-alt);
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        .article-category a {color:#fff;}
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .breadcrumb i {
            margin: 0 10px;
            color: #888;
            font-size: 0.8rem;
        }
        
        .page-header {
            padding: 0 20px;
            margin-bottom: 40px;
        }
        
        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary);
        }
        
        .page-description {
            color: #555;
            font-size: 1.1rem;
            max-width: 800px;
            line-height: 1.8;
        }
        
        .list-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            padding: 0 20px;
            margin-bottom: 30px;
        }
        
        .filter-btn {
            padding: 8px 15px;
            background: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-size: 0.95rem;
            color: #555;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .article-list {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .article-item {
            padding: 25px;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .article-item:last-child {
            border-bottom: none;
        }
        
        .article-item:hover {
            background: var(--section-alt);
        }
        
        .article-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .article-date {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .article-category {
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .article-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }
        .article-title a {color:#000;}
        
        .article-item:hover .article-title {
            color: var(--primary);
        }
        
        .article-excerpt {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.8;
        }
        .article-item {display:block!important;}
        .article-meta {
            display: flex;
            color: #777;
            font-size: 0.9rem;
        }
        
        .article-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            padding: 0 20px;
        }
        .pagination b {width:50px;height:40px;text-align:center;line-height:40px;color:#5d7afb;}
        
        .pagination a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 40px;
            margin: 0 5px;
            border-radius: 50%;
            background: white;
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }
        
        .pagination a:hover, .pagination a.active {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        .pagination a.prev, .pagination a.next {
            width: auto;
            padding: 0 15px;
            border-radius: 30px;
        }