/* 旺达集团 · 前台样式（扁平 / 卡片 / 移动端优先） */
:root {
    --brand:#2a7bf6; --brand-600:#1f6be0; --brand-100:#eaf1ff;
    --accent:#6b4eff; --accent-600:#5a3eeb;
    --ok:#18a058; --ok-100:#e8f6ed;
    --warn:#f0a020; --warn-100:#fff6e7;
    --err:#e84646; --err-100:#fdecec;
    --bg:#f5f6f8; --bg-2:#ffffff; --line:#ebedf0; --line-2:#f2f3f5;
    --text:#1f2328; --text-2:#606266; --text-3:#909399;
    --radius:10px; --radius-sm:6px; --radius-lg:14px;
    --shadow-1:0 2px 8px rgba(23,43,99,.06);
    --shadow-2:0 10px 24px rgba(23,43,99,.10);
    --shadow-hi:0 16px 36px rgba(42,123,246,.18);
    --ease:cubic-bezier(.2,.7,.2,1); --dur:180ms; --dur-lg:320ms;
}
*, *::before, *::after { box-sizing:border-box; }
html, body { margin:0; padding:0;
    font-family:-apple-system,"PingFang SC","Microsoft YaHei",Arial,sans-serif;
    background:var(--bg); color:var(--text); font-size:14px; -webkit-font-smoothing:antialiased;
    -webkit-tap-highlight-color:transparent; }
a { color:var(--brand); text-decoration:none; transition:opacity var(--dur) var(--ease); }
a:active { opacity:.7; }
img { max-width:100%; }
button { font:inherit; }

@keyframes fadeInUp { from { opacity:0; transform:translate3d(0,8px,0);} to { opacity:1; transform:none;} }
@keyframes pop      { 0% { transform:scale(.96);} 60% { transform:scale(1.02);} 100% { transform:scale(1);} }
@keyframes shimmer  { 0% { background-position:-400px 0;} 100% { background-position:400px 0;} }
@keyframes spin     { to { transform:rotate(360deg);} }
@keyframes toastIn  { from { opacity:0; transform:translate(-50%,20px);} to { opacity:1; transform:translate(-50%,0);} }
@keyframes bgShift  { 0% { background-position:0 0;} 100% { background-position:100% 100%;} }

.page-auth { min-height:100vh; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg,var(--brand) 0%,var(--accent) 100%); padding:24px;
    background-size:200% 200%; animation:bgShift 18s var(--ease) infinite alternate; }
.auth-box { width:100%; max-width:380px; background:#fff; border-radius:var(--radius-lg);
    padding:28px 22px; box-shadow:var(--shadow-2); animation:fadeInUp var(--dur-lg) var(--ease) both; }
.logo-area { text-align:center; margin-bottom:18px; }
.logo-area img { width:56px; height:56px; border-radius:12px; animation:pop 360ms var(--ease); }
.logo-area h1 { margin:8px 0 0; font-size:20px; letter-spacing:.3px; }

.fi { margin-bottom:14px; }
.fi.row { display:flex; justify-content:space-between; align-items:center; }
.fi label { display:block; color:var(--text-2); margin-bottom:6px; font-size:13px; }
.fi input[type=tel], .fi input[type=text], .fi input[type=password], .fi input[type=number],
.fi input[type=email], .fi textarea, .fi select {
    width:100%; padding:12px 10px; border:1px solid var(--line); border-radius:8px; font-size:15px;
    background:#fff; outline:none;
    transition:border-color var(--dur) var(--ease),box-shadow var(--dur) var(--ease); }
.fi input:focus, .fi textarea:focus, .fi select:focus { border-color:var(--brand);
    box-shadow:0 0 0 3px rgba(42,123,246,.15); }
.fi .chk { display:flex; align-items:center; gap:6px; color:var(--text-2); }

.btn-primary { width:100%; padding:12px; background:linear-gradient(135deg,var(--brand),var(--accent));
    color:#fff; border:none; border-radius:8px; font-size:16px; cursor:pointer;
    transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease),opacity var(--dur) var(--ease);
    box-shadow:0 6px 16px rgba(42,123,246,.28); }
.btn-primary:hover { box-shadow:var(--shadow-hi); }
.btn-primary:active { transform:translateY(1px) scale(.995); opacity:.92; }
.btn-primary:disabled { background:#b9c9e8; box-shadow:none; cursor:not-allowed; }
.tip { margin-top:8px; color:var(--err); min-height:20px; text-align:center; }
.link { color:var(--brand); }

.pwd-meter { display:flex; gap:6px; align-items:center; margin-top:6px; font-size:12px; color:var(--text-3); }
.pwd-meter span { flex:1; height:4px; border-radius:2px; background:var(--line);
    transition:background var(--dur) var(--ease); }
.pwd-meter.lv0 span:nth-child(1) { background:var(--err); }
.pwd-meter.lv1 span:nth-child(-n+2) { background:var(--warn); }
.pwd-meter.lv2 span { background:var(--ok); }
.pwd-meter em { font-style:normal; }

.page { min-height:100vh; padding-bottom:60px; animation:fadeInUp var(--dur-lg) var(--ease) both; }
.top-bar { position:sticky; top:0; z-index:10; display:flex; align-items:center;
    justify-content:space-between; padding:12px 16px; color:#fff;
    background:linear-gradient(135deg,var(--brand) 0%,var(--accent) 100%);
    box-shadow:0 2px 10px rgba(42,123,246,.18); }
.top-bar h1 { font-size:16px; margin:0; font-weight:600; letter-spacing:.3px; }
.top-bar a { color:#fff; opacity:.95; }
.top-bar .back-btn { display:inline-flex; align-items:center; min-width:52px; height:28px;
    padding:0 2px 0 0; color:#fff; font-size:14px; font-weight:500; }
.top-bar .back-btn:active { opacity:.78; }
.top-bar .back-btn::before { content:""; width:9px; height:9px;
    border-left:2px solid #fff; border-bottom:2px solid #fff;
    transform:rotate(45deg); margin-right:5px; margin-top:1px; }
.top-bar .site-logo-wrap { display:flex; align-items:center; min-height:24px; }
.top-bar .site-logo { height:24px; width:auto; display:block; margin-right:8px; }
.top-bar .site-logo-text { display:inline; font-size:16px; font-weight:600; color:#fff; }

.card { background:var(--bg-2); border-radius:var(--radius); padding:14px; margin:12px;
    box-shadow:var(--shadow-1);
    transition:transform var(--dur) var(--ease),box-shadow var(--dur) var(--ease); }
.card:hover { transform:translateY(-1px); box-shadow:var(--shadow-2); }
.list-item { display:flex; align-items:center; padding:12px; border-bottom:1px solid var(--line-2);
    transition:background var(--dur) var(--ease); }
.list-item:last-child { border-bottom:none; }
.list-item:active { background:var(--line-2); }

.badge { display:inline-block; padding:2px 8px; border-radius:10px; font-size:12px;
    background:var(--brand-100); color:var(--brand); }
.badge.warn   { background:var(--warn-100); color:var(--warn); }
.badge.ok     { background:var(--ok-100);   color:var(--ok); }
.badge.danger { background:var(--err-100);  color:var(--err); }

.tab-bar { position:fixed; left:0; right:0; bottom:0; z-index:20; background:#fff; display:flex;
    box-shadow:0 -2px 12px rgba(0,0,0,.06); padding-bottom:env(safe-area-inset-bottom); }
/* 有底栏的页面：整页不滚动，仅中间 .page-scroll 滚动（由 tabbar.jsp 注入） */
html.page-tab-layout {
    height:100%; height:100dvh; max-height:100dvh;
    overflow:hidden;
}
html.page-tab-layout body {
    height:100%; max-height:100%; margin:0; overflow:hidden;
    display:flex; flex-direction:column; min-height:0;
}
/* body 上的 fadeInUp 会对 body 使用 transform，导致子级 position:fixed 的底栏相对 body 定位而随整页滚动 */
html.page-tab-layout body.page { min-height:0; padding-bottom:0; animation:none; }
html.page-tab-layout .page-scroll {
    flex:1 1 auto; min-height:0; overflow-x:hidden; overflow-y:auto;
    -webkit-overflow-scrolling:touch;
}
html.page-tab-layout .tab-bar {
    position:static; flex-shrink:0; z-index:20;
    box-shadow:0 -2px 12px rgba(0,0,0,.06);
}
/* 娱乐页原先为 fixed 底栏预留的空白，改为内层滚动后可收紧 */
html.page-tab-layout .ent-list { padding-bottom:12px !important; }
/* 下单页提交区：无 tab 布局时仍为底栏留白；内层滚动后贴滚动区底部 */
.product-submit-sticky { position:sticky; bottom:60px; padding-bottom:10px; }
html.page-tab-layout .product-submit-sticky { bottom:0; margin-bottom:0; }

.tab-bar a {
    flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:3px; text-align:center; padding:6px 2px 10px; color:var(--text-2); font-size:12px;
    position:relative; transition:color var(--dur) var(--ease), opacity var(--dur) var(--ease);
    -webkit-tap-highlight-color:transparent;
}
.tab-bar a .tab-ic { display:flex; align-items:center; justify-content:center; width:26px; height:26px; color:inherit; }
.tab-bar a .tab-ic svg { width:24px; height:24px; display:block; }
.tab-bar a .tab-txt { line-height:1.2; max-width:100%; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.tab-bar a.active { color:var(--brand); font-weight:600; }
.tab-bar a:active { opacity:.88; }

.grid-amounts { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.grid-amounts button { padding:12px; background:#fff; border:1px solid var(--line);
    border-radius:8px; font-size:14px; cursor:pointer; transition:all var(--dur) var(--ease); }
.grid-amounts button:hover { border-color:var(--brand); color:var(--brand); }
.grid-amounts button.on { background:linear-gradient(135deg,var(--brand),var(--accent));
    color:#fff; border-color:transparent; box-shadow:0 4px 12px rgba(42,123,246,.25);
    animation:pop 240ms var(--ease); }

.swiper { position:relative; height:160px; overflow:hidden; border-radius:var(--radius); margin:12px;
    box-shadow:var(--shadow-1); }
.swiper img { width:100%; height:100%; object-fit:cover; transition:transform var(--dur-lg) var(--ease); }
.swiper:hover img { transform:scale(1.02); }

.empty { text-align:center; color:var(--text-3); padding:40px 0; }
.skeleton { background:linear-gradient(90deg,#eef1f4 25%,#f7f8fa 37%,#eef1f4 63%);
    background-size:400px 100%; animation:shimmer 1.4s linear infinite; border-radius:6px; }
.spinner { display:inline-block; width:14px; height:14px; border:2px solid rgba(255,255,255,.5);
    border-top-color:#fff; border-radius:50%; animation:spin .8s linear infinite; vertical-align:-2px; }
.toast { position:fixed; left:50%; bottom:88px; z-index:100; transform:translateX(-50%);
    background:rgba(31,35,40,.92); color:#fff; padding:10px 16px; border-radius:8px; font-size:13px;
    animation:toastIn 220ms var(--ease) both; }

/* ====== 登录/注册分屏布局（Dashboard 预览 + 表单） ====== */
@keyframes orbFloat { 0% { transform:translate3d(0,0,0) scale(1);} 50% { transform:translate3d(14px,-18px,0) scale(1.04);} 100% { transform:translate3d(0,0,0) scale(1);} }
@keyframes orbFloat2{ 0% { transform:translate3d(0,0,0) scale(1);} 50% { transform:translate3d(-18px,14px,0) scale(.96);} 100% { transform:translate3d(0,0,0) scale(1);} }
@keyframes listIn   { from { opacity:0; transform:translate3d(-10px,0,0);} to { opacity:1; transform:none;} }
@keyframes barPulse { 0%,100% { opacity:.85;} 50% { opacity:1;} }

.auth-split { min-height:100vh; display:flex; background:#f5f7fd; overflow:hidden; position:relative; }
.auth-hero { position:relative; flex:1.05; display:flex; flex-direction:column; justify-content:center;
    padding:60px 64px; color:var(--text); overflow:hidden; background:#f5f7fd; }
.auth-hero::before { content:""; position:absolute; bottom:-200px; left:-160px; width:460px; height:460px;
    border-radius:50%; pointer-events:none;
    background:linear-gradient(135deg,rgba(42,123,246,.26) 0%,rgba(107,78,255,.14) 100%);
    animation:orbFloat 14s var(--ease) infinite; }
.auth-hero::after  { content:""; position:absolute; top:-80px; right:-70px; width:240px; height:240px;
    border-radius:50%; pointer-events:none;
    background:radial-gradient(circle,rgba(107,78,255,.14),rgba(107,78,255,0) 70%);
    animation:orbFloat2 13s var(--ease) infinite; }
.auth-hero .hero-inner { position:relative; z-index:1; max-width:520px; animation:fadeInUp var(--dur-lg) var(--ease) both; }

/* Mock dashboard 预览卡 */
.hero-preview { background:#fff; border-radius:14px; padding:18px 20px; box-shadow:0 18px 40px rgba(23,43,99,.10);
    margin-bottom:38px; max-width:360px; animation:pop 520ms var(--ease); }
.hero-preview .dots { display:flex; gap:6px; margin-bottom:14px; }
.hero-preview .dots i { width:9px; height:9px; border-radius:50%; background:#e4e7ef; display:block; }
.hero-preview .bars { display:flex; flex-direction:column; gap:8px; margin-bottom:14px; }
.hero-preview .bars .bar { height:10px; border-radius:5px;
    background:linear-gradient(90deg,#c7d7f6,#dbe4f8); animation:barPulse 3.2s var(--ease) infinite; }
.hero-preview .bars .bar:nth-child(1) { width:100%; animation-delay:0s; }
.hero-preview .bars .bar:nth-child(2) { width:82%;  animation-delay:.4s; }
.hero-preview .bars .bar:nth-child(3) { width:60%;  animation-delay:.8s; }
.hero-preview .chips-s { display:flex; gap:6px; }
.hero-preview .chips-s span { font-size:10px; padding:3px 8px; border-radius:4px;
    background:var(--brand-100); color:var(--brand); font-weight:700; letter-spacing:.8px; }

/* 渐变文字品牌 */
.auth-hero h2 { margin:0 0 10px; font-size:34px; line-height:1.2; font-weight:700; letter-spacing:.3px;
    background:linear-gradient(135deg,var(--brand) 0%,var(--accent) 100%);
    -webkit-background-clip:text; background-clip:text; color:transparent; }
.auth-hero .hero-sub { margin:0 0 18px; font-size:13px; line-height:1.6; color:var(--text-3); max-width:440px; }

.hero-tags { display:flex; gap:8px; margin-bottom:22px; flex-wrap:wrap; }
.hero-tags .tag { font-size:11px; font-weight:700; letter-spacing:.8px; padding:5px 10px;
    border-radius:5px; background:#e7eeff; color:var(--brand); }

.auth-hero .hero-list { list-style:none; padding:0; margin:0 0 28px; display:grid; gap:10px; }
.auth-hero .hero-list li { display:flex; align-items:center; gap:10px; font-size:13px; color:var(--text-2);
    animation:listIn 480ms var(--ease) both; }
.auth-hero .hero-list li:nth-child(1){ animation-delay:.08s; }
.auth-hero .hero-list li:nth-child(2){ animation-delay:.18s; }
.auth-hero .hero-list li:nth-child(3){ animation-delay:.28s; }
.auth-hero .hero-list li:nth-child(4){ animation-delay:.38s; }
.auth-hero .hero-list .dot { width:6px; height:6px; border-radius:50%; background:var(--brand); flex-shrink:0; }

.auth-hero .hero-stats { display:flex; gap:10px; }
.auth-hero .hero-stats .st { padding:10px 14px; border-radius:10px; background:#fff;
    box-shadow:0 4px 14px rgba(23,43,99,.06); min-width:92px; }
.auth-hero .hero-stats .st b { display:block; font-size:15px; font-weight:700; color:var(--text); margin-bottom:2px; }
.auth-hero .hero-stats .st span { font-size:11px; color:var(--text-3); }

/* 右侧表单区 */
.auth-side { flex:1; background:#fff; display:flex; align-items:center; justify-content:center; padding:40px 32px;
    box-shadow:-8px 0 30px rgba(23,43,99,.04); }
.auth-side .auth-box { max-width:420px; width:100%; box-shadow:none; padding:8px 0; background:transparent;
    animation:fadeInUp var(--dur-lg) var(--ease) both; }
.auth-side .auth-box .logo-area { display:none; }
.auth-side .side-brand { display:flex; align-items:center; gap:10px; margin-bottom:26px; }
.auth-side .side-brand .badge { width:40px; height:40px; border-radius:10px; background:#fff;
    padding:4px; box-shadow:0 6px 16px rgba(42,123,246,.22), inset 0 0 0 1px rgba(42,123,246,.14);
    object-fit:contain; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.auth-side .side-brand img.badge { display:block; }
.auth-side .side-brand .name { font-size:15px; font-weight:600; color:var(--text); line-height:1.3; }
.auth-side .side-brand .name em { display:block; font-size:11px; font-weight:400; color:var(--text-3);
    font-style:normal; margin-top:2px; letter-spacing:.3px; }
.auth-side .side-title { margin:0 0 8px; font-size:26px; font-weight:700; color:var(--text); letter-spacing:.3px; }
.auth-side .side-sub { margin:0 0 26px; font-size:13px; color:var(--text-3); }

.side-chips { margin-top:22px; display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.side-chips .chip { font-size:11px; color:var(--text-2); display:inline-flex; align-items:center; gap:5px; }
.side-chips .chip::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--ok); }

.side-cards { margin-top:14px; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.side-cards .info { padding:10px 12px; border:1px solid var(--line); border-radius:10px; background:#fafbfe;
    transition:border-color var(--dur) var(--ease),background var(--dur) var(--ease); }
.side-cards .info:hover { border-color:var(--brand); background:#fff; }
.side-cards .info .t { font-size:11px; color:var(--text-3); margin-bottom:3px; }
.side-cards .info .v { font-size:13px; font-weight:600; color:var(--text); }

.side-foot { margin-top:26px; text-align:center; font-size:12px; color:var(--text-3); }
.side-foot b { color:var(--text-2); font-weight:600; }

/* 平板竖屏 / 中等屏：上下堆叠 */
@media (max-width: 960px) {
    .auth-split { flex-direction:column; min-height:auto; }
    .auth-hero { padding:36px 24px 36px; flex:none; }
    .auth-hero h2 { font-size:26px; }
    .auth-hero .hero-sub { margin-bottom:14px; }
    .auth-hero .hero-inner { max-width:100%; }
    .hero-preview { margin-bottom:22px; max-width:100%; }
    .auth-hero .hero-list { margin-bottom:18px; }
    .auth-hero .hero-stats .st { min-width:auto; flex:1; }
    .auth-side { padding:28px 20px 40px; box-shadow:none; flex:none; min-height:auto; }
    .auth-side .auth-box { max-width:460px; }
}

/* 小屏手机：隐藏装饰内容，快速进入表单 */
@media (max-width: 560px) {
    .auth-hero { padding:22px 18px 18px; }
    .auth-hero::before, .auth-hero::after { display:none; }
    .auth-hero h2 { font-size:20px; margin-bottom:6px; }
    .auth-hero .hero-sub { font-size:12px; line-height:1.55; margin-bottom:10px; }
    .hero-preview,
    .auth-hero .hero-list,
    .auth-hero .hero-stats { display:none; }
    .hero-tags { gap:6px; margin-bottom:2px; }
    .hero-tags .tag { font-size:10px; padding:4px 8px; }
    .auth-side { padding:22px 16px 28px; }
    .auth-side .side-brand { margin-bottom:18px; gap:8px; }
    .auth-side .side-brand .badge { width:36px; height:36px; }
    .auth-side .side-title { font-size:22px; }
    .auth-side .side-sub { font-size:12px; margin-bottom:18px; }
    .side-chips { gap:10px 12px; margin-top:16px; }
    .side-chips .chip { font-size:10px; }
    .side-foot { margin-top:18px; font-size:11px; }
}

/* 手机横屏 / 矮屏：隐藏左侧宣传，让表单占满 */
@media (max-width: 960px) and (max-height: 520px) and (orientation: landscape) {
    .auth-split { flex-direction:row; }
    .auth-hero { display:none; }
    .auth-side { flex:1; min-height:100vh; padding:20px 28px; }
    .auth-side .auth-box { max-width:440px; }
}

/* ====== 桌面端适配（≥900px）：平铺整页，不做任何限宽 ====== */
@media (min-width: 900px) {
    html { background:var(--bg); }
    /* 取消 page-tab-layout 的满屏锁高：桌面恢复正常文档流 */
    html.page-tab-layout { background:var(--bg); height:auto; max-height:none; overflow:visible; }
    body.page,
    html.page-tab-layout body.page {
        max-width:none; width:auto; margin:0;
        background:var(--bg); box-shadow:none;
        display:block; height:auto; max-height:none; overflow:visible;
        min-height:100vh; padding-bottom:70px; }
    html.page-tab-layout .page-scroll {
        overflow:visible; flex:none; height:auto; max-height:none; display:block;
        max-width:none; margin:0; padding:0; width:auto; }
    html.page-tab-layout .tab-bar {
        position:fixed; left:0; right:0; bottom:0; transform:none;
        max-width:none; width:auto; border-radius:0; }
    html:not(.page-tab-layout) body.page > .tab-bar {
        left:0; right:0; transform:none;
        max-width:none; width:auto; border-radius:0; }
    /* 顶栏：平铺全宽 */
    .top-bar { padding:14px 32px; }
    .top-bar h1 { font-size:18px; }
}

/* 触屏设备：弱化 hover 态，避免粘连高亮 */
@media (hover: none) {
    .card:hover { transform:none; box-shadow:var(--shadow-1); }
    .list-item:hover { background:transparent; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration:1ms !important; animation-iteration-count:1 !important;
        transition-duration:1ms !important; }
}

/* ====== 官网内联弹层（替代 alert/confirm/prompt）====== */
.front-ui-overlay {
    display:none; position:fixed; inset:0; z-index:10000;
    background:rgba(0,0,0,.45); align-items:center; justify-content:center; padding:16px;
    backdrop-filter:blur(2px);
}
.front-ui-sheet {
    width:100%; max-width:380px; max-height:86vh; overflow:auto;
    background:var(--bg-2); border-radius:var(--radius-lg);
    padding:18px 18px 14px; box-shadow:var(--shadow-2);
    animation:fadeInUp var(--dur) var(--ease) both;
}
.front-ui-title { font-size:16px; font-weight:600; color:var(--text); margin:0 0 12px; }
.front-ui-body { font-size:14px; color:var(--text-2); }
.front-ui-body .fi { margin-bottom:12px; }
.front-ui-body .fi label { display:block; font-size:13px; color:var(--text-2); margin-bottom:6px; }
.front-ui-msg { margin:0; line-height:1.55; white-space:pre-wrap; word-break:break-word; }
.front-ui-input, .front-ui-body select, .front-ui-body textarea {
    width:100%; padding:10px 12px; border:1px solid var(--line); border-radius:8px;
    font-size:15px; box-sizing:border-box; outline:none;
}
.front-ui-body textarea { min-height:72px; resize:vertical; font-family:inherit; }
.front-ui-actions {
    display:flex; gap:10px; justify-content:flex-end; margin-top:16px; padding-top:4px;
}
.front-ui-btn {
    min-width:88px; padding:10px 16px; border-radius:8px; font-size:15px; cursor:pointer;
    border:1px solid var(--line); background:#fff; color:var(--text);
    transition:opacity var(--dur) var(--ease),background var(--dur) var(--ease);
}
.front-ui-btn:active { opacity:.88; }
.front-ui-btn.primary {
    border:none; background:linear-gradient(135deg,var(--brand),var(--accent)); color:#fff;
    box-shadow:0 4px 12px rgba(42,123,246,.25);
}
.front-ui-btn.ghost { background:#f7f8fa; }
.front-ui-toast {
    position:fixed; left:50%; bottom:88px; transform:translateX(-50%); z-index:10001;
    max-width:90%; padding:10px 16px; border-radius:8px;
    background:rgba(31,35,40,.88); color:#fff; font-size:14px; text-align:center;
    box-shadow:0 4px 16px rgba(0,0,0,.2); animation:toastIn 200ms var(--ease) both;
    pointer-events:none;
}
