﻿:root {
    --brand: #2770D4;
    --brand-2: #1e5ba8;
    --brand-light: #e8f1fb;
    --accent: #f59e0b;
    --red: #d23f3f;
    --green: #1d9d68;
    --text: #1a2332;
    --text-2: #4a5566;
    --text-3: #7b8696;
    --line: #e4e9f0;
    --line-2: #eef2f7;
    --bg: #ffffff;
    --bg-soft: #f7f9fc;
    --shadow-lg: 0 4px 16px rgba(16,24,40,0.08), 0 2px 6px rgba(16,24,40,0.04);
    --radius: 6px;
    --radius-lg: 10px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-serif: var(--font);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    font-family: var(--font);
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg-soft);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* HEADER */
.header {
    height: 56px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 18px;
    color: var(--brand);
    letter-spacing: -0.3px;
}

.logo-mark {
    width: 28px;
    height: 28px;
    background: var(--brand);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .nav a {
        padding: 8px 14px;
        color: var(--text-2);
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        transition: all 0.15s;
    }

        .nav a:hover {
            color: var(--text);
            background: var(--bg-soft);
        }

        .nav a.active {
            color: var(--brand);
            font-weight: 600;
        }

.header-spacer {
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-api {
    padding: 6px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-2);
    font-weight: 500;
}

.header-pro {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #fff8e1, #ffe9b3);
    border: 1px solid #f3d27a;
    border-radius: 6px;
    font-size: 12px;
    color: #8a5a00;
    font-weight: 600;
}

.btn-signin {
    padding: 7px 16px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s;
}

    .btn-signin:hover {
        background: var(--brand-2);
    }

/* HEADER */
.header {
    height: 68px;
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

    .logo img {
        width: 120px;
        height: auto;
    }

.header-spacer {
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
    padding-right: 10px;
}

.header-hormuz a {
    display: inline-block;
    line-height: 0;
}

.header-hormuz img {
    height: 52px;
    width: auto;
}

.header-img-btn {
    position: relative;
    display: inline-block;
    line-height: 0;
}

    .header-img-btn img {
        display: block;
    }

.header-img-btn-text {
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    pointer-events: none;
    line-height: 1;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.header-user {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
}

    .header-user img {
        width: 40px;
        height: auto;
    }

.user-menu { position: relative; display: inline-flex; align-items: center; margin-left: 6px; }
.user-avatar { width: 40px; height: 40px; border-radius: 50%; background: #2770d4; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 14px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.user-avatar:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(39, 112, 212,.3); }
.user-dropdown { display: none; position: absolute; top: 100%; right: 0; min-width: 120px; background: #fff; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,.15); padding: 4px 0; z-index: 100; margin-top: 4px; }
.user-dropdown.open { display: block; }
.user-dropdown a { display: block; padding: 8px 16px; font-size: 13px; color: #333; text-decoration: none; white-space: nowrap; }
.user-dropdown a:hover { background: #f5f5f5; }

/* PAGE BACKGROUND */
.page-bg {
    background: var(--bg-soft);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* BREADCRUMB */
.breadcrumb {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
    font-size: 13px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* 详情页面包屑吸顶：整屏宽的 bar，吸在 68px header 正下方，内容对齐 1200 列 */
.breadcrumb:has(+ .detail-wrap) {
    position: sticky;
    top: 68px;
    z-index: 90;
    max-width: none;
    margin: 0;
    padding: 14px max(24px, calc((100% - 1200px) / 2));
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

    .breadcrumb a {
        color: var(--text-3);
        transition: color 0.15s;
        white-space: nowrap;
    }

        .breadcrumb a:hover {
            color: var(--brand) !important;
        }

    .breadcrumb .sep {
        margin: 0 8px;
        opacity: 0.5;
        flex-shrink: 0;
    }

    .breadcrumb .current {
        color: var(--text-2);
    }

#bc-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* PAGE HEADER */
.page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 20px;
    width: 100%;
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 14px;
    color: var(--text-3);
    margin-top: 6px;
    font-weight: 400;
}

/* TABS */
.tabs-wrap {
    width: 100%;
    background: var(--bg-soft);
    position: sticky;
    top: 56px;
    z-index: 50;
    border-bottom: 1px solid var(--line);
}

.tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: 100%;
}

.tab {
    padding: 14px 0;
    background: none;
    border: none;
    color: var(--text-2);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: color 0.15s;
}

    .tab:hover {
        color: var(--text);
    }

    .tab.active {
        color: var(--brand);
        font-weight: 600;
    }

        .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--brand);
            border-radius: 2px 2px 0 0;
        }

/* CONTENT */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 32px;
    width: 100%;
    flex: 1;
}

/* CARD GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    animation: fadeUp 0.4s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    border-color: #d8e0eb;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-img {
    height: 180px;
    position: relative;
    background: var(--brand);
    overflow: hidden;
}

    .card-img svg, .card-img img {
        width: 100%;
        height: 100%;
        display: block;
    }

.card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-date {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 8px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card:hover .card-title {
    color: var(--brand);
}

.card-excerpt {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 32px;
    padding-bottom: 20px;
}

.page-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
    transition: all 0.15s;
    align-items: center;
    display: flex;
    gap: 2px;
    padding: 0 12px;
    width: auto;
}

    .page-btn:hover {
        background: var(--bg-soft);
        border-color: #d8e0eb;
    }

    .page-btn.active {
        background: var(--brand);
        color: #fff;
        border-color: var(--brand);
    }

    .page-btn.nav {
        padding: 0 12px;
        width: auto;
    }

/* DETAIL PAGE */
.page {
    display: none;
    width: 100%;
    flex: 1;
}

    .page.active {
        display: flex;
        flex-direction: column;
    }

/* DETAIL WRAP */
.detail-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 24px 48px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.detail-main {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.detail-body {
    padding: 32px 40px 40px;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 24px;
}

.detail-meta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

    .detail-meta-row .sep {
        opacity: 0.4;
    }

.detail-hero {
    height: 360px;
    background: var(--brand);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
}

    .detail-hero svg, .detail-hero img {
        width: 100%;
        height: 100%;
        display: block;
    }

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.detail-lead {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 24px;
}

    .detail-lead a {
        color: var(--brand-2) !important;
    }

/* 正文样式与 CMS 编辑器/预览 (.cms-rich) 保持一致 */
.article-body {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

    .article-body h1 {
        font-size: 1.75rem;
        font-weight: 800;
        color: #0F172A;
        margin: 1.75rem 0 0.875rem;
        line-height: 1.2;
    }

    .article-body h2 {
        font-size: 1.35rem;
        font-weight: 700;
        color: #1E293B;
        margin: 1.5rem 0 0.75rem;
        line-height: 1.3;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid #F1F5F9;
    }

    .article-body h3 {
        font-size: 1.15rem;
        font-weight: 600;
        color: #334155;
        margin: 1.25rem 0 0.6rem;
    }

    .article-body p {
        margin-bottom: 1rem;
        color: #334155;
        line-height: 1.7;
        font-size: 1rem;
    }

    /* 正文超链接：与编辑器 (text-marine-600 underline font-medium) 保持一致 */
    .article-body a {
        color: #1D5BB0;
        text-decoration: underline;
        font-weight: 500;
    }

    .article-body ul,
    .article-body ol {
        margin: 0 0 1rem;
        padding-left: 1.5rem;
        color: #334155;
        line-height: 1.7;
        font-size: 1rem;
    }

    .article-body ul { list-style-type: disc; }
    .article-body ol { list-style-type: decimal; }
    .article-body li { margin-bottom: 0.375rem; }
    .article-body ul ul { list-style-type: circle; }

    .article-body blockquote {
        border-left: 3px solid #2770D4;
        background: #F8FAFC;
        margin: 1.25rem 0;
        padding: 0.875rem 1.25rem;
        color: #475569;
        font-style: italic;
        border-radius: 0 0.375rem 0.375rem 0;
        font-size: 0.8125rem;
    }

    .article-body strong {
        font-weight: 600;
        color: #334155;
    }

    .article-body code.cms-inline-code,
    .article-body .cms-inline-code {
        background: #F1F5F9;
        color: #D946EF;
        padding: 0.1rem 0.35rem;
        border-radius: 0.25rem;
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        font-size: 0.75rem;
    }

    .article-body pre.cms-code,
    .article-body .cms-code {
        background: #0F172A;
        color: #F8FAFC;
        padding: 1rem 1.25rem;
        border-radius: 0.5rem;
        overflow-x: auto;
        font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
        font-size: 0.8125rem;
        line-height: 1.6;
        margin: 1.25rem 0;
        white-space: pre-wrap;
        word-break: break-word;
    }

    .article-body hr.cms-divider,
    .article-body .cms-divider {
        border: none;
        border-top: 1px solid #E2E8F0;
        margin: 2rem 0;
    }

    .article-body table.cms-table,
    .article-body .cms-table {
        border-collapse: collapse;
        width: 100%;
        margin: 1.25rem 0;
        font-size: 0.8125rem;
    }

    .article-body table.cms-table th,
    .article-body table.cms-table td,
    .article-body .cms-table th,
    .article-body .cms-table td {
        border: 1px solid #E2E8F0;
        padding: 0.6rem 0.75rem;
        text-align: left;
        vertical-align: top;
    }

    .article-body table.cms-table th,
    .article-body .cms-table th {
        background: #F8FAFC;
        font-weight: 600;
        color: #334155;
    }

    .article-body img {
        max-width: 100%;
        height: auto;
        border-radius: 0.5rem;
        margin: 1.25rem 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

/* 富文本：提示标注框 (Callout) —— 与后台编辑器一致；图标用内嵌 SVG，不依赖 Font Awesome */
.article-body .cms-callout { display: flex; gap: 0.75rem; padding: 0.875rem 1rem; border-radius: 0.5rem; margin: 1.25rem 0; border: 1px solid transparent; font-style: normal; font-size: 0.8125rem; }
.article-body .cms-callout .cms-callout-icon { flex-shrink: 0; align-self: flex-start; width: 1.1rem; height: 1.4rem; background-repeat: no-repeat; background-position: center; background-size: 1.1rem 1.1rem; }
.article-body .cms-callout .cms-callout-icon i { display: none; } /* 旧内容中的 Font Awesome <i> 统一隐藏，图标由 SVG 背景渲染 */
.article-body .cms-callout .cms-callout-body { flex: 1; min-width: 0; }
.article-body .cms-callout .cms-callout-body p { color: inherit; }
.article-body .cms-callout .cms-callout-body p:first-child { margin-top: 0; }
.article-body .cms-callout .cms-callout-body p:last-child { margin-bottom: 0; }
.article-body .cms-callout-info { background: #F0F6FF; border-color: #D9E6FF; color: #1D5BB0; }
.article-body .cms-callout-info .cms-callout-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%232770D4'/%3E%3Ccircle cx='12' cy='7.6' r='1.4' fill='%23fff'/%3E%3Crect x='10.9' y='10.4' width='2.2' height='7' rx='1.1' fill='%23fff'/%3E%3C/svg%3E"); }
.article-body .cms-callout-tip { background: #F0FDF4; border-color: #BBF7D0; color: #166534; }
.article-body .cms-callout-tip .cms-callout-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-4.9 11.9c.9.9 1.5 2 1.7 3.1h6.4c.2-1.1.8-2.2 1.7-3.1A7 7 0 0 0 12 2z' fill='%2322C55E'/%3E%3Cpath d='M9.5 18.2h5v1a1.8 1.8 0 0 1-1.8 1.8h-1.4a1.8 1.8 0 0 1-1.8-1.8z' fill='%2322C55E'/%3E%3C/svg%3E"); }
.article-body .cms-callout-warning { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.article-body .cms-callout-warning .cms-callout-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.3 3.1a1.5 1.5 0 0 0-2.6 0L1.9 19.2a1.5 1.5 0 0 0 1.3 2.3h17.6a1.5 1.5 0 0 0 1.3-2.3z' fill='%23F59E0B'/%3E%3Crect x='10.9' y='8.5' width='2.2' height='6.2' rx='1.1' fill='%23fff'/%3E%3Ccircle cx='12' cy='17.6' r='1.4' fill='%23fff'/%3E%3C/svg%3E"); }
.article-body .cms-callout-danger { background: #FEF2F2; border-color: #FECACA; color: #991B1B; }
.article-body .cms-callout-danger .cms-callout-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23EF4444'/%3E%3Crect x='10.9' y='6.5' width='2.2' height='7' rx='1.1' fill='%23fff'/%3E%3Ccircle cx='12' cy='16.6' r='1.4' fill='%23fff'/%3E%3C/svg%3E"); }

/* SIDEBAR */
.detail-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.side-card-head {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.side-card-body {
    padding: 18px;
}

/* 船舶区块分割 */
.vessel-block {
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line);
    margin-bottom: 16px;
}

    .vessel-block:last-child {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

.vessel-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.vessel-icon {
    width: 36px;
    height: 24px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.vessel-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.vessel-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-bottom: 12px;
}

.vessel-stat-l {
    font-size: 11px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1px;
}

.vessel-stat-v {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

/* 恢复原汁原味的经典蓝底白字跳转按钮 */
.vessel-track-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 9px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: background 0.15s;
}

    .vessel-track-btn:hover {
        background: var(--brand-2);
    }

.related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line-2);
    cursor: pointer;
}

    .related-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .related-item:first-child {
        padding-top: 0;
    }

.related-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 3px;
    color: var(--text-3);
}

.related-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    transition: color 0.15s;
}

.related-item:hover .related-title {
    color: var(--brand);
}

.related-date {
    font-size: 11px;
    color: var(--text-3);
    margin-top: 4px;
}

/* 订阅卡片样式 */
.cta-card {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 22px;
    overflow: hidden;
    position: relative;
}

    .cta-card::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }

    .cta-card h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
        position: relative;
    }

    .cta-card p {
        font-size: 13px;
        opacity: 0.9;
        position: relative;
    }

/* 免责声明小字样式 */
.cta-disclaimer {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    margin-top: 10px;
}

/* 输入框统一样式：强化半透背景白 */
.cta-input-clear {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    outline: none;
    transition: all 0.15s;
}

    .cta-input-clear:focus {
        border-color: #ffffff;
        background: rgba(255, 255, 255, 0.25);
    }

    /* 强制修饰 Placeholder 在深蓝背景下的高清晰度 */
    .cta-input-clear::placeholder {
        color: rgba(255, 255, 255, 0.75) !important;
        opacity: 1;
    }

    .cta-input-clear::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .cta-input-clear::-moz-placeholder {
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .cta-input-clear:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.75) !important;
    }

/* FOOTER */
.footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 18px 24px;
    margin-top: auto;
    width: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-3);
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        color: var(--text-3);
        transition: color 0.15s;
    }

        .footer-links a:hover {
            color: var(--brand);
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

@media (max-width: 1100px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
    }
}

#list-page, #list-page .page-bg, .content {
    background-color: var(--bg-soft) !important;
}




/* ===== 富文本：提示标注框 (Callout) ===== */
.cms-callout {
    display: flex;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.5rem;
    margin: 1.25rem 0;
    border: 1px solid transparent;
    font-style: normal;
    font-size: 0.8125rem;
}

    .cms-callout .cms-callout-icon {
        flex-shrink: 0;
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .cms-callout .cms-callout-body {
        flex: 1;
        min-width: 0;
    }

        .cms-callout .cms-callout-body p:first-child {
            margin-top: 0;
        }

        .cms-callout .cms-callout-body p:last-child {
            margin-bottom: 0;
        }

.cms-callout-info {
    background: #F0F6FF;
    border-color: #D9E6FF;
    color: #1D5BB0;
}

    .cms-callout-info .cms-callout-icon {
        color: #2770D4;
    }

.cms-callout-tip {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #166534;
}

    .cms-callout-tip .cms-callout-icon {
        color: #22C55E;
    }

.cms-callout-warning {
    background: #FFFBEB;
    border-color: #FDE68A;
    color: #92400E;
}

    .cms-callout-warning .cms-callout-icon {
        color: #F59E0B;
    }

.cms-callout-danger {
    background: #FEF2F2;
    border-color: #FECACA;
    color: #991B1B;
}

    .cms-callout-danger .cms-callout-icon {
        color: #EF4444;
    }