* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', 'SimHei', sans-serif;
        }

        body {
            background: #f9f7f0;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

        /* 头部样式 */
        .header {
            background: linear-gradient(135deg, #8e3c1d 0%, #6b2d15 100%);
            color: white;
            padding: 15px 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 28px;
            margin-left: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .logo-img {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #8e3c1d;
            font-size: 24px;
        }

        .search-box {
            display: flex;
            margin: 10px 0;
        }

        .search-box input {
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
            width: 250px;
        }

        .search-box button {
            background: #d4c9b6;
            border: none;
            padding: 10px 15px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }

        .user-menu {
            display: flex;
            align-items: center;
        }

        .user-menu a {
            color: white;
            margin-left: 15px;
            text-decoration: none;
        }

        .user-menu a:hover {
            text-decoration: underline;
        }

        /* 导航菜单 */
        .nav {
            background: #d4c9b6;
            border-top: 2px solid #b8a992;
            border-bottom: 2px solid #b8a992;
        }

        .nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav ul li {
            position: relative;
        }

        .nav ul li a {
            display: block;
            padding: 15px 25px;
            color: #5c4c3a;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
        }

        .nav ul li a:hover, .nav ul li a.active {
            background: #8e3c1d;
            color: white;
        }

        .nav ul li ul {
            display: none;
            position: absolute;
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            z-index: 100;
            width: 200px;
        }

        .nav ul li:hover ul {
            display: block;
        }

        .nav ul li ul li {
            width: 100%;
        }

        .nav ul li ul li a {
            padding: 12px 20px;
            color: #5c4c3a;
            border-bottom: 1px solid #eee;
        }

        .nav ul li ul li a:hover {
            background: #f0e8d8;
            color: #8e3c1d;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #5c4c3a;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }

        /* 页面标题和面包屑 */
        .page-header {
            background: linear-gradient(rgba(142, 60, 29, 0.9), rgba(107, 45, 21, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><text x="50%" y="50%" font-size="20" text-anchor="middle" fill="white">国学</text></svg>');
            background-size: cover;
            padding: 40px 20px;
            color: white;
            margin-bottom: 30px;
        }

        .page-header h2 {
            font-size: 28px;
            margin-bottom: 10px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }

        .breadcrumb li {
            margin: 0 5px;
        }

        .breadcrumb li:after {
            content: ">";
            margin-left: 10px;
            color: #d4c9b6;
        }

        .breadcrumb li:last-child:after {
            content: "";
        }

        .breadcrumb a {
            color: #d4c9b6;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            color: white;
            text-decoration: underline;
        }

        /* 列表内容 */
        .list-content {
            padding: 0 20px 40px;
            display: flex;
            flex-wrap: wrap;
        }

        .main-content {
            flex: 2;
            margin-right: 30px;
            min-width: 0;
        }

        .sidebar {
            flex: 1;
            min-width: 300px;
        }

        /* 列表筛选和排序 */
        .list-filters {
            background: #f9f7f0;
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .filter-group {
            display: flex;
            align-items: center;
            margin-right: 15px;
            margin-bottom: 10px;
        }

        .filter-group label {
            margin-right: 8px;
            color: #5c4c3a;
            font-weight: bold;
        }

        .filter-group select {
            padding: 8px 12px;
            border: 1px solid #d4c9b6;
            border-radius: 4px;
            background: white;
            color: #5c4c3a;
        }

        .result-count {
            color: #7a6a5a;
            font-size: 14px;
        }

        /* 文章列表 */
        .article-list {
            list-style: none;
        }

        .article-item {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            display: flex;
            transition: transform 0.3s;
        }

        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .article-thumb {
            width: 240px;
            flex-shrink: 0;
            position: relative;
        }

        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-thumb .category {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #8e3c1d;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
        }

        .article-info {
            padding: 20px;
            flex: 1;
        }

        .article-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: #5c4c3a;
        }

        .article-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-title a:hover {
            color: #8e3c1d;
        }

        .article-excerpt {
            color: #7a6a5a;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .article-meta {
            display: flex;
            color: #999;
            font-size: 13px;
            flex-wrap: wrap;
        }

        .article-meta span {
            margin-right: 15px;
            display: flex;
            align-items: center;
        }

        .article-meta i {
            margin-right: 5px;
            color: #8e3c1d;
        }

        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .page-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .page-links li {
            margin: 0 5px;
        }

        .page-links a, .page-links span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            text-decoration: none;
        }

        .page-links a {
            background: #f9f7f0;
            color: #5c4c3a;
            transition: all 0.3s;
        }

        .page-links a:hover {
            background: #8e3c1d;
            color: white;
        }

        .page-links .current {
            background: #8e3c1d;
            color: white;
        }

        .page-links .next, .page-links .prev {
            width: auto;
            padding: 0 15px;
        }

        /* 侧边栏 */
        .sidebar-widget {
            background: #f9f7f0;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .sidebar-title {
            color: #8e3c1d;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4c9b6;
            margin-bottom: 15px;
            font-size: 18px;
            display: flex;
            align-items: center;
        }

        .sidebar-title i {
            margin-right: 10px;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
        }

        .tags a {
            display: inline-block;
            padding: 5px 10px;
            background: #e6daca;
            color: #5c4c3a;
            border-radius: 4px;
            margin: 0 5px 5px 0;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .tags a:hover {
            background: #8e3c1d;
            color: white;
            transform: translateY(-2px);
        }

        .hot-news li {
            padding: 10px 0;
            border-bottom: 1px dashed #d4c9b6;
        }

        .hot-news li:last-child {
            border-bottom: none;
        }

        .hot-news li:before {
            content: none;
        }

        .hot-news a {
            color: #5c4c3a;
            text-decoration: none;
        }

        .hot-news a:hover {
            color: #8e3c1d;
            text-decoration: underline;
        }

        /* 底部 */
        .footer {
            background: linear-gradient(135deg, #5c4c3a 0%, #3e3327 100%);
            color: #d4c9b6;
            padding: 40px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            flex-wrap: wrap;
        }

        .footer-section {
            flex: 1;
            margin-right: 30px;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-section:last-child {
            margin-right: 0;
        }

        .footer-section h3 {
            color: white;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #7a6a5a;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #d4c9b6;
            text-decoration: none;
        }

        .footer-links a:hover {
            color: white;
            text-decoration: underline;
        }

        .contact-info p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            margin-right: 10px;
            color: #8e3c1d;
            width: 20px;
            text-align: center;
        }

        .copyright {
            text-align: center;
            padding: 20px 0 0;
            margin-top: 20px;
            border-top: 1px solid #7a6a5a;
            color: #9f8e76;
            width: 100%;
        }

        /* 响应式设计 */
        @media (max-width: 1200px) {
            .container {
                margin: 0 10px;
                width: auto;
            }
        }

        @media (max-width: 992px) {
            .list-content {
                flex-direction: column;
            }
            
            .main-content {
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .header-content {
                justify-content: center;
            }
            
            .search-box {
                margin: 15px 0;
            }
            
            .user-menu {
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
            
            .article-item {
                flex-direction: column;
            }
            
            .article-thumb {
                width: 100%;
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            .nav ul {
                flex-direction: column;
                display: none;
            }
            
            .nav ul.show {
                display: flex;
            }
            
            .nav ul li {
                width: 100%;
            }
            
            .nav ul li a {
                text-align: center;
                border-bottom: 1px solid #b8a992;
            }
            
            .nav ul li ul {
                position: static;
                width: 100%;
                box-shadow: none;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 20px;
                top: 10px;
            }
            
            .list-filters {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-group {
                margin-bottom: 10px;
                width: 100%;
            }
            
            .filter-group select {
                width: 100%;
            }
            
            .result-count {
                width: 100%;
                margin-top: 10px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-section {
                margin-right: 0;
            }
        }

        @media (max-width: 576px) {
            .logo h1 {
                font-size: 22px;
            }
            
            .search-box input {
                width: 180px;
            }
            
            .page-header h2 {
                font-size: 24px;
            }
            
            .article-title {
                font-size: 18px;
            }
            
            .article-meta span {
                margin-right: 10px;
                margin-bottom: 5px;
            }
            
            .page-links a, .page-links span {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }