 /* 重置样式和基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            font-size: 16px;
        }
        
        a {
            text-decoration: none;
            color: #0066cc;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #004d99;
            text-decoration: underline;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* 容器 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* 头部 */
        .site-header {
            background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .logo a {
            color: white;
            text-decoration: none;
        }
        
        .logo-icon {
            font-size: 1.8rem;
            margin-right: 10px;
        }
        
        /* 主导航 */
        .main-nav ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        
        .main-nav li {
            margin: 0 5px;
        }
        
        .main-nav a {
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            text-decoration: none;
        }
        
        .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* 搜索框 */
        .search-box {
            display: flex;
            margin-top: 10px;
            width: 100%;
        }
        
        .search-input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        
        .search-button {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
        }
        
        /* 面包屑导航 */
        .breadcrumb {
            background: white;
            padding: 10px 0;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .breadcrumb ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
        }
        
        .breadcrumb li {
            margin-right: 5px;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 5px;
            color: #666;
        }
        
        .breadcrumb a {
            color: #666;
        }
        
        .breadcrumb a:hover {
            color: #1a73e8;
        }
        
        /* 主要内容区域 */
        .main-content {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        /* 左栏 - 主内容区 */
        .content-primary {
            flex: 3;
            min-width: 300px;
            padding-right: 20px;
        }
        
        /* 右栏 - 侧边栏 */
        .sidebar {
            flex: 1;
            min-width: 250px;
        }
        
        /* 文章详情 */
        .article-detail {
            background: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .article-header {
            margin-bottom: 25px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        
        .article-title {
            font-size: 1.8rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #222;
        }
        
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            color: #666;
            font-size: 0.9rem;
        }
        
        .article-meta-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
            margin-bottom: 8px;
        }
        
        .article-meta-item i {
            margin-right: 6px;
            color: #1a73e8;
        }
        
        .article-source {
            background: #e8f0fe;
            color: #1a73e8;
            padding: 2px 8px;
            border-radius: 3px;
            font-weight: 500;
        }
        
        .article-image {
            margin: 25px 0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
        }
        
        .article-image-caption {
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            margin-top: 8px;
            padding: 0 10px;
        }
        
        .article-content {
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 15px;
            color: #222;
            border-left: 4px solid #1a73e8;
            padding-left: 12px;
        }
        
        .article-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 25px 0 12px;
            color: #333;
        }
        
        .article-content blockquote {
            border-left: 4px solid #1a73e8;
            background-color: #f8f9fa;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            color: #555;
        }
        
        .article-content ul, .article-content ol {
            margin: 15px 0 15px 20px;
        }
        
        .article-content li {
            margin-bottom: 8px;
        }
        
        .article-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .article-tag {
            background: #f1f8ff;
            color: #1a73e8;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .article-tag:hover {
            background: #e1f0ff;
            text-decoration: none;
        }
        
        .article-share {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .share-title {
            font-weight: 600;
            color: #666;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
        }
        
        .share-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .share-button:hover {
            transform: translateY(-3px);
            text-decoration: none;
        }
        
        .share-wechat { background: #2DC100; }
        .share-weibo { background: #E6162D; }
        .share-qq { background: #12B7F5; }
        .share-link { background: #666; }
        
        /* 相关文章 */
        .related-articles {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #1a73e8;
        }
        
        .section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a73e8;
        }
        
        .section-more {
            color: #666;
            font-size: 0.9rem;
        }
        
        .related-articles-list {
            list-style: none;
        }
        
        .related-article-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .related-article-item:last-child {
            border-bottom: none;
        }
        
        .related-article-title {
            font-size: 1rem;
            line-height: 1.4;
        }
        
        /* 侧边栏 */
        .sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        .widget-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #1a73e8;
            color: #1a73e8;
        }
        
        .hot-news-list {
            list-style: none;
        }
        
        .hot-news-item {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .hot-news-item:last-child {
            border-bottom: none;
        }
        
        .hot-news-title {
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        /* 广告位 */
        .advertisement {
            text-align: center;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 6px;
            border: 1px dashed #ddd;
        }
        
        .ad-label {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 5px;
        }
        
        /* 底部 */
        .site-footer {
            background: #333;
            color: #aaa;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
            padding-right: 20px;
        }
        
        .footer-title {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid #444;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #aaa;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            width: 100%;
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.9rem;
        }
        
        .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .main-nav {
                width: 100%;
                margin: 15px 0 10px;
            }
            
            .main-nav ul {
                justify-content: center;
            }
            
            .main-nav li {
                margin: 5px 2px;
            }
            
            .main-nav a {
                padding: 6px 8px;
                font-size: 0.9rem;
            }
            
            .content-primary {
                padding-right: 0;
            }
            
            .article-title {
                font-size: 1.5rem;
            }
            
            .article-detail {
                padding: 20px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .article-meta-item {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .footer-column {
                flex: 100%;
                padding-right: 0;
            }
        }
        
        @media (max-width: 480px) {
            .main-nav ul {
                justify-content: space-between;
            }
            
            .main-nav li {
                margin: 2px 0;
            }
            
            .article-title {
                font-size: 1.3rem;
            }
            
            .article-image img {
                max-height: 300px;
            }
            
            .share-buttons {
                flex-wrap: wrap;
            }
        }
        
        /* 百度收录优化样式 */
        .breadcrumb,
        .section-header,
        .article-title,
        .related-article-title {
            word-wrap: break-word;
            overflow-wrap: break-word;
        }
        
        /* 避免百度转码的样式 */
        .article-content {
            -webkit-text-size-adjust: 100%;
        }
        
        /* 打印样式 */
        @media print {
            .site-header,
            .sidebar,
            .footer-bottom,
            .search-box,
            .main-nav,
            .article-share,
            .related-articles {
                display: none;
            }
            
            .container {
                max-width: 100%;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.5;
            }
            
            .article-detail {
                box-shadow: none;
                padding: 0;
            }
        }
        
        /* 无障碍优化 */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        
        /* 焦点样式，提高可访问性 */
        a:focus,
        button:focus,
        input:focus {
            outline: 2px solid #1a73e8;
            outline-offset: 2px;
        }