 
        /* ===== 独享CSS部分 - 文章页面 ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: var(--gradient-primary);
            color: white;
            padding: 180px 0 100px;
            margin-top: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/template/jia/images/13.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
            z-index: 0;
        }
        
        .page-header-content {
            position: relative;
            z-index: 1;
        }
        
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .page-header p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* 文章主体样式 */
        .article-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .article-content {
            max-width: 100%;
            margin: 0 auto;
            padding: 60px 0;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            color: var(--gray-color);
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 8px;
            color: var(--secondary-color);
        }
        
        /* 文章主体标签样式 */
        .article-body {
            line-height: 1.8;
            font-size: 1.1rem;
            color: #444;
        }
        
        .article-body h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
            position: relative;
        }
        
        .article-body h2::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100px;
            height: 2px;
            background: var(--gradient-secondary);
        }
        
        .article-body h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin: 40px 0 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .article-body h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--gradient-secondary);
            border-radius: 50%;
        }
        
        .article-body h4 {
            font-size: 1.4rem;
            color: var(--accent-color);
            margin: 30px 0 15px;
        }
        
        .article-body h5 {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin: 25px 0 15px;
            font-weight: 600;
        }
        
        .article-body p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: var(--shadow-medium);
            transition: var(--transition);
        }
        
        .article-body img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-heavy);
        }
        
        /* 文章特色区块 */
        .article-highlight {
            background: rgba(10, 42, 94, 0.05);
            border-left: 4px solid var(--secondary-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .article-highlight p {
            margin: 0;
            font-style: italic;
            color: var(--primary-color);
            font-weight: 500;
        }
        
        /* 文章导航样式 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 60px 0 40px;
            padding: 30px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .nav-item {
            flex: 1;
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
        }
        
        .nav-item:hover {
            background: rgba(10, 42, 94, 0.05);
        }
        
        .nav-item.prev {
            text-align: left;
            margin-right: 15px;
        }
        
        .nav-item.next {
            text-align: right;
            margin-left: 15px;
        }
        
        .nav-label {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 10px;
            display: block;
        }
        
        .nav-title {
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .nav-title:hover {
            color: var(--secondary-color);
        }
        
        /* 相关文章样式 */
        .related-articles {
            margin-top: 60px;
        }
        
        .related-title {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .related-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }
        
        .related-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }
        
        .related-image {
            height: 180px;
            overflow: hidden;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .related-item:hover .related-image img {
            transform: scale(1.1);
        }
        
        .related-content {
            padding: 20px;
        }
        
        .related-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .related-content h4 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .related-content h4 a:hover {
            color: var(--secondary-color);
        }
        
        .related-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* 响应式设计 - 独享部分 */
        @media (max-width: 992px) {
            .article-body h2 {
                font-size: 1.8rem;
            }
            
            .article-body h3 {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.8rem;
            }
            
            .article-meta {
                flex-direction: column;
                gap: 15px;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-item.prev,
            .nav-item.next {
                margin: 0;
                text-align: center;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            section {
                padding: 80px 0;
            }
            
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-header h1 {
                font-size: 2.2rem;
            }
            
            .page-header p {
                font-size: 1.1rem;
            }
            
            .article-body {
                font-size: 1rem;
            }
            
            .article-body h2 {
                font-size: 1.6rem;
            }
            
            .article-body h3 {
                font-size: 1.4rem;
            }
        }