 :root {
            --primary-blue: #1a73e8;
            --dark-blue: #0d47a1;
            --light-blue: #e8f0fe;
            --accent-blue: #4285f4;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        /* 导航栏样式 */
        .navbar {
            background-color: var(--primary-blue);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background-color: transparent;
            padding: 1rem 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .breadcrumb-item a:hover {
            color: var(--dark-blue);
            text-decoration: underline;
        }
        
        /* 页面标题 */
        .page-header {
            background-color: var(--light-blue);
            padding: 3rem 0;
            margin-bottom: 3rem;
        }
        
        .page-title {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            color: #666;
            font-weight: 300;
        }
        
        /* 内容区域 */
        .section-title {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-blue);
        }
        
        /* 文章列表 */
        .article-list {
            margin-bottom: 3rem;
        }
        
        .article-item {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }
        
        .article-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .article-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .article-body {
            padding: 1.5rem;
        }
        
        .article-title {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .article-title a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .article-title a:hover {
            color: var(--primary-blue);
            text-decoration: underline;
        }
        
        .article-meta {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .article-meta i {
            margin-right: 0.3rem;
        }
        
        .article-excerpt {
            color: #555;
            margin-bottom: 1.5rem;
        }
        
        .read-more {
            color: var(--primary-blue);
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .read-more:hover {
            color: var(--dark-blue);
            text-decoration: underline;
        }
        
        /* 分页 */
        .pagination .page-item .page-link {
            color: var(--primary-blue);
            border: 1px solid #dee2e6;
            margin: 0 0.2rem;
            border-radius: 4px;
        }
        
        .pagination .page-item.active .page-link {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
        }
        
        .pagination .page-item.disabled .page-link {
            color: #6c757d;
        }
        
        /* 侧边栏 */
        .sidebar-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        .sidebar-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 0.75rem 1.25rem;
            font-weight: 600;
        }
        
        .sidebar-body {
            padding: 1.25rem;
        }
        
        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .sidebar-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .sidebar-list li:last-child {
            border-bottom: none;
        }
        
        .sidebar-list a {
            color: #555;
            text-decoration: none;
            transition: all 0.3s;
            display: block;
        }
        
        .sidebar-list a:hover {
            color: var(--primary-blue);
            transform: translateX(5px);
        }
        
        .tag {
            display: inline-block;
            background-color: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 0.2rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        
        /* 页脚 */
        .footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.3s;
        }
        
        .footer-link:hover {
            color: white;
            text-decoration: none;
            transform: translateX(5px);
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .page-header {
                padding: 2rem 0;
            }
            
            .page-title {
                font-size: 1.8rem;
            }
            
            .navbar-brand {
                font-size: 1.2rem;
            }
            
            .article-img {
                height: 150px;
            }
        }