/* css/contentDetail.css */
@import "./contentTabulation.css";

/* 全宽内容区（无左侧菜单） */
.right-content-full {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    min-height: 600px;
    padding: 24px 32px;
    box-shadow: var(--shadow-soft);
}

.article-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-align: center;
}

.article-subhead {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 0 16px 0;
}

.article-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.article-meta .meta-divider {
    color: var(--border-color);
}

.separator {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 24px;
}

/* Dark Mode */
html.dark .right-content-full {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

html.dark .article-title {
    color: var(--text-main);
}

html.dark .separator {
    background-color: var(--border-color);
}

/* 固定返回按钮 */
.fixed-back-btn {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 86, 179, 0.7);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    font-size: 12px;
}

.fixed-back-btn:hover {
    background-color: rgba(0, 86, 179, 0.9);
    transform: scale(1.05);
}

.fixed-back-btn .back-icon {
    font-size: 18px;
    line-height: 1;
}

html.dark .fixed-back-btn {
    background-color: rgba(0, 86, 179, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

html.dark .fixed-back-btn:hover {
    background-color: rgba(0, 86, 179, 0.9);
}
