
        /* 独享CSS - 文章页面特定样式 */
        .page-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f7ff 0%, #e2e8ff 100%);
            margin-top: 70px;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/10.jpg');
            background-size: cover;
            animation: heroBackground 20s linear infinite;
        }

        @keyframes heroBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50px, -50px); }
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textReveal 1.5s ease-out;
        }

        @keyframes textReveal {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #666;
            font-size: 16px;
            animation: textReveal 1.5s ease-out 0.3s both;
        }

        .article-meta span {
            display: flex;
            align-items: center;
        }

        .article-meta i {
            margin-right: 5px;
            color: var(--primary);
        }

        .article-section {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .article-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 201, 255, 0.05) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .article-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .article-content-wrapper {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* 文章内容样式 */
        .article-content {
            line-height: 1.8;
            font-size: 17px;
            color: #444;
            max-width: 100%;
        }

        .article-content h2 {
            font-size: 28px;
            color: var(--dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
            position: relative;
        }

        .article-content h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        .article-content h3 {
            font-size: 24px;
            color: var(--dark);
            margin: 35px 0 15px;
            position: relative;
            padding-left: 15px;
        }

        .article-content h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 20px;
            width: 5px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 3px;
        }

        .article-content h4 {
            font-size: 20px;
            color: var(--dark);
            margin: 30px 0 15px;
        }

        .article-content h5 {
            font-size: 18px;
            color: var(--dark);
            margin: 25px 0 10px;
        }

        .article-content p {
            margin-bottom: 20px;
            text-align: justify;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .article-content img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-content li {
            margin-bottom: 10px;
        }

        .article-content blockquote {
            background: var(--light);
            border-left: 5px solid var(--primary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
            font-style: italic;
            position: relative;
        }

        .article-content blockquote::before {
            content: '"';
            font-size: 60px;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: -10px;
            left: 10px;
        }

        /* 文章导航样式 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .nav-item {
            flex: 1;
            max-width: 45%;
            padding: 20px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text);
        }

        .nav-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            background: var(--light);
        }

        .nav-prev {
            margin-right: 10px;
            text-align: left;
        }

        .nav-next {
            margin-left: 10px;
            text-align: right;
        }

        .nav-label {
            font-size: 14px;
            color: #999;
            margin-bottom: 5px;
            display: block;
        }

        .nav-title {
            font-weight: 600;
            font-size: 16px;
            color: var(--dark);
        }

        /* 相关文章样式 */
        .related-articles {
            margin-top: 50px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 32px;
            color: var(--dark);
            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: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 5px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .related-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .related-image {
            height: 180px;
            overflow: hidden;
        }

        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .related-card:hover .related-image img {
            transform: scale(1.1);
        }

        .related-content {
            padding: 20px;
        }

        .related-category {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .related-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .related-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        .related-content h3 a:hover {
            color: var(--primary);
        }

        .related-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 13px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 32px;
            }
            
            .article-content-wrapper {
                padding: 30px 20px;
            }
            
            .article-content h2 {
                font-size: 24px;
            }
            
            .article-content h3 {
                font-size: 20px;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-item {
                max-width: 100%;
                margin: 10px 0;
            }
            
            .nav-prev, .nav-next {
                margin: 0;
                text-align: left;
            }
        }