
        /* 独享CSS - 文章详情页面 */
        .page-hero {
            height: 40vh;
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.9)), url('/template/jia/images/13.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            margin-top: 70px;
        }

        .page-hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .page-hero-content .article-meta {
            font-size: 1rem;
            animation: fadeInUp 1s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .article-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .article-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .article-content {
            background-color: #fff;
            border-radius: 10px;
            padding: 50px;
            box-shadow: var(--shadow);
            width: 100%;
        }

        /* 文章内容样式 */
        .article-body {
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .article-body h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 35px 0 15px;
        }

        .article-body h4 {
            font-size: 1.3rem;
            color: var(--accent-color);
            margin: 30px 0 15px;
        }

        .article-body h5 {
            font-size: 1.1rem;
            color: var(--accent-color);
            margin: 25px 0 10px;
            font-weight: 600;
        }

        .article-body p {
            margin-bottom: 20px;
            color: #555;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px 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;
        }

        .highlight-box {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .tag {
            padding: 5px 12px;
            background-color: #f0f0f0;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #666;
            text-decoration: none;
            transition: var(--transition);
        }

        .tag:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        /* 上一篇下一篇 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .nav-item {
            display: flex;
            align-items: center;
            max-width: 45%;
            text-decoration: none;
            color: var(--text-color);
            transition: var(--transition);
        }

        .nav-item:hover {
            color: var(--secondary-color);
        }

        .nav-item.prev {
            text-align: left;
        }

        .nav-item.next {
            text-align: right;
            flex-direction: row-reverse;
            margin-left: auto;
        }

        .nav-icon {
            font-size: 1.2rem;
            margin: 0 10px;
        }

        .nav-text {
            display: flex;
            flex-direction: column;
        }

        .nav-label {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 5px;
        }

        .nav-title {
            font-weight: 600;
            line-height: 1.3;
        }

        /* 相关文章 */
        .related-articles {
            margin-top: 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-size: 2rem;
            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-color: var(--secondary-color);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .related-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .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.05);
        }

        .related-content {
            padding: 20px;
        }

        .related-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .related-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .related-content h3 a:hover {
            color: var(--secondary-color);
        }

        .related-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.85rem;
        }

        /* 动画工具类 */
        .animate-on-scroll {
            transition: all 0.8s ease;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .article-content {
                padding: 30px 20px;
            }
            
            .article-body h2 {
                font-size: 1.6rem;
            }
            
            .article-body h3 {
                font-size: 1.4rem;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-item {
                max-width: 100%;
            }
        }