      /* 独享CSS部分 - 文章页面内容 */
        
        /* 页面标题部分 */
        .page-header {
            background: linear-gradient(rgba(10,36,99,0.9), rgba(10,36,99,0.9)), url('/template/jia/images/13.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0 80px;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 文章内容部分 */
        .article-section {
            padding: 80px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .article-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 50px;
            margin-bottom: 40px;
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .article-info {
            display: flex;
            gap: 20px;
            color: #666;
        }
        
        .article-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .article-category {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        /* 文章主体样式 - 占据横向所有位置 */
        .article-content {
            width: 100%;
            max-width: 100%;
        }
        
        /* 文章内标题样式 */
        .article-content h2 {
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            font-size: 1.8rem;
        }
        
        .article-content h3 {
            color: var(--primary-color);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        
        .article-content h4 {
            color: var(--primary-color);
            margin: 25px 0 12px;
            font-size: 1.3rem;
        }
        
        .article-content h5 {
            color: var(--primary-color);
            margin: 20px 0 10px;
            font-size: 1.1rem;
        }
        
        /* 段落样式 */
        .article-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        /* 图片自适应 */
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* 列表样式 */
        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        /* 引用样式 */
        .article-content blockquote {
            background: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
        }
        
        /* 表格样式 */
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        
        .article-content th, .article-content td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        
        .article-content th {
            background: var(--primary-color);
            color: white;
        }
        
        .article-content tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        /* 文章底部导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .nav-item-prev, .nav-item-next {
            flex: 1;
        }
        
        .nav-item-next {
            text-align: right;
        }
        
        .nav-link-prev, .nav-link-next {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            padding: 10px 20px;
            border-radius: 5px;
        }
        
        .nav-link-prev:hover, .nav-link-next:hover {
            background: #f8f9fa;
            color: var(--secondary-color);
        }
        
        .nav-link-prev i {
            margin-right: 10px;
        }
        
        .nav-link-next i {
            margin-left: 10px;
        }
        
        .nav-title {
            display: block;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        /* 相关文章部分 */
        .related-articles {
            margin-top: 60px;
        }
        
        .section-title {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-card {
            background: white;
            border-radius: 10px;
            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-content h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .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;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .related-meta {
            display: flex;
            justify-content: space-between;
            color: #999;
            font-size: 0.8rem;
        }
        
        /* 背景动画元素 */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(10, 36, 99, 0.03);
            animation: float 15s infinite linear;
        }
        
        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .bg-circle:nth-child(3) {
            width: 400px;
            height: 400px;
            top: 30%;
            left: 60%;
            animation-delay: 4s;
        }
        
        .bg-circle:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 70%;
            left: 10%;
            animation-delay: 6s;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .article-container {
                padding: 30px 20px;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-item-prev, .nav-item-next {
                text-align: left;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
        }