/* ==========================================================
   屿哥电竞 H5 前端 · 样式表（一比一还原点单端截图风格）
   配色：浅米白底 + 黑金主色 + 黑色按钮
   ========================================================== */
:root {
    --bg: #f4f1ea;
    --card: #ffffff;
    --line: #e8e2d6;
    --ink: #1a1a1a;          /* 主黑 */
    --ink-2: #333333;
    --sub: #8a8378;          /* 次要文字 */
    --gold: #c9a24a;         /* 金 */
    --gold-l: #e8c87a;
    --red: #c0392b;          /* 价格/强调 */
    --orange: #ff8c1a;       /* 进度条 */
    --radius: 12px;
    --tab-h: 54px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    background: #e9e4da;
    color: var(--ink-2);
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.app {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg);
    min-height: 100vh;
    position: relative;
    padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
}

/* ========== 顶部：域名 + 标题 ========== */
.topbar {
    background: var(--bg);
    padding: 10px 14px 6px;
}
.topbar-domain {
    font-size: 11px;
    color: #a49d90;
    letter-spacing: .2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.topbar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 2px;
    letter-spacing: 1px;
}
.topbar-title .en { font-size: 12px; color: var(--sub); font-weight: 400; margin-left: 6px; letter-spacing: 0; }

.container { padding: 6px 12px 16px; }

