
        /* 独享CSS - 文章页面样式与动画 */
        
        /* 页面标题 */
        .page-header {
            padding: 150px 0 80px;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.9), rgba(30, 58, 95, 0.9));
            color: white;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/12.jpg') center/cover;
            z-index: -1;
        }
        
        .page-title {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            display: inline-block;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
            animation: titleLine 3s infinite;
        }
        
        @keyframes titleLine {
            0% { width: 0; }
            50% { width: 100px; }
            100% { width: 0; }
        }
        
        .page-meta {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }
        
        .page-date, .page-category {
            display: flex;
            align-items: center;
        }
        
        .page-date i, .page-category i {
            margin-right: 5px;
            color: var(--secondary-color);
        }
        
        /* 文章内容样式 */
        .article-content {
            padding: 80px 0;
            background-color: rgba(247, 250, 252, 0.9);
            position: relative;
        }
        
        .article-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(10,26,53,0.03)"/></svg>');
            background-size: cover;
        }
        
        .article-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .article-body {
            background-color: white;
            border-radius: 15px;
            padding: 60px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            width: 100%;
            /* 文章主体占据横向所有位置 */
            max-width: 100%;
        }
        
        .article-body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
            background-size: 200% 100%;
            animation: cardLine 3s linear infinite;
            border-radius: 15px 15px 0 0;
        }
        
        @keyframes cardLine {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* 文章正文样式 */
        .article-text {
            line-height: 1.8;
            font-size: 18px;
            color: var(--dark-color);
        }
        
        .article-text h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            position: relative;
            font-weight: 700;
        }
        
        .article-text h2::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 2px;
            background-color: var(--secondary-color);
        }
        
        .article-text h3 {
            font-size: 26px;
            color: var(--primary-color);
            margin: 35px 0 15px;
            font-weight: 600;
        }
        
        .article-text h4 {
            font-size: 22px;
            color: var(--accent-color);
            margin: 30px 0 15px;
            font-weight: 600;
        }
        
        .article-text h5 {
            font-size: 18px;
            color: var(--accent-color);
            margin: 25px 0 10px;
            font-weight: 600;
        }
        
        .article-text p {
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .article-text img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .article-text img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .article-text blockquote {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(30, 58, 95, 0.1));
            border-left: 4px solid var(--secondary-color);
            margin: 30px 0;
            padding: 25px;
            border-radius: 0 10px 10px 0;
            position: relative;
            overflow: hidden;
        }
        
        .article-text blockquote::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: highlightShine 5s infinite;
        }
        
        @keyframes highlightShine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }
        
        .article-text blockquote p {
            margin: 0;
            font-weight: 500;
            color: var(--primary-color);
            position: relative;
            z-index: 1;
        }
        
        .article-text ul, .article-text ol {
            margin: 20px 0;
            padding-left: 30px;
        }
        
        .article-text li {
            margin-bottom: 10px;
        }
        
        .article-text table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .article-text th, .article-text td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .article-text th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .article-text tr:nth-child(even) {
            background-color: rgba(247, 250, 252, 0.5);
        }
        
        /* 上一篇下一篇导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }
        
        .nav-item-prev, .nav-item-next {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-decoration: none;
            color: var(--dark-color);
        }
        
        .nav-item-prev {
            margin-right: 15px;
        }
        
        .nav-item-next {
            margin-left: 15px;
            justify-content: flex-end;
            text-align: right;
        }
        
        .nav-item-prev:hover, .nav-item-next:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            color: var(--primary-color);
        }
        
        .nav-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
            margin-right: 15px;
        }
        
        .nav-item-next .nav-icon {
            margin-right: 0;
            margin-left: 15px;
        }
        
        .nav-text {
            flex: 1;
        }
        
        .nav-label {
            font-size: 14px;
            color: var(--dark-color);
            opacity: 0.7;
            margin-bottom: 5px;
        }
        
        .nav-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* 相关文章 */
        .related-articles {
            margin-top: 80px;
        }
        
        .section-title {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .related-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .related-item {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .related-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
            background-size: 200% 100%;
            animation: cardLine 3s linear infinite;
        }
        
        .related-item.animate {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .related-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .related-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .related-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.3), transparent);
            z-index: 1;
            transition: var(--transition);
        }
        
        .related-item:hover .related-image::before {
            background: linear-gradient(135deg, rgba(10, 26, 53, 0.1), rgba(212, 175, 55, 0.2));
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .related-item:hover .related-image img {
            transform: scale(1.05);
        }
        
        .related-content {
            padding: 25px;
        }
        
        .related-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--dark-color);
            opacity: 0.7;
        }
        
        .related-date {
            display: flex;
            align-items: center;
        }
        
        .related-date i {
            margin-right: 5px;
            color: var(--secondary-color);
        }
        
        .related-tag {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--secondary-color);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }
        
        .related-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 700;
            line-height: 1.3;
        }
        
        .related-title a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .related-title a:hover {
            color: var(--secondary-color);
        }
        
        .related-excerpt {
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .read-more {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .read-more::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .read-more:hover::before {
            width: 100%;
        }
        
        .read-more i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* 响应式调整 */
        @media screen and (max-width: 768px) {
            .page-title {
                font-size: 36px;
            }
            
            .article-body {
                padding: 40px 25px;
            }
            
            .article-text {
                font-size: 16px;
            }
            
            .article-text h2 {
                font-size: 26px;
            }
            
            .article-text h3 {
                font-size: 22px;
            }
            
            .article-text h4 {
                font-size: 20px;
            }
            
            .article-text h5 {
                font-size: 18px;
            }
            
            .article-navigation {
                flex-direction: column;
            }
            
            .nav-item-prev, .nav-item-next {
                margin: 0 0 15px 0;
            }
            
            .related-list {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 28px;
            }
        }