/*
 * Yinse Custom Theme
 * For YinSe Store
 */
:root {
    --xn-block-gap: 18px;
    --xn-ink: #102738;
    --xn-ink-2: #1d4055;
    --xn-building: #0b2032;
    --xn-hair: #35c9d5;
    --xn-hair-soft: #8deaf2;
    --xn-sky: #c9f4ff;
    --xn-paper: rgba(248, 253, 255, 0.82);
    --xn-paper-2: rgba(234, 248, 251, 0.72);
    --xn-line: rgba(39, 174, 193, 0.24);
    --xn-line-strong: rgba(39, 174, 193, 0.48);
    --xn-pink: #ff4fa3;
    --xn-brick: #8e4656;
    --xn-success: #23b987;
    --xn-warning: #f0aa38;
    --xn-shadow: 0 18px 42px rgba(26, 73, 95, 0.18);
    --xn-shadow-hover: 0 24px 54px rgba(26, 73, 95, 0.25);
}

body.yinse-theme.ys {
    --yinse-layout-gap: var(--xn-block-gap);
    --yinse-bg: var(--xn-paper-2);
    --yinse-surface: var(--xn-paper);
    --yinse-black: #0b7f9a;
    --yinse-text: var(--xn-ink);
    --yinse-muted: #607889;
    --yinse-muted-strong: #35586b;
    --yinse-muted-soft: var(--xn-hair);
    --yinse-link: #0b7f9a;
    --yinse-border: var(--xn-line);
    --yinse-border-strong: var(--xn-line-strong);
    --yinse-accent: var(--xn-hair);
    --yinse-accent-light: var(--xn-hair-soft);
    --yinse-accent-rgb: 53, 201, 213;
    --yinse-shadow-soft: var(--xn-shadow);
    --yinse-shadow-elevated: var(--xn-shadow-hover);
    min-height: 100vh;
    background-color: #dff4f8 !important;
    background-image:
        var(--yinse-page-background-image, none) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: var(--xn-ink);
}

body.yinse-theme.ys::before {
    display: none !important;
}

body.yinse-theme.ys.yinse-bg-mask-on::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block !important;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.56));
}

.yinse-heart-particle-layer {
    position: fixed;
    inset: 0;
    z-index: 12;
    overflow: hidden;
    pointer-events: none;
    contain: layout paint;
}

.yinse-heart-particle {
    position: absolute;
    left: var(--heart-x, 50vw);
    bottom: -32px;
    width: var(--heart-size, 18px);
    height: var(--heart-size, 18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heart-color, var(--xn-pink));
    font-size: var(--heart-size, 18px);
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    filter: drop-shadow(0 8px 14px rgba(255, 79, 163, 0.18));
    transform: translate3d(-50%, 0, 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(calc(0.72 * var(--heart-mouse-scale, 1)));
    animation: yinseHeartFloat var(--heart-duration, 7.2s) cubic-bezier(0.22, 0.64, 0.26, 1) forwards;
    transition: filter 0.22s ease;
}

.yinse-heart-particle.is-near-mouse {
    filter:
        drop-shadow(0 10px 18px rgba(255, 79, 163, 0.26))
        drop-shadow(0 0 8px rgba(141, 234, 242, 0.28));
    animation-play-state: paused;
}

@keyframes yinseHeartFloat {
    0% {
        opacity: 0;
        transform: translate3d(-50%, 0, 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(calc(0.18 * var(--heart-mouse-scale, 1)));
    }
    5% {
        opacity: var(--heart-opacity, 0.72);
        transform: translate3d(-50%, -8px, 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(calc(1.68 * var(--heart-mouse-scale, 1)));
    }
    10% {
        opacity: var(--heart-opacity, 0.72);
        transform: translate3d(-50%, -18px, 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(calc(0.92 * var(--heart-mouse-scale, 1)));
    }
    18% {
        opacity: var(--heart-opacity, 0.72);
        transform: translate3d(calc(-50% + var(--heart-drift-mid, 18px) * 0.22), calc(var(--heart-rise, -72vh) * 0.22), 0) rotate(calc((var(--heart-rotate, 0deg) * 0.35) + var(--heart-mouse-rotate, 0deg))) scale(calc(1 * var(--heart-mouse-scale, 1)));
    }
    42% {
        transform: translate3d(calc(-50% + var(--heart-drift-mid, 18px) * 0.72), calc(var(--heart-rise, -72vh) * 0.52), 0) rotate(calc((var(--heart-rotate, 0deg) * -0.4) + var(--heart-mouse-rotate, 0deg))) scale(calc(1 * var(--heart-mouse-scale, 1)));
    }
    100% {
        opacity: 0;
        transform: translate3d(calc(-50% + var(--heart-drift, -18px)), var(--heart-rise, -72vh), 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-spin, 28deg) + var(--heart-mouse-rotate, 0deg))) scale(calc(0.88 * var(--heart-mouse-scale, 1)));
    }
}

@media (prefers-reduced-motion: reduce) {
    .yinse-heart-particle-layer {
        display: none !important;
    }
}

body.ys .yinse-page-frame {
    min-height: 100vh;
}

body.ys .yinse-main {
    margin-top: var(--xn-block-gap) !important;
}

body.ys .yinse-nav-shell + .yinse-nav-shell,
body.ys .yinse-header + .yinse-nav-shell {
    padding-top: var(--xn-block-gap) !important;
}

body.ys .yinse-shop-layout {
    gap: var(--xn-block-gap) !important;
}

body.ys .yinse-catalog-panel,
body.ys .yinse-inline-item-panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-description-panel,
body.ys .yinse-item-panel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.ys .yinse-nav,
body.ys .panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-footer-wrap,
body.ys .yinse-layer-popup,
body.ys .component-popup {
    border: 1px solid var(--xn-line) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    color: var(--xn-ink) !important;
    box-shadow: var(--xn-shadow) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
}

body.ys .yinse-nav {
    border-radius: 18px !important;

}

body.ys .yinse-nav::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--xn-hair), var(--xn-pink), transparent);
    opacity: 0.58;
}

body.ys .yinse-brand,
body.ys .yinse-brand-name,
body.ys .yinse-nav-link,
body.ys .yinse-user-chip,
body.ys .yinse-user-name,
body.ys .yinse-user-balance,
body.ys .dropdown-item,
body.ys .form-control,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .yinse-category-name,
body.ys .yinse-commodity-name,
body.ys .yinse-description-body,
body.ys .yinse-notice-popup-inner {
    color: var(--xn-ink) !important;
}

body.ys .yinse-brand-mark,
body.ys .yinse-user-avatar,
body.ys .yinse-current-cat-icon,
body.ys .item-cover {
    border: 1px solid rgba(53, 201, 213, 0.36) !important;
    box-shadow: 0 0 0 4px rgba(53, 201, 213, 0.08) !important;
}

body.ys .yinse-current-cat-icon {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

body.ys .yinse-brand {
    position: relative;
    isolation: isolate;
    min-height: 48px;
    padding: 5px 14px 5px 6px;
    border: 1px solid transparent;
    border-radius: 15px;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease;
}

body.ys .yinse-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22px 50%, rgba(255, 79, 163, 0.18), transparent 36px),
        radial-gradient(circle at calc(100% - 18px) 18px, rgba(53, 201, 213, 0.16), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(200, 247, 253, 0.24));
    opacity: 0.62;
    transform: scale(0.98);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

body.ys .yinse-brand::after {
    content: "♡";
    position: absolute;
    right: 7px;
    top: 3px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.20);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--xn-pink);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.78;
    transform: translateY(0) rotate(10deg) scale(0.92);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

body.ys .yinse-brand-mark {
    position: relative;
    border: 1px solid rgba(53, 201, 213, 0.42) !important;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.92), rgba(234, 248, 251, 0.70)) !important;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.72),
        0 0 0 6px rgba(53, 201, 213, 0.08),
        0 8px 20px rgba(26, 73, 95, 0.13) !important;
    transform: translateY(0) rotate(0deg);
    transition:
        transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1.1),
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        filter 0.28s ease;
    animation: yinseBrandAvatarFloat 4.8s ease-in-out infinite;
}

body.ys .yinse-brand-chip {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 22px 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

body.ys .yinse-brand-chip::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 24px;
    bottom: 3px;
    height: 5px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 79, 163, 0.34), rgba(53, 201, 213, 0.46), rgba(126, 232, 168, 0.30));
    opacity: 0;
    transform: scaleX(0.24) translateY(2px);
    transform-origin: left center;
    pointer-events: none;
    filter: blur(0.2px);
    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1.1);
}

body.ys .yinse-brand-chip::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 22px;
    height: 7px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 3px 50%, var(--xn-pink) 0 2.5px, transparent 3px),
        radial-gradient(circle at 11px 50%, var(--xn-hair) 0 2.5px, transparent 3px),
        radial-gradient(circle at 19px 50%, #7ee8a8 0 2.5px, transparent 3px);
    opacity: 0.72;
    transform: translateY(-50%);
}

body.ys .yinse-brand-name {
    position: relative;
    z-index: 1;
    color: transparent !important;
    background: linear-gradient(90deg, #133047 0%, #128da1 42%, var(--xn-pink) 72%, #35c9d5 100%);
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 900;
    text-shadow: 0 6px 18px rgba(26, 73, 95, 0.10);
    transform: translateY(0);
    transition:
        transform 0.28s ease,
        background-position 0.38s ease,
        filter 0.28s ease,
        letter-spacing 0.28s ease;
}

body.ys .yinse-brand:hover,
body.ys .yinse-brand:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(39, 174, 193, 0.22);
    background: rgba(255, 255, 255, 0.20);
    box-shadow:
        0 12px 28px rgba(26, 73, 95, 0.12),
        0 0 18px rgba(53, 201, 213, 0.10);
}

body.ys .yinse-brand:hover::before,
body.ys .yinse-brand:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

body.ys .yinse-brand:hover::after,
body.ys .yinse-brand:focus-visible::after {
    opacity: 1;
    transform: translateY(-2px) rotate(-8deg) scale(1.1);
}

body.ys .yinse-brand:hover .yinse-brand-mark,
body.ys .yinse-brand:focus-visible .yinse-brand-mark {
    border-color: rgba(255, 79, 163, 0.40) !important;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.78),
        0 0 0 7px rgba(255, 79, 163, 0.10),
        0 12px 24px rgba(26, 73, 95, 0.16),
        0 0 20px rgba(53, 201, 213, 0.24) !important;
    filter: saturate(1.08);
    animation: yinseBrandLogoShake 0.72s ease both;
}

body.ys .yinse-brand:hover .yinse-brand-chip::before,
body.ys .yinse-brand:focus-visible .yinse-brand-chip::before {
    opacity: 1;
    transform: scaleX(1) translateY(0);
}

body.ys .yinse-brand:hover .yinse-brand-name,
body.ys .yinse-brand:focus-visible .yinse-brand-name {
    transform: translateY(-1px);
    background-position: 100% 50%;
    filter:
        drop-shadow(1px 0 0 rgba(255, 79, 163, 0.22))
        drop-shadow(-1px 0 0 rgba(53, 201, 213, 0.20))
        drop-shadow(0 5px 12px rgba(53, 201, 213, 0.18));
    letter-spacing: 0.018em;
}

@keyframes yinseBrandAvatarFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-1.5px) rotate(2deg);
    }
}