/* ========== 搜索栏 ========== */
.searchbar { margin: 8px 0 12px; position: relative; }
.searchbar input {
    width: 100%;
    height: 38px;
    padding: 0 14px 0 36px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b3aa9b' stroke-width='2'><circle cx='11' cy='11' r='7'/><path d='M20 20l-3.5-3.5'/></svg>") no-repeat 13px center;
    font-size: 13px;
    color: var(--ink);
    outline: none;
    font-family: inherit;
}
.searchbar input::placeholder { color: #b3aa9b; }
.searchbar input:focus { border-color: var(--gold); }

/* ========== 横幅 / 广告区 ========== */
.banner {
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.banner-kefu {
    background: linear-gradient(90deg, #111 0%, #2c2c2c 100%);
    border-left: 3px solid var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner-kefu em { font-style: normal; font-size: 11px; color: var(--gold-l); font-weight: 400; }
.banner-club {
    background: linear-gradient(120deg, #1a1a1a 0%, #3a2f16 55%, #4a3a15 100%);
    color: var(--gold-l);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 14px;
    border: 1px solid rgba(201, 162, 74, .35);
}
.banner-club small { display: block; color: #cdb87e; font-weight: 400; font-size: 11px; margin-top: 4px; }

/* 规则说明区 */
.rule-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 10px;
}
.rule-box h4 {
    font-size: 13px;
    color: var(--ink);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rule-box h4::before {
    content: '';
    width: 3px; height: 13px;
    background: var(--gold);
    border-radius: 2px;
}
.rule-box ul { list-style: none; }
.rule-box li {
    font-size: 12px;
    color: #6d675d;
    line-height: 1.9;
    padding-left: 14px;
    position: relative;
}
.rule-box li::before {
    content: '';
    position: absolute; left: 3px; top: 9px;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold);
}
.rule-box li b { color: var(--red); }

/* 翻车三把全额退款 */
.banner-refund {
    background: linear-gradient(90deg, #111, #1a1a1a);
    text-align: center;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--gold-l);
    border: 1px solid rgba(201,162,74,.3);
    padding: 14px;
}
.banner-refund small { display: block; letter-spacing: 0; font-weight: 400; font-size: 11px; color: #a99a6d; margin-top: 5px; }

/* ========== 四大快捷入口 ========== */
.quick-nav {
    display: flex;
    justify-content: space-around;
    background: #fff;
    padding: 14px 4px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    margin-bottom: 12px;
}
.quick-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: var(--ink-2);
}
.quick-item:active { opacity: .55; }
.quick-ico {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, #232323 0%, #0d0d0d 100%);
    border: 1px solid var(--gold);
    color: var(--gold-l);
    font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.08);
}
.quick-txt { font-size: 11px; color: var(--ink-2); }

/* ========== 标签行（全部分类 / 买装备 / 人气推荐 …） ========== */
.goods-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 12px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.goods-tabs::-webkit-scrollbar { display: none; }
.goods-tab {
    flex: 0 0 auto;
    padding: 6px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 12px;
    color: #6d675d;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
}
.goods-tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--gold-l);
    font-weight: 600;
}

/* ========== 下单区（首屏核心，紧跟搜索栏与快捷入口）========== */
.order-zone {
    margin-top: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 11px 13px;
}
.zone-head { display: flex; align-items: baseline; gap: 7px; margin-bottom: 10px; }
.zone-title {
    font-size: 15px; font-weight: 700; color: var(--ink);
    padding-left: 8px; position: relative;
}
.zone-title::before {
    content: ''; position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px; height: 14px; border-radius: 2px;
    background: linear-gradient(180deg, var(--gold-l), var(--gold));
}
.zone-sub { font-size: 11px; color: #a49d90; }

/* ========== 商品网格 ========== */
.goods-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.goods-card {
    width: calc(50% - 4.5px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    display: block;
}
.goods-card:active { transform: scale(.985); }
.goods-img {
    width: 100%;
    height: 78px;
    background: #171717 center/cover no-repeat;
    position: relative;
}
.goods-img::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(201,162,74,.35);
    pointer-events: none;
}
.goods-name {
    padding: 7px 8px 1px;
    font-size: 12.5px;
    color: var(--ink);
    height: 31px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}
.goods-meta {
    padding: 0 8px 8px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.goods-price { color: var(--red); font-weight: 700; font-size: 14px; }
.goods-price i { font-style: normal; font-size: 10.5px; }
.goods-sold { font-size: 10px; color: #a49d90; }

.empty { width: 100%; text-align: center; color: #a49d90; font-size: 13px; padding: 28px 0; }
.empty .icon { font-size: 34px; display: block; margin-bottom: 8px; opacity: .5; }

/* ========== 分类页 ========== */
.cat-wrap { display: flex; gap: 10px; align-items: flex-start; }
.cat-left {
    width: 92px; flex: 0 0 92px;
    background: #efeade;
    border-radius: var(--radius);
    padding: 6px;
    position: sticky;
    top: 8px;
}
.cat-left-item {
    padding: 11px 6px;
    border-radius: 9px;
    font-size: 13px;
    text-align: center;
    color: #6d675d;
    margin-bottom: 4px;
    display: block;
    text-decoration: none;
    line-height: 1.3;
}
.cat-left-item:last-child { margin-bottom: 0; }
.cat-left-item.active {
    background: var(--ink);
    color: var(--gold-l);
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.cat-right { flex: 1; min-width: 0; }

/* 专区分组标题 */
.zone-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin: 4px 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.zone-title::before {
    content: ''; width: 3px; height: 13px;
    background: var(--gold); border-radius: 2px;
}
.zone-title span { font-size: 11px; font-weight: 400; color: var(--sub); margin-left: auto; }

/* 排行榜 / 列表式卡片 */
.rank-list { display: flex; flex-direction: column; gap: 10px; }
.rank-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
}
.rank-avatar {
    width: 52px; height: 52px; flex: 0 0 52px;
    border-radius: 10px;
    background: #171717 center/cover no-repeat;
    border: 1px solid var(--gold);
}
.rank-main { flex: 1; min-width: 0; }
.rank-name { font-size: 13px; color: var(--ink); margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bar { height: 6px; background: #efeade; border-radius: 3px; overflow: hidden; }
.bar i { display: block; height: 100%; background: linear-gradient(90deg, #ffb347, var(--orange)); border-radius: 3px; }
.rank-sub { font-size: 10px; color: #a49d90; margin-top: 5px; display: flex; justify-content: space-between; }
.rank-side { flex: 0 0 auto; display: flex; flex-direction: column; gap: 6px; }
.btn-mini {
    padding: 6px 12px;
    border-radius: 16px;
    background: var(--ink);
    color: var(--gold-l);
    font-size: 11px;
    text-align: center;
    border: 1px solid var(--ink);
    white-space: nowrap;
}
.btn-mini.gray { background: #fff; color: #8a8378; border-color: var(--line); }

/* 买装备入口 */
.buy-equip {
    display: flex; align-items: center; gap: 10px;
    background: linear-gradient(120deg, #111, #33280f);
    border: 1px solid rgba(201,162,74,.4);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 12px;
    color: var(--gold-l);
    text-decoration: none;
}
.buy-equip .ico { font-size: 20px; }
.buy-equip .txt { font-size: 13px; font-weight: 600; }
.buy-equip .go { margin-left: auto; font-size: 11px; color: #a99a6d; }

/* ========== 消息页 ========== */
.msg-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.msg-tab {
    padding: 7px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 13px;
    color: #6d675d;
    cursor: pointer;
}
.msg-tab.active { background: var(--ink); border-color: var(--ink); color: var(--gold-l); font-weight: 600; }

.msg-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--ink);
}
.msg-avatar {
    width: 42px; height: 42px; flex: 0 0 42px;
    border-radius: 10px;
    background: linear-gradient(145deg, #232323, #0d0d0d);
    border: 1px solid var(--gold);
    color: var(--gold-l);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    overflow: hidden;
}
.msg-info { flex: 1; min-width: 0; }
.msg-title { font-size: 14px; color: var(--ink); font-weight: 600; }
.msg-desc { font-size: 12px; color: var(--sub); margin-top: 3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msg-badge {
    flex: 0 0 auto;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
}
.msg-action { flex: 0 0 auto; font-size: 11px; color: var(--gold); }
.msg-empty { text-align: center; color: #b3aa9b; font-size: 13px; padding: 50px 0; }
.msg-empty .icon { font-size: 42px; display: block; margin-bottom: 10px; opacity: .45; }

/* ========== 全屏聊天 ========== */
.chat-full {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: var(--bg);
    display: none;
    flex-direction: column;
}
.chat-full.show { display: flex; }
.chat-head {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
}
.chat-back { font-size: 18px; color: var(--ink); border: none; background: none; padding: 0 6px 0 0; cursor: pointer; line-height: 1; }
.chat-head .t { font-size: 15px; font-weight: 600; color: var(--ink); }
.chat-head .s { margin-left: auto; font-size: 11px; color: var(--sub); }
.chat-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 12px 4px;
}
.bubble-row { margin-bottom: 14px; display: flex; }
.bubble-row.mine { justify-content: flex-end; }
.bubble-row .face {
    width: 34px; height: 34px; flex: 0 0 34px;
    border-radius: 8px;
    background: linear-gradient(145deg, #232323, #0d0d0d);
    border: 1px solid var(--gold);
    color: var(--gold-l);
    font-size: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 8px;
}
.bubble {
    max-width: 72%;
    padding: 9px 12px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    word-break: break-all;
    white-space: pre-wrap;
}
.bubble.svc { background: #fff; color: var(--ink); border: 1px solid var(--line); border-top-left-radius: 3px; }
.bubble.guest { background: var(--ink); color: #fff; border: 1px solid var(--ink); border-top-right-radius: 3px; }
.bubble-time { font-size: 10px; color: #b3aa9b; margin-top: 4px; text-align: center; }

/* 已读/未读回执：显示在自己发出的消息下方 */
.msg-read, .msg-unread { margin-left: 6px; font-size: 10px; }
.msg-read { color: #4a7c59; }
.msg-unread { color: #c8bfa8; }

/* 对方正在输入：三个依次跳动的圆点 */
.peer-typing {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px 10px; background: #faf7f0;
}
.peer-typing .face {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--gold, #c8a45c); color: #fff;
    font-size: 10px; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.typing-dots { display: flex; align-items: center; gap: 4px; padding: 0 2px; }
.typing-dots i {
    width: 6px; height: 6px; border-radius: 50%; background: #b3aa9b;
    display: block; animation: typingBounce 1.4s infinite;
}
.typing-dots i:nth-child(2) { animation-delay: .2s; }
.typing-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0);   opacity: .35; }
    30%           { transform: translateY(-6px); opacity: 1; }
}
.typing-txt { font-size: 11px; color: #b3aa9b; }

.chat-tip { text-align: center; font-size: 11px; color: #b3aa9b; padding: 8px 0 12px; }
.chat-foot {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    display: flex;
    gap: 8px;
    align-items: flex-end;
}
.chat-foot textarea {
    flex: 1;
    height: 38px;
    max-height: 96px;
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: #fbfaf7;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    outline: none;
    resize: none;
    line-height: 1.3;
}
.chat-foot textarea:focus { border-color: var(--gold); background: #fff; }
.chat-send {
    flex: 0 0 auto;
    height: 38px;
    padding: 0 18px;
    border: none;
    border-radius: 19px;
    background: var(--ink);
    color: var(--gold-l);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.chat-send:disabled { opacity: .45; }
.chat-quick { display: flex; gap: 8px; padding: 8px 12px 0; overflow-x: auto; scrollbar-width: none; }
.chat-quick::-webkit-scrollbar { display: none; }
.chat-quick button {
    flex: 0 0 auto;
    padding: 5px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-size: 12px;
    color: #6d675d;
}

/* ========== 下单 / 订单 ========== */
.buy-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; }
.buy-goods { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.buy-goods .img {
    width: 72px; height: 72px; flex: 0 0 72px;
    background: #171717 center/cover no-repeat;
    border-radius: 10px;
    border: 1px solid var(--gold);
}
.buy-goods .name { font-size: 15px; font-weight: 600; color: var(--ink); }
.buy-goods .price { color: var(--red); font-weight: 700; margin-top: 8px; font-size: 16px; }

.field { margin-bottom: 10px; }
.field label { display: block; font-size: 12px; color: #6d675d; margin-bottom: 5px; }
.field input, .field textarea, .field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: #fbfaf7;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink);
    outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); background: #fff; }
.field .hint { font-size: 11px; color: #a49d90; margin-top: 4px; }

.btn {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 24px;
    background: var(--ink);
    color: var(--gold-l);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--ink);
}
.btn:active { opacity: .85; }
.btn-gray { background: #fff; color: #8a8378; border-color: var(--line); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn[disabled] { opacity: .5; }

.notice {
    background: #fdfaf3;
    border: 1px solid var(--gold-l);
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 12px;
    color: #7a6a3e;
    margin-top: 12px;
    line-height: 1.8;
}
.notice.err { background: #fdeceb; border-color: #f3b5af; color: #b1392c; }

.sec { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; margin-top: 12px; }
.sec h3 { font-size: 14px; color: var(--ink); margin: 0 0 10px; padding-bottom: 8px; border-bottom: 1px solid #f0ece3; }
.kv { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; font-size: 13px; border-bottom: 1px dashed #f2eee6; }
.kv:last-child { border-bottom: none; }
.kv span { color: var(--sub); flex: 0 0 88px; }
.kv b { color: var(--ink); font-weight: 600; text-align: right; word-break: break-all; }

.pay-opt { display: flex; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #f2eee6; cursor: pointer; font-size: 14px; color: var(--ink); }
.pay-opt:last-child { border-bottom: none; }
.pay-opt input { width: 17px; height: 17px; accent-color: #1a1a1a; }
.pay-opt em { margin-left: auto; font-style: normal; font-size: 11px; color: #fff; background: #07c160; padding: 2px 7px; border-radius: 9px; }

/* ========== 底部 Tab（一比一还原截图） ========== */
.tabbar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    max-width: 640px;
    margin: 0 auto;
    height: calc(var(--tab-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    display: flex;
    background: #fff;
    border-top: 1px solid var(--line);
    z-index: 500;
}
.tabbar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #a49d90;
    font-size: 11px;
    position: relative;
}
.tabbar-item .ic { width: 22px; height: 22px; display: block; }
.tabbar-item .ic svg { width: 22px; height: 22px; display: block; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.tabbar-item.active { color: var(--ink); font-weight: 600; }
.tabbar-item.active .ic svg { stroke: var(--gold); fill: rgba(201,162,74,.14); }
.tabbar-item .dot {
    position: absolute; top: 6px; right: 50%;
    margin-right: -18px;
    min-width: 15px; height: 15px; padding: 0 4px;
    border-radius: 8px; background: var(--red); color: #fff;
    font-size: 10px; line-height: 15px; text-align: center;
}

/* ========== Toast / 支付成功提示 ========== */
.toast-mask {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.toast-mask.show { display: flex; }
.toast-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 18px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
}
.toast-ico {
    width: 56px; height: 56px; margin: 0 auto 12px;
    border-radius: 50%;
    background: #eaf7ee;
    display: flex; align-items: center; justify-content: center;
}
.toast-ico svg { width: 30px; height: 30px; stroke: #2e9e52; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.toast-ico.err { background: #fdeceb; }
.toast-ico.err svg { stroke: #c0392b; }
.toast-title { font-size: 17px; font-weight: 700; color: var(--ink); }
.toast-text { font-size: 13px; color: #6d675d; margin-top: 8px; line-height: 1.7; }
.toast-btn {
    margin-top: 18px;
    display: block;
    padding: 11px;
    border-radius: 24px;
    background: var(--ink);
    color: var(--gold-l);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--ink);
}
.toast-close { margin-top: 12px; font-size: 12px; color: #a49d90; background: none; border: none; }

.toast-line {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2100;
    max-width: 76%;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(0,0,0,.82);
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}
.toast-line.show { opacity: 1; }

/* ========== 我的（占位） ========== */
.mine-hero {
    background: linear-gradient(140deg, #1a1a1a 0%, #33280f 100%);
    border-radius: var(--radius);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--gold-l);
    border: 1px solid rgba(201,162,74,.35);
}
.mine-hero .ava {
    width: 54px; height: 54px; flex: 0 0 54px;
    border-radius: 50%;
    background: #000;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    overflow: hidden;
}
.mine-hero .nm { font-size: 16px; font-weight: 700; color: #fff; }
.mine-hero .tip { font-size: 11px; color: #a99a6d; margin-top: 5px; }
.mine-list { margin-top: 12px; }
.mine-row {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink);
}
.mine-row .go { margin-left: auto; color: #c3bcae; font-size: 13px; }

/* 页面底部留白（版权信息不在前端展示，仅留导航安全距离） */
.page-footer { height: 10px; }

/* 响应式：大屏时内容居中并留出阴影边 */
@media (min-width: 700px) {
    .app { box-shadow: 0 0 30px rgba(0,0,0,.08); }
}
