* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root {
    --pri: #7c3aed; --pri2: #6d28d9; --mag: #c026d3; --bg: #f5f4fa;
    --card: #ffffff; --line: #eceaf3; --txt: #23202c; --sub: #8b8794;
    --ok: #10b981; --warn: #f59e0b; --danger: #f43f5e; --info: #3b82f6;
    --r: 16px; --sh: 0 6px 22px rgba(45, 27, 82, .07);
}
body { font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif; background: var(--bg); color: var(--txt); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; }
input, select, textarea { font-family: inherit; outline: none; }
button { font-family: inherit; border: none; cursor: pointer; }
.svg-ico { display: block; flex-shrink: 0; }

/* 顶部栏 */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 46px; display: flex; align-items: center; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 8px rgba(45,27,82,.06); }
.topbar .back { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--txt); flex-shrink: 0; }
.topbar .back svg { width: 22px; height: 22px; }
.topbar .title { flex: 1; text-align: center; font-size: 16px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-right: 46px; }
.page-body { padding-top: 46px; padding-bottom: 70px; max-width: 720px; margin: 0 auto; }

/* 底部导航（悬浮胶囊式） */
.bottom-nav { position: fixed; left: 50%; transform: translateX(-50%); bottom: 14px; width: calc(100% - 28px); max-width: 540px; height: 64px; border-radius: 28px; background: rgba(255,255,255,.92); backdrop-filter: blur(22px) saturate(1.6); -webkit-backdrop-filter: blur(22px) saturate(1.6); display: flex; align-items: center; padding: 6px 10px calc(6px + env(safe-area-inset-bottom)); box-shadow: 0 12px 32px rgba(45,27,82,.16), inset 0 .5px 0 rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.65); z-index: 100; }
.bottom-nav a { flex: 1; height: 100%; border-radius: 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--sub); font-size: 10px; letter-spacing: .3px; transition: color .25s; }
.bottom-nav a .ico { display: flex; align-items: center; justify-content: center; width: 46px; height: 28px; border-radius: 15px; transition: background .25s, box-shadow .25s, transform .2s; }
.bottom-nav a .ico svg { width: 21px; height: 21px; transition: color .25s, transform .2s; }
.bottom-nav a span:last-child { font-weight: 500; transition: color .25s; }
.bottom-nav a.on { color: var(--pri); }
.bottom-nav a.on span:last-child { font-weight: 700; }
.bottom-nav a.on .ico { background: linear-gradient(135deg, var(--pri), var(--mag)); box-shadow: 0 5px 14px rgba(124,58,237,.38); }
.bottom-nav a.on .ico svg { color: #fff; transform: scale(1.06); }
.bottom-nav a:active .ico { transform: scale(.92); }

/* 卡片 */
.card { background: var(--card); border-radius: var(--r); padding: 16px; margin: 12px; box-shadow: var(--sh); position: relative; }
.card + .card { margin-top: 0; }
.card::before, .grid-card::before { content: ""; position: absolute; top: 0; left: 18px; right: 18px; height: 3px; border-radius: 0 0 4px 4px; background: linear-gradient(90deg, transparent, rgba(124,58,237,.30), transparent); pointer-events: none; }

/* 按钮 */
.btn { display: block; width: 100%; text-align: center; border-radius: 26px; padding: 12px 0; font-size: 15px; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--pri), var(--mag)); box-shadow: 0 6px 16px rgba(124,58,237,.28); transition: opacity .15s, transform .1s; }
.btn:active { transform: scale(.98); }
.btn.sm { display: inline-block; width: auto; padding: 7px 18px; font-size: 13px; border-radius: 18px; box-shadow: none; }
.btn.ghost { background: #fff; color: var(--pri); border: 1.5px solid var(--pri); box-shadow: none; }
.btn.gray { background: #eceaf3; color: #6b6676; box-shadow: none; }
.btn.danger { background: linear-gradient(135deg, #f43f5e, #fb7185); box-shadow: 0 6px 16px rgba(244,63,94,.25); }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* 表单 */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; color: #6b6676; margin-bottom: 7px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 11px 13px; font-size: 14px; background: #faf9fd; transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pri); box-shadow: 0 0 0 3px rgba(124,58,237,.12); background: #fff; }
.field textarea { min-height: 70px; resize: vertical; }
.field .code-row { display: flex; gap: 10px; }
.field .code-row input { flex: 1; }
.field .code-row .btn { width: 112px; flex-shrink: 0; border-radius: 12px; padding: 11px 0; font-size: 13px; }

/* 标签 / 徽章 */
.tag { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 11px; background: #f1e9fd; color: var(--pri); font-weight: 500; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 10px; font-size: 11px; color: #fff; }
.st-1 { background: var(--warn); } .st-2 { background: var(--info); } .st-3 { background: var(--pri); }
.st-4 { background: var(--ok); } .st-5 { background: #6b7280; } .st-6 { background: var(--danger); }
.st-7 { background: #9ca3af; } .st-8 { background: #ec4899; }

/* 商品卡片 */
.prod-card { background: var(--card); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); transition: transform .15s; }
.prod-card:active { transform: scale(.98); }
.prod-card .pic { width: 100%; height: 0; padding-bottom: 100%; position: relative; background: linear-gradient(135deg,#f3f0fa,#e9e4f6); }
.prod-card .pic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.prod-card .info { padding: 11px 13px 13px; }
.prod-card .name { font-size: 14px; font-weight: 600; line-height: 1.4; height: 40px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; color: var(--txt); }
.prod-card .meta { margin-top: 7px; display: flex; align-items: baseline; justify-content: space-between; }
.prod-card .price { color: var(--danger); font-size: 17px; font-weight: 800; }
.prod-card .price i { font-style: normal; font-size: 12px; font-weight: 600; }
.prod-card .sales { font-size: 11px; color: var(--sub); }

/* 宫格入口 */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.grid a { display: flex; flex-direction: column; align-items: center; padding: 13px 0 11px; gap: 8px; font-size: 12px; color: #4b4757; transition: transform .15s; }
.grid a:active { transform: scale(.94); }
.grid a .g-ico { width: 44px; height: 44px; border-radius: 15px; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 5px 14px rgba(45,27,82,.18); }
.grid a .g-ico svg { width: 23px; height: 23px; }

/* 订单卡片 */
.order-card { background: var(--card); border-radius: var(--r); padding: 15px; margin: 12px; box-shadow: var(--sh); }
.order-card .o-head { display: flex; justify-content: space-between; align-items: center; }
.order-card .o-no { font-size: 12px; color: var(--sub); }
.order-card .o-name { font-size: 15px; font-weight: 600; margin-top: 9px; }
.order-card .o-meta { margin-top: 7px; font-size: 12px; color: #77727f; line-height: 1.8; }
.order-card .o-foot { margin-top: 11px; display: flex; align-items: center; justify-content: space-between; }
.order-card .o-price { color: var(--danger); font-size: 17px; font-weight: 800; }
.order-card .o-acts { display: flex; gap: 9px; }

/* 聊天 */
.msg-item { display: flex; margin: 14px 14px; align-items: flex-end; gap: 9px; }
.msg-item .m-avatar { width: 38px; height: 38px; border-radius: 50%; background: #ece4fa; flex-shrink: 0; overflow: hidden; }
.msg-item .m-avatar img { width: 100%; height: 100%; object-fit: cover; }
.msg-item .m-bubble { max-width: 70%; background: var(--card); border-radius: 14px 14px 14px 4px; padding: 10px 13px; font-size: 14px; line-height: 1.55; word-break: break-all; box-shadow: var(--sh); }
.msg-item .m-time { font-size: 10px; color: #b9b4c2; margin: 4px 2px; }
.msg-item.mine { flex-direction: row-reverse; }
.msg-item.mine .m-bubble { background: linear-gradient(135deg, var(--pri), var(--mag)); color: #fff; border-radius: 14px 14px 4px 14px; }
.chat-input-bar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 0; width: 100%; max-width: 720px; background: rgba(255,255,255,.96); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); display: flex; gap: 9px; box-shadow: 0 -4px 16px rgba(45,27,82,.07); }
.chat-input-bar input { flex: 1; border: 1.5px solid var(--line); border-radius: 22px; padding: 10px 15px; font-size: 14px; background: #faf9fd; }
.chat-input-bar input:focus { border-color: var(--pri); box-shadow: 0 0 0 3px rgba(124,58,237,.12); background: #fff; }
.chat-input-bar .btn { width: 66px; border-radius: 22px; padding: 10px 0; font-size: 14px; }

/* 会话列表 */
.sess-item { display: flex; align-items: center; background: var(--card); padding: 13px 15px; border-bottom: 1px solid var(--line); }
.sess-item:last-child { border-bottom: none; }
.sess-item .s-avatar { width: 48px; height: 48px; border-radius: 50%; background: #ece4fa; overflow: hidden; flex-shrink: 0; position: relative; }
.sess-item .s-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sess-item .s-info { flex: 1; margin-left: 13px; min-width: 0; }
.sess-item .s-name { font-size: 15px; font-weight: 600; }
.sess-item .s-last { margin-top: 3px; font-size: 12px; color: var(--sub); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sess-item .s-side { text-align: right; flex-shrink: 0; margin-left: 8px; }
.sess-item .s-time { font-size: 11px; color: #b9b4c2; }
.sess-item .s-unread { margin-top: 5px; margin-left: auto; min-width: 18px; height: 18px; border-radius: 9px; background: var(--danger); color: #fff; font-size: 11px; display: flex; align-items: center; justify-content: center; padding: 0 5px; }

/* 弹层 */
.mask { position: fixed; inset: 0; background: rgba(20, 12, 38, .55); z-index: 200; display: none; }
.mask.show { display: block; }
.sheet { position: fixed; left: 50%; transform: translateX(-50%); bottom: 0; width: 100%; max-width: 720px; background: var(--card); border-radius: 20px 20px 0 0; z-index: 201; padding: 18px; max-height: 80vh; overflow-y: auto; display: none; }
.sheet.show { display: block; }
.sheet .sheet-title { text-align: center; font-size: 16px; font-weight: 700; margin-bottom: 15px; }
.sheet .close-x { position: absolute; right: 15px; top: 13px; color: var(--sub); display: flex; }
.sheet .close-x svg { width: 22px; height: 22px; }

/* 转盘 */
.wheel-wrap { position: relative; width: 300px; height: 300px; margin: 22px auto; }
.wheel { width: 100%; height: 100%; border-radius: 50%; position: relative; overflow: hidden; border: 7px solid var(--pri); box-shadow: 0 12px 34px rgba(124,58,237,.32); transition: transform 4s cubic-bezier(.17,.67,.12,.99); }
.wheel .seg { position: absolute; left: 50%; top: 50%; width: 50%; height: 50%; transform-origin: 0 0; display: flex; align-items: center; justify-content: center; }
.wheel .seg .seg-label { transform: translate(-50%, -50%) rotate(-90deg); width: 90px; text-align: center; font-size: 12px; color: #fff; font-weight: 600; word-break: break-all; }
.wheel-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--pri); box-shadow: 0 4px 16px rgba(45,27,82,.25); cursor: pointer; z-index: 2; }
.wheel-pointer { position: absolute; left: 50%; top: -8px; transform: translateX(-50%); border-left: 11px solid transparent; border-right: 11px solid transparent; border-top: 20px solid var(--danger); z-index: 3; }

/* Toast */
#toast { position: fixed; left: 50%; top: 50%; transform: translate(-50%, -50%); background: rgba(30, 18, 52, .82); color: #fff; font-size: 14px; padding: 11px 20px; border-radius: 12px; z-index: 999; max-width: 80%; display: none; backdrop-filter: blur(4px); }

/* 空状态 */
.empty { text-align: center; color: var(--sub); font-size: 14px; padding: 60px 0; }

/* 宫格间距 */
.grid-card { margin: 12px; background: var(--card); border-radius: var(--r); padding: 10px 6px; box-shadow: var(--sh); position: relative; overflow: hidden; }

/* 金额卡 */
.money-card { background: linear-gradient(135deg, var(--pri), #6366f1 70%, #8b5cf6); border-radius: 18px; margin: 12px; padding: 20px 18px; color: #fff; box-shadow: 0 10px 26px rgba(124,58,237,.32); position: relative; overflow: hidden; }
.money-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; background: rgba(255,255,255,.12); }
.money-card .m-label { font-size: 12px; opacity: .88; }
.money-card .m-num { font-size: 30px; font-weight: 800; margin-top: 5px; letter-spacing: .5px; }
.money-card .m-row { display: flex; margin-top: 16px; position: relative; z-index: 1; }
.money-card .m-col { flex: 1; text-align: center; }
.money-card .m-col + .m-col { border-left: 1px solid rgba(255,255,255,.18); }
.money-card .m-col .m-label { font-size: 11px; }
.money-card .m-col .m-val { font-size: 17px; font-weight: 700; margin-top: 3px; }

/* 明细 */
.fund-item { display: flex; align-items: center; justify-content: space-between; padding: 13px 15px; background: var(--card); border-bottom: 1px solid var(--line); }
.fund-item:last-child { border-bottom: none; }
.fund-item .f-note { font-size: 14px; color: var(--txt); }
.fund-item .f-time { font-size: 11px; color: #b9b4c2; margin-top: 3px; }
.fund-item .f-amt { font-size: 15px; font-weight: 700; }
.fund-item .f-amt.in { color: var(--ok); }
.fund-item .f-amt.out { color: var(--danger); }

/* 时间线 */
.timeline { position: relative; padding-left: 18px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: #e4e0ee; }
.tl-item { position: relative; padding: 6px 0 10px; }
.tl-item::before { content: ""; position: absolute; left: -16px; top: 10px; width: 11px; height: 11px; border-radius: 50%; background: var(--pri); box-shadow: 0 0 0 3px rgba(124,58,237,.18); }
.tl-item .tl-title { font-size: 13px; color: var(--txt); }
.tl-item .tl-time { font-size: 11px; color: var(--sub); margin-top: 2px; }

/* Tab 切换 */
.tabs { display: flex; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 0 6px; position: sticky; top: 46px; z-index: 50; }
.tabs a { flex: 1; text-align: center; padding: 13px 0; font-size: 14px; color: #66607a; position: relative; transition: color .2s; }
.tabs a.on { color: var(--pri); font-weight: 700; }
.tabs a.on::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 26px; height: 3px; border-radius: 2px; background: var(--pri); }

/* 滑块抢单 */
.slider-grab { display: inline-flex; align-items: center; gap: 8px; position: relative; }
.slider-track { width: 120px; height: 32px; background: linear-gradient(90deg, #e8e4f2, #ddd5f0); border-radius: 16px; position: relative; overflow: hidden; }
.slider-thumb { position: absolute; left: 0; top: 0; width: 32px; height: 32px; background: linear-gradient(135deg, var(--pri), var(--mag)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: bold; cursor: grab; touch-action: none; user-select: none; z-index: 2; box-shadow: 0 2px 8px rgba(124,58,237,.3); transition: transform 0.3s; }
.slider-thumb:active { cursor: grabbing; }
.slider-text { font-size: 12px; color: var(--sub); white-space: nowrap; }
.slider-grab.near-end .slider-track { background: linear-gradient(90deg, #c4b5fd, #a78bfa); }
.slider-grab.grabbed .slider-thumb { background: linear-gradient(135deg, var(--ok), #059669); }
.slider-grab.grabbed .slider-text { color: var(--ok); font-weight: 600; }
.slider-grab.grabbed .slider-track { background: linear-gradient(90deg, #d1fae5, #a7f3d0); }

/* 强制勾选 */
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #666; cursor: pointer; padding: 8px 0; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; accent-color: var(--pri); }
.checkbox-label span { user-select: none; }

/* ============ 美化增强 v20260813 ============ */

/* 氛围光斑背景（首页/登录页等整页使用） */
.glow-bg { position: relative; }
.glow-bg::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(560px 320px at 12% -4%, rgba(124,58,237,.14), transparent 62%),
        radial-gradient(480px 300px at 95% 6%, rgba(192,38,211,.12), transparent 60%),
        radial-gradient(520px 360px at 50% 110%, rgba(99,102,241,.12), transparent 65%);
}
/* 花纹纹理层：菱形网格 + 圆点阵（紫色系，低透明度） */
.glow-bg::after { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M17 3l14 14-14 14L3 17z' fill='none' stroke='%23c026d3' stroke-opacity='.07' stroke-width='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='2' cy='2' r='1.1' fill='%237c3aed' fill-opacity='.10'/%3E%3C/svg%3E");
}
.glow-bg > * { position: relative; z-index: 1; }

/* 波浪分隔（置于渐变区底部，衔接页面浅色背景） */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; height: 24px; pointer-events: none; z-index: 2; }
.wave-divider::before { content: ""; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='24' viewBox='0 0 260 24'%3E%3Cpath d='M0 18 Q32.5 0 65 18 T130 18 T195 18 T260 18 V24 H0 Z' fill='%23f5f4fa'/%3E%3C/svg%3E") repeat-x bottom left;
    background-size: 260px 24px;
}

/* 卡片悬停上浮 + 边框光晕（桌面/平板） */
@media (hover: hover) {
    .card, .prod-card, .order-card, .grid-card, .sess-item { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
    .card:hover, .prod-card:hover, .order-card:hover, .grid-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(45,27,82,.14); }
}

/* 渐变描边按钮变体 */
.btn.shine { position: relative; overflow: hidden; }
.btn.shine::after { content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg);
    animation: shineMove 2.8s ease-in-out infinite; }
@keyframes shineMove { 0% { left: -80%; } 55% { left: 130%; } 100% { left: 130%; } }

/* 按钮点击脉冲反馈 */
.btn { position: relative; }
.btn:active { transform: scale(.97); }
.btn:not([disabled])::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: 0 0 0 0 rgba(124,58,237,.35); opacity: 0; }
.btn:not([disabled]):active::before { animation: btnPulse .45s ease; }
@keyframes btnPulse { 0% { opacity: .8; box-shadow: 0 0 0 0 rgba(124,58,237,.35); } 100% { opacity: 0; box-shadow: 0 0 0 14px rgba(124,58,237,0); } }

/* 空状态插图（SVG 装饰圆） */
.empty { position: relative; padding: 66px 0 60px; }
.empty::before { content: ""; display: block; width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%;
    background: conic-gradient(from 0deg, #c4b5fd, #f5d0fe, #a5b4fc, #c4b5fd); opacity: .5; position: relative; }
.empty::after { content: ""; position: absolute; left: 50%; top: 80px; transform: translate(-50%, -50%); width: 22px; height: 22px;
    border-radius: 50%; background: var(--bg); box-shadow: inset 0 -2px 4px rgba(45,27,82,.12); }

/* 骨架屏 */
.skeleton { position: relative; overflow: hidden; background: #eceaf3; border-radius: 12px; }
.skeleton::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.7), transparent); animation: skeletonWave 1.4s infinite; }
@keyframes skeletonWave { 100% { transform: translateX(100%); } }

/* 列表分割卡片化微调 */
.fund-item, .sess-item { border-radius: 0; }

/* 消息气泡渐入 */
.msg-item { animation: msgIn .28s ease both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* Logo/图标悬浮 */
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.float-anim { animation: floatY 3s ease-in-out infinite; }

/* SweetAlert2 主题覆盖（精致渐变弹窗） */
.swal2-popup { border-radius: 20px !important; font-family: inherit; }
.swal2-title { font-size: 18px !important; color: var(--txt) !important; }
.swal2-confirm { border-radius: 22px !important; background: linear-gradient(135deg, var(--pri), var(--mag)) !important; box-shadow: 0 6px 16px rgba(124,58,237,.3) !important; }
.swal2-cancel { border-radius: 22px !important; }
.swal2-timer-progress-bar { background: linear-gradient(90deg, var(--pri), var(--mag)) !important; }

/* 底部备案信息（工信部要求：备案号链接至 beian.miit.gov.cn） */
.site-footer { text-align: center; font-size: 11px; color: #b5b1bd; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); line-height: 1.8; }
.site-footer a { color: #b5b1bd; text-decoration: none; }
.site-footer a:active { opacity: .7; }
.site-footer.has-nav { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
