﻿@charset "UTF-8";
/* ===== 一帆风顺 WAP 样式 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
:root {
  --primary: #e4393c;
  --primary-2: #ff6b6b;
  --grad: linear-gradient(135deg, #e4393c 0%, #ff6b6b 100%);
  --bg: #f4f5f7;
  --card: #fff;
  --text: #1a1a1a;
  --text-2: #666;
  --text-3: #999;
  --border: #eee;
  --shadow: 0 2px 12px rgba(0,0,0,.06);
  --r: 12px;
}
html, body { height: 100%; }
body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
input, button, textarea { font: inherit; outline: none; border: none; background: none; }
button { cursor: pointer; }

/* ===== 顶部导航 ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--grad);
  color: #fff;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 600;
}
.header .back { font-size: 22px; width: 24px; }
.header .title { flex: 1; text-align: center; }
.header .right { width: 24px; text-align: right; font-size: 14px; font-weight: 400; }

/* ===== 底部 Tab ===== */
.tabbar {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: 0; width: 100%; max-width: 480px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  display: flex; z-index: 99;
  padding-bottom: env(safe-area-inset-bottom);
}
.tabbar a {
  flex: 1; text-align: center; padding: 8px 0 6px;
  color: var(--text-3); font-size: 11px;
}
.tabbar a .ic { font-size: 22px; display: block; line-height: 1; margin-bottom: 2px; }
.tabbar a.on { color: var(--primary); }

