       /* ====== 文章详情页面独享CSS部分 ====== */
        
        /* 背景动画元素 */
        .article-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .article-floating-shape {
            position: absolute;
            border-radius: 50%;
            background: var(--gradient-secondary);
            opacity: 0.05;
            z-index: -1;
        }

        .article-shape-1 {
            width: 400px;
            height: 400px;
            top: 10%;
            right: -200px;
            animation: article-float-1 25s infinite ease-in-out;
        }

        .article-shape-2 {
            width: 300px;
            height: 300px;
            bottom: 10%;
            left: -150px;
            animation: article-float-2 30s infinite ease-in-out;
        }

        .article-shape-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: 10%;
            animation: article-float-3 20s infinite ease-in-out;
        }

        @keyframes article-float-1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, 50px) rotate(120deg); }
            66% { transform: translate(-20px, 30px) rotate(240deg); }
        }

        @keyframes article-float-2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-40px, 30px) rotate(120deg); }
            66% { transform: translate(20px, -20px) rotate(240deg); }
        }

        @keyframes article-float-3 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(20px, -30px) rotate(120deg); }
            66% { transform: translate(-30px, 20px) rotate(240deg); }
        }

        /* 文章页面顶部横幅 */
        .article-hero {
            position: relative;
            height: 600px;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 160, 233, 0.8) 100%), url('/template/giaxi/images/8.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            margin-top: 100px;
            overflow: hidden;
        }

        .article-hero-content {
            max-width: 1000px;
            z-index: 2;
            text-align: center;
            margin: 0 auto;
        }

        .article-hero h1 {
            color: white;
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
            font-size: 4.5rem;
            margin-bottom: 25px;
            line-height: 1.1;
            text-align: center;
        }

        /* 文章元信息 */
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .article-meta i {
            color: var(--secondary-color);
        }

        .article-category {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* 文章内容区域 */
        .article-content-section {
            padding: 100px 0;
            background: var(--light-bg);
            position: relative;
        }

        .article-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 25px;
        }

        /* 文章主体内容样式 */
        .article-body {
            background: white;
            border-radius: var(--border-radius);
            padding: 80px;
            box-shadow: var(--box-shadow);
            margin-bottom: 80px;
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        /* 文章内容标题样式 */
        .article-body h2 {
            text-align: left;
            margin-top: 60px;
            margin-bottom: 25px;
            font-size: 2.5rem;
            color: var(--dark-color);
        }

        .article-body h2:first-child {
            margin-top: 0;
        }

        .article-body h2:after {
            left: 0;
            transform: none;
            width: 80px;
        }

        .article-body h3 {
            font-size: 1.8rem;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .article-body h4 {
            font-size: 1.5rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .article-body h5 {
            font-size: 1.3rem;
            margin-top: 25px;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        /* 文章段落样式 */
        .article-body p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #555;
        }

        /* 文章图片样式 - 自适应 */
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 40px 0;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .article-body img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .article-body figure {
            margin: 40px 0;
            text-align: center;
        }

        .article-body figcaption {
            font-size: 1rem;
            color: var(--gray-color);
            margin-top: 10px;
            font-style: italic;
        }

        /* 文章列表样式 */
        .article-body ul, .article-body ol {
            margin: 25px 0 25px 40px;
            color: #555;
        }

        .article-body li {
            margin-bottom: 10px;
            font-size: 1.2rem;
            line-height: 1.7;
        }

        /* 引用样式 */
        .article-body blockquote {
            border-left: 5px solid var(--primary-color);
            padding: 25px 30px;
            margin: 40px 0;
            background: rgba(0, 102, 204, 0.05);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--dark-color);
        }

        /* 代码样式 */
        .article-body pre {
            background: #1a2b4d;
            color: #d1d9e8;
            padding: 25px;
            border-radius: var(--border-radius);
            margin: 40px 0;
            overflow-x: auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* 表格样式 */
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .article-body th, .article-body td {
            padding: 18px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(0, 102, 204, 0.1);
        }

        .article-body th {
            background: rgba(0, 102, 204, 0.1);
            color: var(--dark-color);
            font-weight: 700;
        }

        .article-body tr:hover {
            background: rgba(0, 102, 204, 0.03);
        }

        /* 导航按钮样式 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 80px;
            padding-top: 60px;
            border-top: 1px solid rgba(0, 102, 204, 0.1);
        }

        .prev-article, .next-article {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            border-radius: var(--border-radius);
            background: white;
            transition: var(--transition);
            width: 48%;
            border: 1px solid rgba(0, 102, 204, 0.1);
            box-shadow: 0 5px 15px rgba(0, 102, 204, 0.05);
        }

        .prev-article:hover, .next-article:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 102, 204, 0.1);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .nav-label {
            font-size: 0.95rem;
            color: var(--gray-color);
            margin-bottom: 5px;
            display: block;
        }

        .nav-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-color);
            line-height: 1.4;
        }

        .prev-article i, .next-article i {
            color: var(--secondary-color);
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* 相关文章区域 */
        .related-articles {
            margin-top: 100px;
        }

        .related-articles h2 {
            text-align: center;
            margin-bottom: 60px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .related-article {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 102, 204, 0.1);
        }

        .related-article:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
            border-color: rgba(0, 102, 204, 0.2);
        }

        .related-image {
            height: 220px;
            overflow: hidden;
        }

        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .related-article:hover .related-image img {
            transform: scale(1.1);
        }

        .related-content {
            padding: 30px;
        }

        .related-category {
            display: inline-block;
            background: rgba(0, 160, 233, 0.1);
            color: var(--secondary-color);
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .related-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .related-content h3 a {
            color: var(--dark-color);
            text-decoration: none;
        }

        .related-content h3 a:hover {
            color: var(--secondary-color);
        }

        .related-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--gray-color);
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* CTA部分 */
        .article-cta {
            background: var(--gradient-primary);
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-top: 100px;
        }

        .article-cta h2 {
            color: white;
        }

        .article-cta h2:after {
            background: white;
        }

        .article-cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        /* 动画效果 */
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .float-animation {
            animation: float 5s ease-in-out infinite;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .article-body {
                padding: 60px;
            }
            
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .article-hero {
                height: 500px;
                margin-top: 80px;
            }
            
            .article-hero h1 {
                font-size: 3.5rem;
            }
            
            .article-body {
                padding: 50px;
            }
            
            .article-body h2 {
                font-size: 2.2rem;
            }
            
            .article-body h3 {
                font-size: 1.6rem;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 30px;
            }
            
            .prev-article, .next-article {
                width: 100%;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .article-hero h1 {
                font-size: 2.8rem;
            }
            
            .article-body {
                padding: 40px 30px;
            }
            
            .article-body h2 {
                font-size: 2rem;
            }
            
            .article-body h3 {
                font-size: 1.4rem;
            }
            
            .article-body p, .article-body li {
                font-size: 1.1rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 576px) {
            .article-hero {
                height: 450px;
            }
            
            .article-hero h1 {
                font-size: 2.3rem;
            }
            
            .article-body {
                padding: 30px 20px;
            }
            
            .article-body h2 {
                font-size: 1.8rem;
            }
            
            .article-body h3 {
                font-size: 1.3rem;
            }
            
            .article-body blockquote {
                padding: 20px;
                font-size: 1.1rem;
            }
            
            .article-navigation {
                margin-top: 50px;
                padding-top: 40px;
            }
        }