       /* 独享CSS部分 - 文章页面内容 */
        .page-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 204, 153, 0.1) 100%);
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/8.jpg') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }

        .page-hero-content {
            text-align: center;
            width: 100%;
        }

        .page-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .page-hero h1 span {
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            color: #666;
            font-size: 1rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-meta i {
            color: var(--accent);
        }

        /* 文章主体样式 */
        .article-content {
            background: white;
            padding: 80px 0;
        }

        .article-container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0;
        }

        .article-body {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .article-body h2 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 40px 0 20px;
            color: var(--dark);
            position: relative;
            padding-bottom: 10px;
        }

        .article-body h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .article-body h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 35px 0 15px;
            color: var(--dark);
        }

        .article-body h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--dark);
        }

        .article-body h5 {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 25px 0 15px;
            color: var(--dark);
        }

        .article-body p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .article-body blockquote {
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 204, 153, 0.05) 100%);
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }

        .article-body blockquote p {
            margin-bottom: 0;
            color: #666;
        }

        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-body li {
            margin-bottom: 10px;
            line-height: 1.7;
            color: #555;
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }

        .article-body th, .article-body td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }

        .article-body th {
            background: var(--gradient);
            color: white;
            font-weight: 600;
        }

        .article-body tr:nth-child(even) {
            background: rgba(0, 102, 255, 0.03);
        }

        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid #e0e0e0;
        }

        .nav-prev, .nav-next {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
        }

        .nav-prev:hover, .nav-next:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .nav-prev {
            margin-right: 15px;
            text-align: left;
        }

        .nav-next {
            margin-left: 15px;
            text-align: right;
            flex-direction: row-reverse;
        }

        .nav-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .nav-text h4 {
            font-size: 1.1rem;
            margin: 0 0 5px;
            color: var(--dark);
        }

        .nav-text p {
            font-size: 0.9rem;
            margin: 0;
            color: #666;
        }

        /* 相关文章 */
        .related-articles {
            background: white;
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            position: relative;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .knowledge-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .knowledge-card.animate {
            opacity: 1;
            transform: translateY(0);
        }


        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .knowledge-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.1);
        }

        .knowledge-category-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gradient);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .knowledge-content {
            padding: 25px;
        }

        .knowledge-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .knowledge-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .knowledge-content h3 a:hover {
            color: var(--primary);
        }

        .knowledge-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .knowledge-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 15px;
        }

        .read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
        }

        .read-more:hover {
            gap: 12px;
            color: var(--secondary);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .article-body h2 {
                font-size: 1.8rem;
            }
            
            .article-body h3 {
                font-size: 1.5rem;
            }
            
            .article-body h4 {
                font-size: 1.3rem;
            }
            
            .article-body h5 {
                font-size: 1.2rem;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-prev, .nav-next {
                margin: 0;
            }
            
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .page-hero {
                height: 30vh;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
        }