@keyframes yinseBrandLogoShake {
    0% {
        transform: translateY(-1px) rotate(0deg) scale(1.04);
    }
    18% {
        transform: translateY(-2px) rotate(-11deg) scale(1.06);
    }
    36% {
        transform: translateY(-2px) rotate(9deg) scale(1.06);
    }
    54% {
        transform: translateY(-1px) rotate(-7deg) scale(1.05);
    }
    72% {
        transform: translateY(-1px) rotate(5deg) scale(1.045);
    }
    100% {
        transform: translateY(-1px) rotate(0deg) scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.ys .yinse-brand-mark {
        animation: none;
    }

    body.ys .yinse-brand:hover .yinse-brand-chip::before,
    body.ys .yinse-brand:focus-visible .yinse-brand-chip::before {
        transition: none;
    }
}

body.ys .yinse-nav-link,
body.ys .yinse-button-light,
body.ys .yinse-user-chip,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .form-control,
body.ys .qty-group,
body.ys .password-form .input-group {
    border-color: rgba(39, 174, 193, 0.22) !important;
    background: rgba(234, 248, 251, 0.74) !important;
    box-shadow: none !important;
}

body.ys .yinse-nav-link:hover,
body.ys .yinse-nav-link.is-active,
body.ys .yinse-button-dark,
body.ys .yinse-commodity-action-link,
body.ys .sku.is-primary,
body.ys .view-card-btn,
body.ys .component-popup .queryBtn,
body.ys .component-popup .query-button {
    border-color: #129eb5 !important;
    background: linear-gradient(135deg, #129eb5, #36cbd8 58%, #58a9e8) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(18, 158, 181, 0.26) !important;
}

body.ys .yinse-button-light:hover,
body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active,
body.ys .yinse-dropdown-menu .dropdown-item:hover {
    border-color: rgba(39, 174, 193, 0.34) !important;
    background: rgba(232, 249, 252, 0.72) !important;
    color: #0f6175 !important;
}

body.ys .panel {
    position: relative;
    border-radius: 20px !important;
    overflow: hidden;
}

body.ys .panel::before,
body.ys .yinse-hero-banner--notice::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 3px;
    z-index: 2;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent, rgba(53, 201, 213, 0.74), rgba(255, 79, 163, 0.62), rgba(141, 234, 242, 0.72), transparent);
    opacity: 0.72;
}

body.ys .yinse-hero-banner--notice::after {
    display: block !important;
}

body.ys .panel-header {
    position: relative;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16) !important;
    background:
        linear-gradient(90deg, rgba(223, 247, 251, 0.48), rgba(248, 253, 255, 0.22)) !important;
}

body.ys .panel-header::after,
.yinse-hero-notice-head::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 4px 50%, var(--xn-pink) 0 3px, transparent 3.5px),
        radial-gradient(circle at 17px 50%, var(--xn-hair) 0 3px, transparent 3.5px),
        radial-gradient(circle at 30px 50%, #7ee8a8 0 3px, transparent 3.5px);
    opacity: 0.74;
}

body.ys .yinse-catalog-heading::after {
    display: block !important;
    top: 18px;
    right: 18px;
}

body.ys .yinse-catalog-tools {
    position: absolute;
    top: 32px;
    right: 22px;
    width: min(100%, 360px);
    display: flex;
    justify-content: flex-end;
}

body.ys .yinse-catalog-tools::before {
    display: none !important;
}

body.ys .yinse-catalog-tools::after {
    display: none !important;
}

body.ys .panel-kicker,
body.ys .yinse-notice-kicker,
body.ys .yinse-commodity-muted,
body.ys .yinse-footer-copy,
body.ys .yinse-footer-icp {
    color: #607889 !important;
}

body.ys .panel-title,
body.ys .yinse-index-panel-title,
body.ys .yinse-item-inline-title,
body.ys .yinse-item-price .price,
body.ys .yinse-current-name,
body.ys .panel-title-small {
    color: var(--xn-ink-2) !important;
    text-shadow: none !important;
}

.yinse-banner-shell {
    margin-top: var(--xn-block-gap) !important;
}

body.ys .yinse-hero-banner {
    position: relative;
    min-height: 256px;
    padding: 0 !important;
    border: 1px solid var(--xn-line) !important;
    border-radius: 20px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    box-shadow: var(--xn-shadow) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    overflow: hidden;
    overflow: clip;
    isolation: isolate;
}

body.ys .yinse-hero-banner--notice {
    display: block !important;
    min-height: 256px;
    padding: 0 !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    box-shadow: var(--xn-shadow) !important;
}

.yinse-hero-notice-head {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 13px 20px 12px;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16);
    background:
        linear-gradient(90deg, rgba(223, 247, 251, 0.48), rgba(248, 253, 255, 0.22)) !important;
}

.yinse-hero-notice-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    color: var(--xn-ink) !important;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.yinse-hero-notice-title i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 193, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #0b7f9a;
    box-shadow: 0 8px 18px rgba(26, 73, 95, 0.12);
}

.yinse-hero-news.yinse-news-ticker {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 4px 0;
    border: 0 !important;
    color: var(--xn-ink) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.yinse-hero-news .yinse-news-ticker-track {
    font-size: 13px;
    line-height: 1.35;
}

.yinse-hero-notice-body {
    padding: 14px 18px 18px;
    color: var(--xn-ink) !important;
}

.yinse-hero-notice-body > :first-child {
    margin-top: 0 !important;
}

.yinse-hero-notice-body > :last-child {
    margin-bottom: 0 !important;
}

.yinse-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: inherit;
}

.yinse-hero-media-image {
    position: absolute;
    left: 50%;
    top: var(--yinse-hero-bg-y, 20%);
    width: var(--yinse-hero-bg-size, 103%);
    max-width: none;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    transform: translate3d(calc(-50% + var(--yinse-hero-shift-x, 0px)), calc(var(--yinse-hero-bg-y-neg, -20%) + var(--yinse-hero-shift-y, 0px)), 0) scale(1.02);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

body.ys .yinse-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 28, 45, 0.22), transparent 32%, rgba(255, 255, 255, 0.04)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 28%, rgba(8, 28, 45, 0.10));
}

body.ys .yinse-hero-banner::after {
    display: none !important;
}

body.ys .yinse-hero-banner--notice::after {
    display: block !important;
}

body.ys .yinse-hero-banner--notice::before {
    display: none !important;
}

.yinse-hero-title {
    position: absolute;
    left: 42px;
    bottom: 86px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    pointer-events: none;
}

.yinse-hero-title span {
    color: #ffffff;
    font-size: clamp(46px, 6vw, 86px);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow:
        0 5px 24px rgba(6, 22, 36, 0.46),
        0 0 34px rgba(53, 201, 213, 0.28);
}

.yinse-hero-title strong {
    color: #a7f7ff;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    text-shadow: 0 4px 18px rgba(6, 22, 36, 0.42);
}

.yinse-hero-banner .container-fluid,
.yinse-hero-banner .yinse-nav-main,
.yinse-hero-banner .cyber-brand-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.yinse-hero-banner .yinse-nav-main {
    padding: 0 !important;
    border: 0 !important;
}

.yinse-hero-actions {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 28px;
    z-index: 2;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.yinse-hero-actions .cyber-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
}

.yinse-hero-actions .cyber-btn-item {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(39, 174, 193, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    color: #0f6175 !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(26, 73, 95, 0.12);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.yinse-hero-actions .cyber-btn-item:hover {
    border-color: rgba(39, 174, 193, 0.52);
    background: rgba(255, 255, 255, 0.76);
    color: #0b7f9a !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(26, 73, 95, 0.18);
}

body.ys .yinse-news-ticker {
    border-color: rgba(39, 174, 193, 0.22) !important;
    background: transparent !important;
    color: var(--xn-ink) !important;
    box-shadow: none !important;
}

body.ys .yinse-news-ticker-track span[style] {
    border: 1px solid rgba(255, 79, 163, 0.26) !important;
    background: rgba(255, 244, 250, 0.82) !important;
    color: #e83f93 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 16px rgba(255, 79, 163, 0.12) !important;
}

body.ys .yinse-category-link {
    position: relative;
    overflow: hidden;
    border-color: rgba(39, 174, 193, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(226, 247, 251, 0.34)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 5px 12px rgba(26, 73, 95, 0.045) !important;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        color 0.28s ease !important;
}

body.ys .yinse-category-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(53, 201, 213, 0.055), transparent 42%),
        radial-gradient(circle at 12% 20%, rgba(255, 79, 163, 0.055), transparent 24%);
    opacity: 0.58;
}

body.ys .yinse-category-link > * {
    position: relative;
    z-index: 1;
}

body.ys .yinse-category-link::after {
    content: "♡";
    position: absolute;
    top: 6px;
    right: 8px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translateY(-5px) rotate(12deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

body.ys .yinse-category-link:hover::after,
body.ys .yinse-category-link.is-active::after {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active {
    border-color: rgba(39, 174, 193, 0.38) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(218, 247, 251, 0.52)) !important;
    box-shadow:
        0 9px 18px rgba(26, 73, 95, 0.10),
        0 0 14px rgba(53, 201, 213, 0.11) !important;
}

body.ys .yinse-category-link.is-active:hover {
    transform: translateY(-5px) scale(1.018);
    border-color: rgba(255, 79, 163, 0.42) !important;
    background:
        radial-gradient(circle at 16px 14px, rgba(255, 79, 163, 0.12), transparent 68px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(207, 246, 251, 0.62)) !important;
    box-shadow:
        0 12px 24px rgba(26, 73, 95, 0.13),
        0 0 0 2px rgba(255, 79, 163, 0.10),
        0 0 18px rgba(53, 201, 213, 0.17) !important;
}

body.ys .yinse-category-link.is-active:hover::after {
    transform: translateY(-1px) rotate(10deg) scale(1.12);
}

body.ys .yinse-category-tree.is-floating .yinse-category-row {
    animation-name: yinseCategoryBuoy !important;
    animation-timing-function: cubic-bezier(0.42, 0, 0.26, 1) !important;
    transform-origin: 50% 62%;
}

body.ys .yinse-category-tree.is-floating .yinse-category-row:hover,
body.ys .yinse-category-tree.is-floating .yinse-category-row:has(.yinse-category-link.is-active) {
    animation-play-state: paused;
}

@keyframes yinseCategoryBuoy {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    16% {
        transform:
            translate3d(calc(var(--yinse-category-float-x1, 2px) * 0.45), calc(var(--yinse-category-float-y1, -3px) * 0.35), 0)
            rotate(calc(var(--yinse-category-float-r1, 0.35deg) * 0.45))
            scale(1.006);
    }
    38% {
        transform:
            translate3d(var(--yinse-category-float-x1, 2px), var(--yinse-category-float-y1, -3px), 0)
            rotate(var(--yinse-category-float-r1, 0.35deg))
            scale(1.012);
    }
    58% {
        transform:
            translate3d(calc(var(--yinse-category-float-x2, -3px) * 0.74), calc(var(--yinse-category-float-y2, 2px) * 0.82), 0)
            rotate(calc(var(--yinse-category-float-r2, -0.35deg) * 0.82))
            scale(1.004);
    }
    78% {
        transform:
            translate3d(var(--yinse-category-float-x3, 2px), var(--yinse-category-float-y3, 3px), 0)
            rotate(calc(var(--yinse-category-float-r2, -0.35deg) * -0.42))
            scale(1.01);
    }
}

body.ys .yinse-table-wrap,
body.ys .yinse-card-catalog-wrap,
body.ys .yinse-commodity-card,
body.ys .component-popup .fixed-table-container,
body.ys .component-popup .mcy-card {
    border-color: rgba(39, 174, 193, 0.18) !important;
    background: rgba(255, 255, 255, 0.38) !important;
    box-shadow: none !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
}

body.ys .yinse-commodity-table thead th,
body.ys .component-popup .bootstrap-table .fixed-table-container .table thead th {
    background: rgba(230, 247, 251, 0.46) !important;
    color: var(--xn-ink-2) !important;
}

body.ys .item-list .yinse-commodity-row:hover,
body.ys .yinse-commodity-card:hover,
body.ys .yinse-commodity-card.is-inline-active {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 9px !important;
}

body.ys .yinse-commodity-card .row-inner {
    position: relative;
    overflow: hidden;
}

body.ys .yinse-commodity-card:hover .row-inner,
body.ys .yinse-commodity-card.is-inline-active .row-inner {
    transform: translateY(-4px) !important;
    border-color: rgba(53, 201, 213, 0.36) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 79, 163, 0.08), transparent 72px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(222, 248, 252, 0.48)) !important;
    box-shadow:
        0 12px 26px rgba(26, 73, 95, 0.13),
        0 0 18px rgba(53, 201, 213, 0.13) !important;
}

body.ys .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(255, 79, 163, 0.46) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 79, 163, 0.13), transparent 76px),
        radial-gradient(circle at calc(100% - 18px) 20px, rgba(53, 201, 213, 0.13), transparent 82px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(217, 248, 252, 0.56)) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 0 0 2px rgba(53, 201, 213, 0.12),
        0 13px 28px rgba(26, 73, 95, 0.15),
        0 0 0 2px rgba(255, 79, 163, 0.12),
        0 0 20px rgba(53, 201, 213, 0.16) !important;
}

body.ys .yinse-commodity-card.is-inline-active:hover .row-inner {
    transform: translateY(-6px) scale(1.012) !important;
    border-color: rgba(255, 79, 163, 0.62) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 79, 163, 0.17), transparent 82px),
        radial-gradient(circle at calc(100% - 18px) 20px, rgba(53, 201, 213, 0.17), transparent 88px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(207, 247, 252, 0.64)) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.78),
        inset 0 0 0 2px rgba(53, 201, 213, 0.16),
        0 17px 34px rgba(26, 73, 95, 0.18),
        0 0 0 2px rgba(255, 79, 163, 0.18),
        0 0 26px rgba(53, 201, 213, 0.22) !important;
}

body.ys .yinse-commodity-card.is-inline-active:hover .row-inner::before {
    transform: translateY(-1px) rotate(10deg) scale(1.12);
}

body.ys .yinse-commodity-card .row-inner::before {
    content: "♡";
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translateY(-5px) rotate(12deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

body.ys .yinse-commodity-card:hover .row-inner::before,
body.ys .yinse-commodity-card.is-inline-active .row-inner::before {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

body.ys .yinse-commodity-thumb,
body.ys .yinse-category-icon {
    outline: 3px solid rgba(255, 255, 255, 0.52);
    outline-offset: -3px;
}

body.ys .yinse-commodity-thumb {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-origin: border-box;
    transition:
        transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1.1),
        filter 0.34s ease,
        box-shadow 0.34s ease,
        border-color 0.34s ease !important;
}

body.ys .yinse-commodity-thumb::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.72) 45%, rgba(141, 234, 242, 0.42) 51%, transparent 64%);
    opacity: 0;
    transform: translateX(-48%) rotate(8deg);
}

body.ys .yinse-commodity-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 79, 163, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 58%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

body.ys .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.ys .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    animation: yinseLogoStickerPop 0.72s cubic-bezier(0.2, 0.9, 0.2, 1.1) both !important;
    border-color: rgba(255, 79, 163, 0.34) !important;
    filter: saturate(1.12) contrast(1.03);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.52),
        0 10px 22px rgba(26, 73, 95, 0.15),
        0 0 20px rgba(53, 201, 213, 0.22),
        0 0 14px rgba(255, 79, 163, 0.13) !important;
}

body.ys .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb::before,
body.ys .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb::before {
    animation: yinseLogoScan 0.86s ease both;
}

body.ys .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb::after,
body.ys .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb::after {
    opacity: 1;
}

body.ys .yinse-card-logo-border-off .yinse-commodity-thumb {
    border-color: transparent !important;
    outline: 0 !important;
}

body.ys .yinse-card-logo-border-off .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.ys .yinse-card-logo-border-off .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    border-color: transparent !important;
}

body.ys .yinse-card-logo-glow-off .yinse-commodity-thumb,
body.ys .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.ys .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    box-shadow: none !important;
    filter: none !important;
}

body.ys .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb::after,
body.ys .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb::after {
    opacity: 0;
}

@keyframes yinseLogoStickerPop {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    24% {
        transform: translate3d(0, -5px, 0) rotate(-5deg) scale(1.08);
    }
    48% {
        transform: translate3d(0, -3px, 0) rotate(4deg) scale(1.045);
    }
    72% {
        transform: translate3d(0, -4px, 0) rotate(-2deg) scale(1.06);
    }
    100% {
        transform: translate3d(0, -3px, 0) rotate(0deg) scale(1.055);
    }
}

@keyframes yinseLogoScan {
    0% {
        opacity: 0;
        transform: translateX(-52%) rotate(8deg);
    }
    24% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translateX(52%) rotate(8deg);
    }
}

body.ys .yinse-pill,
body.ys .badge-soft,
body.ys .badge-soft-primary {
    border-color: rgba(39, 174, 193, 0.18) !important;
    background: rgba(234, 248, 251, 0.82) !important;
    color: #0f6175 !important;
}

body.ys .badge-money {
    --yinse-badge-money-bg: #eaf8fb !important;
    --yinse-badge-money-border: rgba(39, 174, 193, 0.30) !important;
    color: #0f6175 !important;
}

body.ys .status-badge.status-paid,
body.ys .badge-soft-success {
    background: rgba(35, 185, 135, 0.14) !important;
    color: #16835f !important;
}

body.ys .goods-sku.a-badge-warning {
    background: rgba(240, 170, 56, 0.16) !important;
    color: #9b6716 !important;
}

/* Item purchase panel: badges, price, sku and form controls. */
body.ys .yinse-item-form-wrap {
    color: var(--xn-ink);
}

body.ys .yinse-item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

body.ys .yinse-item-badges .badge-soft,
body.ys .badge-soft,
body.ys .yinse-pill,
body.ys .snap-up,
body.ys .goods-sku,
body.ys .a-badge-primary,
body.ys .a-badge-warning,
body.ys .a-badge-success,
body.ys .a-badge-danger {
    position: relative;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 11px !important;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-radius: 9px !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(255, 79, 163, 0.08), transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(225, 248, 252, 0.54)) !important;
    color: #0f6175 !important;
    font-size: 0.82rem !important;
    font-weight: 850 !important;
    line-height: 1.2;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 12px rgba(26, 73, 95, 0.06) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
}

body.ys .yinse-item-badges .badge-soft::after {
    content: "♡";
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 10px;
    line-height: 1;
    transform: rotate(-8deg);
}

body.ys .yinse-item-badges .badge-soft:hover,
body.ys .yinse-pill:hover,
body.ys .goods-sku:hover,
body.ys .a-badge-primary:hover,
body.ys .a-badge-warning:hover,
body.ys .a-badge-success:hover,
body.ys .a-badge-danger:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.44) !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(255, 79, 163, 0.13), transparent 38px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(212, 247, 252, 0.66)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 9px 18px rgba(26, 73, 95, 0.12),
        0 0 14px rgba(53, 201, 213, 0.10) !important;
}

body.ys .badge-soft-success {
    border-color: rgba(35, 185, 135, 0.24) !important;
    color: #16835f !important;
}

body.ys .badge-soft-danger,
body.ys .a-badge-danger {
    border-color: rgba(255, 79, 130, 0.28) !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(255, 79, 163, 0.12), transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 235, 244, 0.58)) !important;
    color: #c23f72 !important;
}

body.ys .badge-soft-info,
body.ys .shared-button {
    cursor: pointer;
}

body.ys .yinse-item-price {
    position: relative;
    margin: 8px 0 18px;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 24px 16px, rgba(255, 79, 163, 0.11), transparent 72px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.44));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 10px 24px rgba(26, 73, 95, 0.08);
}

body.ys .yinse-item-price::after {
    content: "♡";
    position: absolute;
    right: 12px;
    top: 10px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.20);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 13px;
    transform: rotate(8deg);
}

body.ys .yinse-item-price .price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    color: #13b56f !important;
    font-size: clamp(2rem, 4vw, 3.1rem) !important;
    font-weight: 950 !important;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 10px 28px rgba(19, 181, 111, 0.16) !important;
}

body.ys .yinse-item-price .unit {
    color: #0f9f9f;
    font-size: 0.48em;
    font-weight: 950;
}

body.ys .yinse-form-stack {
    gap: 14px !important;
}

body.ys .yinse-field {
    position: relative;
    padding: 13px;
    border: 1px solid rgba(39, 174, 193, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(226, 247, 251, 0.28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body.ys .yinse-field .form-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px !important;
    color: #315c70 !important;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.ys .yinse-field .form-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--xn-hair);
    box-shadow: 0 0 0 4px rgba(53, 201, 213, 0.12);
}

body.ys .sku-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 2px !important;
}

body.ys .sku {
    position: relative;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px !important;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(225, 248, 252, 0.42)) !important;
    color: var(--xn-ink-2) !important;
    font-weight: 900 !important;
    line-height: 1.25;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 5px 14px rgba(26, 73, 95, 0.06) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
}

body.ys .sku:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 201, 213, 0.48) !important;
    background:
        radial-gradient(circle at 10px 9px, rgba(255, 79, 163, 0.10), transparent 36px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(212, 247, 252, 0.64)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 22px rgba(26, 73, 95, 0.13),
        0 0 16px rgba(53, 201, 213, 0.12) !important;
}

body.ys .sku.is-primary {
    border-color: #129eb5 !important;
    background: linear-gradient(135deg, #129eb5, #36cbd8 58%, #58a9e8) !important;
    color: #ffffff !important;
    box-shadow:
        0 12px 28px rgba(18, 158, 181, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

body.ys .sku.is-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 16px 34px rgba(18, 158, 181, 0.32),
        0 0 20px rgba(53, 201, 213, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

body.ys .sku-label {
    position: relative;
    z-index: 1;
}

body.ys .badge-money {
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px !important;
    border: 1px solid rgba(255, 79, 163, 0.22) !important;
    border-radius: 7px !important;
    background: rgba(255, 255, 255, 0.62) !important;
    color: #e83f93 !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(255, 79, 163, 0.10) !important;
}

body.ys .sku.is-primary .badge-money {
    color: #0f6175 !important;
    background: rgba(255, 255, 255, 0.84) !important;
}

body.ys .yinse-form-stack .form-control,
body.ys .yinse-form-stack input.form-control,
body.ys .yinse-form-stack input.captcha-input,
body.ys .yinse-captcha-group,
body.ys .qty-group,
body.ys .password-form .input-group {
    min-height: 42px;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-radius: 12px !important;
    background: rgba(248, 253, 255, 0.68) !important;
    color: var(--xn-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 14px rgba(26, 73, 95, 0.045) !important;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

body.ys .yinse-form-stack .form-control:focus,
body.ys .yinse-form-stack input.captcha-input:focus {
    border-color: rgba(53, 201, 213, 0.56) !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 0 0 4px rgba(53, 201, 213, 0.12),
        0 8px 20px rgba(26, 73, 95, 0.08) !important;
    outline: 0 !important;
}

body.ys .yinse-form-stack .form-control::placeholder,
body.ys .yinse-form-stack input.captcha-input::placeholder {
    color: rgba(53, 88, 107, 0.58) !important;
}

body.ys .qty-group {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 5px !important;
}

body.ys .qty-group .form-control {
    min-height: 34px;
    border: 0 !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.52) !important;
    box-shadow: none !important;
    font-weight: 900;
}

body.ys .change-num-sub,
body.ys .change-num-add {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 193, 0.26) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(225, 248, 252, 0.56)) !important;
    color: #0f6175 !important;
    box-shadow: 0 5px 12px rgba(26, 73, 95, 0.06) !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

body.ys .change-num-sub:hover,
body.ys .change-num-add:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.50) !important;
    background: linear-gradient(135deg, #129eb5, #36cbd8) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(18, 158, 181, 0.22) !important;
}

body.ys .optional-card,
body.ys .view-card-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid rgba(39, 174, 193, 0.26) !important;
    border-radius: 12px !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(255, 79, 163, 0.10), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(222, 248, 252, 0.56)) !important;
    color: #0f6175 !important;
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 6px 16px rgba(26, 73, 95, 0.08) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

body.ys .optional-card:hover,
body.ys .view-card-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.50) !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(255, 79, 163, 0.15), transparent 48px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(205, 245, 251, 0.72)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 10px 22px rgba(26, 73, 95, 0.14) !important;
}

body.ys .yinse-captcha-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px !important;
}

body.ys .yinse-captcha-group .form-control {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.ys .captcha-img,
body.ys .input-group-text.captcha-img {
    min-width: 104px;
    height: 34px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.22) !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.66) !important;
}

body.ys .wholesale-table,
body.ys table.wholesale-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.20) !important;
    border-radius: 14px !important;
    background: rgba(248, 253, 255, 0.66) !important;
    --bs-table-bg: transparent !important;
    --bs-table-color: var(--xn-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 8px 18px rgba(26, 73, 95, 0.07) !important;
}

body.ys .wholesale-table th,
body.ys .wholesale-table td {
    border-color: rgba(39, 174, 193, 0.14) !important;
    background: transparent !important;
    color: var(--xn-ink) !important;
}

body.ys .cash-pay {
    padding: 13px;
    border: 1px solid rgba(39, 174, 193, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(226, 247, 251, 0.28));
}

body.ys .cash-pay > .form-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #315c70 !important;
    font-weight: 900;
}

body.ys .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

body.ys .pay-list .pay {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px;
    border: 1px solid rgba(39, 174, 193, 0.24);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(222, 248, 252, 0.56));
    color: #0f6175;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(26, 73, 95, 0.07);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

body.ys .pay-list .pay img {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    object-fit: cover;
}

body.ys .pay-list .pay:hover,
body.ys .pay-list .pay.active,
body.ys .pay-list .pay.pay-selected {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.50);
    background: linear-gradient(135deg, #129eb5, #36cbd8) !important;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(18, 158, 181, 0.22);
}

/* Order lookup heading. */
body.ys .yinse-query-panel {
    overflow: hidden;
}

body.ys .yinse-query-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    min-height: 92px;
    padding: 17px 20px !important;
    overflow: hidden;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16) !important;
    background:
        radial-gradient(circle at 22px 18px, rgba(255, 79, 163, 0.08), transparent 72px),
        linear-gradient(90deg, rgba(223, 247, 251, 0.54), rgba(248, 253, 255, 0.18)) !important;
}

body.ys .yinse-query-heading-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 193, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.58);
    color: #0b7f9a;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(26, 73, 95, 0.10);
    flex: 0 0 auto;
}

body.ys .yinse-query-heading::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 14px;
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 4px 50%, var(--xn-pink) 0 3px, transparent 3.5px),
        radial-gradient(circle at 17px 50%, var(--xn-hair) 0 3px, transparent 3.5px),
        radial-gradient(circle at 30px 50%, #7ee8a8 0 3px, transparent 3.5px);
    opacity: 0.62;
}

body.ys .yinse-query-heading-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

body.ys .yinse-query-heading .panel-kicker {
    margin: 0;
    color: #607889 !important;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
}

body.ys .yinse-query-title {
    margin: 0;
    color: var(--xn-ink-2) !important;
    font-size: clamp(1.28rem, 2.2vw, 1.72rem);
    line-height: 1.05;
    font-weight: 950;
    text-shadow: none !important;
}

body.ys .yinse-query-summary {
    margin: 0;
    max-width: 560px;
    color: #607889 !important;
    font-size: 0.84rem;
    line-height: 1.45;
}

/* Order lookup results. */
body.ys .order-results .panel-body {
    padding: 18px;
}

body.ys .order-list {
    display: grid;
    gap: 14px;
}

body.ys .order-item {
    position: relative;
    overflow: hidden;
    padding: 16px !important;
    border: 1px solid rgba(39, 174, 193, 0.22) !important;
    border-radius: 16px !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.10), transparent 86px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.46)) !important;
    color: var(--xn-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease;
}

body.ys .order-item::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    opacity: 0.72;
}

body.ys .order-item::after {
    content: "\2665";
    position: absolute;
    top: 12px;
    right: 14px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(8deg);
}

body.ys .order-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 79, 163, 0.34) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.14), transparent 92px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(211, 246, 251, 0.58)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(26, 73, 95, 0.14),
        0 0 22px rgba(53, 201, 213, 0.12) !important;
}

body.ys .order-header,
body.ys .goods-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

body.ys .order-header {
    padding: 4px 30px 14px 0;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16);
}

body.ys .order-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

body.ys .order-status {
    flex: 0 0 auto;
}

body.ys .status-badge,
body.ys .shipment-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 11px !important;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(225, 248, 252, 0.54)) !important;
    color: #0f6175 !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 12px rgba(26, 73, 95, 0.06) !important;
}

body.ys .status-badge.status-paid,
body.ys .shipment-badge.shipment-paid {
    border-color: rgba(35, 185, 135, 0.26) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(218, 250, 240, 0.58)) !important;
    color: #16835f !important;
}

body.ys .order-basic {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: #35586b;
    font-size: 0.88rem;
    font-weight: 750;
}

body.ys .order-no {
    color: var(--xn-ink-2);
    font-size: 1rem;
    font-weight: 950;
    word-break: break-all;
}

body.ys .order-no::before {
    content: "Order";
    display: inline-flex;
    align-items: center;
    margin-right: 7px;
    padding: 2px 7px;
    border: 1px solid rgba(53, 201, 213, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: #0f6175;
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.ys .payment-method {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.ys .payment-icon {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(26, 73, 95, 0.10);
}

body.ys .order-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

body.ys .order-amount {
    min-width: 118px;
    display: grid;
    gap: 5px;
    justify-items: end;
    padding: 10px 12px;
    border: 1px solid rgba(39, 174, 193, 0.18);
    border-radius: 13px;
    background: rgba(248, 253, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

body.ys .amount-label {
    color: #607889;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.ys .amount-value {
    color: #13b56f;
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 8px 18px rgba(19, 181, 111, 0.14);
}

body.ys .goods-section {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid rgba(39, 174, 193, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(226, 247, 251, 0.28));
}

body.ys .goods-thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.24);
    border-radius: 12px;
    background: rgba(248, 253, 255, 0.68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 7px 16px rgba(26, 73, 95, 0.08);
}

body.ys .goods-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.ys .goods-details {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 8px;
    flex: 1 1 auto;
}

body.ys .goods-name {
    margin: 0;
    color: var(--xn-ink-2);
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.35;
}

body.ys .goods-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

body.ys .card-section {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.18) !important;
    border-radius: 15px !important;
    background:
        radial-gradient(circle at 22px 18px, rgba(255, 79, 163, 0.08), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(223, 247, 251, 0.38)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 9px 20px rgba(26, 73, 95, 0.07) !important;
}

body.ys .card-section .card-header {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(39, 174, 193, 0.14);
    background: rgba(230, 247, 251, 0.36);
}

body.ys .shipment-content,
body.ys .card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: var(--xn-ink-2);
    font-size: 1rem !important;
    font-weight: 950;
}

body.ys .shipment-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

body.ys .shipment-title i {
    color: #0f9f9f;
}

body.ys .card-content-no-password,
body.ys .card-password-section,
body.ys .card-content {
    padding: 13px 14px;
    color: var(--xn-ink);
    font-weight: 750;
    line-height: 1.72;
}

body.ys .card-display {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px dashed rgba(39, 174, 193, 0.24);
    border-radius: 12px;
    background: rgba(248, 253, 255, 0.56);
    color: var(--xn-ink-2);
    word-break: break-word;
}

body.ys .btn-copy-unified,
body.ys .btn-unified {
    min-height: 30px;
    padding: 4px 10px !important;
    border: 1px solid rgba(39, 174, 193, 0.26);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.68);
    color: #0f6175 !important;
    font-weight: 900;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

body.ys .btn-copy-unified:hover,
body.ys .btn-unified:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.46);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 18px rgba(26, 73, 95, 0.10);
}

@media (max-width: 767.98px) {
    body.ys .yinse-query-heading {
        align-items: flex-start;
        min-height: auto;
        padding: 14px !important;
    }

    body.ys .yinse-query-heading-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
        border-radius: 10px;
        font-size: 15px;
    }

    body.ys .yinse-query-heading::after {
        right: 12px;
        top: 12px;
    }

    body.ys .yinse-query-title {
        font-size: 1.28rem;
    }

    body.ys .yinse-query-summary {
        font-size: 0.8rem;
    }

    body.ys .order-header,
    body.ys .goods-section {
        flex-direction: column;
    }

    body.ys .order-left {
        flex-direction: column;
    }

    body.ys .order-right,
    body.ys .order-amount {
        width: 100%;
        justify-items: start;
    }
}

body.ys .yinse-description-body a,
body.ys .btn-copy-card,
body.ys .cyber-back-btn {
    border-color: rgba(39, 174, 193, 0.32) !important;
    background: rgba(234, 248, 251, 0.82) !important;
    color: #0f6175 !important;
    box-shadow: none !important;
}

body.ys .yinse-description-body a:hover,
body.ys .btn-copy-card:hover,
body.ys .cyber-back-btn:hover {
    background: #129eb5 !important;
    color: #ffffff !important;
}

body.ys .yinse-description-body blockquote {
    position: relative;
    margin: 16px 0 !important;
    padding: 18px 20px 18px 24px !important;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.22) !important;
    border-left: 0 !important;
    border-radius: 14px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.46)) !important;
    color: var(--xn-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
}

body.ys .yinse-description-body blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    box-shadow: 0 0 18px rgba(53, 201, 213, 0.24);
}

body.ys .yinse-description-body blockquote::after {
    content: "\2665";
    position: absolute;
    top: 10px;
    right: 12px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

body.ys .yinse-description-body blockquote p {
    margin: 0 0 10px !important;
}

body.ys .yinse-description-body blockquote p:last-child,
body.ys .yinse-description-body blockquote > :last-child {
    margin-bottom: 0 !important;
}

body.ys .yinse-description-body blockquote ul,
body.ys .yinse-description-body blockquote ol {
    margin: 8px 0 0 !important;
    padding-left: 18px !important;
}

body.ys .yinse-description-body a,
body.ys .btn-copy-card,
body.ys .cyber-back-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 40px;
    margin: 5px 6px;
    padding: 9px 38px 9px 16px;
    border: 1px solid rgba(39, 174, 193, 0.34) !important;
    border-radius: 9px;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 79, 163, 0.11), transparent 48px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(222, 248, 252, 0.68)) !important;
    color: #0f6175 !important;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.35;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 8px 18px rgba(26, 73, 95, 0.10) !important;
    overflow: hidden;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease,
        color 0.24s ease;
}

body.ys .yinse-description-body a::after,
body.ys .btn-copy-card::after,
body.ys .cyber-back-btn::after {
    content: "\2665";
    position: absolute;
    right: 10px;
    top: 8px;
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 11px;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(255, 79, 163, 0.10);
    transform: rotate(-8deg) scale(0.96);
    transform-origin: center;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

body.ys .yinse-description-body a:hover,
body.ys .btn-copy-card:hover,
body.ys .cyber-back-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 201, 213, 0.68) !important;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 79, 163, 0.18), transparent 54px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(198, 244, 251, 0.82)) !important;
    color: #0b5267 !important;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 22px rgba(26, 73, 95, 0.14),
        0 0 18px rgba(53, 201, 213, 0.18) !important;
}

body.ys .yinse-description-body a:hover::after,
body.ys .btn-copy-card:hover::after,
body.ys .cyber-back-btn:hover::after {
    border-color: rgba(255, 79, 163, 0.32);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 7px 16px rgba(255, 79, 163, 0.16);
    transform: rotate(8deg) scale(1.14);
}

body.ys .yinse-description-body blockquote {
    padding: 20px 22px 18px 24px !important;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-left: 1px solid rgba(39, 174, 193, 0.24) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.13), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(223, 247, 251, 0.48)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
    transform: translateY(0);
    transition:
        transform 0.26s ease,
        border-color 0.26s ease,
        background-color 0.26s ease,
        box-shadow 0.26s ease;
}

body.ys .yinse-description-body blockquote::before {
    left: 18px;
    top: 0;
    bottom: auto;
    width: 88px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    box-shadow: 0 8px 20px rgba(53, 201, 213, 0.20);
}

body.ys .yinse-description-body blockquote::after {
    content: "\2665";
    box-shadow: 0 6px 14px rgba(255, 79, 163, 0.12);
    transition:
        transform 0.26s ease,
        background-color 0.26s ease,
        box-shadow 0.26s ease;
}

body.ys .yinse-description-body blockquote:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 201, 213, 0.42) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.16), transparent 86px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(211, 246, 251, 0.58)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(26, 73, 95, 0.14),
        0 0 22px rgba(53, 201, 213, 0.12) !important;
}

body.ys .yinse-description-body blockquote:hover::after {
    transform: rotate(8deg) scale(1.08);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 8px 18px rgba(255, 79, 163, 0.18);
}

body.ys .yinse-description-body blockquote.red {
    --xn-quote-accent: #c24f4a;
    --xn-quote-accent-rgb: 194, 79, 74;
}

body.ys .yinse-description-body blockquote.blue,
body.ys .yinse-description-body blockquote.blud {
    --xn-quote-accent: #3b82f6;
    --xn-quote-accent-rgb: 59, 130, 246;
}

body.ys .yinse-description-body blockquote.green {
    --xn-quote-accent: #22c55e;
    --xn-quote-accent-rgb: 34, 197, 94;
}

body.ys .yinse-description-body blockquote.cyan {
    --xn-quote-accent: #22c7d8;
    --xn-quote-accent-rgb: 34, 199, 216;
}

body.ys .yinse-description-body blockquote.red,
body.ys .yinse-description-body blockquote.blue,
body.ys .yinse-description-body blockquote.blud,
body.ys .yinse-description-body blockquote.green,
body.ys .yinse-description-body blockquote.cyan,
body.ys .yinse-description-body blockquote.has-xn-quote-accent,
body.ys .yinse-description-body blockquote[style*="border-left-color"],
body.ys .yinse-description-body blockquote[style*="border-color"] {
    border-color: color-mix(in srgb, var(--xn-quote-accent, var(--xn-hair)) 42%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.12), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(223, 247, 251, 0.48)) !important;
}

body.ys .yinse-description-body blockquote.red::before,
body.ys .yinse-description-body blockquote.blue::before,
body.ys .yinse-description-body blockquote.blud::before,
body.ys .yinse-description-body blockquote.green::before,
body.ys .yinse-description-body blockquote.cyan::before,
body.ys .yinse-description-body blockquote.has-xn-quote-accent::before,
body.ys .yinse-description-body blockquote[style*="border-left-color"]::before,
body.ys .yinse-description-body blockquote[style*="border-color"]::before {
    background: linear-gradient(90deg, var(--xn-quote-accent, var(--xn-hair)), rgba(255, 255, 255, 0.72), var(--xn-hair));
    box-shadow: 0 8px 20px rgba(var(--xn-quote-accent-rgb, 53, 201, 213), 0.18);
}

body.ys .yinse-description-body blockquote.red::after,
body.ys .yinse-description-body blockquote.blue::after,
body.ys .yinse-description-body blockquote.blud::after,
body.ys .yinse-description-body blockquote.green::after,
body.ys .yinse-description-body blockquote.cyan::after,
body.ys .yinse-description-body blockquote.has-xn-quote-accent::after,
body.ys .yinse-description-body blockquote[style*="border-left-color"]::after,
body.ys .yinse-description-body blockquote[style*="border-color"]::after {
    border-color: rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.22);
    color: var(--xn-quote-accent, var(--xn-pink));
    box-shadow: 0 6px 14px rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.12);
}

body.ys .yinse-description-body blockquote.red:hover,
body.ys .yinse-description-body blockquote.blue:hover,
body.ys .yinse-description-body blockquote.blud:hover,
body.ys .yinse-description-body blockquote.green:hover,
body.ys .yinse-description-body blockquote.cyan:hover,
body.ys .yinse-description-body blockquote.has-xn-quote-accent:hover,
body.ys .yinse-description-body blockquote[style*="border-left-color"]:hover,
body.ys .yinse-description-body blockquote[style*="border-color"]:hover {
    border-color: color-mix(in srgb, var(--xn-quote-accent, var(--xn-hair)) 60%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.16), transparent 86px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(211, 246, 251, 0.58)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(26, 73, 95, 0.14),
        0 0 22px rgba(var(--xn-quote-accent-rgb, 53, 201, 213), 0.12) !important;
}

body.ys .cyber-note {
    border-left-color: var(--xn-hair) !important;
    background: rgba(241, 251, 253, 0.82) !important;
    color: var(--xn-ink) !important;
}

body.ys .yinse-payment-notice {
    position: relative;
    margin: 2px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(39, 174, 193, 0.28);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(9, 30, 46, 0.82), rgba(17, 65, 79, 0.76)),
        var(--yinse-page-background-image, none);
    background-size: cover;
    background-position: center;
    color: rgba(238, 252, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.58;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 26px rgba(26, 73, 95, 0.12);
    overflow: hidden;
}

body.ys .yinse-payment-notice::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(53, 201, 213, 0.22), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(255, 79, 163, 0.14), transparent 30%);
    pointer-events: none;
}

body.ys .yinse-payment-notice > * {
    position: relative;
    z-index: 1;
}

body.ys .yinse-payment-notice p {
    margin: 0;
}

body.ys .yinse-payment-notice p + p {
    margin-top: 2px;
}

body.ys .yinse-payment-notice a {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    margin: 0 2px;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: #35e7ff !important;
    font-size: inherit;
    font-weight: 900;
    line-height: inherit;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    box-shadow: none !important;
    transform: none !important;
}

body.ys .yinse-payment-notice a::after {
    display: none !important;
}

body.ys .yinse-payment-notice a:hover {
    color: #9cf8ff !important;
    text-shadow: 0 0 12px rgba(53, 231, 255, 0.42);
}

body.ys .yinse-payment-panel {
    margin-top: var(--yinse-layout-gap);
    overflow: hidden;
}

body.ys .yinse-payment-heading {
    min-height: 96px;
    align-items: center;
}

body.ys .yinse-payment-body {
    padding: 18px;
}

body.ys .cash-pay--independent {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(39, 174, 193, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 24px 18px, rgba(255, 79, 163, 0.10), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(223, 247, 251, 0.40));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 10px 24px rgba(26, 73, 95, 0.08);
}

body.ys .cash-pay--independent::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 88px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    box-shadow: 0 8px 20px rgba(53, 201, 213, 0.18);
}

body.ys .cash-pay--independent .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.ys .cash-pay--independent .pay-list:empty {
    min-height: 38px;
}

body .yinse-layer-popup.layui-layer,
body.ys .layui-layer.layui-layer-page,
body.ys .component-popup {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(39, 174, 193, 0.24) !important;
    color: var(--xn-ink) !important;
    box-shadow: var(--xn-shadow-hover) !important;
}

body .yinse-layer-popup .layui-layer-content,
body .yinse-layer-popup .yinse-notice-title,
body .yinse-layer-popup .yinse-notice-popup-inner,
body .yinse-layer-popup .yinse-notice-tip {
    color: var(--xn-ink) !important;
}

body .yinse-layer-popup .yinse-notice-modal-head {
    background: linear-gradient(180deg, #eaf8fb, #ffffff) !important;
    border-bottom-color: rgba(39, 174, 193, 0.16) !important;
}

.yinse-form-stack input.form-control,
.yinse-form-stack input.captcha-input {
    color: var(--xn-ink) !important;
}

.yinse-form-stack input.form-control::placeholder,
.yinse-form-stack input.captcha-input::placeholder {
    color: #7b93a1 !important;
}

body.ys .yinse-back-to-top,
#backToTop {
    border-color: rgba(39, 174, 193, 0.30) !important;
    background: rgba(255, 255, 255, 0.84) !important;
    color: #0f6175 !important;
    box-shadow: var(--xn-shadow) !important;
}

body.ys .yinse-back-to-top:hover,
#backToTop:hover {
    background: #129eb5 !important;
    color: #ffffff !important;
}

html::-webkit-scrollbar-track,
#yinse-category-tree::-webkit-scrollbar-track {
    background: #dff4f8 !important;
}

html::-webkit-scrollbar-thumb,
#yinse-category-tree::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--xn-hair-soft), var(--xn-hair), #5aa4e2) !important;
    border-color: #dff4f8 !important;
}

html::-webkit-scrollbar-thumb:hover,
#yinse-category-tree::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b7f6fb, var(--xn-pink), var(--xn-hair)) !important;
}

@media (max-width: 767px) {
    :root {
        --xn-block-gap: 14px;
    }

    body.ys .yinse-nav-wrap,
    body.ys .yinse-shell,
    body.ys .yinse-shell--narrow,
    body.ys .yinse-footer-wrap {
        width: calc(100% - 20px);
    }

    body.yinse-theme.ys {
        background-position: center, center, 60% top !important;
        background-attachment: scroll !important;
    }

    .yinse-banner-shell {
        margin-top: var(--xn-block-gap) !important;
    }

    body.ys .yinse-hero-banner {
        min-height: 268px;
        border-radius: 20px !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    }

    body.ys .yinse-hero-banner--image::before {
        background:
            linear-gradient(180deg, rgba(8, 28, 45, 0.06) 0%, rgba(8, 28, 45, 0.08) 44%, rgba(8, 28, 45, 0.48) 100%),
            linear-gradient(90deg, rgba(8, 28, 45, 0.30), transparent 58%) !important;
    }

    body.ys .yinse-hero-banner--notice {
        padding: 0 !important;
        min-height: auto;
    }

    .yinse-hero-notice-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .yinse-hero-news.yinse-news-ticker {
        width: 100%;
    }

    body.ys .yinse-catalog-tools {
        position: static;
        width: 100%;
    }

    body.ys .yinse-catalog-tools::before,
    body.ys .yinse-catalog-tools::after {
        display: none !important;
    }

    .yinse-hero-media {
        inset: 0;
    }

    .yinse-hero-media-image {
        left: -12px;
        top: -4px;
        width: calc(100% + 24px);
        height: calc(100% + 8px);
        object-fit: cover;
        object-position: 64% 43%;
        transform: translate3d(var(--yinse-hero-shift-x, 0px), var(--yinse-hero-shift-y, 0px), 0) scale(1.03);
    }

    .yinse-hero-actions {
        left: 18px;
        right: 18px;
        bottom: 12px;
        padding: 0;
    }

    .yinse-hero-title {
        left: 18px;
        right: 18px;
        bottom: 78px;
        gap: 4px;
    }

    .yinse-hero-title span {
        max-width: 100%;
        font-size: clamp(28px, 9.4vw, 38px);
        line-height: 0.95;
        text-wrap: balance;
    }

    .yinse-hero-title strong {
        max-width: min(100%, 330px);
        font-size: clamp(12px, 3.8vw, 15px);
        line-height: 1.18;
        text-wrap: balance;
    }

    .yinse-hero-actions .cyber-nav-buttons {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 6px;
        max-height: 58px;
        overflow: hidden;
    }

    .yinse-hero-actions .cyber-btn-item {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(50% - 4px);
        min-height: 28px;
        padding: 0 9px;
        border-radius: 10px;
        font-size: 11px;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-shadow: 0 8px 18px rgba(26, 73, 95, 0.12);
    }

}

@media (max-width: 420px) {
    body.ys .yinse-hero-banner {
        min-height: 268px;
    }

    .yinse-hero-media-image {
        left: -12px;
        top: -4px;
        width: calc(100% + 24px);
        height: calc(100% + 8px);
        object-position: 66% 42%;
    }

    .yinse-hero-title {
        bottom: 76px;
    }

    .yinse-hero-title span {
        font-size: clamp(26px, 9vw, 34px);
    }

    .yinse-hero-title strong {
        font-size: 12px;
    }

    .yinse-hero-actions .cyber-nav-buttons {
        gap: 6px;
        max-height: 58px;
    }

    .yinse-hero-actions .cyber-btn-item {
        max-width: calc(50% - 4px);
        min-height: 28px;
        padding: 0 8px;
        font-size: 10px;
    }
}


/* XiGua visual overrides */
/*
 * Yinse Custom Theme
 * XiGua Store visual layer
 */

:root {
    --xg-ink: #101820;
    --xg-ink-soft: #223243;
    --xg-blue: #78bff5;
    --xg-blue-deep: #2d6f9f;
    --xg-blue-soft: #d9efff;
    --xg-sky: #b8dcff;
    --xg-paper: rgba(246, 251, 255, 0.76);
    --xg-paper-strong: rgba(255, 255, 255, 0.88);
    --xg-glass-dark: rgba(13, 22, 31, 0.58);
    --xg-line: rgba(120, 191, 245, 0.26);
    --xg-line-strong: rgba(120, 191, 245, 0.48);
    --xg-shadow: 0 18px 44px rgba(10, 34, 55, 0.18);
    --xg-shadow-hover: 0 24px 56px rgba(10, 34, 55, 0.26);
    --xg-rgb-cyan: #00e7ff;
    --xg-rgb-pink: #ff4fd8;
    --xg-rgb-lime: #39ff88;
    --xg-rgb-violet: #865cff;
}

@keyframes xgRgbHoverFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body.yinse-theme.ys {
    --yinse-bg: rgba(232, 244, 255, 0.72);
    --yinse-surface: var(--xg-paper);
    --yinse-black: var(--xg-ink);
    --yinse-text: var(--xg-ink);
    --yinse-muted: #5f7386;
    --yinse-muted-strong: #39566d;
    --yinse-muted-soft: var(--xg-blue);
    --yinse-link: var(--xg-blue-deep);
    --yinse-border: var(--xg-line);
    --yinse-border-strong: var(--xg-line-strong);
    --yinse-accent: var(--xg-blue);
    --yinse-accent-light: var(--xg-blue-soft);
    --yinse-accent-rgb: 120, 191, 245;
    --yinse-shadow-soft: var(--xg-shadow);
    --yinse-shadow-elevated: var(--xg-shadow-hover);
    background-color: #e9f5ff !important;
    color: var(--xg-ink) !important;
}

body.yinse-theme.ys.yinse-bg-mask-on::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(232, 244, 255, 0.62)),
        linear-gradient(90deg, rgba(13, 22, 31, 0.12), transparent 54%) !important;
}

body.ys .yinse-nav,
body.ys .panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-footer-wrap,
body.ys .yinse-layer-popup,
body.ys .component-popup {
    border-color: var(--xg-line) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 246, 255, 0.54)) !important;
    color: var(--xg-ink) !important;
    box-shadow: var(--xg-shadow) !important;
}

body.ys .yinse-nav {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(236, 247, 255, 0.52)) !important;
}

body.ys .yinse-nav::after,
body.ys .panel::before,
body.ys .yinse-hero-banner--notice::after {
    background: linear-gradient(90deg, transparent, rgba(120, 191, 245, 0.88), rgba(16, 24, 32, 0.52), transparent) !important;
    box-shadow: 0 0 12px rgba(120, 191, 245, 0.24) !important;
}

body.ys .yinse-brand::after,
body.ys .yinse-description-body a::after,
body.ys .btn-copy-card::after,
body.ys .cyber-back-btn::after,
body.ys .yinse-description-body blockquote::after,
body.ys .yinse-brand-chip::after,
body.ys .panel-header::after,
.yinse-hero-notice-head::after {
    display: none !important;
}

body.ys .yinse-brand::before {
    background:
        radial-gradient(circle at 22px 50%, rgba(120, 191, 245, 0.16), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(218, 238, 255, 0.28)) !important;
}

body.ys .yinse-brand-name {
    color: var(--xg-ink) !important;
    background: none !important;
    text-shadow: 0 6px 18px rgba(10, 34, 55, 0.10) !important;
}

body.ys .yinse-brand:hover .yinse-brand-name,
body.ys .yinse-brand:focus-visible .yinse-brand-name {
    color: var(--xg-blue-deep) !important;
    filter: drop-shadow(0 0 10px rgba(120, 191, 245, 0.30)) !important;
}

body.ys .yinse-brand-mark,
body.ys .yinse-user-avatar,
body.ys .item-cover {
    border-color: rgba(120, 191, 245, 0.36) !important;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.74),
        0 8px 20px rgba(10, 34, 55, 0.12) !important;
}

body.ys .yinse-nav-link,
body.ys .yinse-button-light,
body.ys .yinse-user-chip,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .form-control,
body.ys .qty-group,
body.ys .password-form .input-group {
    border-color: rgba(120, 191, 245, 0.24) !important;
    background: rgba(246, 251, 255, 0.76) !important;
    color: var(--xg-ink) !important;
    box-shadow: none !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease !important;
}

body.ys .yinse-button-dark,
body.ys .yinse-nav-link:hover,
body.ys .yinse-nav-link.is-active,
body.ys .yinse-commodity-action-link,
body.ys .sku.is-primary,
body.ys .view-card-btn,
body.ys .component-popup .queryBtn,
body.ys .component-popup .query-button {
    border-color: rgba(120, 191, 245, 0.62) !important;
    background: linear-gradient(135deg, #162333, #2f78aa 62%, #7fc8ff) !important;
    color: #ffffff !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.30),
        0 12px 28px rgba(10, 34, 55, 0.22) !important;
}

body.ys .yinse-nav-link:hover,
body.ys .yinse-button-dark:hover,
body.ys .yinse-commodity-action-link:hover,
body.ys .view-card-btn:hover,
body.ys .component-popup .queryBtn:hover,
body.ys .component-popup .query-button:hover,
.yinse-hero-actions .cyber-btn-item:hover {
    background: linear-gradient(120deg, var(--xg-rgb-cyan), var(--xg-rgb-violet), var(--xg-rgb-pink), var(--xg-rgb-lime), var(--xg-rgb-cyan)) !important;
    background-size: 280% 280% !important;
    color: #ffffff !important;
    animation: xgRgbHoverFlow 3.2s ease infinite !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.46),
        0 0 14px rgba(0, 231, 255, 0.34),
        0 0 26px rgba(255, 79, 216, 0.22),
        0 14px 32px rgba(10, 34, 55, 0.20) !important;
}

body.ys .yinse-button-light:hover,
body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active,
body.ys .yinse-dropdown-menu .dropdown-item:hover {
    border-color: rgba(120, 191, 245, 0.44) !important;
    background: rgba(236, 247, 255, 0.84) !important;
    color: var(--xg-blue-deep) !important;
}

body.ys .yinse-hero-banner {
    min-height: 286px;
    border-color: rgba(255, 255, 255, 0.34) !important;
    background: var(--xg-glass-dark) !important;
    box-shadow: 0 20px 52px rgba(10, 34, 55, 0.26) !important;
}

body.ys .yinse-hero-banner--notice {
    min-height: 260px !important;
    border-color: var(--xg-line) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(233, 246, 255, 0.54)) !important;
    color: var(--xg-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        var(--xg-shadow) !important;
}

body.ys .yinse-hero-banner--notice::before {
    display: none !important;
    content: none !important;
}

body.ys .yinse-hero-banner--notice > * {
    position: relative;
    z-index: 1;
}

.yinse-hero-notice-head {
    border-bottom-color: rgba(120, 191, 245, 0.30) !important;
    background:
        linear-gradient(90deg, rgba(246, 251, 255, 0.72), rgba(218, 238, 255, 0.42), transparent) !important;
}

.yinse-hero-notice-title {
    color: var(--xg-ink) !important;
    text-shadow: none !important;
}

.yinse-hero-notice-title i {
    border-color: rgba(120, 191, 245, 0.40) !important;
    background: rgba(246, 251, 255, 0.84) !important;
    color: var(--xg-blue-deep) !important;
    box-shadow: 0 8px 18px rgba(10, 34, 55, 0.18), 0 0 14px rgba(120, 191, 245, 0.18) !important;
}

.yinse-hero-news.yinse-news-ticker {
    color: var(--xg-ink) !important;
}

.yinse-hero-news .yinse-news-ticker-track,
.yinse-hero-news .yinse-news-ticker-track * {
    color: inherit !important;
}

.yinse-hero-notice-body {
    color: var(--xg-ink) !important;
    text-shadow: none !important;
}

.yinse-hero-notice-body h1,
.yinse-hero-notice-body h2,
.yinse-hero-notice-body h3,
.yinse-hero-notice-body strong,
.yinse-hero-notice-body b {
    color: var(--xg-ink-soft) !important;
    text-shadow: none !important;
}

.yinse-hero-notice-body a {
    color: var(--xg-blue-deep) !important;
    text-decoration-color: rgba(45, 111, 159, 0.42) !important;
}

.yinse-hero-notice-body hr {
    border-color: rgba(120, 191, 245, 0.28) !important;
    opacity: 1;
}

.yinse-hero-notice-body [style*="color"] {
    text-shadow: 0 0 12px rgba(120, 191, 245, 0.16);
}

body.ys .yinse-hero-banner--image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(11, 18, 28, 0.66) 0%, rgba(11, 18, 28, 0.28) 42%, rgba(11, 18, 28, 0.06) 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(12, 29, 45, 0.18) 58%, rgba(7, 16, 26, 0.48) 100%);
}

.yinse-hero-media-image {
    filter: saturate(1.04) contrast(1.03);
}

.yinse-hero-title {
    left: 44px;
    bottom: 92px;
}

.yinse-hero-title span {
    color: #ffffff !important;
    text-shadow:
        0 5px 24px rgba(7, 16, 26, 0.66),
        0 0 24px rgba(120, 191, 245, 0.30) !important;
}

.yinse-hero-title strong {
    color: #d9efff !important;
    text-shadow: 0 4px 18px rgba(7, 16, 26, 0.56) !important;
}

.yinse-hero-title::after {
    content: "";
    width: 138px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24), var(--xg-blue), rgba(255, 255, 255, 0.18));
    box-shadow: 0 0 16px rgba(120, 191, 245, 0.34);
}

.xigua-hero-side-notice {
    position: absolute;
    top: 32px;
    right: clamp(24px, 7vw, 88px);
    z-index: 2;
    width: min(42vw, 540px);
    display: grid;
    gap: 10px;
    pointer-events: auto;
}

.xigua-hero-side-notice p,
.xigua-hero-side-notice div {
    margin: 0 !important;
}

.xigua-hero-side-notice p {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border: 1px solid rgba(120, 191, 245, 0.34);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(11, 18, 28, 0.56), rgba(45, 111, 159, 0.28)),
        rgba(255, 255, 255, 0.08);
    color: #f4fbff;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 850;
    line-height: 1.45;
    text-align: center;
    text-shadow:
        0 2px 10px rgba(7, 16, 26, 0.78),
        0 0 12px rgba(120, 191, 245, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(7, 16, 26, 0.20),
        0 0 18px rgba(120, 191, 245, 0.14);
    backdrop-filter: blur(10px) saturate(132%);
    -webkit-backdrop-filter: blur(10px) saturate(132%);
}

.xigua-hero-side-notice p:nth-child(2) {
    border-color: rgba(134, 92, 255, 0.32);
    background:
        linear-gradient(135deg, rgba(11, 18, 28, 0.58), rgba(64, 56, 136, 0.26)),
        rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 24px rgba(7, 16, 26, 0.20),
        0 0 18px rgba(134, 92, 255, 0.12);
}

.xigua-hero-side-notice p:nth-child(3) {
    min-height: 48px;
    border-color: rgba(255, 255, 255, 0.24);
    color: #e9f7ff;
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 760;
}

.yinse-hero-actions .cyber-btn-item {
    border-color: rgba(255, 255, 255, 0.36) !important;
    background: rgba(11, 18, 28, 0.42) !important;
    color: #eef8ff !important;
}

body.ys .yinse-news-ticker {
    border-color: rgba(120, 191, 245, 0.20) !important;
    color: var(--xg-ink) !important;
}

body.ys .yinse-news-ticker-track span[style] {
    border: 1px solid rgba(120, 191, 245, 0.30) !important;
    border-radius: 999px !important;
    background: rgba(246, 251, 255, 0.86) !important;
    color: var(--xg-blue-deep) !important;
    box-shadow: 0 6px 16px rgba(10, 34, 55, 0.08) !important;
}

body.ys .yinse-category-link {
    border-color: rgba(120, 191, 245, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(232, 244, 255, 0.42)) !important;
}

body.ys .yinse-category-link::before {
    background:
        linear-gradient(90deg, rgba(120, 191, 245, 0.08), transparent 48%) !important;
}

body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active,
body.ys .yinse-commodity-card:hover .row-inner,
body.ys .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(120, 191, 245, 0.52) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.34),
        0 0 18px rgba(120, 191, 245, 0.22),
        0 16px 34px rgba(10, 34, 55, 0.14) !important;
}

body.ys .yinse-commodity-card .row-inner,
body.ys .yinse-item-purchase-card,
body.ys .cash-pay--independent {
    border-color: rgba(120, 191, 245, 0.22) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 247, 255, 0.52)) !important;
}

body.ys .panel-title,
body.ys .yinse-index-panel-title,
body.ys .yinse-item-inline-title,
body.ys .yinse-current-name,
body.ys .panel-title-small,
body.ys .yinse-item-price .price {
    color: var(--xg-ink-soft) !important;
    background: none !important;
    text-shadow: none !important;
}

body.ys .yinse-item-price .price {
    color: var(--xg-blue-deep) !important;
}

body.ys .yinse-payment-notice {
    border-color: rgba(120, 191, 245, 0.30) !important;
    background:
        linear-gradient(90deg, rgba(11, 18, 28, 0.86), rgba(34, 62, 86, 0.74)),
        var(--yinse-page-background-image, none) !important;
}

body.ys .yinse-payment-notice a {
    color: #9bd8ff !important;
}

body.ys .yinse-commodity-list-meta {
    display: none;
}

body.ys .yinse-heart-particle {
    color: var(--heart-color, var(--xg-blue)) !important;
    text-shadow:
        0 0 8px currentColor,
        0 0 16px rgba(120, 191, 245, 0.18) !important;
    filter:
        drop-shadow(0 8px 14px rgba(120, 191, 245, 0.22))
        drop-shadow(0 0 8px color-mix(in srgb, var(--heart-color, var(--xg-blue)) 42%, transparent)) !important;
}

body.ys .yinse-heart-particle.is-near-mouse {
    filter:
        drop-shadow(0 10px 18px rgba(120, 191, 245, 0.28))
        drop-shadow(0 0 12px color-mix(in srgb, var(--heart-color, var(--xg-blue)) 62%, transparent))
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.24)) !important;
}

@keyframes yinseHeartFloat {
    0% {
        opacity: 0;
        transform:
            translate3d(-50%, 0, 0)
            rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg)))
            scale(calc(0.16 * var(--heart-mouse-scale, 1)));
    }

    7% {
        opacity: calc(var(--heart-opacity, 0.72) * 0.82);
        transform:
            translate3d(calc(-50% + var(--heart-drift-a, 12px) * 0.18), -10px, 0)
            rotate(calc(var(--heart-rotate, 0deg) * 0.65 + var(--heart-mouse-rotate, 0deg)))
            scale(calc(1.42 * var(--heart-depth-scale, 1) * var(--heart-mouse-scale, 1)));
    }

    16% {
        opacity: var(--heart-opacity, 0.72);
        transform:
            translate3d(calc(-50% + var(--heart-drift-a, 12px)), calc(var(--heart-rise, -72vh) * 0.14), 0)
            rotate(calc(var(--heart-rotate, 0deg) * -0.18 + var(--heart-mouse-rotate, 0deg)))
            scale(calc(0.92 * var(--heart-depth-scale, 1) * var(--heart-mouse-scale, 1)));
    }

    34% {
        opacity: calc(var(--heart-opacity, 0.72) * 0.92);
        transform:
            translate3d(calc(-50% + var(--heart-drift-b, -42px) * 0.72), calc(var(--heart-rise, -72vh) * 0.38), 0)
            rotate(calc(var(--heart-rotate, 0deg) * -0.8 + var(--heart-spin, 28deg) * 0.18 + var(--heart-mouse-rotate, 0deg)))
            scale(calc(1.05 * var(--heart-depth-scale, 1) * var(--heart-mouse-scale, 1)));
    }

    58% {
        opacity: calc(var(--heart-opacity, 0.72) * 0.76);
        transform:
            translate3d(calc(-50% + var(--heart-drift-c, 26px)), calc(var(--heart-rise, -72vh) * 0.64), 0)
            rotate(calc(var(--heart-rotate, 0deg) * 0.46 + var(--heart-spin, 28deg) * 0.52 + var(--heart-mouse-rotate, 0deg)))
            scale(calc(0.86 * var(--heart-depth-scale, 1) * var(--heart-mouse-scale, 1)));
    }

    82% {
        opacity: calc(var(--heart-opacity, 0.72) * 0.38);
        transform:
            translate3d(calc(-50% + var(--heart-drift, -18px) * 0.82), calc(var(--heart-rise, -72vh) * 0.88), 0)
            rotate(calc(var(--heart-rotate, 0deg) * -0.22 + var(--heart-spin, 28deg) * 0.82 + var(--heart-mouse-rotate, 0deg)))
            scale(calc(0.72 * var(--heart-depth-scale, 1) * var(--heart-mouse-scale, 1)));
    }

    100% {
        opacity: 0;
        transform:
            translate3d(calc(-50% + var(--heart-drift, -18px)), var(--heart-rise, -72vh), 0)
            rotate(calc(var(--heart-rotate, 0deg) + var(--heart-spin, 28deg) + var(--heart-mouse-rotate, 0deg)))
            scale(calc(0.46 * var(--heart-depth-scale, 1) * var(--heart-mouse-scale, 1)));
    }
}

html::-webkit-scrollbar-track,
#yinse-category-tree::-webkit-scrollbar-track {
    background: #e9f5ff !important;
}

html::-webkit-scrollbar-thumb,
#yinse-category-tree::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d9efff, var(--xg-blue), #24435c) !important;
    border-color: #e9f5ff !important;
}

html::-webkit-scrollbar-thumb:hover,
#yinse-category-tree::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffffff, var(--xg-blue), var(--xg-ink)) !important;
}

@media (max-width: 767px) {
    body.ys .yinse-hero-banner {
        min-height: 288px;
    }

    body.ys .yinse-hero-banner--notice {
        min-height: auto !important;
    }

    .yinse-hero-notice-head {
        padding: 12px 14px 10px !important;
        gap: 8px !important;
    }

    .yinse-hero-notice-title {
        font-size: 15px !important;
    }

    .yinse-hero-notice-body {
        padding: 12px 14px 15px !important;
        font-size: 12px !important;
        line-height: 1.55 !important;
    }

    .yinse-hero-title {
        left: 18px;
        right: 18px;
        top: 22px;
        bottom: auto;
        gap: 3px;
    }

    .yinse-hero-title span {
        font-size: clamp(28px, 8vw, 38px) !important;
        line-height: 0.94 !important;
    }

    .yinse-hero-title strong {
        max-width: min(100%, 320px);
        font-size: 12px !important;
        line-height: 1.18 !important;
    }

    .yinse-hero-title::after {
        width: 112px;
        height: 2px;
        margin-top: 7px;
    }

    .xigua-hero-side-notice {
        left: 18px;
        right: 18px;
        top: 118px;
        bottom: auto;
        width: auto;
        gap: 5px;
    }

    .xigua-hero-side-notice p {
        min-height: 0;
        padding: 5px 8px;
        border-radius: 8px;
        font-size: 10.5px;
        line-height: 1.28;
    }

    .xigua-hero-side-notice p:nth-child(3) {
        min-height: 0;
        font-size: 9.5px;
    }

    .xigua-hero-side-notice + .yinse-hero-actions {
        bottom: 10px;
    }

    .yinse-hero-media-image {
        object-position: 56% 42% !important;
    }
}

@media (max-width: 420px) {
    .yinse-hero-title {
        top: 18px;
    }

    .yinse-hero-title span {
        font-size: clamp(26px, 8.8vw, 34px) !important;
    }

    .yinse-hero-title strong {
        font-size: 11px !important;
    }

    .xigua-hero-side-notice {
        top: 104px;
        gap: 4px;
    }

    .xigua-hero-side-notice p {
        padding: 4px 7px;
        font-size: 10px;
        line-height: 1.24;
    }

    .xigua-hero-side-notice p:nth-child(3) {
        font-size: 9px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .xigua-hero-side-notice {
        right: 24px;
        top: 28px;
        width: min(48vw, 420px);
        gap: 8px;
    }

    .xigua-hero-side-notice p {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    body.ys .yinse-shop-layout {
        display: grid !important;
        grid-template-columns: minmax(236px, 280px) minmax(0, 1fr) !important;
        grid-template-areas:
            "sidebar catalog"
            "sidebar detail" !important;
        align-items: start !important;
        gap: 18px !important;
    }

    body.ys .yinse-sidebar-panel {
        grid-area: sidebar !important;
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        position: sticky !important;
        top: 88px !important;
        max-height: calc(100vh - 108px);
        overflow: hidden !important;
    }

    body.ys .yinse-catalog-panel {
        grid-area: catalog !important;
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-width: 0 !important;
    }

    body.ys .yinse-inline-item-panel {
        grid-area: detail !important;
        grid-column: 2 !important;
        grid-row: 2 !important;
        min-width: 0 !important;
    }

    body.ys .yinse-sidebar-panel .panel-body {
        max-height: calc(100vh - 212px);
        overflow: hidden auto !important;
        padding: 12px !important;
    }

    body.ys .yinse-category-tree {
        display: grid !important;
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
        gap: 8px !important;
        max-height: none !important;
        overflow: visible !important;
        padding-right: 2px !important;
    }

    body.ys .yinse-category-node {
        display: block !important;
        min-width: 0 !important;
    }

    body.ys .yinse-category-row {
        display: block !important;
        padding-left: calc(var(--yinse-depth, 0) * 10px) !important;
    }

    body.ys .yinse-category-tree.is-floating .yinse-category-row {
        animation: none !important;
        transform: none !important;
    }

    body.ys .yinse-category-link {
        width: 100% !important;
        min-height: 48px !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
    }

    body.ys .yinse-category-link:hover,
    body.ys .yinse-category-link.is-active {
        transform: translateX(4px) !important;
    }

    body.ys .yinse-category-icon {
        width: 32px !important;
        height: 32px !important;
        flex-basis: 32px !important;
    }

    body.ys .yinse-category-copy {
        flex: 1 1 auto !important;
        min-width: 0 !important;
    }

    body.ys .yinse-category-name {
        max-width: 100% !important;
        font-size: 0.9rem !important;
    }

    body.ys .yinse-catalog-heading {
        min-height: 86px !important;
        align-items: center !important;
    }

    body.ys .yinse-catalog-tools {
        top: 24px !important;
        right: 18px !important;
        width: min(42%, 360px) !important;
    }

    body.ys .yinse-card-catalog-wrap {
        padding: 12px !important;
    }

    body.ys .yinse-commodity-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    body.ys .yinse-commodity-card .row-inner,
    body.ys .yinse-card-guren-mode .yinse-commodity-card .row-inner {
        min-height: 76px !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(470px, 46%) !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 9px 12px !important;
        border-radius: 8px !important;
    }

    body.ys .yinse-commodity-card:hover .row-inner {
        transform: translateX(3px) !important;
    }

    body.ys .yinse-commodity-card-main,
    body.ys .yinse-card-guren-mode .yinse-commodity-card-main {
        min-width: 0 !important;
        height: auto !important;
        align-items: center !important;
        gap: 12px !important;
    }

    body.ys .yinse-commodity-thumb,
    body.ys .yinse-card-guren-mode .yinse-commodity-thumb {
        width: 54px !important;
        height: 54px !important;
        flex: 0 0 54px !important;
        border-radius: 7px !important;
    }

    body.ys .yinse-commodity-copy,
    body.ys .yinse-card-guren-mode .yinse-commodity-copy {
        min-height: 0 !important;
        justify-content: center !important;
        gap: 4px !important;
    }

    body.ys .yinse-commodity-name {
        font-size: 0.94rem !important;
        line-height: 1.35 !important;
        display: -webkit-box !important;
        overflow: hidden !important;
        -webkit-box-orient: vertical !important;
        -webkit-line-clamp: 2 !important;
    }

    body.ys .yinse-commodity-list-meta {
        display: grid !important;
        grid-template-columns: 112px 118px 104px 96px !important;
        align-items: center !important;
        justify-content: end !important;
        gap: 8px !important;
        min-width: 0 !important;
    }

    body.ys .yinse-commodity-list-cell {
        width: 100% !important;
        height: 34px !important;
        min-width: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    body.ys .yinse-commodity-list-delivery {
        justify-content: center !important;
    }

    body.ys .yinse-commodity-list-stock {
        justify-content: center !important;
    }

    body.ys .yinse-commodity-list-price {
        justify-content: center !important;
    }

    body.ys .yinse-commodity-list-action {
        justify-content: center !important;
    }

    body.ys .yinse-desktop-delivery {
        width: 92px !important;
        min-width: 0 !important;
        height: 28px !important;
        padding: 0 10px !important;
        justify-content: center !important;
    }

    body.ys .yinse-desktop-stock {
        width: 100% !important;
        max-width: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body.ys .yinse-desktop-price {
        width: 100% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #13b96d !important;
        font-size: 1.08rem !important;
        text-align: center !important;
    }

    body.ys .yinse-desktop-buy {
        width: 86px !important;
        min-width: 0 !important;
        min-height: 34px !important;
        padding: 0 14px !important;
        justify-content: center !important;
    }

    body.ys .yinse-commodity-card-foot {
        display: none !important;
    }

    body.ys .yinse-commodity-meta-left {
        justify-content: flex-end !important;
    }

    body.ys .yinse-commodity-stock {
        font-size: 0.78rem !important;
    }

    body.ys .yinse-commodity-price {
        font-size: 1.06rem !important;
    }
}

@media (min-width: 1024px) and (max-width: 1180px) {
    body.ys .yinse-shop-layout {
        grid-template-columns: 232px minmax(0, 1fr) !important;
    }

    body.ys .yinse-catalog-tools {
        position: static !important;
        width: 100% !important;
        margin-top: 12px !important;
        justify-content: flex-start !important;
    }

    body.ys .yinse-catalog-heading {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    body.ys .yinse-commodity-card .row-inner,
    body.ys .yinse-card-guren-mode .yinse-commodity-card .row-inner {
        grid-template-columns: 1fr !important;
        align-items: stretch !important;
    }

    body.ys .yinse-commodity-list-meta {
        grid-template-columns: 112px 118px 104px 96px !important;
        justify-content: end !important;
    }

    body.ys .yinse-commodity-card-foot {
        min-width: 0 !important;
        justify-content: space-between !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.ys .yinse-nav-link:hover,
    body.ys .yinse-button-dark:hover,
    body.ys .yinse-commodity-action-link:hover,
    body.ys .view-card-btn:hover,
    body.ys .component-popup .queryBtn:hover,
    body.ys .component-popup .query-button:hover,
    .yinse-hero-actions .cyber-btn-item:hover {
        animation: none !important;
    }
}
/* 公共提取样式，减少重复代码 */
.bt-pro,
.bt-red,
.bt-blue,
.bt-green {
    /* 默认基准字号14px，内联style="font-size:XXpx"可覆盖修改大小 */
    font-size: 14px;
    font-weight: 900;
    position: relative;
    top: 0px;
    left: 5px;
    /* em = 自身font-size倍数，文字变大边距同步变大 */
    margin: 0 calc(0.625em) calc(0.125em) 0;
    padding: calc(0.14em) calc(0.71em);
    /* 圆角随字号自适应：1em=当前文字大小 */
    border-radius: 1em;
    display: inline-block;
    line-height: 1.2;
    color: #ffffff !important;
}
/* 多色循环标签 */
.bt-pro {
    background: rgba(255, 0, 0, 0.8);
    text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    animation: yinsehd 8s infinite linear;
}
@keyframes yinsehd {
    0%,100% {
        background: #ff0000;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    }
    25% {
        background: #ff5500;
        color: #fff;
        text-shadow: 0 0 calc(0.5em) #ff5500, 0 0 calc(1em) #ff5500;
    }
    50% {
        background: #00d114;
        color: #fff;
        text-shadow: 0 0 calc(0.5em) #00d114, 0 0 calc(1em) #00d114;
    }
    75% {
        background: #0066ff;
        color: #fff;
        text-shadow: 0 0 calc(0.5em) #0066ff, 0 0 calc(1em) #0066ff;
    }
}

/* 红色渐变标签 */
.bt-red {
    background: rgba(255, 0, 0, 0.8);
    text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    animation: yinsehd-alone-red 8s infinite linear;
}
@keyframes yinsehd-alone-red {
    0%,100% {
        background: #ff0000;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    }
    33% {
        background: var(--tokyo-accent,#ff2266); /* 兜底默认色，无变量不报错 */
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) var(--tokyo-accent,#ff2266), 0 0 calc(1em) var(--tokyo-accent,#ff2266);
    }
    66% {
        background: #ff71be;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #ff71be, 0 0 calc(1em) #ff71be;
    }
}

/* 蓝色渐变标签 */
.bt-blue {
    background: rgba(0, 102, 255, 0.8);
    text-shadow: 0 0 calc(0.5em) #0066ff, 0 0 calc(1em) #0066ff;
    animation: yinsehd-alone-blue 8s infinite linear;
}
@keyframes yinsehd-alone-blue {
    0%,100% {
        background: #0066ff;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #0066ff, 0 0 calc(1em) #0066ff;
    }
    33% {
        background: #00d2ff;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #00d2ff, 0 0 calc(1em) #00d2ff;
    }
    66% {
        background: #74b9ff;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #74b9ff, 0 0 calc(1em) #74b9ff;
    }
}

/* 绿色渐变标签 */
.bt-green {
    background: rgba(0, 209, 20, 0.8);
    text-shadow: 0 0 calc(0.5em) #00d114, 0 0 calc(1em) #00d114;
    animation: yinsehd-alone-green 8s infinite linear;
}
@keyframes yinsehd-alone-green {
    0%,100% {
        background: #00d114;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #00d114, 0 0 calc(1em) #00d114;
    }
    33% {
        background: #a2f82c;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #a2f82c, 0 0 calc(1em) #a2f82c;
    }
    66% {
        background: #00b894;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #00b894, 0 0 calc(1em) #00b894;
    }
}