/**
 * 文件名称：comparison.css
 * 页面功能：货源对比页专用样式（选择页 + 结果页）
 * 所属项目：卡速售 - 专业的销售系统与虚拟电商解决方案
 * 维护人员：前端开发团队
 *
 * 关键功能模块：
 * 1. 选择页 - 对比类型卡片
 * 2. 结果页 - 对比表格、差异高亮
 * 3. 暗黑模式适配
 * 4. 响应式设计
 */

/* ================= 单页视图切换 ================= */
#cmpSelectView,
#cmpResultView {
    animation: cmpViewFadeIn 0.35s ease;
}

/* 对比页暗黑模式：顶部导航与页面背景融为一体 */
.dark-mode body.ios-app,
.dark-mode .ios-main-content {
    background: var(--bg-color);
}

.dark-mode .ios-header.ios-header {
    background: transparent;
}

.dark-mode .ios-header.ios-header:before,
.dark-mode .ios-header.scrolled.ios-header:before,
.dark-mode .ios-header.ios-header--compact:before {
    background: linear-gradient(180deg, rgba(15, 15, 17, 0.92), rgba(15, 15, 17, 0.72));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.dark-mode .ios-header.ios-header:after,
.dark-mode .ios-header.scrolled.ios-header:after,
.dark-mode .ios-header.ios-header--compact:after {
    border-color: var(--border-color);
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgb(255, 255, 255, 0.06);
}

@keyframes cmpViewFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= 选择页 - Hero 区域 ================= */
.cmp-hero {
    position: relative;
    padding: 100px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.cmp-hero .hud-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgb(74, 132, 232, 0.1);
    pointer-events: none;
}

.cmp-hero .hud-circle.large {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    opacity: 0.3;
}

.cmp-hero .hud-circle.medium {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -60px;
    opacity: 0.2;
}

.cmp-hero .hud-circle.small {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 10%;
    opacity: 0.15;
}

.cmp-hero .tag-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ui-text-muted, #888);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.cmp-hero .tag-line .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pink);
    display: inline-block;
}

.cmp-hero .tag-line .line {
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), transparent);
    display: inline-block;
}

.cmp-hero .tag-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), #6366f1);
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 6px;
}

.cmp-hero-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--ui-text, #1a1a1a);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cmp-hero-subtitle {
    font-size: 15px;
    color: var(--ui-text-muted, #888);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================= 选择页 - 对比类型卡片 ================= */
.cmp-select-section {
    padding: 28px 20px 88px;
    max-width: 1080px;
    margin: 0 auto;
}

.cmp-select-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.cmp-select-section .section-header h2 {
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 800;
    color: var(--ui-text, #1a1a1a);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cmp-select-section .section-header p {
    font-size: 14px;
    color: var(--ui-text-muted, #888);
    line-height: 1.75;
}

.cmp-select-hero-card {
    position: relative;
    padding: 28px 24px 24px;
    margin-bottom: 24px;
    border-radius: 28px;
    border: 1px solid rgb(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgb(255, 255, 255, 0.72), rgb(255, 255, 255, 0.48)),
        radial-gradient(circle at top left, rgb(99, 102, 241, 0.12), transparent 38%),
        radial-gradient(circle at top right, rgb(236, 72, 153, 0.12), transparent 34%);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    box-shadow: 0 18px 54px rgb(15, 23, 42, 0.08);
    overflow: hidden;
}

.cmp-select-hero-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgb(255, 255, 255, 0.22) 40%, transparent 68%);
    opacity: 0.55;
    pointer-events: none;
}

.cmp-section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #6366f1;
    background: rgb(99, 102, 241, 0.1);
    margin-bottom: 12px;
}

.cmp-section-hints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.cmp-section-hint {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgb(15, 23, 42, 0.05);
    color: var(--ui-text-muted, #667085);
    font-size: 12px;
    font-weight: 600;
}

.cmp-select-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.cmp-select-card {
    position: relative;
    background:
        radial-gradient(circle at 14% 12%, rgb(255, 255, 255, 0.74), transparent 18%),
        radial-gradient(circle at 84% 8%, rgb(255, 255, 255, 0.42), transparent 16%),
        radial-gradient(circle at 50% 0%, rgb(99, 102, 241, 0.16), transparent 34%),
        radial-gradient(circle at 16% 102%, rgb(236, 72, 153, 0.12), transparent 28%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.56), rgb(255, 255, 255, 0.34));
    backdrop-filter: blur(34px) saturate(1.45);
    -webkit-backdrop-filter: blur(34px) saturate(1.45);
    border: 1px solid rgb(255, 255, 255, 0.54);
    border-radius: 28px;
    padding: 34px 30px 30px;
    cursor: pointer;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        filter 0.28s ease;
    overflow: hidden;
    text-align: center;
    min-height: 308px;
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.78),
        0 16px 44px rgb(15, 23, 42, 0.08);
    isolation: isolate;
}

.cmp-select-card:before {
    content: '';
    position: absolute;
    inset: -18% -28%;
    background:
        linear-gradient(115deg,
            transparent 24%,
            rgb(255, 255, 255, 0.28) 42%,
            rgb(255, 255, 255, 0.06) 49%,
            transparent 60%),
        radial-gradient(circle at 50% 50%, rgb(255, 255, 255, 0.16), transparent 58%);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.72;
    transform: translateX(-18%) translateY(-10%) rotate(-8deg);
    animation: cmpLiquidShimmer 8s ease-in-out infinite;
}

.cmp-select-card:after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgb(255, 255, 255, 0.22),
            transparent 28%,
            transparent 76%,
            rgb(255, 255, 255, 0.08));
    pointer-events: none;
}

.cmp-select-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.84),
        0 22px 54px rgb(15, 23, 42, 0.12);
    border-color: rgb(255, 255, 255, 0.72);
}

.cmp-select-card:hover:before {
    opacity: 1;
}

.cmp-select-card.selected {
    border-color: rgb(99, 102, 241, 0.34);
    background:
        radial-gradient(circle at 14% 12%, rgb(255, 255, 255, 0.78), transparent 18%),
        radial-gradient(circle at 84% 8%, rgb(255, 255, 255, 0.5), transparent 16%),
        radial-gradient(circle at 50% 0%, rgb(99, 102, 241, 0.2), transparent 34%),
        radial-gradient(circle at 16% 102%, rgb(236, 72, 153, 0.14), transparent 28%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.66), rgb(255, 255, 255, 0.42));
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.84),
        0 0 0 1px rgb(255, 255, 255, 0.26),
        0 24px 56px rgb(15, 23, 42, 0.12);
}

.cmp-select-card.selected:before {
    opacity: 1;
}

.cmp-select-card .card-topline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.28);
    color: rgb(92, 101, 112, 0.84);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgb(255, 255, 255, 0.48);
    box-shadow: inset 0 1px 0 rgb(255, 255, 255, 0.7);
}

.cmp-select-card .card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.74),
        0 10px 24px rgb(15, 23, 42, 0.06);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.cmp-select-card:hover .card-icon {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.04);
}

.cmp-select-card .card-icon.icon-version {
    background:
        radial-gradient(circle at 30% 28%, rgb(255, 255, 255, 0.56), transparent 34%),
        linear-gradient(135deg, rgb(74, 132, 232, 0.24), rgb(99, 102, 241, 0.2));
    color: #4a84e8;
}

.cmp-select-card .card-icon.icon-channel {
    background:
        radial-gradient(circle at 30% 28%, rgb(255, 255, 255, 0.56), transparent 34%),
        linear-gradient(135deg, rgb(236, 72, 153, 0.22), rgb(245, 158, 11, 0.18));
    color: var(--pink);
}

.cmp-select-card .card-icon svg {
    width: 34px;
    height: 34px;
}

.cmp-select-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ui-text, #0f172a);
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.cmp-select-card .card-desc {
    font-size: 13px;
    color: rgb(92, 101, 112, 0.9);
    line-height: 1.8;
    margin-bottom: 18px;
    min-height: 74px;
}

.cmp-select-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.cmp-select-card .card-tag {
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.28);
    color: #4a84e8;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid rgb(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgb(255, 255, 255, 0.72);
}

.cmp-select-card .card-tag.tag-pink {
    background: rgb(255, 255, 255, 0.34);
    color: var(--pink);
}

.cmp-select-card .card-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgb(255, 255, 255, 0.42), rgb(255, 255, 255, 0.14)),
        linear-gradient(135deg, var(--pink), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.25s ease;
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.55),
        0 10px 18px rgb(236, 72, 153, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cmp-select-card.selected .card-check {
    opacity: 1;
    transform: scale(1);
}

.cmp-select-card .card-check svg {
    width: 14px;
    height: 14px;
    color: #fff;
}

/* ================= 选择页 - 版本选择区域 ================= */
.cmp-version-section {
    margin-top: 34px;
    padding: 24px 20px 22px;
    border-radius: 28px;
    border: 1px solid rgb(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgb(255, 255, 255, 0.7), rgb(255, 255, 255, 0.5)),
        radial-gradient(circle at top left, rgb(74, 132, 232, 0.08), transparent 34%),
        radial-gradient(circle at bottom right, rgb(236, 72, 153, 0.08), transparent 30%);
    backdrop-filter: blur(20px) saturate(1.15);
    -webkit-backdrop-filter: blur(20px) saturate(1.15);
    box-shadow: 0 16px 46px rgb(15, 23, 42, 0.06);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease,
        margin-top 0.35s ease;
}

.cmp-version-section.visible {
    max-height: 720px;
    opacity: 1;
}

.version-section-header {
    text-align: center;
    margin-bottom: 22px;
}

.version-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
}

.version-section-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--ui-text, #1a1a1a);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.version-hint {
    font-size: 13px;
    color: var(--ui-text-muted, #888);
    transition: color 0.3s ease;
}

.cmp-select-all-switch {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    color: var(--ui-text, #0f172a);
}

.cmp-select-all-switch .switch-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ui-text-muted, #64748b);
}

.cmp-select-all-switch .switch-track {
    position: relative;
    width: 56px;
    height: 32px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 20%, rgb(255, 255, 255, 0.22), transparent 28%),
        radial-gradient(circle at 78% 18%, rgb(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(180deg, rgb(148, 163, 184, 0.28), rgb(148, 163, 184, 0.18));
    border: 1px solid rgb(255, 255, 255, 0.64);
    box-shadow:
        inset 0 1px 2px rgb(15, 23, 42, 0.08),
        inset 0 -1px 0 rgb(255, 255, 255, 0.35),
        0 4px 12px rgb(15, 23, 42, 0.06);
    transition:
        background 0.22s ease,
        box-shadow 0.22s ease;
    overflow: hidden;
}

.cmp-select-all-switch .switch-track:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            transparent 34%,
            rgb(255, 255, 255, 0.34) 48%,
            rgb(255, 255, 255, 0.08) 56%,
            transparent 68%);
    opacity: 0.45;
    transform: translateX(-22%);
    animation: cmpSwitchShimmer 4.8s ease-in-out infinite;
    pointer-events: none;
}

.cmp-select-all-switch .switch-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%,
            rgb(255, 255, 255, 0.98),
            rgb(255, 255, 255, 0.78) 28%,
            rgb(255, 255, 255, 0.46) 62%,
            rgb(255, 255, 255, 0.18) 100%),
        radial-gradient(circle at 70% 72%, rgb(74, 132, 232, 0.18), transparent 55%);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.98),
        inset 0 -6px 10px rgb(15, 23, 42, 0.06),
        0 8px 18px rgb(15, 23, 42, 0.16),
        0 0 0 1px rgb(255, 255, 255, 0.5);
    backdrop-filter: blur(10px) saturate(1.3);
    -webkit-backdrop-filter: blur(10px) saturate(1.3);
    transform: translateX(0) scale(1);
    transition:
        transform 0.24s cubic-bezier(0.18, 0.9, 0.22, 1),
        box-shadow 0.22s ease,
        background 0.22s ease;
    overflow: hidden;
}

