   /* 独享CSS - 文章详情页面 */
        
        /* 页面头部 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,128L48,117.3C96,107,192,85,288,101.3C384,117,480,171,576,170.7C672,171,768,117,864,101.3C960,85,1056,107,1152,122.7C1248,139,1344,149,1392,154.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            font-size: 16px;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        /* 文章内容 */
        .article-content {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .article-container {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        
        .article-body {
            padding: 50px;
            width: 100%;
        }
        
        /* 文章内容样式 */
        .article-body h2 {
            font-size: 28px;
            color: var(--primary-color);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .article-body h3 {
            font-size: 24px;
            color: var(--secondary-color);
            margin: 25px 0 15px;
        }
        
        .article-body h4 {
            font-size: 20px;
            color: var(--accent-color);
            margin: 20px 0 10px;
        }
        
        .article-body h5 {
            font-size: 18px;
            color: var(--dark-color);
            margin: 15px 0 10px;
        }
        
        .article-body p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }
        
        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-body li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .article-body blockquote {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #666;
        }
        
        .article-body .highlight-box {
            background: var(--light-color);
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid var(--highlight-color);
        }
        
        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            padding: 30px 50px;
            border-top: 1px solid #eee;
        }
        
        .nav-item {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark-color);
            transition: all 0.3s ease;
            max-width: 45%;
        }
        
        .nav-item:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }
        
        .nav-prev:hover {
            transform: translateX(-5px);
        }
        
        .nav-item i {
            margin: 0 10px;
            font-size: 18px;
        }
        
        .nav-text {
            display: flex;
            flex-direction: column;
        }
        
        .nav-label {
            font-size: 14px;
            color: #888;
        }
        
        .nav-title {
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* 相关文章 */
        .related-articles {
            padding: 50px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-accent);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .article-card {
            background: var(--light-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-card-content {
            padding: 20px;
        }
        
        .article-card-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .article-card-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .article-card-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .article-card-content p {
            color: #666;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .article-card-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 14px;
        }
        
        /* 响应式设计 - 独享部分 */
        @media (max-width: 992px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .article-body {
                padding: 30px;
            }
            
            .article-navigation {
                padding: 20px 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 36px;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-item {
                max-width: 100%;
            }
            
            .article-body {
                padding: 20px;
            }
        }