:root {
            --primary-color: #1e88e5;
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-text: #777;
        }
        
        body {
            font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 15px 0;
            margin-bottom: 0;
        }
        
        .list-header {
            background-color: white;
            padding: 20px 0;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .page-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .page-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .filter-section {
            background-color: white;
            padding: 20px;
            margin-bottom: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .list-item {
            background-color: white;
            margin-bottom: 20px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .list-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .list-item-img {
            height: 180px;
            object-fit: cover;
            width: 100%;
        }
        
        .list-item-body {
            padding: 20px;
        }
        
        .list-item-title {
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .list-item-meta {
            color: var(--light-text);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .list-item-desc {
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .pagination {
            justify-content: center;
            margin-top: 30px;
        }
        
        .sidebar {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .sidebar-title:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .sidebar-list {
            list-style: none;
            padding-left: 0;
        }
        
        .sidebar-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
        }
        
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .sidebar-list a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .sidebar-list a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .tag {
            display: inline-block;
            padding: 3px 10px;
            background-color: #f0f0f0;
            border-radius: 15px;
            margin-right: 5px;
            margin-bottom: 5px;
            font-size: 0.8rem;
            color: var(--light-text);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        @media (max-width: 768px) {
            .list-item-img {
                height: 150px;
            }
            
            .sidebar {
                margin-top: 30px;
            }
        }