
        /* 独享CSS - 文章详情页面 */
        
        /* 页面横幅 */
        .page-banner {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.7)), url('/template/jia/images/12.jpg');
            background-size: cover;
            background-position: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .banner-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        .banner-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }
        
        /* 文章主体 */
        .article-section {
            padding: 60px 0;
        }
        
        .article-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .article-header {
            padding: 40px 40px 20px;
            border-bottom: 1px solid #eee;
        }
        
        .article-title {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }
        
        .article-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
            color: var(--secondary-color);
        }
        
        .article-category {
            display: inline-block;
            background: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 15px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .article-content {
            padding: 40px;
        }
        
        /* 文章内容样式 */
        .article-content h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .article-content h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 25px 0 15px;
        }
        
        .article-content h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin: 20px 0 10px;
        }
        
        .article-content h5 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin: 15px 0 10px;
        }
        
        .article-content p {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 25px auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            margin: 25px 0;
            background: var(--light-color);
            font-style: italic;
        }
        
        .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;
            border: 1px solid #ddd;
            text-align: left;
        }
        
        .article-content th {
            background: var(--primary-color);
            color: white;
        }
        
        .article-content tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            padding: 30px 40px;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .nav-item {
            display: flex;
            align-items: center;
            max-width: 45%;
            transition: var(--transition);
        }
        
        .nav-item:hover {
            color: var(--secondary-color);
        }
        
        .nav-prev i {
            margin-right: 10px;
        }
        
        .nav-next i {
            margin-left: 10px;
        }
        
        .nav-text {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        /* 相关文章 */
        .related-articles {
            padding: 40px;
        }
        
        .related-title {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .related-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .related-card {
            background: var(--light-color);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .related-image {
            height: 160px;
            overflow: hidden;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .related-card:hover .related-image img {
            transform: scale(1.05);
        }
        
        .related-content {
            padding: 20px;
        }
        
        .related-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .related-content h3 a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        .related-content h3 a:hover {
            color: var(--secondary-color);
        }
        
        .related-meta {
            font-size: 0.85rem;
            color: #666;
        }