.cmp-select-all-switch .switch-thumb:after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 15%, rgb(255, 255, 255, 0.24), transparent 42%);
    opacity: 0.9;
    pointer-events: none;
}

.cmp-select-all-switch.is-active .switch-thumb,
.cmp-select-all-switch:active .switch-thumb {
    animation: cmpJellyThumb 0.42s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.cmp-select-all-switch .switch-thumb:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 9px;
    height: 5px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.95);
    filter: blur(0.2px);
    opacity: 0.9;
    transform: rotate(-20deg);
}

.cmp-select-all-switch .switch-thumb:after {
    content: '';
    position: absolute;
    inset: -16% -24%;
    background: linear-gradient(120deg, transparent 34%, rgb(255, 255, 255, 0.36) 48%, transparent 60%);
    opacity: 0.65;
    mix-blend-mode: screen;
    animation: cmpThumbShimmer 3.8s ease-in-out infinite;
    pointer-events: none;
}

.cmp-select-all-switch.is-active .switch-track {
    background:
        radial-gradient(circle at 20% 20%, rgb(255, 255, 255, 0.3), transparent 28%),
        radial-gradient(circle at 78% 18%, rgb(255, 255, 255, 0.18), transparent 22%),
        linear-gradient(135deg, rgb(74, 132, 232, 0.42), rgb(236, 72, 153, 0.38));
    box-shadow:
        inset 0 1px 2px rgb(15, 23, 42, 0.08),
        inset 0 -1px 0 rgb(255, 255, 255, 0.24),
        0 6px 14px rgb(15, 23, 42, 0.1);
}

.cmp-select-all-switch.is-active .switch-thumb {
    --thumb-shift: 24px;

    transform: translateX(24px);
}

.cmp-select-all-switch.is-active .switch-thumb:after {
    animation-duration: 2.8s;
}

.dark-mode .cmp-select-all-switch .switch-label {
    color: rgb(226, 232, 240, 0.78);
}

.dark-mode .cmp-select-all-switch .switch-track {
    background:
        radial-gradient(circle at 20% 20%, rgb(255, 255, 255, 0.14), transparent 28%),
        radial-gradient(circle at 78% 18%, rgb(255, 255, 255, 0.1), transparent 22%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.1), rgb(255, 255, 255, 0.05));
    border-color: rgb(255, 255, 255, 0.12);
    box-shadow:
        inset 0 1px 2px rgb(0, 0, 0, 0.24),
        inset 0 -1px 0 rgb(255, 255, 255, 0.06),
        0 4px 12px rgb(0, 0, 0, 0.12);
}

.dark-mode .cmp-select-all-switch .switch-thumb {
    background:
        radial-gradient(circle at 32% 28%,
            rgb(255, 255, 255, 0.96),
            rgb(255, 255, 255, 0.76) 28%,
            rgb(255, 255, 255, 0.46) 62%,
            rgb(255, 255, 255, 0.18) 100%),
        radial-gradient(circle at 70% 72%, rgb(74, 132, 232, 0.16), transparent 55%);
}

.dark-mode .cmp-select-all-switch.is-active .switch-track {
    background:
        radial-gradient(circle at 20% 20%, rgb(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 78% 18%, rgb(255, 255, 255, 0.12), transparent 22%),
        linear-gradient(135deg, rgb(74, 132, 232, 0.42), rgb(236, 72, 153, 0.34));
}

.version-hint.enough {
    color: #10b981;
}

.version-hint strong {
    color: var(--pink);
}

.version-hint.enough strong {
    color: #10b981;
}

.cmp-version-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.cmp-version-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.9), rgb(255, 255, 255, 0.68)),
        radial-gradient(circle at top, rgb(74, 132, 232, 0.06), transparent 55%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgb(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 16px 12px 14px;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease,
        filter 0.25s ease;
    text-align: center;
    user-select: none;
    min-height: 178px;
    overflow: hidden;
}

.cmp-version-card:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--plan-accent, #4a84e8), transparent);
    opacity: 0.9;
    pointer-events: none;
}

.cmp-version-grid:hover .cmp-version-card:not(:hover, .selected) {
    opacity: 0.72;
    filter: saturate(0.84) brightness(0.96);
}

.cmp-version-grid:hover .cmp-version-card:not(:hover, .selected) {
    opacity: 0.72;
    filter: saturate(0.84) brightness(0.96);
}

.cmp-version-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--plan-accent, #4a84e8), transparent);
    opacity: 0.95;
    pointer-events: none;
}

.cmp-version-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.22), transparent 48%);
    pointer-events: none;
}

.cmp-version-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgb(15, 23, 42, 0.12);
    border-color: rgb(74, 132, 232, 0.24);
}

.cmp-version-card.selected {
    border-color: var(--plan-accent, var(--pink));
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 0 0 4px rgb(236, 72, 153, 0.1),
        0 0 0 1px rgb(255, 255, 255, 0.85) inset,
        0 20px 46px rgb(15, 23, 42, 0.16),
        0 0 28px rgb(236, 72, 153, 0.18);
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.98), rgb(255, 255, 255, 0.96));
}

.cmp-version-card.selected .version-icon {
    transform: translateY(-1px) scale(1.08);
    box-shadow:
        0 0 0 4px rgb(255, 255, 255, 0.55),
        0 10px 24px rgb(15, 23, 42, 0.12);
}

.cmp-version-card .version-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.55);
    transition: all 0.22s ease;
    box-shadow: 0 6px 16px rgb(236, 72, 153, 0.24);
    z-index: 1;
}

.cmp-version-card.selected .version-check {
    opacity: 1;
    transform: scale(1);
}

.cmp-version-card .version-check svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.cmp-version-card .version-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--plan-accent-soft, rgb(15, 23, 42, 0.06));
    color: var(--plan-accent, #667085);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid color-mix(in srgb, var(--plan-accent, #667085) 18%, transparent);
}

.cmp-version-card[data-plan='standard'] .version-badge,
.cmp-version-card[data-plan='standard'] .version-note {
    color: #60a5fa;
    border-color: rgb(96, 165, 250, 0.18);
}

.cmp-version-card[data-plan='professional'] .version-badge,
.cmp-version-card[data-plan='professional'] .version-note {
    color: #22c55e;
    border-color: rgb(34, 197, 94, 0.18);
}

.cmp-version-card[data-plan='honored'] .version-badge,
.cmp-version-card[data-plan='honored'] .version-note {
    color: #8b5cf6;
    border-color: rgb(139, 92, 246, 0.18);
}

.cmp-version-card[data-plan='flagship'] .version-badge,
.cmp-version-card[data-plan='flagship'] .version-note {
    color: #f97316;
    border-color: rgb(249, 115, 22, 0.18);
}

.cmp-version-card[data-plan='nine-star-service'] .version-badge,
.cmp-version-card[data-plan='nine-star-service'] .version-note {
    color: #b08d57;
    border-color: rgb(176, 141, 87, 0.18);
}

.cmp-version-card[data-plan='standard'] {
    --plan-accent: #60a5fa;
    --plan-accent-soft: rgb(96, 165, 250, 0.12);
}

.cmp-version-card[data-plan='professional'] {
    --plan-accent: #22c55e;
    --plan-accent-soft: rgb(34, 197, 94, 0.12);
}

.cmp-version-card[data-plan='honored'] {
    --plan-accent: #8b5cf6;
    --plan-accent-soft: rgb(139, 92, 246, 0.12);
}

.cmp-version-card[data-plan='flagship'] {
    --plan-accent: #f97316;
    --plan-accent-soft: rgb(249, 115, 22, 0.12);
}

.cmp-version-card[data-plan='nine-star-service'] {
    --plan-accent: #b08d57;
    --plan-accent-soft: rgb(176, 141, 87, 0.12);
}

.cmp-version-card .version-icon {
    width: 52px;
    height: 52px;
    margin: 2px auto;
    border-radius: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 26%, rgb(255, 255, 255, 0.92), transparent 36%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.76), rgb(255, 255, 255, 0.5));
    color: var(--plan-accent, #4a84e8);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    border: 1px solid rgb(255, 255, 255, 0.62);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.9),
        inset 0 -1px 0 rgb(15, 23, 42, 0.03),
        0 8px 18px rgb(15, 23, 42, 0.05);
    overflow: hidden;
}

.cmp-version-card .version-icon:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgb(255, 255, 255, 0.58) 0%, rgb(255, 255, 255, 0.16) 34%, transparent 60%),
        radial-gradient(circle at 50% 120%, rgb(255, 255, 255, 0.3), transparent 42%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.cmp-version-card:hover .version-icon {
    transform: translateY(-1px) scale(1.04);
    filter: brightness(1.03);
}

.cmp-version-card .version-icon img,
.cmp-version-card .version-icon svg {
    width: 82%;
    height: 82%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.cmp-version-card[data-plan='nine-star-service'] .version-icon {
    background:
        radial-gradient(circle at 30% 26%, rgb(255, 255, 255, 0.92), transparent 36%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.78), rgb(255, 255, 255, 0.52)),
        linear-gradient(135deg, rgb(176, 141, 87, 0.22), rgb(117, 88, 42, 0.14));
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.9),
        inset 0 -1px 0 rgb(15, 23, 42, 0.03),
        0 8px 18px rgb(15, 23, 42, 0.05);
}

.cmp-version-card .version-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--ui-text, #1a1a1a);
    margin-bottom: 2px;
}

.cmp-version-card[data-plan='standard'] .version-name {
    font-size: 13px;
    opacity: 0.9;
}

.cmp-version-card[data-plan='professional'] .version-name {
    font-size: 14px;
}

.cmp-version-card[data-plan='honored'] .version-name,
.cmp-version-card[data-plan='flagship'] .version-name,
.cmp-version-card[data-plan='nine-star-service'] .version-name {
    font-size: 15px;
}

.cmp-version-card .version-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgb(255, 255, 255, 0.55);
    box-shadow: 0 8px 18px rgb(15, 23, 42, 0.06);
    position: relative;
}

.cmp-version-card .version-badge:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentcolor;
    opacity: 0.9;
}

.cmp-version-card .version-badge.badge-starter {
    background: linear-gradient(135deg, rgb(96, 165, 250, 0.16), rgb(255, 255, 255, 0.55));
    color: #60a5fa;
}

.cmp-version-card .version-badge.badge-popular {
    background: linear-gradient(135deg, rgb(34, 197, 94, 0.16), rgb(255, 255, 255, 0.55));
    color: #22c55e;
}

.cmp-version-card .version-badge.badge-value {
    background: linear-gradient(135deg, rgb(139, 92, 246, 0.16), rgb(255, 255, 255, 0.55));
    color: #8b5cf6;
}

.cmp-version-card .version-badge.badge-hot {
    background: linear-gradient(135deg, rgb(249, 115, 22, 0.16), rgb(255, 255, 255, 0.55));
    color: #f97316;
}

.cmp-version-card .version-badge.badge-custom {
    background: linear-gradient(135deg, rgb(176, 141, 87, 0.24), rgb(117, 88, 42, 0.14), rgb(255, 255, 255, 0.55));
    color: #b08d57;
    border-color: rgb(176, 141, 87, 0.24);
}

.cmp-version-card .version-note {
    font-size: 11px;
    font-weight: 600;
    color: var(--plan-accent, #667085);
    padding: 4px 10px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.55);
    border: 1px solid color-mix(in srgb, var(--plan-accent, #667085) 14%, transparent);
}

.version-value-path {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgb(15, 23, 42, 0.04);
    border: 1px solid rgb(15, 23, 42, 0.05);
    display: flex;
    justify-content: center;
}

.version-value-path .path-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.version-value-path .path-node {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.8);
    border: 1px solid rgb(15, 23, 42, 0.06);
    color: var(--ui-text, #1a1a1a);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgb(15, 23, 42, 0.04);
}

.version-value-path .path-node.is-selected {
    border-color: var(--plan-accent, #ec4899);
    box-shadow:
        0 10px 24px rgb(15, 23, 42, 0.1),
        0 0 0 3px rgb(236, 72, 153, 0.12);
    background: linear-gradient(135deg, rgb(255, 255, 255, 0.98), rgb(236, 72, 153, 0.08));
    transform: translateY(-1px);
    animation: cmpPathPulse 1.6s ease-in-out infinite;
}

.version-value-path .path-start.is-selected {
    background: linear-gradient(135deg, rgb(74, 132, 232, 0.12), rgb(255, 255, 255, 0.98));
    box-shadow:
        0 10px 24px rgb(74, 132, 232, 0.12),
        0 0 0 3px rgb(74, 132, 232, 0.12);
}

.version-value-path .path-end.is-selected {
    background: linear-gradient(135deg, rgb(99, 102, 241, 0.14), rgb(255, 255, 255, 0.98));
    box-shadow:
        0 10px 24px rgb(99, 102, 241, 0.14),
        0 0 0 3px rgb(99, 102, 241, 0.12);
}

@keyframes cmpPathPulse {

    0%,
    100% {
        box-shadow:
            0 10px 24px rgb(15, 23, 42, 0.1),
            0 0 0 3px rgb(236, 72, 153, 0.12);
    }

    50% {
        box-shadow:
            0 12px 28px rgb(15, 23, 42, 0.14),
            0 0 0 8px rgb(236, 72, 153, 0.08);
    }
}

.version-value-path .path-start {
    color: #4a84e8;
}

.version-value-path .path-end {
    color: #6366f1;
    background: linear-gradient(135deg, rgb(99, 102, 241, 0.12), rgb(236, 72, 153, 0.08));
}

.version-value-path .path-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 18px;
    flex-shrink: 0;
    position: relative;
}

.version-value-path .path-arrow svg {
    width: 26px;
    height: 18px;
    color: rgb(99, 102, 241, 0.9);
    filter: drop-shadow(0 0 6px rgb(99, 102, 241, 0.18));
    animation: cmpArrowFlow 1.8s linear infinite;
}

@keyframes cmpArrowFlow {
    0% {
        transform: translateX(-1px);
        opacity: 0.75;
    }

    50% {
        transform: translateX(1px);
        opacity: 1;
    }

    100% {
        transform: translateX(-1px);
        opacity: 0.75;
    }
}

.version-selected-count {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--ui-text-muted, #888);
    padding: 10px 14px;
    border-radius: 999px;
    background: rgb(15, 23, 42, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgb(15, 23, 42, 0.04);
}

.version-selected-count span {
    color: var(--pink);
    font-weight: 700;
}

.dark-mode .version-value-path {
    background: rgb(255, 255, 255, 0.04);
    border-color: rgb(255, 255, 255, 0.06);
}

.dark-mode .version-value-path .path-node {
    background: rgb(255, 255, 255, 0.06);
    border-color: rgb(255, 255, 255, 0.08);
    color: var(--ui-text, #e5e5e5);
}

.dark-mode .version-value-path .path-node .node-desc {
    color: rgb(191, 219, 254, 0.72);
}

.dark-mode .version-value-path .path-start .node-desc {
    color: #8ab4ff;
}

.dark-mode .version-value-path .path-end .node-desc {
    color: #a5b4fc;
}

.dark-mode .version-value-path .path-start {
    color: #8ab4ff;
}

.dark-mode .version-value-path .path-end {
    color: #a5b4fc;
    background: linear-gradient(135deg, rgb(99, 102, 241, 0.18), rgb(236, 72, 153, 0.12));
}

.dark-mode .version-value-path .path-arrow svg {
    color: rgb(165, 180, 252, 0.9);
}

.dark-mode .version-value-path .path-node.is-selected {
    background: linear-gradient(135deg, rgb(99, 102, 241, 0.18), rgb(255, 255, 255, 0.08));
    box-shadow:
        0 10px 24px rgb(0, 0, 0, 0.28),
        0 0 0 3px rgb(165, 180, 252, 0.16);
    animation: cmpPathPulseDark 1.6s ease-in-out infinite;
}

@keyframes cmpPathPulseDark {

    0%,
    100% {
        box-shadow:
            0 10px 24px rgb(0, 0, 0, 0.28),
            0 0 0 3px rgb(165, 180, 252, 0.16);
    }

    50% {
        box-shadow:
            0 12px 28px rgb(0, 0, 0, 0.34),
            0 0 0 8px rgb(165, 180, 252, 0.1);
    }
}

/* ================= 选择页 - 确认按钮 ================= */
.cmp-confirm-bar {
    text-align: center;
    margin-top: 34px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.35s ease;
    pointer-events: none;
}

.cmp-confirm-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cmp-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--pink), #6366f1 70%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
    box-shadow: 0 12px 30px rgb(236, 72, 153, 0.28);
    min-width: 180px;
}

.cmp-confirm-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgb(236, 72, 153, 0.34);
    filter: saturate(1.05);
}

.cmp-confirm-btn:active {
    transform: translateY(0);
}

.cmp-confirm-btn:disabled {
    cursor: not-allowed;
    opacity: 0.58;
    box-shadow: none;
}

.cmp-confirm-btn svg {
    width: 18px;
    height: 18px;
}

/* ================= 结果页 - 顶部信息栏 ================= */
.cmp-result-header {
    position: relative;
    margin: 132px 20px 28px;
    padding: 24px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgb(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.78), rgb(255, 255, 255, 0.55));
    box-shadow: 0 18px 48px rgb(15, 23, 42, 0.08);
    text-align: left;
}

.dark-mode .cmp-result-header {
    border-color: rgb(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgb(17, 24, 39, 0.84), rgb(17, 24, 39, 0.64)),
        radial-gradient(circle at top right, rgb(59, 130, 246, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgb(168, 85, 247, 0.12), transparent 28%);
    box-shadow: 0 20px 50px rgb(0, 0, 0, 0.32);
}

.cmp-result-header:before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgb(236, 72, 153, 0.14), transparent 28%),
        radial-gradient(circle at bottom left, rgb(74, 132, 232, 0.12), transparent 30%);
    pointer-events: none;
}

.dark-mode .cmp-result-header:before {
    background:
        radial-gradient(circle at top right, rgb(59, 130, 246, 0.18), transparent 30%),
        radial-gradient(circle at bottom left, rgb(168, 85, 247, 0.14), transparent 28%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.03), rgb(255, 255, 255, 0));
}

.cmp-result-header-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cmp-result-orb,
.cmp-result-grid {
    display: none;
}

.cmp-result-header-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.cmp-result-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 6px 0 20px;
}

.cmp-result-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgb(0, 122, 255, 0.12);
    color: #007aff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cmp-result-title-block h1 {
    margin-bottom: 8px;
}

.cmp-result-title-block .result-desc {
    max-width: 680px;
    margin: 0 auto;
}

.dark-mode .cmp-result-kicker {
    background: rgb(59, 130, 246, 0.16);
    color: #93c5fd;
}

.dark-mode .cmp-result-header h1 {
    color: rgb(255, 255, 255, 0.96);
}

.dark-mode .cmp-result-header .result-desc {
    color: rgb(226, 232, 240, 0.72);
}

.cmp-broadcast-area {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgb(255, 255, 255, 0.72);
    border: 1px solid rgb(15, 23, 42, 0.06);
    box-shadow: 0 10px 24px rgb(15, 23, 42, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cmp-broadcast-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 72px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgb(0, 122, 255, 0.12);
    color: #007aff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgb(0, 122, 255, 0.08);
}

.cmp-broadcast-label svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.cmp-broadcast-track {
    display: grid;
    gap: 8px;
}

.cmp-broadcast-line {
    position: relative;
    padding-left: 10px;
    color: var(--ui-text-muted, #5c6570);
    font-size: 13px;
    line-height: 1.55;
}

.cmp-broadcast-line:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgb(0, 122, 255, 0.8);
}

.cmp-broadcast-line span {
    color: #007aff;
    font-weight: 700;
}

.cmp-result-header .result-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px rgb(15, 23, 42, 0.08);
}

.cmp-result-header .result-type-badge.badge-version {
    background: rgb(74, 132, 232, 0.12);
    color: #3b82f6;
}

.cmp-result-header .result-type-badge.badge-channel {
    background: rgb(236, 72, 153, 0.12);
    color: var(--pink);
}

.cmp-result-header .result-type-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cmp-result-header h1 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 850;
    color: var(--ui-text, #111827);
    margin-bottom: 8px;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.cmp-result-header .result-desc {
    font-size: 14px;
    color: var(--ui-text-muted, #64748b);
    max-width: 620px;
    line-height: 1.7;
    margin: 0;
}

.cmp-price-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.cmp-price-summary-item {
    position: relative;
    overflow: hidden;
    min-height: 108px;
    padding: 10px 12px 9px 16px;
    border-radius: 20px;
    background: rgb(255, 255, 255, 0.78);
    border: 1px solid rgb(15, 23, 42, 0.06);
    box-shadow: 0 8px 22px rgb(15, 23, 42, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.dark-mode .cmp-price-summary-item {
    background: rgb(17, 24, 39, 0.72);
    border-color: rgb(255, 255, 255, 0.08);
    box-shadow: 0 10px 26px rgb(0, 0, 0, 0.26);
}

.cmp-price-summary-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--ui-text-muted, #7b8794);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cmp-price-summary-item strong {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-size: 19px;
    font-weight: 850;
    color: var(--ui-text, #111827);
    line-height: 1.02;
}

.dark-mode .cmp-price-summary-item strong,
.dark-mode .cmp-price-summary-item em,
.dark-mode .cmp-price-summary-label {
    color: rgb(255, 255, 255, 0.88);
}

.cmp-price-summary-item strong .cmp-main-value {
    font-size: 30px;
    letter-spacing: -0.05em;
}

.cmp-price-summary-item em {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-size: 10px;
    color: rgb(92, 101, 112, 0.74);
    line-height: 1.38;
}

.cmp-price-summary-high {
    border-top: 3px solid #f97316;
}

.cmp-price-summary-low {
    border-top: 3px solid #10b981;
}

.cmp-price-summary-gap {
    border-top: 3px solid #6366f1;
}

.cmp-price-summary-reco {
    border-top: 3px solid #ec4899;
}

.dark-mode .cmp-price-summary-high {
    border-top-color: #fb923c;
}

.dark-mode .cmp-price-summary-low {
    border-top-color: #34d399;
}

.dark-mode .cmp-price-summary-gap {
    border-top-color: #818cf8;
}

.dark-mode .cmp-price-summary-reco {
    border-top-color: #a78bfa;
}

.cmp-price-summary-item.recommended {
    box-shadow: 0 10px 24px rgb(59, 130, 246, 0.1);
    border-color: rgb(59, 130, 246, 0.2);
}

.cmp-price-summary-item.recommended:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 50%, #6366f1 100%);
}

.cmp-card-badge {
    position: absolute;
    top: 12px;
    right: -32px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    padding: 4px 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, var(--pink, #ec4899), #6366f1);
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgb(236, 72, 153, 0.28);
    text-align: center;
    pointer-events: none;
}

.cmp-result-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.56);
    border: 1px solid rgb(15, 23, 42, 0.06);
    color: var(--ui-text, #334155);
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgb(15, 23, 42, 0.04);
}

.cmp-result-meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--pink);
    flex-shrink: 0;
}

.cmp-broadcast-focus {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgb(0, 122, 255, 0.08);
    border: 1px solid rgb(0, 122, 255, 0.12);
    overflow: hidden;
}

.cmp-broadcast-focus.is-rolling {
    animation: cmpFocusPulse 3.2s ease-in-out infinite;
}

.cmp-focus-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgb(0, 122, 255, 0.12);
    color: #007aff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgb(0, 122, 255, 0.08);
    flex-shrink: 0;
}

#cmpResultFocus {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--ui-text, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#cmpResultFocusText {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    transition:
        opacity 220ms ease,
        transform 220ms ease,
        filter 220ms ease;
    will-change: opacity, transform;
}

#cmpResultFocusText.is-fading-out {
    opacity: 0;
    transform: translateY(4px);
    filter: blur(1px);
}

#cmpResultFocusText.is-fading-in {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.cmp-reco-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 55%, #8b5cf6 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgb(99, 102, 241, 0.22);
}

@keyframes cmpFocusPulse {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 24px rgb(15, 23, 42, 0.05);
    }

    50% {
        transform: translateY(-1px);
        box-shadow: 0 12px 30px rgb(15, 23, 42, 0.07);
    }
}

/* ================= 结果页 - 切换标签 ================= */
.cmp-result-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cmp-result-tab {
    padding: 8px 20px;
    border: 1px solid rgb(0, 0, 0, 0.08);
    border-radius: 10px;
    background: rgb(255, 255, 255, 0.6);
    color: var(--ui-text-muted, #888);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cmp-result-tab:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.cmp-result-tab.active {
    background: linear-gradient(135deg, var(--pink), #6366f1);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgb(236, 72, 153, 0.25);
}

/* ================= 结果页 - 统计概览 ================= */
.cmp-stats-bar {
    position: relative;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 auto 38px;
    max-width: 1400px;
    padding: 0 20px;
    perspective: 1200px;
}

.cmp-stats-bar.is-drawer-open .cmp-stat-item:not(.stat-open) {
    filter: blur(1.5px) saturate(0.88);
    opacity: 0.62;
    transform: scale(0.985);
}

.cmp-stat-item {
    --stat-accent: #3b82f6;
    --stat-accent-soft: rgb(59, 130, 246, 0.18);
    --stat-sheen-x: 50%;

    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas:
        'icon value'
        'icon label'
        'bar bar';
    gap: 5px 15px;
    text-align: left;
    padding: 18px 18px 16px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.88), rgb(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.32), rgb(255, 255, 255, 0.08));
    border: 1px solid rgb(255, 255, 255, 0.72);
    box-shadow:
        0 22px 50px rgb(15, 23, 42, 0.08),
        0 4px 18px rgb(255, 255, 255, 0.34) inset,
        inset 0 1px 0 rgb(255, 255, 255, 0.92);
    backdrop-filter: blur(26px) saturate(175%);
    -webkit-backdrop-filter: blur(26px) saturate(175%);
    overflow: visible;
    transform-origin: center bottom;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        filter 0.3s ease,
        opacity 0.3s ease,
        background 0.35s ease;
}

.cmp-stat-item:hover {
    transform: translateY(-7px) scale(1.02) rotateX(4deg);
    border-color: rgb(255, 255, 255, 0.88);
    box-shadow:
        0 28px 56px rgb(15, 23, 42, 0.14),
        0 12px 28px color-mix(in srgb, var(--stat-accent) 18%, transparent),
        0 4px 20px rgb(255, 255, 255, 0.42) inset,
        inset 0 1px 0 rgb(255, 255, 255, 0.98);
}

.cmp-stat-item:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at var(--stat-sheen-x) -10%, rgb(255, 255, 255, 0.78), transparent 32%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.32), transparent 48%),
        radial-gradient(circle at 88% 120%, color-mix(in srgb, var(--stat-accent) 15%, transparent), transparent 34%);
    opacity: 0.96;
    pointer-events: none;
}

.cmp-stat-item:after {
    content: none;
}

.cmp-stat-item:nth-child(1) {
    --stat-accent: #3b82f6;
    --stat-accent-soft: rgb(59, 130, 246, 0.18);
}

.cmp-stat-item:nth-child(2) {
    --stat-accent: #ec4899;
    --stat-accent-soft: rgb(236, 72, 153, 0.18);
}

.cmp-stat-item:nth-child(3) {
    --stat-accent: #6366f1;
    --stat-accent-soft: rgb(99, 102, 241, 0.18);
}

.cmp-stat-item:nth-child(4) {
    --stat-accent: #10b981;
    --stat-accent-soft: rgb(16, 185, 129, 0.18);
}

.cmp-stat-icon {
    grid-area: icon;
    width: 52px;
    height: 52px;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    align-self: start;
    background:
        radial-gradient(circle at 32% 18%, rgb(255, 255, 255, 0.82), transparent 42%),
        color-mix(in srgb, var(--stat-accent) 14%, white);
    color: var(--stat-accent);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.78),
        inset 0 -10px 18px color-mix(in srgb, var(--stat-accent) 10%, transparent),
        0 10px 22px var(--stat-accent-soft);
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.cmp-stat-item:hover .cmp-stat-icon,
.cmp-stat-item.stat-open .cmp-stat-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.86),
        inset 0 -10px 20px color-mix(in srgb, var(--stat-accent) 12%, transparent),
        0 14px 28px var(--stat-accent-soft);
}

.cmp-stat-icon svg {
    width: 21px;
    height: 21px;
    filter: drop-shadow(0 3px 6px color-mix(in srgb, var(--stat-accent) 18%, transparent));
    transition: transform 0.35s ease;
}

.cmp-stat-item:hover .cmp-stat-icon svg {
    transform: scale(1.06);
}

.cmp-stat-num {
    grid-area: value;
    font-size: 34px;
    font-weight: 820;
    font-family: var(--font-mono, 'SF Mono', 'Fira Code', monospace);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin: 0;
    align-self: end;
}

.cmp-stat-item:nth-child(1) .cmp-stat-num {
    color: #2563eb;
}

.cmp-stat-item:nth-child(2) .cmp-stat-num {
    color: #db2777;
}

.cmp-stat-item:nth-child(3) .cmp-stat-num {
    color: #4f46e5;
}

.cmp-stat-item:nth-child(4) .cmp-stat-num {
    color: #059669;
}

.cmp-stat-item:hover .cmp-stat-num,
.cmp-stat-item.stat-open .cmp-stat-num {
    text-shadow: 0 8px 22px color-mix(in srgb, var(--stat-accent) 22%, transparent);
    animation: cmpStatNumberFloat 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cmp-stat-label {
    grid-area: label;
    font-size: 13px;
    color: rgb(71, 85, 105, 0.76);
    margin: 0;
    font-weight: 650;
    letter-spacing: -0.01em;
    align-self: start;
}

.cmp-stat-bar {
    position: relative;
    grid-area: bar;
    margin-top: 14px;
    height: 9px;
    border-radius: 999px;
    background: rgb(15, 23, 42, 0.06);
    overflow: hidden;
    box-shadow:
        inset 0 1px 1px rgb(255, 255, 255, 0.72),
        inset 0 -1px 2px rgb(15, 23, 42, 0.05);
}

.cmp-stat-bar:after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.32), transparent 70%);
    pointer-events: none;
}

.cmp-stat-bar-fill {
    position: relative;
    height: 100%;
    border-radius: inherit;
    transition:
        width 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.3s ease;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--stat-accent) 30%, transparent);
}

.cmp-stat-bar-fill:after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg,
            rgb(255, 255, 255, 0.15),
            rgb(255, 255, 255, 0.75) 48%,
            rgb(255, 255, 255, 0.15));
    opacity: 0.9;
    transform: translateX(-100%);
    animation: cmpStatProgressShimmer 2.8s ease-in-out infinite;
}

.cmp-stat-item:nth-child(1) .cmp-stat-bar-fill {
    background: linear-gradient(90deg, #93c5fd, #3b82f6);
}

.cmp-stat-item:nth-child(2) .cmp-stat-bar-fill {
    background: linear-gradient(90deg, #f9a8d4, #ec4899);
}

.cmp-stat-item:nth-child(3) .cmp-stat-bar-fill {
    background: linear-gradient(90deg, #a5b4fc, #6366f1);
}

.cmp-stat-item:nth-child(4) .cmp-stat-bar-fill {
    background: linear-gradient(90deg, #6ee7b7, #10b981);
}

/* 暗黑模式 */
.dark-mode .cmp-stats-bar {
    padding: 0 20px;
}

.dark-mode .cmp-stat-item {
    background:
        linear-gradient(180deg, rgb(24, 31, 46, 0.82), rgb(10, 14, 24, 0.7)),
        radial-gradient(circle at 50% -10%, rgb(255, 255, 255, 0.08), transparent 42%);
    border-color: rgb(255, 255, 255, 0.1);
    box-shadow:
        0 18px 44px rgb(0, 0, 0, 0.34),
        inset 0 1px 0 rgb(255, 255, 255, 0.08);
}

.dark-mode .cmp-stat-item:hover {
    box-shadow:
        0 26px 52px rgb(0, 0, 0, 0.42),
        0 10px 26px color-mix(in srgb, var(--stat-accent) 16%, transparent),
        inset 0 1px 0 rgb(255, 255, 255, 0.1);
}

.dark-mode .cmp-stat-label {
    color: rgb(226, 232, 240, 0.76);
}

.dark-mode .cmp-stat-bar {
    background: rgb(255, 255, 255, 0.08);
}

.cmp-stat-detail {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 99999;
    display: none;
    padding: 14px 14px 12px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.96), rgb(255, 255, 255, 0.88)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.28), rgb(255, 255, 255, 0.08));
    border: 1px solid rgb(15, 23, 42, 0.08);
    box-shadow:
        0 18px 38px rgb(15, 23, 42, 0.12),
        inset 0 1px 0 rgb(255, 255, 255, 0.8);
    backdrop-filter: blur(24px) saturate(165%);
    -webkit-backdrop-filter: blur(24px) saturate(165%);
    text-align: left;
    transform-origin: 34px top;
    animation: cmpStatDrawerIn 0.34s cubic-bezier(0.2, 1.18, 0.32, 1);
}

.cmp-stat-detail:before {
    content: '';
    position: absolute;
    top: -7px;
    left: 26px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    background: rgb(255, 255, 255, 0.94);
    border-left: 1px solid rgb(15, 23, 42, 0.08);
    border-top: 1px solid rgb(15, 23, 42, 0.08);
}

@keyframes cmpStatDrawerIn {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.92);
        filter: blur(6px);
    }

    66% {
        opacity: 1;
        transform: translateY(2px) scale(1.025);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes cmpStatProgressShimmer {

    0%,
    34% {
        transform: translateX(-110%);
    }

    70%,
    100% {
        transform: translateX(110%);
    }
}

@keyframes cmpStatNumberFloat {
    0% {
        transform: translateY(0) scale(1);
    }

    45% {
        transform: translateY(-2px) scale(1.035);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .cmp-stat-item,
    .cmp-stat-icon,
    .cmp-stat-icon svg,
    .cmp-stat-bar-fill,
    .cmp-stat-tag {
        transition-duration: 0.01ms !important;
        animation: none !important;
    }
}

.dark-mode .cmp-stat-detail {
    background:
        linear-gradient(180deg, rgb(22, 28, 40, 0.96), rgb(15, 23, 42, 0.9)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.06), rgb(255, 255, 255, 0.02));
    border-color: rgb(255, 255, 255, 0.08);
    box-shadow:
        0 22px 46px rgb(0, 0, 0, 0.34),
        inset 0 1px 0 rgb(255, 255, 255, 0.06);
}

.dark-mode .cmp-stat-detail:before {
    background: rgb(21, 27, 39, 0.96);
    border-left-color: rgb(255, 255, 255, 0.08);
    border-top-color: rgb(255, 255, 255, 0.08);
}

.cmp-stat-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 3px 4px 3px 0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 650;
    background: rgb(255, 255, 255, 0.64);
    border: 1px solid rgb(255, 255, 255, 0.68);
    color: rgb(51, 65, 85, 0.88);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.72),
        0 5px 14px rgb(15, 23, 42, 0.05);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    cursor: pointer;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

button.cmp-stat-tag {
    appearance: none;
    -webkit-appearance: none;
}

.cmp-stat-tag:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgb(255, 255, 255, 0.84);
    border-color: color-mix(in srgb, var(--stat-accent, #3b82f6) 22%, rgb(255, 255, 255, 0.72));
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.82),
        0 10px 22px color-mix(in srgb, var(--stat-accent, #3b82f6) 12%, transparent);
}

.dark-mode .cmp-stat-tag {
    background: rgb(255, 255, 255, 0.08);
    border-color: rgb(255, 255, 255, 0.1);
    color: rgb(226, 232, 240, 0.84);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.08),
        0 6px 16px rgb(0, 0, 0, 0.16);
}

.cmp-stat-upgrade-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgb(255, 255, 255, 0.52);
    border: 1px solid rgb(15, 23, 42, 0.05);
    margin-bottom: 6px;
    transition: background 0.2s ease;
}

.cmp-stat-upgrade-row:last-child {
    margin-bottom: 0;
}

.cmp-stat-upgrade-row:hover {
    background: rgb(255, 255, 255, 0.72);
}

.cmp-stat-upgrade-path {
    font-size: 12px;
    font-weight: 700;
    color: var(--stat-accent, #3b82f6);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.cmp-stat-upgrade-count {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgb(16, 185, 129, 0.1);
    padding: 1px 7px;
    border-radius: 6px;
    white-space: nowrap;
}

.cmp-stat-upgrade-feats {
    font-size: 11px;
    color: rgb(71, 85, 105, 0.72);
    flex-basis: 100%;
    line-height: 1.5;
}

.dark-mode .cmp-stat-upgrade-row {
    background: rgb(255, 255, 255, 0.06);
    border-color: rgb(255, 255, 255, 0.06);
}

.dark-mode .cmp-stat-upgrade-row:hover {
    background: rgb(255, 255, 255, 0.1);
}

.dark-mode .cmp-stat-upgrade-path {
    color: var(--stat-accent, #60a5fa);
}

.dark-mode .cmp-stat-upgrade-count {
    color: #34d399;
    background: rgb(52, 211, 153, 0.12);
}

.dark-mode .cmp-stat-upgrade-feats {
    color: rgb(226, 232, 240, 0.6);
}

.cmp-stat-item.stat-open {
    z-index: 20;
    transform: translateY(-6px) scale(1.018);
    border-color: color-mix(in srgb, var(--stat-accent) 26%, rgb(255, 255, 255, 0.72));
    box-shadow:
        0 24px 50px color-mix(in srgb, var(--stat-accent) 18%, transparent),
        0 8px 26px rgb(15, 23, 42, 0.1),
        inset 0 1px 0 rgb(255, 255, 255, 0.9);
}

.dark-mode .cmp-stat-item.stat-open {
    border-color: color-mix(in srgb, var(--stat-accent) 30%, rgb(255, 255, 255, 0.12));
    box-shadow:
        0 26px 54px rgb(0, 0, 0, 0.42),
        0 0 0 1px color-mix(in srgb, var(--stat-accent) 12%, transparent),
        0 10px 28px color-mix(in srgb, var(--stat-accent) 18%, transparent),
        inset 0 1px 0 rgb(255, 255, 255, 0.1);
}

/* ================= 功能说明覆盖 pricing.css 桌面隐藏 ================= */
.comparison-section .feature-row {
    position: relative;
}

.comparison-table .category-row.cmp-jump-highlight>th,
.comparison-table .category-row.cmp-jump-highlight>td {
    position: relative;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.82), rgb(248, 250, 252, 0.72)),
        linear-gradient(90deg, rgb(0, 122, 255, 0.1), rgb(0, 122, 255, 0.025) 42%, transparent);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.72),
        inset 0 -1px 0 rgb(15, 23, 42, 0.04),
        0 8px 22px rgb(0, 122, 255, 0.08);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    animation: cmpJumpGlow 1.65s cubic-bezier(0.22, 0.7, 0.22, 1) both;
}

.category-row.cmp-jump-highlight>th:first-child:before,
.category-row.cmp-jump-highlight>td:first-child:before {
    content: '';
    position: absolute;
    left: 8px;
    top: 11px;
    bottom: 11px;
    width: 4px;
    border-radius: 999px;
    background: #007aff;
    box-shadow: 0 0 0 3px rgb(0, 122, 255, 0.1);
    animation: cmpJumpBarPulse 1.25s ease-in-out 2;
}

.category-row.cmp-jump-highlight>th:first-child:after,
.category-row.cmp-jump-highlight>td:first-child:after {
    content: '已定位';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    padding: 3px 8px;
    border-radius: 999px;
    background: rgb(0, 122, 255, 0.1);
    color: #007aff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: inset 0 0 0 1px rgb(0, 122, 255, 0.1);
    animation: cmpJumpMarkerPulse 1.25s ease-in-out 2;
}

.category-row.cmp-jump-highlight>th:first-child,
.category-row.cmp-jump-highlight>td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.category-row.cmp-jump-highlight>th:last-child,
.category-row.cmp-jump-highlight>td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.dark-mode .comparison-table .category-row.cmp-jump-highlight>th,
.dark-mode .comparison-table .category-row.cmp-jump-highlight>td {
    background:
        linear-gradient(180deg, rgb(22, 28, 40, 0.92), rgb(15, 23, 42, 0.82)),
        linear-gradient(90deg, rgb(10, 132, 255, 0.16), rgb(10, 132, 255, 0.04) 42%, transparent);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.06),
        inset 0 -1px 0 rgb(0, 0, 0, 0.22),
        0 10px 24px rgb(10, 132, 255, 0.1);
}

.dark-mode .category-row.cmp-jump-highlight>th:first-child:before,
.dark-mode .category-row.cmp-jump-highlight>td:first-child:before {
    background: #0a84ff;
    box-shadow: 0 0 0 3px rgb(10, 132, 255, 0.14);
}

.dark-mode .category-row.cmp-jump-highlight>th:first-child:after,
.dark-mode .category-row.cmp-jump-highlight>td:first-child:after {
    background: rgb(10, 132, 255, 0.14);
    color: #93c5fd;
    box-shadow: inset 0 0 0 1px rgb(10, 132, 255, 0.16);
}

@keyframes cmpJumpGlow {
    0% {
        transform: scale(0.998);
        filter: saturate(1.04);
    }

    22% {
        transform: scale(1.004);
        filter: saturate(1.08);
    }

    100% {
        transform: scale(1);
        filter: saturate(1);
    }
}

@keyframes cmpJumpMarkerPulse {

    0%,
    100% {
        opacity: 0.85;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.18);
    }
}

@keyframes cmpJumpBarPulse {

    0%,
    100% {
        opacity: 0.86;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.12);
    }
}

.feature-group.cmp-jump-group-highlight td {
    background: rgb(59, 130, 246, 0.035);
    transition: background-color 0.28s ease;
}

.dark-mode .feature-group.cmp-jump-group-highlight td {
    background: rgb(96, 165, 250, 0.08);
}

.comparison-section .feature-container {
    position: relative;
}

/* 复用 pricing.html 的 iOS 26 玻璃拟态说明层 */
.comparison-section .feature-note.feature-note {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(14px) scale(0.98);
    width: clamp(200px, 28vw, 380px);
    max-width: calc(100vw - 24px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.72) 0%, rgb(255, 255, 255, 0.54) 100%), rgb(248, 250, 255, 0.78);
    border: 1px solid rgb(255, 255, 255, 0.45);
    box-shadow:
        0 24px 60px rgb(15, 23, 42, 0.14),
        inset 0 1px 0 rgb(255, 255, 255, 0.7),
        inset 0 -1px 0 rgb(255, 255, 255, 0.35);
    backdrop-filter: blur(28px) saturate(185%);
    -webkit-backdrop-filter: blur(28px) saturate(185%);
}

.comparison-section .feature-note:before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgb(79, 70, 229, 0.22), transparent 34%),
        radial-gradient(circle at top right, rgb(56, 189, 248, 0.18), transparent 30%),
        radial-gradient(circle at bottom, rgb(255, 255, 255, 0.22), transparent 55%);
    pointer-events: none;
}

.comparison-section .feature-note:after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    border: 1px solid rgb(255, 255, 255, 0.25);
    pointer-events: none;
}

.comparison-section .feature-note-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px 10px;
    background: rgb(255, 255, 255, 0.34);
    border-bottom: 1px solid rgb(255, 255, 255, 0.45);
    color: #1d4ed8;
    font-weight: 700;
    font-size: 13px;
}

.comparison-section .feature-note-header svg {
    flex-shrink: 0;
}

.comparison-section .feature-note-close {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgb(15, 23, 42, 0.06);
    color: rgb(15, 23, 42, 0.45);
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    padding: 0;
}

.comparison-section .feature-note-close:hover {
    background: rgb(15, 23, 42, 0.12);
    color: rgb(15, 23, 42, 0.7);
}

.dark-mode .comparison-section .feature-note-close {
    background: rgb(255, 255, 255, 0.08);
    color: rgb(255, 255, 255, 0.4);
}

.dark-mode .comparison-section .feature-note-close:hover {
    background: rgb(255, 255, 255, 0.16);
    color: rgb(255, 255, 255, 0.7);
}

.comparison-section .feature-note-content {
    position: relative;
    padding: 14px;
    background: rgb(255, 255, 255, 0.1);
}

.comparison-section .feature-note-content p {
    margin: 0;
    color: rgb(15, 23, 42, 0.82);
    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
    word-break: break-word;
}

.comparison-section .feature-info-btn {
    background-image:
        radial-gradient(45% 45% at 30% 28%,
            rgb(255, 255, 255, 0.98) 0%,
            rgb(255, 255, 255, 0.36) 70%,
            rgb(255, 255, 255, 0) 100%),
        linear-gradient(145deg, rgb(255, 255, 255, 0.9), rgb(186, 230, 253, 0.56));
    border-color: rgb(255, 255, 255, 0.82);
    box-shadow:
        inset 0 1px 1px rgb(255, 255, 255, 0.95),
        0 6px 16px rgb(15, 23, 42, 0.14);
}

/* ================= 版本价格卡片 ================= */
.cmp-price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.cmp-price-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.88), rgb(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.32), rgb(255, 255, 255, 0.08));
    border: 1px solid rgb(255, 255, 255, 0.72);
    box-shadow:
        0 22px 50px rgb(15, 23, 42, 0.08),
        0 4px 18px rgb(255, 255, 255, 0.34) inset,
        inset 0 1px 0 rgb(255, 255, 255, 0.92);
    backdrop-filter: blur(26px) saturate(175%);
    -webkit-backdrop-filter: blur(26px) saturate(175%);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.cmp-price-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgb(255, 255, 255, 0.88);
    box-shadow:
        0 26px 52px rgb(15, 23, 42, 0.12),
        0 8px 24px rgb(255, 255, 255, 0.4) inset,
        inset 0 1px 0 rgb(255, 255, 255, 0.98);
}

.dark-mode .cmp-price-card {
    background:
        linear-gradient(180deg, rgb(24, 31, 46, 0.82), rgb(10, 14, 24, 0.7)),
        radial-gradient(circle at 50% -10%, rgb(255, 255, 255, 0.08), transparent 42%);
    border-color: rgb(255, 255, 255, 0.08);
    box-shadow:
        0 22px 50px rgb(0, 0, 0, 0.24),
        inset 0 1px 0 rgb(255, 255, 255, 0.08);
}

.dark-mode .cmp-price-card:hover {
    box-shadow:
        0 26px 52px rgb(0, 0, 0, 0.32),
        inset 0 1px 0 rgb(255, 255, 255, 0.1);
}

.cmp-price-card-bar {
    height: 4px;
    width: 100%;
    border-radius: 24px 24px 0 0;
}

.cmp-price-card-body {
    position: relative;
    padding: 20px 18px 18px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.cmp-price-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ui-text, #333);
    margin-bottom: 6px;
}

.cmp-price-card-price {
    font-size: 26px;
    font-weight: 800;
    font-family: var(--font-mono, monospace);
    color: var(--ui-text, #111);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cmp-price-card-count {
    font-size: 13px;
    color: var(--ui-text-muted, #888);
    margin-bottom: 8px;
}

.cmp-price-card-count.cmp-card-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    -webkit-user-select: none;
    transition: color 0.2s ease;
}

.cmp-price-card-count.cmp-card-toggle:hover {
    color: var(--ui-text, #333);
}

.cmp-price-card-count.cmp-card-toggle .toggle-chevron {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.5;
    flex-shrink: 0;
}

.cmp-price-card-count.cmp-card-toggle.is-expanded .toggle-chevron {
    transform: rotate(180deg);
    opacity: 0.8;
}

.cmp-price-card-new.cmp-card-collapsed {
    display: none;
}

.cmp-price-card-new.cmp-card-expanded {
    display: block;
    animation: cmpCardExpand 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cmpCardExpand {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

.cmp-price-card-count b {
    color: var(--ui-text, #333);
    font-weight: 700;
}

.cmp-price-card-new {
    border-top: 1px solid rgb(0, 0, 0, 0.05);
    padding-top: 10px;
    margin-top: 4px;
}

.dark-mode .cmp-price-card-new {
    border-top-color: rgb(255, 255, 255, 0.06);
}

.cmp-price-card-new .new-title {
    font-size: 11px;
    color: var(--ui-text-muted, #888);
    margin-bottom: 6px;
}

.cmp-price-card-new .new-tag {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgb(16, 185, 129, 0.08);
    color: var(--green, #10b981);
    margin: 0 4px 4px 0;
    font-weight: 500;
}

/* ================= 升级路线图 ================= */
.cmp-upgrade-roadmap {
    position: relative;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.88), rgb(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.32), rgb(255, 255, 255, 0.08));
    border: 1px solid rgb(255, 255, 255, 0.72);
    border-radius: 24px;
    padding: 18px 20px 16px;
    margin-bottom: 20px;
    box-shadow:
        0 22px 50px rgb(15, 23, 42, 0.08),
        0 4px 18px rgb(255, 255, 255, 0.34) inset,
        inset 0 1px 0 rgb(255, 255, 255, 0.92);
    backdrop-filter: blur(26px) saturate(175%);
    -webkit-backdrop-filter: blur(26px) saturate(175%);
}

.dark-mode .cmp-upgrade-roadmap {
    background:
        linear-gradient(180deg, rgb(24, 31, 46, 0.82), rgb(10, 14, 24, 0.7)),
        radial-gradient(circle at 50% -10%, rgb(255, 255, 255, 0.08), transparent 42%);
    border-color: rgb(255, 255, 255, 0.08);
    box-shadow:
        0 22px 50px rgb(0, 0, 0, 0.24),
        inset 0 1px 0 rgb(255, 255, 255, 0.08);
}

.roadmap-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ios18-text, #111);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.roadmap-title:before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    border-radius: 1.5px;
    background: var(--ios18-accent, #007aff);
}

.roadmap-track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    padding: 4px 0 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.roadmap-track::-webkit-scrollbar {
    display: none;
}

.roadmap-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1 1 0;
    min-width: 0;
    scroll-snap-align: start;
}

.roadmap-dot {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.88), rgb(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.32), rgb(255, 255, 255, 0.08));
    border: 1px solid rgb(255, 255, 255, 0.72);
    box-shadow:
        0 4px 14px rgb(15, 23, 42, 0.08),
        inset 0 1px 0 rgb(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(175%);
    -webkit-backdrop-filter: blur(20px) saturate(175%);
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}

.dark-mode .roadmap-dot {
    background: linear-gradient(180deg, rgb(24, 31, 46, 0.82), rgb(10, 14, 24, 0.7));
    border-color: rgb(255, 255, 255, 0.08);
    box-shadow:
        0 4px 14px rgb(0, 0, 0, 0.2),
        inset 0 1px 0 rgb(255, 255, 255, 0.06);
}

.roadmap-node:hover .roadmap-dot {
    transform: scale(1.08) rotate(-2deg);
    box-shadow:
        0 8px 24px rgb(15, 23, 42, 0.12),
        inset 0 1px 0 rgb(255, 255, 255, 0.98);
}

.roadmap-dot:after {
    content: '';
    display: none;
}

.roadmap-dot img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.dark-mode .roadmap-dot img {
    filter: brightness(0.92);
}

.roadmap-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ios18-text, #111);
    letter-spacing: -0.02em;
}

.roadmap-price {
    font-size: 11px;
    font-weight: 500;
    font-family: -apple-system, system-ui, 'SF Pro Text', sans-serif;
    color: var(--ios18-subtext, #6b7280);
    background: var(--ios18-accent-soft, rgb(0, 122, 255, 0.08));
    padding: 2px 8px;
    border-radius: 6px;
}

.dark-mode .roadmap-price {
    background: var(--ios18-accent-soft, rgb(10, 132, 255, 0.15));
}

.roadmap-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1 1 0;
    min-width: 32px;
    padding-top: 12px;
}

.roadmap-arrow svg {
    width: 18px;
    height: 18px;
    color: var(--ios18-stroke-strong, rgb(15, 23, 42, 0.1));
}

.dark-mode .roadmap-arrow svg {
    color: var(--ios18-stroke-strong, rgb(148, 163, 184, 0.24));
}

.roadmap-diff {
    font-size: 10px;
    font-weight: 600;
    font-family: -apple-system, system-ui, 'SF Pro Text', sans-serif;
    color: var(--ios18-accent, #007aff);
    background: var(--ios18-accent-soft, rgb(0, 122, 255, 0.08));
    padding: 2px 7px;
    border-radius: 6px;
    white-space: nowrap;
}

.dark-mode .roadmap-diff {
    color: var(--ios18-accent, #0a84ff);
    background: var(--ios18-accent-soft, rgb(10, 132, 255, 0.15));
}

@media (width <=640px) {
    .cmp-price-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .cmp-price-card-body {
        padding: 14px 12px;
    }

    .cmp-price-card-price {
        font-size: 20px;
    }

    .cmp-price-card-new .new-tag {
        font-size: 10px;
    }

    .cmp-upgrade-roadmap {
        padding: 14px 14px 12px;
        border-radius: 20px;
    }

    .roadmap-node {
        flex: 0 0 auto;
        min-width: 72px;
        gap: 3px;
    }

    .roadmap-dot {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .roadmap-dot img {
        width: 22px;
        height: 22px;
        border-radius: 5px;
    }

    .roadmap-arrow {
        flex: 0 0 auto;
        min-width: 40px;
        padding-top: 8px;
    }

    .roadmap-label {
        font-size: 11px;
    }

    .roadmap-price {
        font-size: 10px;
        padding: 1px 6px;
    }

    .roadmap-diff {
        font-size: 9px;
        padding: 1px 5px;
    }
}

@media (width <=400px) {
    .cmp-price-cards {
        grid-template-columns: 1fr;
    }
}

/* ================= 差异圆环图 ================= */
.cmp-donut-wrap {
    position: relative;
    display: block;
    margin: 0 auto 20px;
    max-width: 1180px;
}

.cmp-donut-main-card,
.cmp-donut-chart-shell,
.cmp-donut-side {
    position: relative;
    z-index: 1;
}

.cmp-donut-main-card {
    position: relative;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 300px;
    padding: 46px 20px 20px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.88), rgb(255, 255, 255, 0.72)),
        linear-gradient(135deg, rgb(255, 255, 255, 0.32), rgb(255, 255, 255, 0.08));
    border: 1px solid rgb(255, 255, 255, 0.72);
    box-shadow:
        0 22px 50px rgb(15, 23, 42, 0.08),
        0 4px 18px rgb(255, 255, 255, 0.34) inset,
        inset 0 1px 0 rgb(255, 255, 255, 0.92);
    backdrop-filter: blur(26px) saturate(175%);
    -webkit-backdrop-filter: blur(26px) saturate(175%);
}

.cmp-donut-card-title {
    position: absolute;
    top: 18px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgb(255, 255, 255, 0.62);
    border: 1px solid rgb(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgb(255, 255, 255, 0.88);
    color: rgb(92, 101, 112, 0.9);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.cmp-donut-side {
    transform: translateY(-10px);
}

.cmp-donut-chart-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 256px;
}

.dark-mode .cmp-donut-main-card {
    background:
        linear-gradient(180deg, rgb(24, 31, 46, 0.82), rgb(10, 14, 24, 0.7)),
        radial-gradient(circle at 50% -10%, rgb(255, 255, 255, 0.08), transparent 42%);
    border-color: rgb(255, 255, 255, 0.08);
    box-shadow:
        0 22px 50px rgb(0, 0, 0, 0.24),
        inset 0 1px 0 rgb(255, 255, 255, 0.08);
}

.dark-mode .cmp-donut-card-title {
    background: rgb(255, 255, 255, 0.08);
    border-color: rgb(255, 255, 255, 0.1);
    color: rgb(226, 232, 240, 0.74);
    box-shadow: inset 0 1px 0 rgb(255, 255, 255, 0.08);
}

.cmp-donut-svg {
    overflow: visible;
    transform: translateY(-10px);
}

.cmp-donut-svg text {
    pointer-events: none;
}

.cmp-donut-track {
    stroke: rgb(148, 163, 184, 0.08);
}

.dark-mode .cmp-donut-track {
    stroke: rgb(255, 255, 255, 0.06);
}

.cmp-donut-inner-ring {
    stroke: rgb(255, 255, 255, 0.9);
}

.dark-mode .cmp-donut-inner-ring {
    stroke: rgb(255, 255, 255, 0.14);
}

.cmp-donut-center-disc {
    fill: var(--donut-center-fill, rgb(255, 255, 255, 0.92));
    stroke: var(--donut-center-stroke, rgb(255, 255, 255, 0.98));
    stroke-width: 0.8;
    transform-origin: 110px 110px;
    transform-box: fill-box;
    filter: drop-shadow(0 6px 12px rgb(15, 23, 42, 0.06));
    transition:
        fill 0.24s ease,
        stroke 0.24s ease,
        filter 0.24s ease,
        transform 0.24s ease;
}

.cmp-donut-center-disc.is-active {
    transform: scale(1.02);
    filter: drop-shadow(0 8px 14px rgb(15, 23, 42, 0.08));
}

.dark-mode .cmp-donut-center-disc {
    fill: var(--donut-center-fill, rgb(20, 27, 39, 0.9));
    stroke: var(--donut-center-stroke, rgb(255, 255, 255, 0.12));
    filter: drop-shadow(0 6px 14px rgb(0, 0, 0, 0.22));
}

.dark-mode .cmp-donut-center-disc.is-active {
    filter: drop-shadow(0 8px 18px rgb(0, 0, 0, 0.26));
}

.cmp-donut-total {
    font-size: 31px;
    font-weight: 600;
    fill: var(--donut-total-fill, var(--ui-text, #0f172a));
    font-family: var(--font-sans,
            -apple-system,
            BlinkMacSystemFont,
            'SF Pro Display',
            'SF Pro Text',
            system-ui,
            sans-serif);
    letter-spacing: -0.045em;
    transition:
        fill 0.24s ease,
        opacity 0.24s ease;
}

.cmp-donut-caption {
    font-size: 9px;
    fill: var(--donut-caption-fill, var(--ui-text-muted, #64748b));
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition:
        fill 0.24s ease,
        opacity 0.24s ease;
}

.cmp-donut-seg {
    cursor: pointer;
    stroke-linecap: round;
    filter: drop-shadow(0 4px 8px rgb(15, 23, 42, 0.05));
    transition:
        stroke-width 0.2s ease,
        opacity 0.2s ease,
        filter 0.2s ease,
        stroke 0.2s ease;
    animation: cmpDonutSegmentReveal 0.45s ease both;
}

.cmp-donut-seg:hover,
.cmp-donut-seg.is-active {
    opacity: 1;
    stroke-width: 26;
    filter: drop-shadow(0 6px 10px rgb(15, 23, 42, 0.08));
}

.cmp-donut-seg.is-muted {
    opacity: 0.18;
    stroke-width: 20;
}

.cmp-donut-side-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgb(99, 102, 241, 0.1);
    color: #6366f1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.dark-mode .cmp-donut-side-kicker {
    background: rgb(99, 102, 241, 0.16);
    color: #a5b4fc;
}

.cmp-donut-side-title {
    font-size: clamp(24px, 2.2vw, 30px);
    font-weight: 800;
    color: var(--ui-text, #0f172a);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.cmp-donut-side-subtitle {
    font-size: 14px;
    line-height: 1.75;
    color: var(--ui-text-muted, #64748b);
    max-width: 420px;
    margin-bottom: 20px;
}

.cmp-donut-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
    gap: 8px;
}

.cmp-donut-legend-item {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 100%;
    min-height: 42px;
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 16px;
    border: 1px solid rgb(15, 23, 42, 0.06);
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.82), rgb(255, 255, 255, 0.62)),
        color-mix(in srgb, var(--legend-color, #6366f1) 6%, rgb(255, 255, 255, 0.7));
    color: var(--ui-text, #0f172a);
    text-align: left;
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.9),
        0 10px 24px rgb(15, 23, 42, 0.05);
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}

.cmp-donut-legend-item:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgb(255, 255, 255, 0.18), transparent 55%);
    pointer-events: none;
}

.cmp-donut-legend-item:after {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: var(--legend-color, rgb(99, 102, 241, 0.78));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cmp-donut-legend-item:hover,
.cmp-donut-legend-item.is-active {
    transform: translateY(-2px) scale(1.01);
    border-color: color-mix(in srgb, var(--legend-color, #6366f1) 22%, rgb(15, 23, 42, 0.08));
    background:
        linear-gradient(180deg, rgb(255, 255, 255, 0.92), rgb(255, 255, 255, 0.72)),
        color-mix(in srgb, var(--legend-color, #6366f1) 10%, rgb(255, 255, 255, 0.72));
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.92),
        0 12px 24px rgb(15, 23, 42, 0.08),
        0 0 0 1px color-mix(in srgb, var(--legend-color, #6366f1) 14%, transparent);
}

.cmp-donut-legend-item:hover:after,
.cmp-donut-legend-item.is-active:after {
    opacity: 1;
}

.cmp-donut-legend-item.is-muted {
    opacity: 0.56;
}

.dark-mode .cmp-donut-legend-item {
    background: rgb(255, 255, 255, 0.05);
    border-color: rgb(255, 255, 255, 0.08);
    color: var(--ui-text, #e5e7eb);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.06),
        0 6px 14px rgb(0, 0, 0, 0.12);
}

.dark-mode .cmp-donut-legend-item:hover,
.dark-mode .cmp-donut-legend-item.is-active {
    background: color-mix(in srgb, var(--legend-color, #6366f1) 9%, rgb(255, 255, 255, 0.06));
    border-color: color-mix(in srgb, var(--legend-color, #6366f1) 18%, rgb(255, 255, 255, 0.12));
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.08),
        0 8px 16px rgb(0, 0, 0, 0.16);
}

.cmp-donut-legend-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cmp-donut-legend-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cmp-donut-legend-meta {
    font-size: 10px;
    line-height: 1.2;
    color: var(--ui-text-muted, #64748b);
    opacity: 0.72;
}

.dark-mode .cmp-donut-legend-meta {
    color: rgb(226, 232, 240, 0.6);
}

.cmp-donut-legend-item b {
    min-width: 22px;
    font-weight: 760;
    font-size: 15px;
    font-family: var(--font-mono, monospace);
    letter-spacing: -0.04em;
    text-align: right;
    color: color-mix(in srgb, var(--legend-color, #6366f1) 58%, #0f172a);
}

.dark-mode .cmp-donut-legend-item b {
    color: color-mix(in srgb, var(--legend-color, #a5b4fc) 66%, white);
}

.cmp-donut-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgb(255, 255, 255, 0.34);
}

@keyframes cmpDonutSegmentReveal {
    0% {
        opacity: 0;
        transform: scale(0.995);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes cmpLiquidShimmer {
    0% {
        transform: translateX(-18%) translateY(-10%) rotate(-8deg);
    }

    50% {
        transform: translateX(6%) translateY(4%) rotate(-6deg);
    }

    100% {
        transform: translateX(-18%) translateY(-10%) rotate(-8deg);
    }
}

@keyframes cmpThumbShimmer {
    0% {
        transform: translateX(-12%);
        opacity: 0.45;
    }

    50% {
        transform: translateX(12%);
        opacity: 0.72;
    }

    100% {
        transform: translateX(-12%);
        opacity: 0.45;
    }
}

@keyframes cmpSwitchShimmer {
    0% {
        transform: translateX(-24%);
        opacity: 0.34;
    }

    50% {
        transform: translateX(24%);
        opacity: 0.55;
    }

    100% {
        transform: translateX(-24%);
        opacity: 0.34;
    }
}

@keyframes cmpJellyThumb {
    0% {
        transform: scale(1) translateX(var(--thumb-shift, 0));
    }

    35% {
        transform: scaleX(1.12) scaleY(0.92) translateX(var(--thumb-shift, 0));
    }

    60% {
        transform: scaleX(0.96) scaleY(1.04) translateX(var(--thumb-shift, 0));
    }

    100% {
        transform: scale(1) translateX(var(--thumb-shift, 0));
    }
}

@media (width <=900px) {
    .cmp-donut-main-card {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        padding: 40px 16px 16px;
        border-radius: 24px;
    }

    .cmp-donut-chart-shell {
        min-height: 228px;
    }

    .cmp-donut-side {
        transform: translateY(-4px);
    }

    .cmp-donut-side-subtitle {
        max-width: 100%;
    }
}

@media (width <=560px) {
    .cmp-donut-main-card {
        padding: 38px 12px 14px;
        border-radius: 22px;
    }

    .cmp-donut-svg {
        transform: translateY(-4px);
    }

    .cmp-donut-legend {
        grid-template-columns: 1fr;
    }

    .cmp-donut-legend-item {
        padding: 11px 12px;
        border-radius: 16px;
    }

    .cmp-donut-svg {
        width: 192px;
        height: 192px;
    }
}

/* ================= 结果页 - 对比表格区域 ================= */
.cmp-table-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* 差异高亮行 */
.comparison-table .cmp-diff-row td {
    background: rgb(236, 72, 153, 0.04);
}

.comparison-table .cmp-diff-row:hover td {
    background: rgb(236, 72, 153, 0.07);
}

/* 新增功能行 */
.comparison-table .cmp-new-row td {
    background: rgb(99, 102, 241, 0.04);
}

.comparison-table .cmp-new-row:hover td {
    background: rgb(99, 102, 241, 0.07);
}

/* 差异单元格 */
.comparison-section .comparison-table td.cmp-diff {
    background: rgb(236, 72, 153, 0.06);
}

/* 新增功能单元格 */
.comparison-section .comparison-table td.cmp-new {
    background: rgb(99, 102, 241, 0.06);
    position: relative;
}

.comparison-table td.cmp-new:after {
    content: 'NEW';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 9px;
    font-weight: 700;
    color: #6366f1;
    background: rgb(99, 102, 241, 0.12);
    padding: 1px 4px;
    border-radius: 4px;
}

/* 渠道最优价格标注 */
.comparison-section .comparison-table .cmp-best-price {
    background: rgb(16, 185, 129, 0.06);
}

.cmp-best-label {
    font-size: 11px;
    color: #10b981;
    margin-top: 2px;
}

/* ================= 分类差异标注 ================= */
.cmp-cat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    font-size: 0;
    vertical-align: middle;
}

.cmp-cat-badge>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgb(255, 255, 255, 0.55);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.72),
        0 4px 10px rgb(15, 23, 42, 0.05);
    backdrop-filter: blur(10px) saturate(1.2);
    -webkit-backdrop-filter: blur(10px) saturate(1.2);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    white-space: nowrap;
    line-height: 1.4;
}

.cmp-cat-badge>span:before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cmp-cat-total {
    background: linear-gradient(135deg, rgb(255, 255, 255, 0.55), rgb(255, 255, 255, 0.35));
    color: var(--ui-text-muted, #64748b);
}

.cmp-cat-total:before {
    background: var(--ui-text-muted, #94a3b8);
    opacity: 0.5;
}

.cmp-cat-diff {
    background: linear-gradient(135deg, rgb(236, 72, 153, 0.12), rgb(255, 255, 255, 0.5));
    color: var(--pink, #ec4899);
    border-color: rgb(236, 72, 153, 0.18);
}

.cmp-cat-diff:before {
    background: var(--pink, #ec4899);
}

.cmp-cat-new {
    background: linear-gradient(135deg, rgb(99, 102, 241, 0.12), rgb(255, 255, 255, 0.5));
    color: var(--indigo, #6366f1);
    border-color: rgb(99, 102, 241, 0.18);
}

.cmp-cat-new:before {
    background: var(--indigo, #6366f1);
}

.cmp-cat-none {
    background: linear-gradient(135deg, rgb(34, 197, 94, 0.1), rgb(255, 255, 255, 0.45));
    color: #22c55e;
    border-color: rgb(34, 197, 94, 0.16);
}

.cmp-cat-none:before {
    background: #22c55e;
}

.category-row.collapsible:hover .cmp-cat-badge>span {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.8),
        0 6px 14px rgb(15, 23, 42, 0.08);
}

/* 暗黑模式 - 分类差异标注 */
.dark-mode .cmp-cat-badge>span {
    border-color: rgb(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.06),
        0 4px 10px rgb(0, 0, 0, 0.12);
}

.dark-mode .cmp-cat-total {
    background: linear-gradient(135deg, rgb(255, 255, 255, 0.08), rgb(255, 255, 255, 0.04));
    color: #94a3b8;
}

.dark-mode .cmp-cat-total:before {
    background: #94a3b8;
    opacity: 0.6;
}

.dark-mode .cmp-cat-diff {
    background: linear-gradient(135deg, rgb(236, 72, 153, 0.18), rgb(255, 255, 255, 0.06));
    color: #f472b6;
    border-color: rgb(236, 72, 153, 0.22);
}

.dark-mode .cmp-cat-diff:before {
    background: #f472b6;
}

.dark-mode .cmp-cat-new {
    background: linear-gradient(135deg, rgb(99, 102, 241, 0.18), rgb(255, 255, 255, 0.06));
    color: #a5b4fc;
    border-color: rgb(99, 102, 241, 0.22);
}

.dark-mode .cmp-cat-new:before {
    background: #a5b4fc;
}

.dark-mode .cmp-cat-none {
    background: linear-gradient(135deg, rgb(34, 197, 94, 0.14), rgb(255, 255, 255, 0.06));
    color: #4ade80;
    border-color: rgb(34, 197, 94, 0.18);
}

.dark-mode .cmp-cat-none:before {
    background: #4ade80;
}

/* ================= 仅看差异按钮 ================= */
.cmp-diff-only.cmp-diff-only.active {
    background: var(--pink, #ec4899);
    color: #fff;
    border-color: var(--pink, #ec4899);
}

.dark-mode .cmp-diff-only.cmp-diff-only.active {
    background: var(--pink, #ec4899);
    color: #fff;
    border-color: var(--pink, #ec4899);
}

/* ================= 结果页 - 返回按钮 ================= */
.cmp-back-section {
    text-align: center;
    padding: 20px 20px 60px;
}

.cmp-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border: 1px solid rgb(0, 0, 0, 0.08);
    border-radius: 10px;
    background: rgb(255, 255, 255, 0.6);
    color: var(--ui-text-muted, #888);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cmp-back-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: translateY(-2px);
}

.cmp-back-btn svg {
    width: 16px;
    height: 16px;
}

/* ================= 暗黑模式 ================= */
.dark-mode .cmp-select-hero-card,
.dark-mode .cmp-version-section {
    background: linear-gradient(135deg, rgb(24, 24, 27, 0.88), rgb(15, 23, 42, 0.82));
    border-color: rgb(255, 255, 255, 0.08);
}

.dark-mode .cmp-section-hint,
.dark-mode .cmp-section-kicker {
    background: rgb(255, 255, 255, 0.06);
    color: #c7d2fe;
}

@media (width <=768px) {
    .dark-mode .comparison-section .feature-note-header:before {
        content: none;
    }
}

.dark-mode .cmp-select-card {
    background:
        radial-gradient(circle at 14% 12%, rgb(255, 255, 255, 0.12), transparent 18%),
        radial-gradient(circle at 84% 8%, rgb(255, 255, 255, 0.08), transparent 16%),
        radial-gradient(circle at 50% 0%, rgb(99, 102, 241, 0.16), transparent 34%),
        radial-gradient(circle at 16% 102%, rgb(236, 72, 153, 0.12), transparent 28%),
        linear-gradient(180deg, rgb(255, 255, 255, 0.08), rgb(255, 255, 255, 0.04));
    border-color: rgb(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.08),
        0 16px 34px rgb(0, 0, 0, 0.16);
}

.dark-mode .cmp-select-card:before {
    background:
        linear-gradient(115deg,
            transparent 24%,
            rgb(255, 255, 255, 0.16) 42%,
            rgb(255, 255, 255, 0.04) 49%,
            transparent 60%),
        radial-gradient(circle at 50% 50%, rgb(255, 255, 255, 0.08), transparent 58%);
}

.dark-mode .cmp-select-card:hover {
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.1),
        0 20px 42px rgb(0, 0, 0, 0.22);
    border-color: rgb(255, 255, 255, 0.16);
}

.dark-mode .cmp-select-card.selected {
    border-color: rgb(99, 102, 241, 0.34);
    box-shadow:
        inset 0 1px 0 rgb(255, 255, 255, 0.1),
        0 0 0 1px rgb(255, 255, 255, 0.06),
        0 20px 42px rgb(0, 0, 0, 0.22);
}

/* 暗黑模式 - 对比表格差异高亮（基础表格样式由 style.css + pricing.css 处理） */
.dark-mode .comparison-table .cmp-diff-row td {
    background: rgb(236, 72, 153, 0.06);
}

.dark-mode .comparison-table .cmp-new-row td {
    background: rgb(99, 102, 241, 0.06);
}

.dark-mode .comparison-section .comparison-table td.cmp-diff {
    background: rgb(236, 72, 153, 0.08);
}

.dark-mode .comparison-section .comparison-table td.cmp-new {
    background: rgb(99, 102, 241, 0.08);
}

.dark-mode .comparison-section .comparison-table .cmp-best-price {
    background: rgb(16, 185, 129, 0.08);
}

.dark-mode .cmp-result-tab {
    background: rgb(44, 44, 46, 0.6);
    border-color: rgb(255, 255, 255, 0.08);
    color: var(--ui-text-muted, #aaa);
}

.dark-mode .cmp-back-btn {
    background: rgb(44, 44, 46, 0.6);
    border-color: rgb(255, 255, 255, 0.08);
    color: var(--ui-text-muted, #aaa);
}

.dark-mode .cmp-hero-title,
.dark-mode .cmp-result-header h1 {
    color: var(--ui-text, #e5e5e5);
}

.dark-mode .cmp-select-card .card-title {
    color: var(--ui-text, #e5e5e5);
}

.dark-mode .cmp-version-card {
    background: linear-gradient(180deg, rgb(38, 38, 40, 0.92), rgb(24, 24, 27, 0.92));
    border-color: rgb(255, 255, 255, 0.08);
}

.dark-mode .cmp-version-grid:hover .cmp-version-card:not(:hover, .selected) {
    opacity: 0.68;
    filter: saturate(0.8) brightness(0.9);
}

.dark-mode .cmp-version-card:hover {
    box-shadow: 0 12px 40px rgb(0, 0, 0, 0.3);
    border-color: rgb(255, 255, 255, 0.15);
}

.dark-mode .cmp-version-card.selected {
    border-color: var(--plan-accent, var(--pink));
    box-shadow:
        0 0 0 4px rgb(236, 72, 153, 0.16),
        0 0 0 1px rgb(255, 255, 255, 0.08) inset,
        0 18px 44px rgb(0, 0, 0, 0.36),
        0 0 26px color-mix(in srgb, var(--plan-accent, #ec4899) 20%, transparent);
    background: linear-gradient(180deg, rgb(63, 24, 39, 0.92), rgb(24, 24, 27, 0.96));
}

.dark-mode .cmp-version-card .version-name {
    color: var(--ui-text, #e5e5e5);
}

.dark-mode .version-section-header h3 {
    color: var(--ui-text, #e5e5e5);
}

/* ================= 响应式设计 ================= */
.comparison-section .comparison-table-wrapper {
    padding: 0;
}

.comparison-section.comparison-section {
    padding: 0;
}

.comparison-table .th-short {
    display: none;
}

@media (width <=768px) {
    .comparison-table .th-full {
        display: none;
    }

    .comparison-table .th-short {
        display: inline;
    }

    .cmp-hero {
        padding: 94px 16px 36px;
    }

    .cmp-hero-title {
        font-size: 26px;
    }

    .cmp-select-section {
        padding: 20px 16px 72px;
    }

    .cmp-select-hero-card {
        padding: 22px 18px 18px;
        border-radius: 22px;
    }

    .cmp-section-hints {
        gap: 6px;
        margin-top: 14px;
    }

    .cmp-select-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cmp-select-card {
        min-height: auto;
        padding: 24px 18px 20px;
    }

    .cmp-select-card .card-desc {
        min-height: auto;
    }

    .cmp-version-section {
        padding: 20px 14px 18px;
        border-radius: 22px;
    }

    .cmp-version-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .cmp-version-card {
        min-height: 160px;
        padding: 16px 8px 12px;
    }

    .cmp-version-card .version-icon {
        width: 34px;
        height: 34px;
    }

    .cmp-version-card .version-name {
        font-size: 13px;
    }

    .cmp-version-card .version-price {
        font-size: 11px;
    }

    .cmp-result-header {
        margin: 78px 16px 22px;
        padding: 22px 18px;
        border-radius: 24px;
    }

    .version-value-path {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .version-value-path .path-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        min-width: max-content;
        gap: 6px;
    }

    .version-value-path .path-node {
        font-size: 11px;
        padding: 0 8px;
        min-height: 26px;
    }

    .version-value-path .path-arrow svg {
        width: 18px;
        height: 14px;
    }

    .cmp-broadcast-area {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 12px 14px;
    }

    .cmp-broadcast-track {
        gap: 6px;
    }

    .cmp-result-header h1 {
        font-size: 24px;
    }

    .cmp-result-header .result-desc {
        font-size: 14px;
    }

    .cmp-result-meta {
        gap: 8px;
        margin-top: 16px;
    }

    .cmp-result-meta-item {
        padding: 7px 10px;
        font-size: 11px;
    }

    .cmp-price-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 14px;
    }

    .cmp-price-summary-item strong {
        font-size: 18px;
    }

    .cmp-broadcast-focus {
        gap: 8px;
        padding: 8px 10px;
        flex-wrap: wrap;
    }

    .cmp-reco-score {
        width: 100%;
        justify-content: space-between;
    }

    .cmp-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cmp-stat-item {
        padding: 16px 10px 12px;
    }

    .cmp-stat-num {
        font-size: 22px;
    }

    .comparison-section .feature-note-header {
        padding: 14px 16px 12px;
        font-size: 14px;
    }

    .comparison-section .feature-note-header:before {
        content: none;
    }

    .comparison-section .feature-note-content {
        padding: 14px 16px 24px;
    }

    .comparison-section .feature-note-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* 表格响应式由 pricing.css + style.css 处理 */

    .cmp-result-tabs {
        gap: 8px;
    }

    .cmp-result-tab {
        padding: 6px 14px;
        font-size: 12px;
    }

    .cmp-confirm-btn {
        width: min(100%, 320px);
        justify-content: center;
    }
}

@media (width <=480px) {
    .comparison-section .feature-note {
        left: 8px;
        right: 8px;
        border-radius: 16px 16px 0 0;
    }

    .comparison-section .feature-note:after {
        border-radius: 15px 15px 0 0;
    }

    .comparison-section .feature-note-header {
        padding: 12px 14px 10px;
        font-size: 13px;
    }

    .comparison-section .feature-note-header:before {
        content: none;
    }

    .comparison-section .feature-note-content {
        padding: 12px 14px 20px;
    }

    .comparison-section .feature-note-content p {
        font-size: 13px;
        line-height: 1.65;
    }

    .cmp-hero-title {
        font-size: 22px;
    }

    .cmp-section-kicker {
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .cmp-select-card .card-topline {
        font-size: 10px;
    }

    .cmp-select-card .card-icon {
        width: 52px;
        height: 52px;
    }

    .cmp-select-card .card-title {
        font-size: 17px;
    }

    .cmp-version-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .cmp-version-card .version-badge {
        display: none;
    }

    .cmp-version-grid:hover .cmp-version-card:not(:hover, .selected) {
        opacity: 0.9;
        filter: none;
    }

    .cmp-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .cmp-stat-item {
        padding: 12px 8px 10px;
    }

    .cmp-stat-num {
        font-size: 20px;
    }

    .cmp-stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 4px;
    }

    .cmp-stat-icon svg {
        width: 16px;
        height: 16px;
    }

    .cmp-confirm-btn {
        padding: 13px 20px;
        font-size: 15px;
        min-width: 0;
    }

    .cmp-result-header {
        margin: 74px 12px 18px;
        padding: 18px 14px;
        border-radius: 20px;
    }

    .cmp-broadcast-label {
        width: fit-content;
    }

    .cmp-result-header h1 {
        font-size: 20px;
    }

    .cmp-result-header .result-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .cmp-result-meta-item {
        width: 100%;
        justify-content: flex-start;
    }

    .cmp-broadcast-focus {
        align-items: flex-start;
    }

    .cmp-price-summary {
        grid-template-columns: 1fr;
    }

    /* 表格响应式由 pricing.css + style.css 处理 */
}