
        /* ===== 文章详情页独享CSS部分 ===== */
        .article-page {
            margin-top: 100px;
            min-height: calc(100vh - 400px);
        }
        
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            animation: textGlow 3s infinite alternate;
        }
        
        @keyframes textGlow {
            0% { text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); }
            100% { text-shadow: 2px 2px 20px rgba(212, 175, 55, 0.7); }
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
        }
        
        .article-meta span {
            display: flex;
            align-items: center;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        /* 文章内容样式 */
        .article-container {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .article-content {
            flex: 3;
            background: white;
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .article-sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        /* 文章主体内容样式 */
        .article-body {
            width: 100%;
            max-width: 100%;
        }
        
        .article-body h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
            position: relative;
            animation: fadeInUp 0.6s ease;
        }
        
        .article-body h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin: 25px 0 12px;
            animation: fadeInUp 0.6s ease 0.1s both;
        }
        
        .article-body h4 {
            font-size: 1.3rem;
            color: var(--accent-color);
            margin: 20px 0 10px;
            animation: fadeInUp 0.6s ease 0.2s both;
        }
        
        .article-body h5 {
            font-size: 1.1rem;
            color: var(--dark-color);
            margin: 15px 0 8px;
            animation: fadeInUp 0.6s ease 0.3s both;
        }
        
        .article-body p {
            margin-bottom: 15px;
            line-height: 1.7;
            animation: fadeInUp 0.6s ease 0.4s both;
        }
        
        .article-body img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease 0.5s both;
        }
        
        .article-body img:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 引用块样式 */
        .blockquote {
            border-left: 4px solid var(--secondary-color);
            padding: 20px;
            margin: 25px 0;
            background: rgba(212, 175, 55, 0.05);
            border-radius: 0 8px 8px 0;
            font-style: italic;
            position: relative;
            animation: fadeInUp 0.6s ease 0.6s both;
        }
        
        .blockquote::before {
            content: '"';
            font-size: 3rem;
            color: var(--secondary-color);
            position: absolute;
            top: -10px;
            left: 10px;
            opacity: 0.3;
        }
        
        /* 列表样式 */
        .article-body ul, .article-body ol {
            margin: 15px 0 15px 20px;
            animation: fadeInUp 0.6s ease 0.7s both;
        }
        
        .article-body li {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        /* 侧边栏卡片 */
        .sidebar-card {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .sidebar-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .sidebar-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary-color);
        }
        
        .popular-articles {
            list-style: none;
        }
        
        .popular-articles li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .popular-articles li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .popular-articles a {
            color: var(--dark-color);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            line-height: 1.4;
        }
        
        .popular-articles a:hover {
            color: var(--secondary-color);
        }
        
        .article-date {
            font-size: 0.85rem;
            color: var(--gray-color);
            margin-top: 5px;
        }
        
        .contact-card {
            text-align: center;
        }
        
        .contact-phone-large {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 20px 0;
            display: block;
            animation: phonePulse 2s infinite;
        }
        
        .contact-btn {
            display: inline-block;
            width: 100%;
            padding: 15px;
            background: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            margin-top: 10px;
        }
        
        .contact-btn:hover {
            background: #b8941f;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* 上下篇导航 */
        .post-navigation {
            display: flex;
            justify-content: space-between;
            margin: 50px 0;
            padding: 20px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .nav-previous, .nav-next {
            flex: 1;
        }
        
        .nav-next {
            text-align: right;
        }
        
        .nav-link {
            display: inline-block;
            padding: 12px 20px;
            background: var(--light-color);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .nav-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .nav-link i {
            margin: 0 5px;
        }
        
        /* 相关文章 */
        .related-articles {
            margin: 50px 0;
        }
        
        .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-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .related-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .related-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .related-image {
            height: 180px;
            overflow: hidden;
        }
        
        .related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .related-card:hover .related-image img {
            transform: scale(1.1);
        }
        
        .related-content {
            padding: 20px;
        }
        
        .related-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .related-content h4 a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .related-content h4 a:hover {
            color: var(--secondary-color);
        }
        
        .related-content p {
            color: var(--gray-color);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .related-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray-color);
            font-size: 0.85rem;
        }
        
        @media (max-width: 992px) {
            .article-container {
                flex-direction: column;
            }
            
            .article-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .sidebar-card {
                flex: 1;
                min-width: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .post-navigation {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav-next {
                text-align: left;
            }
            
            .article-sidebar {
                flex-direction: column;
            }
            
            .article-content {
                padding: 25px;
            }
        }