/* 继承列表页的全局样式 */
        * {
            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-detail-section {
            padding: 0 0 60px;
        }
        
        .article-container {
            display: grid;
            grid-template-columns: 8fr 4fr;
            gap: 40px;
        }
        
        /* 文章内容区域 */
        .article-main {
            background-color: #fff;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .article-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .article-title {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
            color: #7f8c8d;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
            margin: 0 15px;
        }
        
        .article-meta i {
            margin-right: 5px;
            font-size: 16px;
        }
        
        .article-thumbnail {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .article-thumbnail img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* 文章内容样式 */
        .article-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }
        
        .article-content h2 {
            font-size: 24px;
            color: #2c3e50;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .article-content h3 {
            font-size: 20px;
            color: #2c3e50;
            margin: 25px 0 15px;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 5px;
        }
        
        .article-content blockquote {
            border-left: 4px solid #3498db;
            background-color: #f8f9fa;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            color: #555;
        }
        
        .article-content ul,
        .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 10px;
        }
        
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .article-content th,
        .article-content td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        
        .article-content th {
            background-color: #f1f5f9;
            color: #2c3e50;
        }
        
        /* 文章标签和分享 */
        .article-footer {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .tags-title {
            font-weight: bold;
            margin-right: 15px;
            color: #2c3e50;
        }
        
        .tag {
            display: inline-block;
            padding: 5px 12px;
            background-color: #f1f5f9;
            color: #555;
            border-radius: 20px;
            font-size: 14px;
            margin: 0 8px 8px 0;
            transition: all 0.3s;
        }
        
        .tag:hover {
            background-color: #3498db;
            color: white;
        }
        
        .article-share {
            display: flex;
            align-items: center;
        }
        
        .share-title {
            font-weight: bold;
            margin-right: 15px;
            color: #2c3e50;
        }
        
        .share-buttons {
            display: flex;
        }
        
        .share-button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            transition: transform 0.3s;
        }
        
        .share-button:hover {
            transform: translateY(-3px);
        }
        
        .weibo {
            background-color: #e6162d;
        }
        
        .wechat {
            background-color: #07c160;
        }
        
        .qq {
            background-color: #12b7f5;
        }
        
        .linkedin {
            background-color: #0077b5;
        }
        
        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .nav-previous,
        .nav-next {
            flex: 1;
        }
        
        .nav-next {
            text-align: right;
        }
        
        .nav-label {
            font-size: 14px;
            color: #7f8c8d;
            margin-bottom: 5px;
        }
        
        .nav-title {
            font-weight: 500;
            color: #2c3e50;
            transition: color 0.3s;
        }
        
        .nav-title:hover {
            color: #3498db;
        }
        
        /* 侧边栏 - 与列表页一致 */
        .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;
        }
        
        /* 相关文章 */
        .related-posts {
            list-style: none;
        }
        
        .related-post {
            display: flex;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #eee;
        }
        
        .related-post:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .related-post-thumb {
            width: 80px;
            height: 60px;
            border-radius: 5px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .related-post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-post-title {
            font-size: 15px;
            color: #555;
            transition: color 0.3s;
        }
        
        .related-post-title:hover {
            color: #3498db;
        }
        
        .related-post-date {
            font-size: 12px;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        /* 页脚 - 与首页一致 */
        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-container {
                grid-template-columns: 1fr;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-previous {
                margin-bottom: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .article-main {
                padding: 25px;
            }
            
            .article-title {
                font-size: 24px;
            }
            
            .article-meta {
                flex-wrap: wrap;
                justify-content: flex-start;
            }
            
            .article-meta span {
                margin: 0 15px 5px 0;
            }
        }
        
        @media (max-width: 576px) {
            .article-header {
                text-align: left;
            }
            
            .article-tags {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .tags-title {
                margin-bottom: 10px;
                margin-right: 0;
            }
            
            .article-share {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .share-title {
                margin-bottom: 10px;
                margin-right: 0;
            }
        }