/* 新闻详情页样式 */

.article-main {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px;
}

.article-header {
    margin-bottom: 24px;
}

.article-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 16px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.article-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-cover {
    margin-bottom: 24px;
    border-radius: var(--radius);
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 16px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}

.article-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tags .tag {
    padding: 6px 16px;
    background: var(--bg);
    border-radius: 16px;
    font-size: 13px;
    color: var(--text-light);
    transition: var(--transition);
}

.article-tags .tag:hover {
    background: var(--primary);
    color: #fff;
}

.article-share {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.weibo { background: #e6162d; }
.share-btn.weixin { background: #07c160; }
.share-btn.qq { background: #12b7f5; }

/* 相关推荐 */
.related-list {
    list-style: none;
    padding: 16px;
}

.related-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.related-list li:last-child {
    border-bottom: none;
}

.related-list a {
    font-size: 14px;
    color: var(--text);
    display: block;
    transition: var(--transition);
}

.related-list a:hover {
    color: var(--primary);
    padding-left: 8px;
}
