     /* ====== 文章页面独享CSS ====== */
        
        /* 页面顶部横幅 */
        .page-banner {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            background: linear-gradient(rgba(26,115,232,0.8), rgba(0,201,183,0.8)), url('/template/jia/images/9.jpg') center/cover no-repeat;
        }
        
        .banner-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            0% { transform: translateY(30px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }
        
        .page-banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        
        .page-banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }
        
        /* 文章内容区域 */
        .article-content {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 50px;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .article-date {
            margin-right: 20px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .article-category {
            background: rgba(0, 201, 183, 0.1);
            color: var(--accent-color);
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        /* 文章主体样式 */
        .article-body {
            width: 100%;
            max-width: 100%;
        }
        
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-top: 40px;
            margin-bottom: 20px;
            text-align: left;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        
        .article-body h2:after {
            display: none;
        }
        
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-top: 30px;
            margin-bottom: 15px;
        }
        
        .article-body h4 {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-top: 25px;
            margin-bottom: 12px;
        }
        
        .article-body h5 {
            font-size: 1.1rem;
            color: var(--dark-color);
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        .article-body p {
            line-height: 1.8;
            margin-bottom: 20px;
            color: #444;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: block;
        }
        
        .article-body ul, .article-body ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-body li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .article-body blockquote {
            border-left: 4px solid var(--secondary-color);
            background: rgba(255, 107, 53, 0.05);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        
        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .article-body th, .article-body td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .article-body th {
            background: var(--primary-color);
            color: #fff;
        }
        
        .article-body tr:nth-child(even) {
            background: rgba(26, 115, 232, 0.05);
        }
        
        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0 30px;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .nav-prev, .nav-next {
            display: flex;
            align-items: center;
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
            max-width: 45%;
        }
        
        .nav-prev:hover, .nav-next:hover {
            background: rgba(26, 115, 232, 0.05);
            transform: translateY(-3px);
        }
        
        .nav-prev i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .nav-next i {
            margin-left: 10px;
            color: var(--primary-color);
        }
        
        .nav-text {
            display: flex;
            flex-direction: column;
        }
        
        .nav-label {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 5px;
        }
        
        .nav-title {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        /* 相关文章 */
        .related-articles {
            background: var(--light-color);
            padding: 60px 0;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            animation: fadeInUp 1s ease;
        }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .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 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .related-content h3 a {
            color: var(--dark-color);
            text-decoration: none;
        }
        
        .related-content h3 a:hover {
            color: var(--primary-color);
        }
        
        .related-excerpt {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* 动态背景元素 */
        .bg-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(26, 115, 232, 0.05);
            animation: floatElement 20s infinite linear;
        }
        
        @keyframes floatElement {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(720deg); }
        }