 /* 继承首页的全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft YaHei', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 1200px;
            margin: 0 auto;
        }
        
        /* 导航栏 - 与首页一致 */
        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .logo span {
            color: #3498db;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #3498db;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            padding: 20px 0;
            background-color: #f8f9fa;
            margin-bottom: 40px;
        }
        
        .breadcrumb-list {
            display: flex;
            list-style: none;
            font-size: 14px;
        }
        
        .breadcrumb-list li {
            margin-right: 10px;
            color: #7f8c8d;
        }
        
        .breadcrumb-list li:after {
            content: '/';
            margin-left: 10px;
            color: #bdc3c7;
        }
        
        .breadcrumb-list li:last-child:after {
            content: '';
        }
        
        .breadcrumb-list a:hover {
            color: #3498db;
        }
        
        /* 文章列表主体 */
        .article-list-section {
            padding: 0 0 60px;
        }
        
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }
        
        .section-title {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            color: #7f8c8d;
            font-size: 16px;
        }
        
        /* 文章列表布局 */
        .article-list-container {
            display: grid;
            grid-template-columns: 8fr 4fr;
            gap: 40px;
        }
        
        /* 主文章列表 */
        .main-article-list {
            display: grid;
            gap: 30px;
        }
        
        .article-item {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .article-thumbnail {
            height: 220px;
            overflow: hidden;
        }
        
        .article-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .article-item:hover .article-thumbnail img {
            transform: scale(1.05);
        }
        
        .article-content {
            padding: 25px;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .article-meta i {
            margin-right: 5px;
            font-size: 16px;
        }
        
        .article-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .article-excerpt {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .read-more {
            color: #3498db;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            font-size: 14px;
            transition: transform 0.3s;
        }
        
        .read-more:hover i {
            transform: translateX(3px);
        }
        
        /* 侧边栏 */
        .sidebar {
            display: grid;
            gap: 30px;
        }
        
        .widget {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .widget-title {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        
        /* 分类目录 */
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 12px;
        }
        
        .category-list a {
            display: flex;
            justify-content: space-between;
            color: #555;
            padding: 8px 0;
            transition: color 0.3s;
        }
        
        .category-list a:hover {
            color: #3498db;
        }
        
        .category-count {
            background-color: #f1f5f9;
            color: #7f8c8d;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 12px;
        }
        
        /* 热门文章 */
        .popular-posts {
            list-style: none;
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .popular-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-post-thumb {
            width: 80px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .popular-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .popular-post-title {
            font-size: 15px;
            color: #555;
            transition: color 0.3s;
        }
        
        .popular-post-title:hover {
            color: #3498db;
        }
        
        .popular-post-date {
            font-size: 12px;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        /* 标签云 */
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .tag-cloud a {
            display: inline-block;
            padding: 5px 12px;
            background-color: #f1f5f9;
            color: #555;
            border-radius: 20px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .tag-cloud a:hover {
            background-color: #3498db;
            color: white;
        }
        
        /* 分页 */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .page-numbers {
            display: flex;
            list-style: none;
        }
        
        .page-numbers li {
            margin: 0 5px;
        }
        
        .page-numbers a,
        .page-numbers span {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            color: #555;
            transition: all 0.3s;
        }
        
        .page-numbers a:hover,
        .page-numbers .current {
            background-color: #3498db;
            color: white;
        }
        
        /* 页脚 - 与首页一致 */
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            color: white;
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #3498db;
        }
        
        .footer-col p {
            margin-bottom: 15px;
        }
        
        .footer-links li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-links a {
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #2c3e50;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c3e50;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .container {
                width: 100%;
                padding: 0 20px;
            }
        }
        
        @media (max-width: 992px) {
            .article-list-container {
                grid-template-columns: 1fr;
            }
            
            .sidebar {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .article-thumbnail {
                height: 180px;
            }
            
            .sidebar {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .article-meta {
                flex-wrap: wrap;
            }
            
            .article-meta span {
                margin-right: 15px;
                margin-bottom: 5px;
            }
        }