     /* 独享CSS - 文章页面主体内容 */
        
        /* 页面顶部横幅 */
        .page-banner {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.85)), url('/template/jia/images/10.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px 80px;
            margin-top: 70px;
        }
        
        .page-banner h1 {
            font-size: 48px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 文章内容区域 */
        .article-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }
        
        .article-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 50px;
            margin-bottom: 50px;
        }
        
        .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-color: rgba(255, 107, 53, 0.1);
            color: var(--accent-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }
        
        .article-date {
            color: #777;
            font-size: 14px;
        }
        
        .article-date i {
            margin-right: 5px;
        }
        
        /* 文章内容样式 */
        .article-content {
            line-height: 1.8;
        }
        
        .article-content h2 {
            font-size: 28px;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .article-content h3 {
            font-size: 24px;
            color: var(--primary-color);
            margin: 35px 0 15px;
        }
        
        .article-content h4 {
            font-size: 20px;
            color: var(--primary-color);
            margin: 30px 0 12px;
        }
        
        .article-content h5 {
            font-size: 18px;
            color: var(--primary-color);
            margin: 25px 0 10px;
        }
        
        .article-content p {
            margin-bottom: 20px;
            font-size: 16px;
            color: var(--text-color);
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .article-content img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--accent-color);
            padding-left: 20px;
            margin: 25px 0;
            font-style: italic;
            color: #666;
            background-color: rgba(255, 107, 53, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-content li {
            margin-bottom: 10px;
        }
        
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .article-content th, .article-content td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .article-content th {
            background-color: var(--light-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .article-content tr:hover {
            background-color: rgba(26, 58, 95, 0.03);
        }
        
        /* 上一篇下一篇导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .nav-prev, .nav-next {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background-color: var(--light-color);
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-color);
            transition: var(--transition);
            width: 48%;
        }
        
        .nav-prev:hover, .nav-next:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-5px);
        }
        
        .nav-prev i {
            margin-right: 10px;
        }
        
        .nav-next i {
            margin-left: 10px;
        }
        
        .nav-next {
            text-align: right;
            justify-content: flex-end;
        }
        
        .nav-label {
            font-size: 14px;
            color: #777;
            margin-bottom: 5px;
        }
        
        .nav-prev:hover .nav-label, .nav-next:hover .nav-label {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .nav-title {
            font-weight: 600;
            font-size: 16px;
        }
        
        /* 相关文章区域 */
        .related-articles {
            margin-top: 60px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .article-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            animation: fadeInUp 0.6s ease;
        }
        
        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .article-image {

            height: 180px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-card-content {
            padding: 20px;
        }
        
        .article-card-category {
            display: inline-block;
            background-color: rgba(255, 107, 53, 0.1);
            color: var(--accent-color);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .article-card-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .article-card-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .article-card-content h3 a:hover {
            color: var(--accent-color);
        }
        
        .article-card-date {
            color: #777;
            font-size: 13px;
            display: flex;
            align-items: center;
        }
        
        .article-card-date i {
            margin-right: 5px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .article-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 36px;
            }
            
            .page-banner p {
                font-size: 18px;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-prev, .nav-next {
                width: 100%;
                margin-bottom: 15px;
            }
            
            .articles-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .page-banner {
                padding: 120px 20px 60px;
            }
            
            .page-banner h1 {
                font-size: 28px;
            }
            
            .page-banner p {
                font-size: 16px;
            }
            
            .article-container {
                padding: 20px;
            }
            
            .article-content h2 {
                font-size: 24px;
            }
            
            .article-content h3 {
                font-size: 20px;
            }
            
            .article-content h4 {
                font-size: 18px;
            }
            
            .article-content h5 {
                font-size: 16px;
            }
        }