/* tapaim Portal System 4.0 - 1:1 Pixel Match with EhViewer Style */
:root {
    --portal-teal: #00A4B1;
    --portal-bg: #f8f9fa;
    --card-border: #d1d5db;
    --text-primary: #212529;
    --text-secondary: #4b5563;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    background: var(--portal-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 顶栏 */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--portal-teal);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 15px;
}

/* 汉堡按钮 */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 20px;
}

.header-logo img {
    height: 36px;
}

.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--portal-teal);
}

.nav-dl-btn {
    background: var(--portal-teal);
    color: #fff !important;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
}

/* 手机侧滑菜单基础 */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1500;
    transition: 0.4s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    font-weight: 800;
}



.main-wrapper {
    padding: 25px 0;
}

/* 通用模块卡片样式 */
.block-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.block-title {
    font-size: 16px;
    font-weight: 800;
    padding: 12px 18px;
    border-bottom: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portal-teal {
    background: var(--portal-teal) !important;
    color: #fff !important;
}

/* 品牌沉浸式 Hero 区 - 官网架构 */
.hero-brand {
    margin-bottom: 40px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #fff 0%, #f9fdfd 100%);
    border-radius: 12px;
    border: 1px solid #eef2f3;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1.2;
}

.hero-tag {
    display: inline-block;
    background: #e0f2f1;
    color: var(--portal-teal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
}

.btn-hero-prime {
    background: var(--portal-teal);
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.btn-hero-second {
    background: #fff;
    color: #333;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.btn-hero-prime:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 164, 177, 0.3);
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-logo-display {
    width: 480px;
    height: 270px;
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 164, 177, 0.12);
    border: none;
    overflow: hidden;
    transition: transform 0.3s;
}

.hero-logo-display:hover {
    transform: translateY(-5px);
}

.hero-logo-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* 详情顶部卡片 - 官网级精修布局 */
.detail-main-box {
    padding: 25px;
    border: 1px solid #e0e4e8;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.detail-top {
    display: flex;
    gap: 30px;
    align-items: center;
}

.detail-icon {
    width: 140px;
    height: 140px;
    border-radius: 18px;
    border: 1px solid #f0f1f3;
    overflow: hidden;
    flex-shrink: 0;
    padding: 2px;
}

.detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    flex: 1;
}

.detail-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.detail-title h1 {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.status-badge {
    background: #f1f8e9;
    color: #4caf50;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 3px;
    margin-left: 15px;
    border: 1px solid #dcedc8;
    font-weight: bold;
}

.meta-grid {
    display: grid;
    grid-template-columns: 260px 280px;
    gap: 12px 20px;
}

.meta-grid p {
    font-size: 13.5px;
    color: #333;
    margin: 0;
}

.meta-grid label {
    color: #8e949a;
    width: 75px;
    display: inline-block;
}

.detail-download {
    width: 280px;
    text-align: center;
}

.main-dl-btn {
    background: var(--portal-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    padding: 18px 0;
    display: block;
    border-radius: 4px;
    transition: 0.2s;
}

.main-dl-btn:hover {
    background: #008C98;
    box-shadow: 0 4px 12px rgba(0, 164, 177, 0.3);
}

.safe-icons {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}

/* 教程图文格 */
.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 15px;
}

.tutor-item {
    text-decoration: none;
    display: block;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.tutor-img {
    height: 100px;
    background: #f0f0f0;
    overflow: hidden;
}

.tutor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tutor-item p {
    font-size: 12px;
    color: #333;
    padding: 8px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

/* 历史版本矩阵 - 重写为 4 列 3:4 竖版对标效果 */
.version-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 18px;
    background: #fff;
}

.v-card-vertical {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    height: 420px;
    overflow: hidden;
    position: relative;
}

.v-card-vertical:hover {
    border-color: var(--portal-teal);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.v-card-top {
    height: 110px;
    background: #f8fbfb;
    display: block;
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.v-card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v-badge-stable {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--portal-teal);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 700;
}

.v-card-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.v-card-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #333;
    margin-bottom: 4px;
}

.v-meta-row {
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.v-card-info .v-desc-long {
    font-size: 12px;
    color: #666;
    line-height: 1.65;
    height: 140px;
    overflow: hidden;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.v-card-bottom {
    padding: 12px 15px 18px;
}

/* 详情页专用联动样式 */
.breadcrumb {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
}

.breadcrumb a {
    color: var(--portal-teal);
    text-decoration: none;
}

.article-header {
    background: #f8fbfb;
    border-left: 5px solid var(--portal-teal);
    padding: 15px 20px;
    margin-bottom: 25px;
}

.article-header h1 {
    font-size: 22px;
    margin: 0;
    color: #333;
}

.article-content {
    line-height: 1.8;
    color: #444;
    font-size: 15px;
    margin-bottom: 50px;
}

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

.article-content strong {
    color: var(--portal-teal);
}

.article-nav {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px;
}

.nav-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    text-decoration: none;
    color: #666;
    transition: 0.2s;
}

.nav-item:hover {
    color: var(--portal-teal);
}

.nav-prefix {
    width: 80px;
    flex-shrink: 0;
    color: #999;
}

.nav-title {
    font-weight: 500;
}

.article-main-img {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

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

.article-content h2 {
    font-size: 18px;
    color: #333;
    margin: 35px 0 20px;
    padding-left: 12px;
    border-left: 4px solid var(--portal-teal);
    background: #f4f9f8;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 0 4px 4px 0;
}

.article-content blockquote {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    padding: 15px;
    margin: 25px 0;
    border-radius: 6px;
    font-size: 14px;
    color: #856404;
}

.article-content .note-tip {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    padding: 15px;
    margin: 25px 0;
    border-radius: 6px;
    font-size: 14px;
    color: #0050b3;
}

.article-content .note-warning {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    padding: 15px;
    margin: 25px 0;
    border-radius: 6px;
    font-size: 14px;
    color: #a8071a;
}

.article-content strong {
    color: var(--portal-teal);
    font-weight: 800;
}

.back-home-bottom {
    display: block;
    margin-top: 50px;
    text-align: center;
    color: var(--portal-teal);
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

.back-home-bottom:hover {
    text-decoration: underline;
}

.v-dl-btn-portal {
    display: block;
    width: 100%;
    background: var(--portal-teal);
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 0;
    border-radius: 3px;
    transition: 0.2s;
}

.v-dl-btn-portal:hover {
    background: #008C98;
    box-shadow: 0 4px 12px rgba(0, 164, 177, 0.3);
}

@media (max-width: 1024px) {
    .version-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .version-grid {
        grid-template-columns: 1fr;
    }
}

/* 评论区 */
.comment-area {
    padding: 15px;
}

.cmt-input-box {
    margin-bottom: 25px;
    background: var(--portal-teal);
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cmt-input-box textarea {
    width: 100%;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
    outline: none;
    resize: none;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.95);
}

.cmt-submit-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-code-placeholder {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 4px 15px;
    font-style: italic;
    color: #444;
    font-weight: 800;
}

.cmt-post-btn {
    background: #fff;
    color: var(--portal-teal);
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
}

.cmt-post-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cmt-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f5;
}

.cmt-avatar {
    width: 44px;
    height: 44px;
    background: #e9ecef;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.cmt-user {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.cmt-date {
    font-weight: 400;
    color: #adb5bd;
    font-size: 11px;
}

.cmt-body p {
    font-size: 14.5px;
    color: #495057;
    line-height: 1.85;
    text-align: justify;
}

.cmt-reply {
    font-size: 11px;
    color: #999;
    margin-top: 10px;
}

/* 纯文字纵向列表布局 */
.intro-vertical-list {
    padding: 20px 30px 40px;
}

.intro-item-v {
    padding: 25px 0;
    border-bottom: 1px solid #f0f1f3;
}

.intro-item-v:last-child {
    border-bottom: none;
}

.intro-item-v h3 {
    font-size: 19px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-item-v h3::before {
    content: "";
    display: block;
    width: 4px;
    height: 18px;
    background: var(--portal-teal);
    border-radius: 2px;
}

.intro-item-v p {
    font-size: 14.5px;
    color: #555;
    line-height: 1.85;
    text-align: justify;
}

.intro-item-v:first-child h3 {
    font-size: 22px;
}

.intro-item-v:first-child p {
    font-size: 15px;
    color: #444;
}

/* 对标喵趣漫画 FAQ 布局 */
.section-title-outside {
    font-size: 18px;
    font-weight: 800;
    margin: 30px 0 15px;
    color: #333;
}

.faq-horizontal-box {
    display: flex;
    padding: 0;
    min-height: 280px;
}

.faq-left-link {
    display: block;
    width: 330px;
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.faq-left-graphic {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-left-link:hover .faq-left-graphic {
    transform: scale(1.03);
}

.faq-left-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-graphic-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 15px;
    border-top: 2px solid var(--portal-teal);
    z-index: 2;
}

.faq-graphic-overlay p {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
    margin: 0;
}

.faq-right-list {
    flex: 1;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.faq-right-list ul {
    width: 100%;
    list-style: none;
}

.faq-right-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 20px;
}

.faq-right-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: #999;
    font-size: 14px;
    top: 8px;
}

.faq-right-list li.no-dot::before {
    display: none;
}

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

.faq-right-list li a {
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.faq-right-list li a:hover {
    color: var(--portal-teal);
    text-decoration: underline;
}

@media (max-width: 900px) {
    .faq-horizontal-box {
        flex-direction: column;
    }

    .faq-left-graphic {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 1px solid var(--card-border);
    }
}

/* 翻页组件 (交互增强型) */
.portal-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.nav-dl-btn {
    background: var(--portal-teal);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 4px;
    transition: 0.2s;
    display: inline-block;
}

.nav-dl-btn:hover {
    background: #008C98;
    box-shadow: 0 2px 8px rgba(0, 164, 177, 0.2);
}

.page-num {
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
    color: #495057;
    font-weight: 600;
    transition: 0.2s;
}

.page-num:hover,
.page-num.active {
    background: var(--portal-teal);
    color: #fff;
    border-color: var(--portal-teal);
}

.page-dots {
    color: #adb5bd;
}

/* 全新多维官方页脚 */
.site-footer {
    background: #fff;
    border-top: 1px solid #ebedf0;
    padding: 60px 0 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 50px;
}

.footer-brand {
    flex: 1.2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 32px;
}

.footer-logo span {
    font-size: 22px;
    font-weight: 900;
    color: #222;
    letter-spacing: -0.5px;
}

.brand-slogan {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
    max-width: 320px;
}

.footer-nav-group {
    flex: 2;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-nav-col h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.footer-nav-col a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-nav-col a:hover {
    color: var(--portal-teal);
    transform: translateX(3px);
}

.footer-info-text {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    cursor: default;
}

.footer-copyright {
    background: #fcfcfc;
    border-top: 1px solid #f0f1f3;
    padding: 25px 0;
}

.copyright-line {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    color: #a0a6ac;
}

.copyright-line span {
    position: relative;
}

.copyright-line span:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: #d0d5d9;
}

/* --- 移动端深度适配 (768px以下) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* 顶部导航左右布局 -> 垂直/隐藏非核心 */
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header-nav {
        display: none;
    }


    /* Hero 区堆叠 */
    .hero-brand {
        padding: 40px 20px;
        /* 修正：增加左右内边距，确保内容不贴边 */
    }

    .hero-flex {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 38px;
        /* 再次增加字号以强化视觉统治力 */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-desc {
        font-size: 15px;
        padding: 0 10;
        line-height: 1.6;
    }

    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .hero-logo-display {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 16 / 9;
        height: auto;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 28px;
        padding: 0;
        /* 彻底移除边距 */
        overflow: hidden;
    }

    .hero-logo-display img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* 强制完全填充铺满 */
    }






    /* 【官方软件教程库】每行显示两张，比例保持一致 */
    .tutorial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tutor-img {
        height: 120px;
        /* 提升高度以适配变宽后的比例 */
    }

    /* 【历史版本存档中心】每行显示两张，比例保持一致 */
    .version-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }

    .v-card-vertical {
        height: auto;
        min-height: 460px;
        /* 提升最小高度以维持竖版视觉 */
    }

    .v-card-top {
        height: 140px;
        /* 顶部头图比例同步放大 */
    }

    .v-meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        margin-bottom: 12px;
    }

    .v-meta-row span {
        font-size: 11px;
    }


    /* 评论区细微调整 */
    .cmt-user {
        flex-direction: column;
        gap: 4px;
    }

    .cmt-date {
        align-self: flex-start;
    }

    .cmt-body p {
        font-size: 13.5px;
    }


    /* FAQ 左右布局 -> 垂直堆叠 */
    .faq-horizontal-box {
        flex-direction: column;
    }

    .faq-left-link {
        width: 100%;
        margin-bottom: 20px;
    }

    .faq-left-graphic {
        height: 160px;
    }

    /*FAQ 页脚居中逻辑（保持不变） */
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
        margin-bottom: 20px;
    }

    .brand-slogan {
        max-width: 100%;
        margin: 0 auto;
    }

    /* 版本历史页 (history.html) 增强适配 */
    .vb-header {
        position: relative;
        /* 为标签定位提供参考 */
        flex-direction: column;
        text-align: left;
        align-items: flex-start !important;
        /* 强制图标与文字全左对齐 */
        padding: 24px !important;
        gap: 15px !important;
    }

    .vb-header img {
        width: 70px !important;
        height: 70px !important;
        margin: 0 !important;
    }

    .vb-header-info h2 {
        font-size: 20px !important;
        line-height: 1.4;
        padding-right: 60px;
        /* 为右上角标签留出空间 */
    }

    .status-badge {
        position: absolute;
        top: 24px;
        right: 20px;
        margin: 0 !important;
        font-size: 11px !important;
        padding: 4px 8px !important;
        border-radius: 4px;
    }

    .vb-meta {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        margin-bottom: 0 !important;
    }

    .vb-meta span {
        margin-right: 0 !important;
        display: block;
        font-size: 12px;
    }

    .vb-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vb-dl-btn {
        width: 100%;
        box-sizing: border-box;
    }



    .footer-nav-group {
        flex-direction: column;
        gap: 30px;
    }

    .copyright-line {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .copyright-line span::after {
        display: none;
    }
}