/* ===== 通用 ===== */
.page { padding-bottom: 64px; }
.card { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); overflow: hidden; }
.btn {
  display: inline-block; padding: 10px 20px; border-radius: 24px;
  background: var(--grad); color: #fff; font-size: 14px; font-weight: 500;
  text-align: center; border: none;
}
.btn-block { display: block; width: 100%; padding: 12px; border-radius: var(--r); }
.btn-ghost { background: #fff; color: var(--primary); border: 1px solid var(--primary); }
.btn-gray { background: #f0f0f0; color: var(--text-2); }
.mt { margin-top: 12px; }
.mb { margin-bottom: 12px; }
.px { padding-left: 16px; padding-right: 16px; }
.empty { text-align: center; color: var(--text-3); padding: 40px 0; font-size: 13px; }
.tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; }
.tag-red { background: #fdecec; color: var(--primary); }
.tag-green { background: #e8f7ee; color: #2bb673; }
.tag-gray { background: #f0f0f0; color: var(--text-3); }
.money { color: var(--primary); font-weight: 600; }
.money::before { content: '\00A5'; font-size: .85em; margin-right: 1px; }

/* ===== 顶部 LOGO + 搜索 ===== */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--grad);
  padding: 14px 16px 14px;
}
.masthead .brand { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 12px; }
.masthead .brand .logo {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.masthead .brand .name { font-size: 20px; font-weight: 600; letter-spacing: .5px; }
.masthead .brand .slogan { margin-left: auto; font-size: 11px; opacity: .85; }
.masthead .search .box {
  display: flex; align-items: center;
  background: rgba(255,255,255,.94);
  border-radius: 22px; padding: 9px 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.masthead .search .box .ic { color: var(--text-3); margin-right: 8px; font-size: 16px; }
.masthead .search .box input { flex: 1; font-size: 14px; }
.masthead .search .box .clear { color: var(--text-3); font-size: 18px; padding: 0 4px; display: none; }
.masthead .search .box .clear.on { display: block; }

/* ===== 轮播 ===== */
.banner { position: relative; margin: 12px 16px 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.banner .slides { display: flex; transition: transform .4s ease; }
.banner .slide { min-width: 100%; height: 150px; display: flex; align-items: center; padding: 0 24px; color: #fff; }
.banner .slide h3 { font-size: 17px; margin-bottom: 6px; }
.banner .slide p { font-size: 12px; opacity: .9; }
.banner .dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.banner .dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); }
.banner .dots i.on { background: #fff; }

/* ===== 商品 ===== */
.goods-list { padding: 12px 16px; }
.goods-item { display: flex; background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; }
.goods-item .img { width: 110px; height: 110px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; }
.goods-item .info { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; justify-content: space-between; }
.goods-item .info h3 { font-size: 15px; font-weight: 500; }
.goods-item .info .desc { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.goods-item .info .bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.goods-item .info .price { font-size: 18px; }
.goods-item .info .buy { font-size: 12px; padding: 6px 14px; border-radius: 16px; }

/* 商品详情 */
.goods-detail .hero { height: 280px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; }
.goods-detail .body { background: var(--card); margin-top: -16px; border-radius: 16px 16px 0 0; padding: 20px 16px; position: relative; }
.goods-detail .body h1 { font-size: 19px; font-weight: 600; }
.goods-detail .body .price { font-size: 26px; margin: 10px 0; }
.goods-detail .body .meta { display: flex; gap: 16px; color: var(--text-3); font-size: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.goods-detail .body .desc { padding: 16px 0; color: var(--text-2); line-height: 1.7; }
.goods-detail .bar { position: fixed; left: 50%; transform: translateX(-50%); bottom: 0; width: 100%; max-width: 480px; background: var(--card); border-top: 1px solid var(--border); padding: 10px 16px; display: flex; gap: 12px; align-items: center; z-index: 99; }
.goods-detail .bar .price { flex: 1; font-size: 20px; }

/* ===== 快捷入口 ===== */
.quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 16px; background: var(--card); margin: 12px 16px 0; border-radius: var(--r); box-shadow: var(--shadow); }
.quick a { text-align: center; }
.quick .ic { width: 44px; height: 44px; border-radius: 12px; background: #fdecec; color: var(--primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 6px; font-size: 20px; }
.quick span { font-size: 12px; color: var(--text-2); }

/* ===== 登录注册 ===== */
.auth { padding: 24px 24px; }
.auth .logo { text-align: center; margin: 30px 0 36px; }
.auth .logo .ic { width: 64px; height: 64px; border-radius: 16px; background: var(--grad); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 30px; margin-bottom: 12px; }
.auth .logo h1 { font-size: 22px; }
.auth .logo p { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.auth .tabs { display: flex; background: #f0f0f0; border-radius: 24px; padding: 3px; margin-bottom: 24px; }
.auth .tabs button { flex: 1; padding: 9px; border-radius: 22px; color: var(--text-2); font-size: 14px; }
.auth .tabs button.on { background: var(--card); color: var(--primary); font-weight: 600; box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.field { margin-bottom: 14px; }
.field input { width: 100%; padding: 13px 14px; background: #f5f5f5; border-radius: 10px; font-size: 14px; }
.field input:focus { background: #fff; box-shadow: 0 0 0 2px var(--primary); }
.auth .btn-block { margin-top: 8px; padding: 13px; font-size: 15px; }
.auth .tip { text-align: center; color: var(--text-3); font-size: 12px; margin-top: 18px; }

/* ===== 个人中心 ===== */
.user-head { background: var(--grad); color: #fff; padding: 24px 16px 56px; position: relative; }
.user-head .top { display: flex; align-items: center; gap: 14px; }
.user-head .avatar { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 24px; border: 2px solid rgba(255,255,255,.4); }
.user-head .name { font-size: 17px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.user-head .lv { font-size: 12px; opacity: .9; margin-top: 3px; }
.user-head .lv .tag { background: rgba(255,255,255,.25); color: #fff; margin-left: 6px; }
.user-head .meta { display: flex; gap: 14px; margin-top: 8px; font-size: 11px; opacity: .85; flex-wrap: wrap; }
.user-head .info { flex: 1; min-width: 0; }
.user-head .edit { background: rgba(255,255,255,.22); color: #fff; padding: 5px 12px; border-radius: 14px; font-size: 12px; align-self: flex-start; white-space: nowrap; }
.user-assets { margin: -32px 16px 0; background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); display: flex; padding: 16px 0; position: relative; z-index: 2; }
.user-assets .item { flex: 1; text-align: center; }
.user-assets .item .v { font-size: 17px; font-weight: 600; color: var(--text); }
.user-assets .item .l { font-size: 11px; color: var(--text-3); margin-top: 4px; }
.user-assets .item + .item { border-left: 1px solid var(--border); }

/* 通用区块 */
.section { background: var(--card); margin: 12px 16px 0; border-radius: var(--r); box-shadow: var(--shadow); padding: 16px; }
.section .sh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.section .sh h3 { font-size: 15px; font-weight: 600; }
.section .sh .more { font-size: 12px; color: var(--text-3); }

/* 等级进度 */
.lv-bar { background: #f0f0f0; border-radius: 6px; height: 8px; overflow: hidden; margin: 10px 0 6px; }
.lv-bar .fill { height: 100%; background: var(--grad); border-radius: 6px; }
.lv-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-3); }
.lv-labels b { color: var(--primary); }

/* 简易行 */
.line { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); }
.line:last-child { border-bottom: none; }
.line .lt { display: flex; align-items: center; gap: 10px; }
.line .lt .ic { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; }
.line .lt h4 { font-size: 13px; font-weight: 500; }
.line .lt p { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.line .rt { font-size: 14px; font-weight: 600; }
.line .rt.in { color: var(--primary); }

/* ===== 订单 ===== */
.order-item { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin: 12px 16px 0; padding: 14px; }
.order-item .oh { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-3); padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.order-item .om { display: flex; padding: 12px 0; gap: 12px; }
.order-item .om .img { width: 64px; height: 64px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; }
.order-item .om .info { flex: 1; }
.order-item .om .info h3 { font-size: 14px; font-weight: 500; }
.order-item .om .info .p { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.order-item .om .info .amt { font-size: 15px; margin-top: 6px; }
.order-item .of { display: flex; justify-content: flex-end; gap: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.order-item .of button { padding: 6px 16px; border-radius: 18px; font-size: 13px; }

/* ===== 奖金 ===== */
.bonus-tabs { display: flex; background: var(--card); border-bottom: 1px solid var(--border); }
.bonus-tabs a { flex: 1; text-align: center; padding: 14px 0; color: var(--text-2); font-size: 14px; position: relative; }
.bonus-tabs a.on { color: var(--primary); font-weight: 600; }
.bonus-tabs a.on::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }
.bonus-card { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin: 12px 16px 0; padding: 14px; display: flex; justify-content: space-between; align-items: center; }
.bonus-card .l h3 { font-size: 14px; font-weight: 500; }
.bonus-card .l p { font-size: 11px; color: var(--text-3); margin-top: 4px; }
.bonus-card .r { font-size: 16px; font-weight: 600; }
.bonus-card .r.in { color: var(--primary); }
.bonus-sum { background: var(--grad); color: #fff; padding: 20px 16px; margin: 12px 16px 0; border-radius: var(--r); box-shadow: var(--shadow); }
.bonus-sum .v { font-size: 28px; font-weight: 600; }
.bonus-sum .l { font-size: 12px; opacity: .9; margin-bottom: 6px; }

/* ===== 新闻 / 留言 ===== */
.news-item { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin: 12px 16px 0; padding: 14px; }
.news-item h3 { font-size: 15px; font-weight: 500; }
.news-item p { font-size: 12px; color: var(--text-3); margin-top: 6px; }
.news-item .t { font-size: 11px; color: var(--text-3); margin-top: 8px; }
.news-detail { background: var(--card); margin: 12px 16px 0; border-radius: var(--r); box-shadow: var(--shadow); padding: 18px; }
.news-detail h1 { font-size: 19px; font-weight: 600; }
.news-detail .t { font-size: 12px; color: var(--text-3); margin: 8px 0 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.news-detail .c { color: var(--text-2); line-height: 1.8; }

.board-form { background: var(--card); margin: 12px 16px 0; border-radius: var(--r); box-shadow: var(--shadow); padding: 14px; }
.board-form textarea { width: 100%; height: 80px; background: #f5f5f5; border-radius: 8px; padding: 10px; resize: none; }
.board-form .row { display: flex; justify-content: flex-end; margin-top: 10px; }
.msg-item { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin: 12px 16px 0; padding: 14px; }
.msg-item .u { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; }
.msg-item .u .av { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.msg-item .c { color: var(--text-2); margin: 8px 0; }
.msg-item .t { font-size: 11px; color: var(--text-3); }
.msg-item .reply { background: #f7f8fa; border-radius: 8px; padding: 10px; margin-top: 8px; font-size: 12px; color: var(--text-2); }
.msg-item .reply b { color: var(--primary); }

/* ===== 团队成员 ===== */
.team-item { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin: 12px 16px 0; padding: 14px; display: flex; justify-content: space-between; align-items: center; }
.team-item .l h3 { font-size: 14px; font-weight: 500; }
.team-item .l p { font-size: 11px; color: var(--text-3); margin-top: 4px; }

/* ===== 提现 ===== */
.wd-form { background: var(--card); margin: 12px 16px 0; border-radius: var(--r); box-shadow: var(--shadow); padding: 16px; }
.wd-form .lbl { font-size: 13px; color: var(--text-2); }
.wd-form .amt { display: flex; align-items: baseline; gap: 4px; margin: 10px 0; }
.wd-form .amt .sym { font-size: 22px; color: var(--text); }
.wd-form .amt input { font-size: 30px; font-weight: 600; flex: 1; }
.wd-form .tip { font-size: 12px; color: var(--text-3); }
.wd-card-sel { display: flex; align-items: center; justify-content: space-between; padding: 12px; background: #f5f5f5; border-radius: 8px; margin: 8px 0; }
.wd-card-sel .wdc-info span { font-size: 14px; font-weight: 500; }
.wd-card-sel .wdc-info p { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.wd-card-sel .wdc-arrow { font-size: 20px; color: var(--text-3); }
.wd-card-sel .wdc-empty { color: var(--primary); font-size: 14px; }
.bc-types { display: flex; gap: 16px; }
.bc-types label { display: flex; align-items: center; gap: 4px; font-size: 14px; }

/* ===== 弹层 ===== */
.mask { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; display: none; }
.mask.on { display: block; }
.dialog { position: fixed; left: 50%; top: 50%; transform: translate(-50%,-50%); background: var(--card); border-radius: 16px; width: 80%; max-width: 320px; padding: 24px; z-index: 201; text-align: center; display: none; }
.dialog.on { display: block; }
.dialog h3 { font-size: 16px; margin-bottom: 8px; }
.dialog p { font-size: 13px; color: var(--text-2); margin-bottom: 18px; }
.dialog .btns { display: flex; gap: 10px; }
.dialog .btns button { flex: 1; padding: 10px; border-radius: 10px; font-size: 14px; }
.dialog .btns .yes { background: var(--grad); color: #fff; }
.dialog .btns .no { background: #f0f0f0; color: var(--text-2); }

/* toast */
.toast { position: fixed; left: 50%; top: 40%; transform: translate(-50%,-50%); background: rgba(0,0,0,.8); color: #fff; padding: 10px 18px; border-radius: 8px; font-size: 13px; z-index: 300; display: none; }
.toast.on { display: block; }

/* ===== 收货地址 ===== */
.addr-add-btn { margin: 12px 16px; padding: 12px; text-align: center; border: 1px dashed var(--primary); border-radius: var(--r); color: var(--primary); font-size: 14px; background: var(--card); }
.addr-card { background: var(--card); border-radius: var(--r); box-shadow: var(--shadow); margin: 12px 16px 0; padding: 14px; }
.addr-info { padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.addr-name { font-size: 15px; font-weight: 600; }
.addr-name span { font-weight: 400; color: var(--text-2); margin-left: 8px; font-size: 13px; }
.addr-tag { background: var(--primary); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 3px; font-style: normal; margin-left: 6px; }
.addr-text { font-size: 13px; color: var(--text-2); margin-top: 6px; line-height: 1.5; }
.addr-ops { display: flex; gap: 16px; justify-content: flex-end; margin-top: 10px; }
.addr-ops a { font-size: 12px; color: var(--text-3); }
.addr-popup { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); background: var(--card); border-radius: 16px 16px 0 0; width: 100%; max-width: 480px; padding: 20px 16px; z-index: 201; display: none; max-height: 85vh; overflow-y: auto; }
.addr-popup.on { display: block; }
.addr-popup h3 { font-size: 16px; margin-bottom: 16px; }
.addr-popup .field { margin-bottom: 10px; }
.addr-default { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-2); margin: 8px 0 16px; }
.addr-btns { display: flex; gap: 10px; }
.addr-btns button { flex: 1; padding: 11px; border-radius: var(--r); font-size: 14px; }

/* ===== 购买弹窗 ===== */
.buy-popup { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); background: var(--card); border-radius: 16px 16px 0 0; width: 100%; max-width: 480px; padding: 20px 16px; z-index: 201; display: none; max-height: 85vh; overflow-y: auto; }
.buy-popup.on { display: block; }
.buy-popup h3 { font-size: 16px; margin-bottom: 14px; }
.buy-goods { display: flex; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.buy-goods .img { width: 50px; height: 50px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; flex-shrink: 0; }
.buy-goods .info h4 { font-size: 14px; font-weight: 500; }
.buy-goods .info .money { font-size: 15px; margin-top: 6px; }
.buy-addr { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); }
.buy-addr .ba-name { font-size: 14px; font-weight: 500; }
.buy-addr .ba-text { font-size: 12px; color: var(--text-3); margin-top: 4px; }
.buy-addr .ba-arrow { font-size: 20px; color: var(--text-3); }
.buy-addr .ba-empty { color: var(--primary); font-size: 14px; }
.buy-qty { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--border); }
.buy-qty .lbl { font-size: 14px; }
.stepper { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.stepper button { width: 36px; height: 32px; font-size: 16px; background: #f5f5f5; }
.stepper input { width: 44px; height: 32px; text-align: center; font-size: 14px; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.buy-total { display: flex; align-items: center; justify-content: flex-end; gap: 8px; padding: 14px 0; font-size: 14px; }
.buy-total .money { font-size: 20px; }
.buy-popup .btn-block { margin-top: 4px; }

/* 订单地址 */
.order-item .oa { display: flex; gap: 8px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.order-item .oa .ic { font-size: 14px; }
.order-item .oa b { font-size: 13px; }
.order-item .oa p { color: var(--text-3); margin-top: 2px; }

/* ===== 滑动选择器 ===== */
#fAreaBtn { padding: 13px 14px; background: #f5f5f5; border-radius: 10px; font-size: 14px; color: var(--text-3); cursor: pointer; }
#fAreaBtn.selected { color: var(--text); }
.picker-popup { position: fixed; left: 50%; bottom: 0; transform: translateX(-50%); background: var(--card); border-radius: 16px 16px 0 0; width: 100%; max-width: 480px; z-index: 201; display: none; }
.picker-popup.on { display: block; }
.picker-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 15px; }
.picker-header span:first-child { color: var(--text-3); padding: 4px 8px; }
.picker-header span:nth-child(2) { font-weight: 600; color: var(--text); }
.picker-ok { color: var(--primary); font-weight: 600; padding: 4px 8px; }
.picker-cols { display: flex; height: 200px; position: relative; background: var(--card); }
.picker-cols::before { content: ''; position: absolute; left: 8px; right: 8px; top: 80px; height: 40px; border-radius: 8px; background: #f5f5f5; pointer-events: none; z-index: 1; }
.picker-col { flex: 1; overflow-y: scroll; -webkit-overflow-scrolling: touch; text-align: center; position: relative; z-index: 2; }
.picker-col::-webkit-scrollbar { display: none; }
.picker-item { height: 40px; line-height: 40px; font-size: 14px; color: var(--text-3); transition: color .15s; }
.picker-item.on { color: var(--text); font-weight: 600; }