
        /* 独享CSS部分 - 文章详情页面 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: var(--text-light);
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/10.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.2;
            z-index: 0;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }

        .article-meta span {
            display: flex;
            align-items: center;
        }

        .article-meta i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .article-tag {
            display: inline-block;
            background: rgba(201, 162, 39, 0.2);
            color: var(--text-light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .article-page {
            padding: 80px 0;
            background: var(--light-color);
        }

        .article-container {
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 50px;
        }

        /* 文章主体内容样式 */
        .article-content {
            padding: 50px;
            width: 100%;
        }

        .article-content h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            position: relative;
        }

        .article-content h2:first-child {
            margin-top: 0;
        }

        .article-content h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 25px 0 15px;
            padding-left: 15px;
            border-left: 4px solid var(--secondary-color);
        }

        .article-content h4 {
            font-size: 1.3rem;
            color: var(--accent-color);
            margin: 20px 0 15px;
        }

        .article-content h5 {
            font-size: 1.1rem;
            color: var(--accent-color);
            margin: 15px 0 10px;
        }

        .article-content p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .article-content blockquote {
            background: rgba(10, 36, 99, 0.05);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }

        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-content li {
            margin-bottom: 10px;
            color: #555;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: var(--shadow);
        }

        .article-content th, .article-content td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }

        .article-content th {
            background: var(--primary-color);
            color: white;
        }

        .article-content tr:nth-child(even) {
            background: rgba(10, 36, 99, 0.05);
        }

        /* 文章导航样式 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .nav-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: white;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-decoration: none;
            color: var(--text-color);
            width: 48%;
        }

        .nav-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            color: var(--primary-color);
        }

        .nav-prev .nav-icon {
            margin-right: 15px;
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        .nav-next .nav-icon {
            margin-left: 15px;
            color: var(--secondary-color);
            font-size: 1.5rem;
        }

        .nav-next {
            text-align: right;
            flex-direction: row-reverse;
        }

        .nav-text {
            font-size: 0.9rem;
            color: #888;
            margin-bottom: 5px;
        }

        .nav-title {
            font-weight: 600;
            font-size: 1rem;
        }

        /* 相关文章样式 */
        .related-articles {
            margin-top: 50px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .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;
            width: 70px;
            height: 3px;
            background: var(--secondary-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .article-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .article-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .article-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .article-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10, 36, 99, 0.1), transparent);
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }

        .article-card:hover .article-image::before {
            opacity: 1;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-image img {
            transform: scale(1.1);
        }

        .card-content {
            padding: 20px;
        }

        .card-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .card-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .card-content h3 a:hover {
            color: var(--secondary-color);
        }

        .card-content p {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .card-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.9rem;
        }

        .card-tag {
            display: inline-block;
            background: rgba(201, 162, 39, 0.1);
            color: var(--secondary-color);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .article-content {
                padding: 40px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .article-content {
                padding: 30px;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-item {
                width: 100%;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .page-header h1 {
                font-size: 1.6rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .article-content {
                padding: 20px;
            }
            
            .article-content h2 {
                font-size: 1.5rem;
            }
            
            .article-content h3 {
                font-size: 1.3rem;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }