/* 新版公共组件。尺寸取自 Figma 节点 256:877 / 256:740 / 256:702 / 256:3400。
   说明：Figma 描边不占布局尺寸，CSS 的 1px border 会占位，因此对需要精确累加高度的
   容器（FAQ 折叠项）把 padding 相应减少 1px，保持视觉间距与设计稿一致。 */

/* 区块标题 */
.v2-section-title { text-align: center; }
.v2-section-title h1, .v2-section-title h2 {
    margin: 0;
    color: var(--color-title);
    font-size: var(--font-size-section-title);
    line-height: var(--line-height-section-title);
    font-weight: var(--font-weight-medium);
}
.v2-section-title--ink h1, .v2-section-title--ink h2 { color: var(--color-ink); }
.v2-section-title p { margin: 0; color: var(--color-text-muted); font-size: 18px; line-height: 30px; }

/* 按钮 */
.v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    white-space: nowrap;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, opacity .16s ease;
}
.v2-button--dark { color: var(--color-on-dark); background: var(--color-ink); border-color: var(--color-ink); }
.v2-button--dark:hover { background: #3a3c45; border-color: #3a3c45; }
.v2-button--muted { color: var(--color-ink); background: var(--color-surface-muted); border-color: var(--color-surface-muted); }
.v2-button--muted:hover { background: #dedde6; border-color: #dedde6; }
.v2-button--quiet { color: var(--color-ink); background: var(--color-surface-quiet); border-color: var(--color-surface-quiet); }
.v2-button--quiet:hover { background: #dedde6; border-color: #dedde6; }
.v2-button--primary { color: var(--color-on-dark); background: var(--color-brand); border-color: var(--color-brand); }
.v2-button--primary:hover { background: #6ec649; border-color: #6ec649; }
.v2-button--outline { color: var(--color-text-secondary); background: var(--color-card); border-color: var(--color-border); }
.v2-button--outline:hover { color: var(--color-ink); border-color: var(--color-text-secondary); }
.v2-button.is-disabled, .v2-button:disabled { opacity: .5; cursor: not-allowed; }

.v2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 胶囊：计费模式（32px）与资讯分类（40px） */
.v2-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 19px;   /* Figma 描边不占位、CSS border 占 2px，内边距各减 1 补齐 68/81/82 的胶囊宽度 */
    border: 1px solid var(--color-border);
    border-radius: 32px;
    color: var(--color-text-muted);
    background: var(--color-surface-muted);
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
}
.v2-pill.is-active { color: var(--color-on-dark); background: var(--color-ink); border-color: var(--color-ink); }
.v2-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--color-border-pill);
    border-radius: 20px;
    color: var(--color-text-muted);
    background: var(--color-surface-muted);
    font-size: 15px;
    line-height: 20px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
}
.v2-chip.is-active { color: var(--color-on-dark); background: var(--color-ink); border-color: var(--color-ink); }

/* 产品类型切换 256:742 */
.v2-segmented {
    width: 352px;
    height: 64px;
    display: flex;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--color-border);
    border-radius: 35px;
    background: var(--color-surface-muted);
}
.v2-segmented__item {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 40px;
    color: var(--color-text-muted);
    background: transparent;
    font-size: 24px;
    line-height: 36px;
    cursor: pointer;
}
.v2-segmented__item.is-active { color: var(--color-ink); background: var(--color-card); border-color: var(--color-border); }

/* 套餐卡 256:754 */
.site-v2 .v2-pricing-grid[hidden],
.site-v2 [data-pricing-product-panel][hidden] { display: none; }
.v2-pricing-card {
    position: relative;
    width: 280px;
    height: 521px;
    padding: 30px 24px 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-card);
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}
.v2-pricing-card.is-recommended { border-color: var(--color-brand); background: var(--color-brand-soft); }
.v2-pricing-card__badge { position: absolute; top: -1px; right: -1px; width: 100px; height: 30px; }
.v2-pricing-card__badge img { display: block; width: 100px; height: 30px; }
.v2-pricing-card__badge span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    color: var(--color-on-dark);
    font-size: 16px;
    line-height: 24px;
}
.v2-pricing-card h3 { margin: 0; font-size: 20px; line-height: 33px; font-weight: var(--font-weight-medium); color: var(--color-ink); }
.v2-pricing-card__tagline { margin: 6px 0 0; color: var(--color-text-subtle); font-size: 14px; line-height: 21px; }
.v2-pricing-card__price { height: 48px; margin: 34px 0 0; display: flex; align-items: center; gap: 14px; color: var(--color-brand); line-height: 48px; }
.v2-pricing-card__amount { font-weight: var(--font-weight-bold); }
.v2-pricing-card__currency { font-size: 20px; }
.v2-pricing-card__integer { font-size: 32px; }
.v2-pricing-card__fraction { font-size: 16px; }
.v2-pricing-card__unit { color: var(--color-text-primary); font-size: 16px; font-weight: 400; }
.v2-pricing-card__discount {
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 14px;
    color: var(--color-danger);
    background: var(--color-danger-soft);
    font-size: 12px;
    line-height: 18px;
}
.v2-pricing-card__origin { margin: 6px 0 0; color: var(--color-text-subtle); font-size: 14px; line-height: 21px; }
.v2-pricing-card__origin s { text-decoration-line: line-through; }
.v2-pricing-card__body { width: 232px; margin-top: 58px; display: flex; flex-direction: column; gap: 28px; }
.v2-pricing-card__details { margin: 0; padding: 11px 0 0; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 8px; }
.v2-pricing-card__details > div { display: flex; align-items: center; justify-content: space-between; }
.v2-pricing-card__details dt { color: var(--color-text-subtle); }
.v2-pricing-card__details dd { margin: 0; color: var(--color-ink); }
.v2-pricing-card__actions { display: flex; flex-direction: column; gap: 20px; }
.v2-pricing-card__actions .v2-button { width: 232px; height: 46px; font-size: 18px; font-weight: var(--font-weight-medium); }

/* FAQ / 资讯折叠项 256:718 */
.v2-faq-item {
    padding: 7px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-panel-glass);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}
.v2-faq-item__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: 23px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.v2-faq-item.is-expanded .v2-faq-item__content { background: var(--color-card); }
.v2-faq-item__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}
.v2-faq-item__header > span:first-child {
    flex: 1;
    color: var(--color-ink);
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.32px;
    font-weight: var(--font-weight-medium);
}
.v2-faq-item__icon { flex: 0 0 20px; width: 20px; height: 20px; display: block; }
.v2-faq-item__body { height: auto; overflow: visible; color: var(--color-text-secondary); font-size: 16px; line-height: 28px; }
.v2-faq-item__body p { margin: 0; }
.v2-faq-item__more { display: inline-block; margin-top: 8px; color: var(--color-brand-link); font-size: 13px; line-height: 20px; }
.v2-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    height: 24px;
    padding: 4px var(--space-sm);
    border-radius: var(--radius-pill);
    color: var(--color-brand);
    background: var(--color-brand-soft);
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.24px;
    font-weight: var(--font-weight-medium);
}

/* 表单控件 */
.v2-field { position: relative; width: 100%; height: 71px; display: flex; flex-direction: column; gap: 4px; }
.v2-field label { height: 21px; color: #0e121b; font-size: 14px; line-height: 21px; }
.v2-field__control {
    width: 100%;
    height: 46px;
    display: flex;
    align-items: center;
    padding: 0 9px 0 11px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    background: var(--color-card);
    box-shadow: var(--shadow-auth-input);
    overflow: hidden;
}
.v2-field input, .v2-field select, .v2-field textarea {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--color-text-primary);
    background: transparent;
    font: inherit;
    font-size: 14px;
    line-height: 20px;
    appearance: none;
}
.v2-field input::placeholder, .v2-field textarea::placeholder { color: var(--color-text-secondary); opacity: 1; }
.v2-field__control:hover { border-color: #c4cbd8; }
.v2-field__control:focus-within { border-color: var(--color-brand); box-shadow: 0 0 0 3px rgba(122, 211, 84, .14); }
.v2-field__control:has(input:disabled) { background: var(--color-card-soft); opacity: .65; }
.v2-field input:-webkit-autofill { -webkit-box-shadow: 0 0 0 30px var(--color-card) inset; -webkit-text-fill-color: var(--color-text-primary); }
.v2-field textarea { padding-top: 11px; }
.v2-field.has-error .v2-field__control { border-color: var(--color-danger); }
.v2-field__error { position: absolute; top: 73px; left: 0; margin: 0; color: var(--color-danger); font-size: 13px; line-height: 20px; }
.v2-field__trailing { flex: 0 0 24px; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.v2-field__trailing img { display: block; width: 24px; height: 24px; }
.v2-field__trailing--code { flex-basis: 100px; width: 100px; height: 46px; margin: 0 -9px 0 8px; padding: 0 10px 0 19px; border-left: 1px solid var(--color-border); color: var(--color-text-secondary); font-size: 14px; white-space: nowrap; }
.v2-field__trailing--code:hover:not(:disabled) { color: var(--color-brand); background: var(--color-brand-soft); }
.v2-field__trailing--captcha { flex: 0 0 100px; width: 100px; height: 38px; cursor: pointer; border-radius: 4px; object-fit: contain; margin: 0 -4px 0 8px; }
.v2-field__trailing:disabled { opacity: .5; cursor: not-allowed; }
.v2-check { position: relative; height: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--color-text-secondary); }
.v2-check input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.v2-check__box { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; border: 2px solid var(--color-border); border-radius: 7px; background: var(--color-card); }
.v2-check input:checked + .v2-check__box { border-color: var(--color-brand); background: var(--color-brand); }
.v2-check input:checked + .v2-check__box::after { content: "✓"; color: #fff; font-size: 15px; line-height: 1; }
.v2-check input:focus-visible + .v2-check__box { outline: 3px solid rgba(122, 211, 84, .45); outline-offset: 3px; }
.v2-check input:disabled + .v2-check__box { opacity: .5; }
.v2-check__label { font-size: 16px; line-height: 24px; }
.v2-check__error { position: absolute; top: 26px; left: 32px; margin: 0; color: var(--color-danger); font-size: 13px; line-height: 20px; white-space: nowrap; }

/* 自定义下拉选择组件 (Custom Select) */
.v2-custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
    min-width: 240px;
    max-width: 380px;
    font-size: 13px;
    user-select: none;
    vertical-align: middle;
}
.v2-custom-select--block { display: block; max-width: 100%; }
.v2-custom-select--sm { min-width: 140px; font-size: 12px; }
.v2-custom-select--sm .v2-custom-select__trigger { height: 30px; padding: 0 28px 0 10px; }
.v2-custom-select__native {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}
.v2-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 36px;
    padding: 0 10px 0 14px;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-title);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all .18s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.v2-custom-select__trigger:hover { border-color: var(--color-brand); background-color: #ffffff; }
.v2-custom-select.is-open .v2-custom-select__trigger,
.v2-custom-select__trigger:focus-visible {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(122, 211, 84, 0.16);
}
.v2-custom-select__value {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    margin-right: 8px;
}
.v2-custom-select__placeholder { color: var(--color-text-placeholder, #94a3b8); }
.v2-custom-select__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), color .18s ease;
    flex-shrink: 0;
}
.v2-custom-select.is-open .v2-custom-select__arrow {
    transform: rotate(180deg);
    color: var(--color-brand);
}
.v2-custom-select__menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    z-index: 1050;
    background: #ffffff;
    border: 1px solid rgba(14, 18, 27, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px -4px rgba(14, 18, 27, 0.12), 0 4px 10px -2px rgba(14, 18, 27, 0.05);
    max-height: 280px;
    overflow-y: auto;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96) translateY(-6px);
    transform-origin: top center;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.v2-custom-select.is-dropup .v2-custom-select__menu {
    top: auto;
    bottom: calc(100% + 5px);
    transform-origin: bottom center;
    transform: scale(0.96) translateY(6px);
}
.v2-custom-select.is-open .v2-custom-select__menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}
.v2-custom-select__group-header {
    padding: 8px 10px 4px;
    font-size: 11px;
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    user-select: none;
}
.v2-custom-select__group-header:not(:first-child) {
    margin-top: 4px;
    border-top: 1px dashed var(--color-border-soft);
}
.v2-custom-select__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    color: var(--color-ink);
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
    transition: background-color .12s ease, color .12s ease;
}
.v2-custom-select__option:hover,
.v2-custom-select__option.is-focused {
    background-color: var(--color-card-soft);
    color: var(--color-title);
}
.v2-custom-select__option.is-selected {
    background-color: var(--color-brand-soft);
    color: #246816;
    font-weight: var(--font-weight-semibold, 600);
}
.v2-custom-select__option.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}
.v2-custom-select__option-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.v2-custom-select__check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    margin-left: 8px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.6);
    transition: all .15s ease;
}
.v2-custom-select__option.is-selected .v2-custom-select__check-icon {
    opacity: 1;
    transform: scale(1);
}
.v2-custom-select__menu::-webkit-scrollbar { width: 5px; }
.v2-custom-select__menu::-webkit-scrollbar-track { background: transparent; }
.v2-custom-select__menu::-webkit-scrollbar-thumb { background: rgba(14, 18, 27, 0.15); border-radius: 4px; }
.v2-custom-select__menu::-webkit-scrollbar-thumb:hover { background: rgba(14, 18, 27, 0.25); }

/* 通用分页组件 (Pagination Component) */
.v2-pagination {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 14px;
    user-select: none;
}
.v2-pagination__total {
    color: var(--color-text-secondary);
    margin-right: 8px;
}
.v2-pagination__page,
.v2-pagination__arrow {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-card);
    color: var(--color-text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease;
}
.v2-pagination__arrow { font-size: 20px; line-height: 1; }
.v2-pagination__page:hover,
.v2-pagination__arrow:hover { color: var(--color-ink); border-color: var(--color-text-secondary); }
.v2-pagination__page.is-active {
    color: var(--color-on-dark);
    background: var(--color-ink);
    border-color: var(--color-ink);
    font-weight: var(--font-weight-medium);
}
.v2-pagination__arrow.is-disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
.v2-pagination__ellipsis { width: 24px; color: var(--color-text-secondary); text-align: center; }
.v2-pagination__jump-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 12px;
    color: var(--color-text-secondary);
    font-size: 13px;
}
.v2-pagination__jump {
    width: 48px;
    height: 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    font-size: 13px;
    color: var(--color-title);
    outline: none;
    transition: border-color .16s ease;
}
.v2-pagination__jump:focus { border-color: var(--color-brand); }

/* 右侧悬浮客服栏 */
.float-bar-nav-v2 {
    display: flex;
    flex-flow: column nowrap;
    gap: 18px;
    position: fixed;
    right: 35px;
    bottom: 160px;
    z-index: 9999;
}
.float-bar-nav-v2 > div {
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
    cursor: pointer;
    user-select: none;
    font-size: 12px;
    color: var(--color-brand);
    transition: transform .18s ease, box-shadow .18s ease;
}
.float-bar-nav-v2 > div:hover {
    transform: translateY(-2px);
    box-shadow: 2px 4px 10px rgba(0, 0, 0, .2);
}
.float-bar-nav-v2 > div:not(:first-child) .v2-float-bar__icon-wrap img {
    filter: brightness(0) saturate(100%) invert(77%) sepia(45%) saturate(658%) hue-rotate(52deg) brightness(95%) contrast(91%);
}
.float-bar-nav-v2 .hover-content-wrapper {
    display: none;
    position: absolute;
    right: 60px;
    bottom: 0;
}
.float-bar-nav-v2 .hover-content {
    margin-right: 12px;
    white-space: nowrap;
    background-color: #ffffff;
    font-size: 13px;
    height: 60px;
    line-height: 60px;
    padding: 0 14px;
    border-radius: 6px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
}
.float-bar-nav-v2 > div:hover .hover-content-wrapper,
.float-bar-nav-v2 .hover-content-wrapper:hover {
    display: block;
}
.qrcode-ent-chat {
    display: none;
    position: absolute;
    top: -156px;
    right: 72px;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(44, 71, 146, .17);
}
.qrcode-ent-chat img { display: block; }
.float-bar-nav-v2 > div:hover .qrcode-ent-chat {
    display: block;
}

/* 控制台纯净视图：会员中心隐藏营销悬浮客服栏与顶部预警横幅 */
.site-v2:has(.v2-uc-page) .float-bar-nav-v2,
.v2-uc-page ~ .float-bar-nav-v2,
.site-v2:has(.v2-uc-page) .jl-site-warning-bar {
    display: none;
}

.v2-float-bar__freetest {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--color-brand);
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 4px;
    border-radius: inherit;
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    line-height: 18px;
    white-space: nowrap;
    text-decoration: none;
    transition: background-color .18s ease;
}
.v2-float-bar__freetest img {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.v2-float-bar__freetest:hover {
    color: var(--color-brand);
    background-color: var(--color-brand-soft);
}
.v2-float-bar__freetest:focus-visible {
    outline: 2px solid var(--color-title);
    outline-offset: 3px;
}
.v2-float-bar__freetest:active {
    background-color: #e6f5df;
}
.v2-float-bar__icon-wrap {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 顶部抢购行为警示 */
.jl-site-warning-bar {
    position: relative;
    z-index: 30;
    width: 100%;
    min-height: 36px;
    background: #29262d;
    border-bottom: 1px solid #3b3740;
}
.jl-site-warning-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: var(--content-width, 1200px);
    margin: 0 auto;
    padding: 8px 24px;
    box-sizing: border-box;
}
.jl-site-warning-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 195, 106, 0.34);
    color: #ffc36a;
    background: rgba(255, 195, 106, 0.12);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}
.jl-site-warning-bar__text {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0;
    color: #f5f4f6;
    text-align: center;
}
.jl-site-warning-bar__text strong {
    font-weight: 600;
    color: #ffffff;
}
.jl-site-warning-bar__sep {
    color: #8e8993;
}
.jl-site-warning-bar__emph {
    color: #ff9f9a;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .jl-site-warning-bar__inner { gap: 6px; padding: 8px 10px; }
    .jl-site-warning-bar__text { gap: 6px; font-size: 12px; white-space: nowrap; }
}

/* 合规声明弹窗 */
.v2-compliance-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.v2-compliance-modal__box {
    background: #ffffff;
    border-radius: var(--radius-lg, 12px);
    max-width: 520px;
    width: 100%;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}
.v2-compliance-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-danger, #e03131);
    margin: 0 0 16px 0;
    border-bottom: 1px solid var(--color-border-soft, #f0f0f0);
    padding-bottom: 12px;
}
.v2-compliance-modal__desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-title, #1f2329);
    margin-bottom: 12px;
    font-weight: 500;
}
.v2-compliance-modal__subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.v2-compliance-modal__list {
    font-size: 13px;
    color: var(--color-text-secondary, #4e5969);
    line-height: 1.7;
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
}
.v2-compliance-modal__actions {
    text-align: center;
}
.v2-compliance-modal__actions .v2-button {
    min-width: 140px;
    padding: 8px 24px;
}
.v2-copy-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    z-index: 10000;
    padding: 9px 16px;
    border-radius: 4px;
    color: #fff;
    background: #1f2329;
    font-size: 14px;
    line-height: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity .18s ease, transform .18s ease;
}
.v2-copy-toast.is-show {
    opacity: 1;
    transform: translate(-50%, 0);
}
