     /* 独享CSS部分 - 文章页面内容 */
        .page-hero {
            height: 40vh;
            background: linear-gradient(135deg, rgba(255,107,53,0.9), rgba(0,168,232,0.8)), url('/template/jia/images/6.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }
        
        .page-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }
        
        .page-hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 800;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .page-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .section {
            padding: 80px 0;
        }
        
        /* 文章主体样式 - 修改部分 */
        .article-container {
            width: 100%;
            max-width: 1200px; /* 与导航栏和底部容器宽度一致 */
            margin: 0 auto; /* 水平居中 */
            padding: 0 20px; /* 左右留间距 */
        }
        
        .article-content {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 50px;
            width: 100%; /* 确保宽度为100% */
            max-width: 100%; /* 确保不超过容器宽度 */
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .article-category {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .article-date {
            color: #888;
            font-size: 0.9rem;
        }
        
        /* 文章内容样式 */
        .article-body {
            width: 100%;
            line-height: 1.8;
        }
        
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin: 30px 0 15px;
        }
        
        .article-body h4 {
            font-size: 1.3rem;
            color: var(--dark);
            margin: 25px 0 12px;
        }
        
        .article-body h5 {
            font-size: 1.1rem;
            color: var(--dark);
            margin: 20px 0 10px;
        }
        
        .article-body p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: block;
        }
        
        .article-body blockquote {
            background: var(--light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        
        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-body li {
            margin-bottom: 10px;
        }
        
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .article-body th, .article-body td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }
        
        .article-body th {
            background: var(--light);
            font-weight: 600;
        }
        
        .article-body tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        /* 文章导航样式 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0;
            padding: 30px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .nav-item {
            flex: 1;
            padding: 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .nav-item:hover {
            background: var(--light);
            transform: translateY(-5px);
        }
        
        .nav-prev, .nav-next {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
        }
        
        .nav-prev {
            text-align: left;
            margin-right: 15px;
        }
        
        .nav-next {
            text-align: right;
            margin-left: 15px;
            flex-direction: row-reverse;
        }
        
        .nav-icon {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 0 15px;
        }
        
        .nav-text h4 {
            font-size: 1rem;
            color: #888;
            margin-bottom: 5px;
        }
        
        .nav-text h3 {
            font-size: 1.2rem;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        
        .nav-item:hover .nav-text h3 {
            color: var(--primary);
        }
        
        /* 相关文章样式 - 修改部分 */
        .related-articles {
            margin-top: 60px;
            width: 100%; /* 确保宽度为100% */
            max-width: 1200px; /* 与导航栏和底部容器宽度一致 */
            margin-left: auto; /* 水平居中 */
            margin-right: auto; /* 水平居中 */
            padding: 0 20px; /* 左右留间距 */
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .knowledge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .knowledge-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .knowledge-card.animate {
            animation: fadeInUp 0.8s forwards;
        }
        
        .knowledge-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .knowledge-image {
            height: 200px;
            overflow: hidden;
        }
        
        .knowledge-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .knowledge-card:hover .knowledge-image img {
            transform: scale(1.05);
        }
        
        .knowledge-card-content {
            padding: 25px;
        }
        
        .knowledge-category {
            display: inline-block;
            background: var(--accent);
            color: var(--dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .knowledge-card-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .knowledge-card-content h3 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .knowledge-card-content h3 a:hover {
            color: var(--primary);
        }
        
        .knowledge-card-content p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .read-more {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 动画关键帧 */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 延迟动画 */
        .knowledge-card:nth-child(1) { animation-delay: 0.1s; }
        .knowledge-card:nth-child(2) { animation-delay: 0.2s; }
        .knowledge-card:nth-child(3) { animation-delay: 0.3s; }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 2.2rem;
            }
            
            .article-content {
                padding: 30px 20px;
            }
            
            .article-body h2 {
                font-size: 1.6rem;
            }
            
            .article-body h3 {
                font-size: 1.4rem;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-prev, .nav-next {
                margin: 10px 0;
            }
            
            .knowledge-grid {
                grid-template-columns: 1fr;
            }
        }