   /* 独享CSS部分 - 文章页面 */
        
        /* 页面头部 */
        .article-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            padding: 180px 0 100px;
            margin-top: 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .article-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/1.jpg') center/cover no-repeat;
            opacity: 0.2;
            z-index: 0;
        }
        
        .article-header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .article-header h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .article-header p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .article-meta span {
            margin: 0 15px;
            display: flex;
            align-items: center;
            font-size: 16px;
        }
        
        .article-meta i {
            margin-right: 8px;
            color: var(--accent-color);
        }
        
        /* 文章内容 */
        .article-content {
            background: #fff;
        }
        
        .article-container {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .article-body {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .article-body h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin: 50px 0 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-light);
            font-weight: 700;
        }
        
        .article-body h3 {
            font-size: 26px;
            color: var(--primary-color);
            margin: 40px 0 20px;
            font-weight: 600;
        }
        
        .article-body h4 {
            font-size: 22px;
            color: var(--secondary-color);
            margin: 30px 0 15px;
            font-weight: 600;
        }
        
        .article-body h5 {
            font-size: 18px;
            color: var(--secondary-color);
            margin: 25px 0 12px;
            font-weight: 600;
        }
        
        .article-body p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: var(--text-color);
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .article-body img:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-heavy);
        }
        
        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-body li {
            margin-bottom: 10px;
            font-size: 17px;
            line-height: 1.7;
        }
        
        .article-body blockquote {
            background: var(--accent-light);
            border-left: 4px solid var(--accent-color);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        
        .article-body blockquote p {
            margin: 0;
            font-size: 18px;
            color: var(--primary-color);
        }
        
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .article-body th, .article-body td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .article-body th {
            background: var(--primary-color);
            color: #fff;
            font-weight: 600;
        }
        
        .article-body tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .article-body tr:hover {
            background: var(--accent-light);
        }
        
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            margin: 40px 0 20px;
        }
        
        .article-tag {
            background: var(--accent-light);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 30px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .article-tag:hover {
            background: var(--accent-color);
            color: #fff;
        }
        
        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 60px 0 40px;
            padding-top: 40px;
            border-top: 1px solid #eee;
        }
        
        .nav-prev, .nav-next {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 20px;
            border-radius: 8px;
            transition: var(--transition);
            background: #f9f9f9;
        }
        
        .nav-prev {
            margin-right: 15px;
            text-align: left;
        }
        
        .nav-next {
            margin-left: 15px;
            text-align: right;
            flex-direction: row-reverse;
        }
        
        .nav-prev:hover, .nav-next:hover {
            background: var(--accent-light);
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        
        .nav-icon {
            font-size: 24px;
            color: var(--accent-color);
            margin: 0 15px;
        }
        
        .nav-text {
            flex: 1;
        }
        
        .nav-text h4 {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .nav-text h3 {
            font-size: 18px;
            color: var(--primary-color);
            font-weight: 600;
            margin: 0;
        }
        
        /* 相关文章 */
        .related-articles {
            background: #f9f9f9;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .related-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .related-image {
            height: 200px;
            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: 25px;
        }
        
        .related-content h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1.4;
        }
        
        .related-content h3 a {
            color: var(--primary-color);
            transition: var(--transition);
            text-decoration: none;
            border-bottom: none;
        }
        
        .related-content h3 a:hover {
            color: var(--accent-color);
        }
        
        .related-meta {
            display: flex;
            justify-content: space-between;
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .related-meta span {
            display: flex;
            align-items: center;
        }
        
        .related-meta i {
            margin-right: 5px;
            color: var(--accent-color);
        }
        
        /* CTA部分 */
        .cta-section {
            background: url('/template/jia/images/1.jpg') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            position: relative;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.8), rgba(28, 58, 108, 0.8));
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* 响应式设计 - 独享部分 */
        @media (max-width: 1200px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .article-header h1 {
                font-size: 36px;
            }
            
            .article-header p {
                font-size: 18px;
            }
            
            .article-body h2 {
                font-size: 28px;
            }
            
            .article-body h3 {
                font-size: 24px;
            }
            
            .article-body h4 {
                font-size: 20px;
            }
            
            .article-body p {
                font-size: 16px;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-prev, .nav-next {
                margin: 0 0 15px 0;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .article-header h1 {
                font-size: 32px;
            }
            
            .article-header p {
                font-size: 16px;
            }
            
            .article-body h2 {
                font-size: 26px;
            }
            
            .article-body h3 {
                font-size: 22px;
            }
        }