* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        /* 顶部导航栏 */
        .top-bar {
            background-color: #fff;
            height: 60px;
            border-bottom: 1px solid #e4e4e4;
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
        }
        .top-container {
            width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            height: 100%;
        }
        .logo {
            margin-right: 30px;
        }
        .logo img {
            height: 30px;
        }
        .nav {
            display: flex;
        }
        .nav-item {
            margin-right: 25px;
            font-size: 16px;
            color: #333;
            text-decoration: none;
        }
        .nav-item:hover {
            color: #315efb;
        }
        .search-box {
            margin-left: auto;
            display: flex;
        }
        .search-input {
            width: 200px;
            height: 32px;
            padding: 0 10px;
            border: 1px solid #ddd;
            border-radius: 2px 0 0 2px;
            outline: none;
        }
        .search-btn {
            width: 40px;
            height: 32px;
            background-color: #315efb;
            color: white;
            border: none;
            border-radius: 0 2px 2px 0;
            cursor: pointer;
        }
        
        /* 主体内容区 */
        .main-container {
            width: 1200px;
            margin: 20px auto;
            display: flex;
        }
        
        /* 左侧内容区 */
        .content-area {
            flex: 1;
            background-color: #fff;
            margin-right: 20px;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 15px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }
        .breadcrumb a {
            color: #333;
            text-decoration: none;
        }
        .breadcrumb a:hover {
            color: #315efb;
        }
        .breadcrumb span {
            margin: 0 5px;
            color: #999;
        }
        
        /* 分类标题 */
        .category-header {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .category-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 10px;
        }
        .category-desc {
            font-size: 14px;
            color: #666;
        }
        
        /* 筛选栏 */
        .filter-bar {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .filter-title {
            font-size: 14px;
            color: #666;
            margin-right: 15px;
        }
        .filter-list {
            display: flex;
            list-style: none;
        }
        .filter-item {
            margin-right: 20px;
        }
        .filter-item a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        .filter-item a:hover, .filter-item a.active {
            color: #315efb;
        }
        
        /* 经验列表 */
        .exp-list {
            list-style: none;
        }
        .exp-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            display: flex;
        }
        .exp-item:hover {
            background-color: #f9f9f9;
        }
        .exp-cover {
            width: 160px;
            height: 120px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .exp-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }
        .exp-content {
            flex: 1;
        }
        .exp-title {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .exp-title a {
            color: #333;
            text-decoration: none;
        }
        .exp-title a:hover {
            color: #315efb;
        }
        .exp-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .exp-meta {
            display: flex;
            font-size: 12px;
            color: #999;
        }
        .exp-meta span {
            margin-right: 15px;
        }
        
        /* 分页 */
        .pagination {
            padding: 20px;
            text-align: center;
        }
        .page-list {
            display: inline-flex;
            list-style: none;
        }
        .page-item {
            margin: 0 5px;
        }
        .page-item a, .page-item span {
            display: block;
            width: 36px;
            height: 36px;
            line-height: 36px;
            text-align: center;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }
        .page-item a:hover {
            background-color: #f5f5f5;
        }
        .page-item.active span {
            background-color: #315efb;
            color: white;
        }
        
        /* 右侧边栏 */
        .sidebar {
            width: 280px;
            background-color: #fff;
        }
        .sidebar-section {
            margin-bottom: 20px;
        }
        .sidebar-title {
            font-size: 16px;
            color: #333;
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        .hot-list {
            list-style: none;
        }
        .hot-list li {
            padding: 10px 15px;
            border-bottom: 1px solid #eee;
        }
        .hot-list a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: block;
        }
        .hot-list a:hover {
            color: #315efb;
        }
        .tag-list {
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
        }
        .tag {
            padding: 3px 10px;
            background-color: #f5f5f5;
            color: #666;
            font-size: 12px;
            border-radius: 3px;
            margin-right: 8px;
            margin-bottom: 8px;
            text-decoration: none;
        }
        .tag:hover {
            background-color: #eaeaea;
        }
        
        /* 底部区域 */
        .footer {
            width: 1200px;
            margin: 30px auto;
            padding-top: 20px;
            border-top: 1px solid #eee;
            color: #999;
            font-size: 12px;
            text-align: center;
        }