/* 文章主体区域 */
        .article-container {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        /* 文章内容区 */
        .article-content {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }

        .article-header {
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 30px;
        }

        .article-category {
            display: inline-block;
            padding: 6px 16px;
            background-color: rgba(0, 51, 141, 0.1);
            color: var(--zh-blue);
            border-radius: 50px;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .article-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 20px;
            color: var(--zh-dark-blue);
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: #999;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .article-banner {
            width: 100%;
            height: 500px;
            border-radius: 8px;
            object-fit: cover;
            margin-bottom: 30px;
        }

        .article-body {
            font-size: 16px;
            color: var(--text-primary);
            line-height: 1.8;
        }

        .article-body p {
            margin-bottom: 25px;
            text-align: justify;
        }

        .article-body h2 {
            font-size: 24px;
            font-weight: 600;
            margin: 40px 0 20px;
            color: var(--zh-dark-blue);
            border-left: 4px solid var(--zh-gold);
            padding-left: 15px;
        }

        .article-body h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--zh-blue);
        }

        .article-body img {
            max-width: 100%;
            border-radius: 8px;
            margin: 20px 0;
        }

        .article-body ul, 
        .article-body ol {
            margin: 15px 0 25px 30px;
        }

        .article-body li {
            margin-bottom: 10px;
        }

        .article-body blockquote {
            border-left: 4px solid var(--zh-gold);
            padding: 20px;
            background-color: var(--zh-gray);
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
            font-style: italic;
        }

        /* 文章标签 */
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
            padding-top: 20px;
            border-top: 1px solid var(--border);
           
        }
		 .article-tags a{
		 text-decoration: none; 
		 color: inherit;
		 }
		 
		 
        .tag {
            padding: 6px 16px;
            background-color: rgba(0, 51, 141, 0.1);
            color: var(--zh-blue);
            border-radius: 50px;
            font-size: 13px;
            cursor: pointer;
            transition: var(--transition);
        }

.tag:hover {
    background-color: var(--zh-blue);
    color: #fff !important;
    transform: scale(1.05);
}
/* 如果内部有文字/图标，强制子元素继承白色 */
.tag:hover * {
    color: #fff !important;
}

        /* 分享区域 */
        .article-share {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-top: 1px solid var(--border);
            margin-bottom: 40px;
        }

        .share-title {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .share-buttons {
            display: flex;
            gap: 15px;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 18px;
        }

        .share-btn:hover {
            background-color: var(--zh-blue);
            color: white;
            transform: translateY(-3px);
        }

        /* 上下篇导航 */
        .article-nav {
            display: flex;
            justify-content: space-between;
            border-top: 1px solid var(--border);
            padding-top: 30px;
            gap: 20px;
        }

        .nav-item {
            flex: 1;
        }

        .nav-prev {
            text-align: left;
        }

        .nav-next {
            text-align: right;
        }

        .nav-label {
            font-size: 14px;
            color: #999;
            margin-bottom: 8px;
        }

        .nav-title {
            font-size: 16px;
            color: var(--zh-blue);
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
        }

        .nav-title:hover {
            color: var(--zh-gold);
        }

        /* 侧边栏 */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .sidebar-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--zh-dark-blue);
            position: relative;
            padding-bottom: 15px;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--zh-gold);
        }

        /* 相关推荐 */
        .related-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .related-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border);
            display: flex;
            gap: 15px;
            padding: 15px;
        }

        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .related-img {
            width: 100px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            flex-shrink: 0;
        }

        .related-content {
            flex: 1;
        }

        .related-date {
            font-size: 12px;
            color: #999;
            margin-bottom: 5px;
        }

        .related-title {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            color: var(--text-primary);
            transition: var(--transition);
            cursor: pointer;
        }

        .related-card:hover .related-title {
            color: var(--zh-blue);
        }

        
        
        .social-share {
    display: flex;
    gap: 16px; /* 原 space-x-4 */
}
.share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.25s ease;
}
.share-item.facebook {
    background-color: #1877F2;
}
.share-item.facebook:hover {
    background-color: #166FE5;
}
.share-item.x-twitter {
    background-color: #000000;
}
.share-item.x-twitter:hover {
    background-color: #333333;
}
.share-item.linkedin {
    background-color: #0A66C2;
}
.share-item.linkedin:hover {
    background-color: #095CB1;
}
.share-item.whatsapp {
    background-color: #25D366;
}
.share-item.whatsapp:hover {
    background-color: #21B858;
}
.share-item.pinterest {
    background-color: #E60023;
}
.share-item.pinterest:hover {
    background-color: #cc001f;
}
