
        /* ===== 独享CSS - 文章页面 ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/template/jia/images/3.jpg') center/cover no-repeat;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-top: 80px;
        }

        .page-header-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .page-header-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 文章内容区域 */
        .article-section {
            background: var(--light-color);
            position: relative;
            padding: 80px 0;
        }

        .article-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/template/jia/images/12.jpg') center/cover no-repeat;
            opacity: 0.05;
            z-index: 0;
        }

        .article-container {
            position: relative;
            z-index: 1;
            max-width: 100%;
            width: 100%;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .article-info {
            display: flex;
            align-items: center;
            gap: 20px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .article-info span {
            display: flex;
            align-items: center;
        }

        .article-info i {
            margin-right: 5px;
            color: var(--secondary-color);
        }

        .article-category {
            background: var(--secondary-color);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-content {
            background: #fff;
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 50px;
            margin-bottom: 60px;
            width: 100%;
            max-width: 100%;
        }

        /* 文章内容样式 */
        .article-content h2 {
            font-size: 2rem;
            color: var(--primary-color);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .article-content h3 {
            font-size: 1.6rem;
            color: var(--primary-color);
            margin: 30px 0 15px;
        }

        .article-content h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin: 25px 0 12px;
        }

        .article-content h5 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin: 20px 0 10px;
            font-weight: 600;
        }

        .article-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            color: var(--text-color);
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .article-content blockquote {
            background: rgba(201, 163, 94, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 30px 0;
            font-style: italic;
            color: var(--primary-color);
        }

        .article-content ul, .article-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .article-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .article-content ul li {
            list-style-type: disc;
        }

        .article-content ol li {
            list-style-type: decimal;
        }

        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }

        .article-content th, .article-content td {
            border: 1px solid #ddd;
            padding: 12px 15px;
            text-align: left;
        }

        .article-content th {
            background: var(--primary-color);
            color: #fff;
            font-weight: 600;
        }

        .article-content tr:nth-child(even) {
            background: #f9f9f9;
        }

        /* 文章导航 */
        .article-navigation {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
            padding: 30px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .nav-item {
            display: flex;
            align-items: center;
            max-width: 45%;
            transition: var(--transition);
        }

        .nav-item:hover {
            transform: translateY(-5px);
        }

        .nav-prev, .nav-next {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--text-color);
        }

        .nav-prev i {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }

        .nav-next i {
            font-size: 1.2rem;
            color: var(--secondary-color);
        }

        .nav-text {
            display: flex;
            flex-direction: column;
        }

        .nav-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .nav-title {
            font-weight: 600;
            color: var(--primary-color);
            line-height: 1.4;
        }

        /* 相关文章 */
        .related-articles {
            margin-bottom: 60px;
        }

        .related-articles h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .related-articles h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .related-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .related-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px 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 h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            line-height: 1.4;
        }

        .related-content h4 a {
            text-decoration: none;
            transition: var(--transition);
        }

        .related-content h4 a:hover {
            color: var(--secondary-color);
        }

        .related-meta {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: var(--text-light);
            font-size: 0.85rem;
        }

        .related-meta span {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .related-meta i {
            margin-right: 5px;
            color: var(--secondary-color);
        }

        .related-content p {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: #fff;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }
            
            .contact-info {
                display: none;
            }
            
            .page-header-content h1 {
                font-size: 2.5rem;
            }
            
            .article-content {
                padding: 30px 20px;
            }
            
            .article-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-item {
                max-width: 100%;
            }
            
            .related-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .friend-links ul {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .page-header-content h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .article-section {
                padding: 60px 0;
            }
            
            .article-content h2 {
                font-size: 1.6rem;
            }
            
            .article-content h3 {
                font-size: 1.3rem;
            }
            
            .article-content h4 {
                font-size: 1.1rem;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }