/* ========================================
   跳舞兰AI花店 - 商家管理后台 H5手机端
   样式表（美团闪购移动风格）
   ======================================== */

/* === Reset & Variables === */
* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --primary: #FFC300;
  --primary-dark: #E6AF00;
  --primary-light: #FFF8E1;
  --success: #00C853;
  --warning: #FF9100;
  --danger: #FF1744;
  --info: #2979FF;
  --bg: #F5F6FA;
  --bg-white: #FFFFFF;
  --text: #212121;
  --text-secondary: #757575;
  --text-light: #BDBDBD;
  --border: #EBEDF0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --header-height: 48px;
  --nav-height: 60px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --transition: 0.2s ease;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
a { text-decoration:none; color:inherit; }
button { cursor:pointer; border:none; outline:none; font-family:inherit; -webkit-tap-highlight-color:transparent; }
input, select, textarea { font-family:inherit; font-size:16px; outline:none; }
ul, li { list-style:none; }
input::placeholder { color: #C0C4CC; }

/* === Mobile Layout === */
body {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  background: var(--bg);
}

.admin-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

#modal-container {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
#modal-container > * {
  pointer-events: auto;
}

/* === Header === */
.mobile-header {
  height: var(--header-height);
  min-height: var(--header-height);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
  z-index: 10;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logo { font-size: 22px; }
.header-title { font-size: 16px; font-weight: 700; color: var(--text); }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-status {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 3px 8px;
  border-radius: 10px;
}
.header-status.closed {
  color: var(--danger);
  background: #FFF0F0;
}

/* Shop Selector */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 8px;
}
.shop-selector {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--primary-light);
  border: 1px solid var(--primary);
  border-radius: 14px;
  padding: 4px 10px;
  max-width: 160px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  text-overflow: ellipsis;
}

/* === Content === */
.mobile-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 14px;
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 16px);
  -webkit-overflow-scrolling: touch;
}

/* === Bottom Nav === */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: calc(var(--nav-height) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 50;
  box-shadow: 0 -1px 6px rgba(0,0,0,0.04);
}
.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  min-width: 56px;
}
.nav-tab-icon { font-size: 22px; line-height: 1; }
.nav-tab-label { font-size: 10px; color: var(--text-light); font-weight: 500; }
.nav-tab.active .nav-tab-label { color: var(--primary-dark); font-weight: 600; }
.nav-tab:active { opacity: 0.7; }
.nav-tab-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--danger);
  color: #fff;
  font-size: 9px;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-weight: 700;
}

/* === Page Header === */
/* === Shop Profile Card (经营页顶部) === */
.shop-profile-card {
  background: linear-gradient(135deg, #FFC300, #FFB300);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
}
.shop-avatar {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.shop-profile-info { flex:1; min-width:0; }
.shop-profile-name { font-size:17px; font-weight:700; }
.shop-profile-desc { font-size:11px; opacity:0.85; margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.shop-profile-status { font-size:12px; background:rgba(255,255,255,0.2); padding:3px 8px; border-radius:10px; white-space:nowrap; }

.page-header {
  margin-bottom: 14px;
}
.page-title { font-size: 18px; font-weight: 700; }
.page-subtitle { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

/* === Dashboard (经营页) === */
.dash-section { margin-bottom: 16px; }

.section-label {
  font-size: 14px; font-weight: 700; color: var(--text);
  padding-left: 4px;
  margin-bottom: 8px;
}

/* 今日概览 - 横向大卡片 */
.today-overview {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.today-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 18px 14px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.today-card.highlight {
  background: linear-gradient(135deg, #FFC300, #FFB300);
  color: #fff;
}
.today-card.highlight .today-sub { opacity: 0.85; }
.today-value {
  font-size: 28px; font-weight: 800; line-height:1.2;
  letter-spacing: -1px;
}
.today-label { font-size: 12px; opacity: 0.75; margin-top:2px; }
.today-sub { font-size: 11px; opacity: 0.7; margin-top:4px; }

/* 本月数据 - 横向三列 */
.month-row {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 18px 10px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: space-around;
}
.month-item { text-align: center; flex:1; }
.month-num { display:block; font-size:22px; font-weight:800; color:var(--text); }
.month-num.money { color: var(--success); }
.month-label { display:block; font-size:11px; color:var(--text-secondary); margin-top:2px; }
.month-divider { width:1px; height:32px; background:var(--border); }

/* 日期范围筛选 */
.date-range-row {
  background: var(--bg-white); border-radius: var(--radius-lg);
  padding: 10px 12px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
}
.date-input {
  flex: 1; min-width:0;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 7px 8px; font-size: 12px; font-family: inherit;
  color: var(--text); background: var(--bg);
  outline: none; -webkit-appearance: none;
}
.date-input:focus { border-color: var(--primary); }
.date-arrow { color: var(--text-light); font-size: 14px; flex-shrink:0; }

/* 日期筛选标签 */
.date-filter-tabs {
  display: flex; gap: 4px;
  background: var(--bg); border-radius: 14px; padding: 2px;
}
.date-tab {
  font-size: 11px; font-weight: 600; color: var(--text-secondary);
  padding: 3px 10px; border-radius: 12px; cursor: pointer;
  transition: all .2s; user-select:none;
}
.date-tab.active {
  background: var(--primary); color: #fff; box-shadow: 0 1px 4px rgba(255,195,0,.4);
}

/* 顾客分析 */
.customer-grid { display:flex; flex-direction:column; gap:8px; }
.customer-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 14px; box-shadow: var(--shadow-sm);
  display:flex; align-items:center; gap:12px;
}
.customer-icon {
  width:40px; height:40px; border-radius:50%;
  background:#FFF3E0; font-size:18px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.customer-icon.green { background:#E8F5E9; }
.customer-icon.blue { background:#E3F2FD; }
.customer-body { flex:1; min-width:0; }
.customer-val { font-size:20px; font-weight:800; color:var(--text); line-height:1.2; }
.customer-lbl { font-size:11px; color:var(--text-secondary); }
.customer-tag {
  font-size:11px; color:var(--text-secondary);
  background:var(--bg); padding:3px 8px; border-radius:8px;
  white-space:nowrap; flex-shrink:0;
}
.customer-tag.warn { color:#FF9800; background:#FFF3E0; }

/* Stats Grid (旧版保留给其他页面) */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.stats-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.stat-card.full { grid-column: 1 / -1; }
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.stat-icon.primary { background: var(--primary-light); }
.stat-icon.success { background: #E8F5E9; }
.stat-icon.warning { background: #FFF3E0; }
.stat-icon.info { background: #E3F2FD; }
.stat-info { flex: 1; min-width: 0; }
.stat-label { font-size: 11px; color: var(--text-secondary); margin-bottom: 2px; }
.stat-value { font-size: 20px; font-weight: 700; color: var(--text); }
.stat-sub { font-size: 10px; color: var(--text-secondary); margin-top: 2px; white-space: nowrap; }
.stat-sub.up { color: var(--success); }

/* === Card === */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.card-title { font-size: 14px; font-weight: 600; }
.card-body { padding: 12px 14px; }
.card-body.no-padding { padding: 0; }

/* === Chart === */
.chart-card { padding: 10px; }
.chart-card canvas { max-height: 220px; }

/* === Product Ranking List === */
.rank-list { display: flex; flex-direction: column; gap: 8px; }
.rank-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.rank-item:last-child { border-bottom: none; }
.rank-index {
  width: 22px; height: 22px; border-radius: 50%;
  background: #f0f0f0; color: var(--text-secondary);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rank-index.top {
  color: #fff;
}
.rank-index:nth-of-type(1) { background: #FFC300; }
.rank-item:nth-child(1) .rank-index.top { background: #FFC300; }
.rank-item:nth-child(2) .rank-index.top { background: #FF9100; }
.rank-item:nth-child(3) .rank-index.top { background: #FF6B6B; }
.rank-info { flex:1; min-width:0; }
.rank-name { font-size:13px; font-weight:600; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rank-bar-wrap { height:6px; background:#f0f0f0; border-radius:3px; overflow:hidden; }
.rank-bar { height:100%; border-radius:3px; transition:width .3s; }
.rank-right { text-align:right; flex-shrink:0; display:flex; flex-direction:column; align-items:flex-end; gap:2px; }
.rank-sales { font-size:14px; font-weight:700; color:var(--text); }
.rank-pct { font-size:11px; color:var(--text-secondary); }

/* === Toolbar / Filter === */
.toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  position: relative;
  min-width: 0;
}
.search-box input {
  width: 100%;
  height: 38px;
  padding: 0 12px 0 34px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 14px;
  background: var(--bg);
  transition: all var(--transition);
}
.search-box input:focus { border-color: var(--primary); background: #fff; }
.search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.96); }
.btn-sm { padding: 5px 10px; font-size: 11px; border-radius: 14px; }
.btn-lg { padding: 12px 24px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: #333; }
.btn-success { background: var(--success); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-outline { background: #fff; border: 1px solid var(--border); color: var(--text); }
.btn-outline-primary { background: #fff; border: 1px solid var(--primary); color: var(--primary-dark); }
.btn-text { background: transparent; color: var(--info); padding: 4px 8px; font-size: 12px; }
.flex-1 { flex: 1; }
.btn-text-danger { background: transparent; color: var(--danger); padding: 4px 8px; font-size: 12px; }
.btn-icon-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.btn-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
/* 订单工具栏 */
.order-toolbar { margin-bottom: 10px; }
.order-toolbar-row {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-white); border-radius: var(--radius);
  padding: 8px 10px; box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}
.sort-btn {
  flex-shrink:0; font-size:12px !important; padding:6px 10px !important;
}

/* 排序下拉菜单 */
.sort-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 200;
  min-width: 160px;
  overflow: hidden;
  animation: sortDrop .2s ease;
}
@keyframes sortDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 排序 ActionSheet */
.sort-action-sheet {
  position: fixed;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: transparent;
  border-radius: 14px 14px 0 0;
  animation: sheetUp .25s ease;
}
@keyframes sheetUp {
  from { transform: translateX(-50%) translateY(100%); }
  to { transform: translateX(-50%) translateY(0); }
}
.sort-action-header {
  text-align: center;
  font-size: 14px; font-weight: 700;
  color: var(--text);
  padding: 16px;
  border-bottom: 1px solid var(--border);
  border-radius: 14px 14px 0 0;
  background: var(--bg-white);
}
.sort-action-list {
  background: var(--bg-white);
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 16px));
  border-radius: 0 0 14px 14px;
}
.sort-action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  transition: background .15s;
}
.sort-action-item:active { background: var(--bg); }
.sort-action-item.active { color: var(--primary-dark); font-weight: 600; }
.sort-check {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
}

.btn-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 6px;
}
.btn-filter-group::-webkit-scrollbar { display: none; }
.btn-filter {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-filter.active { background: var(--primary); border-color: var(--primary); color: #333; font-weight: 600; }

/* ================================================================
   Products - H5 Mobile Layout
   ================================================================ */

.h5-products-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--header-height) - var(--nav-height, 56px));
  background: #F7F8FA;
}

/* --- 顶部搜索栏 --- */
.h5-pd-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.h5-pd-search-wrap { flex: 1; }
.h5-pd-search-input {
  width: 100%;
  height: 36px;
  padding: 0 14px 0 32px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
  background: #F5F6FA url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23bbb' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 10px center;
  transition: all .2s;
}
.h5-pd-search-input:focus {
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,195,0,.12);
}
.h5-pd-icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #FFF8E1;
  border: none;
  font-size: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* --- 分类横向滚动 --- */
/* 分类横向滚动 → 已废弃（改为左侧竖列） */
.h5-pd-cats-scroll { display: none; }

/* === 左右分栏布局 === */
.h5-pd-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
/* 左侧分类竖列 */
.h5-pd-sidebar {
  width: 100px;
  min-width: 100px;
  background: #fff;
  border-right: 1px solid #f0f0f0;
  overflow-y: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
  -ms-overflow-style: thin;
}
.h5-pd-sidebar::-webkit-scrollbar { width: 3px; }
.h5-pd-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

/* 侧栏每一项 */
.h5-pd-sidebar-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 11px 10px;
  cursor: pointer;
  position: relative;
  transition: all .15s;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
}
.h5-pd-sidebar-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 20px;
  background: var(--primary);
  border-radius: 2px 0 0 2px;
  transition: width .15s;
}
.h5-pd-sidebar-item.active {
  background: #FFFDE7;
  color: var(--primary-dark);
  font-weight: 700;
}
.h5-pd-sidebar-item.active::after {
  width: 3px;
}
.h5-psb-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.h5-psb-name {
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.h5-psb-count {
  font-size: 11px;
  color: #bbb;
  min-width: 14px;
  text-align: right;
}
.h5-pd-sidebar-item.active .h5-psb-count {
  color: #E6AF00;
}

/* 右侧内容区 */
.h5-pd-main-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}
.h5-pd-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
  background: #F5F6FA;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  border: 1px solid transparent;
  line-height: 1.4;
}
.h5-pd-cat-chip small {
  font-size: 11px;
  color: #aaa;
  margin-left: 2px;
}
.h5-pd-cat-chip:hover { background: #EEEFF3; }
.h5-pd-cat-chip.active {
  background: linear-gradient(135deg,#212121,#333);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}
.h5-pd-cat-chip.active small { color: rgba(255,255,255,.65); }
.h5-pd-cat-chip.hot { color: #E65100; background: #FFF3E0; }
.h5-pd-cat-chip.hot.active { background: #FF6D00; color: #fff; }

/* 分类管理按钮 */
.h5-pd-icon-btn--on {
  background: var(--primary);
  color: #333;
}
/* 选择模式按钮激活态 */
.h5-pd-icon-btn--sel {
  background: #FF1744;
  color: #fff;
}

/* ========== 分类管理面板 ========== */
.h5-cat-manager {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
}
.h5-cat-mgr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}
.h5-cat-mgr-title {
  font-size: 15px;
  font-weight: 700;
  color: #212121;
}
.h5-cat-mgr-title small {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-left: 6px;
}
.h5-cat-mgr-add {
  padding: 6px 14px;
  border-radius: 18px;
  border: 1px solid var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.h5-cat-mgr-add:active {
  background: var(--primary);
  transform: scale(0.96);
}
.h5-cat-mgr-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px 80px;
}

/* 分类项 */
.h5-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  background: #FAFBFC;
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all .15s;
}
.h5-cat-item:active { background: #F0F1F4; }
/* 排序拖拽手柄 */
.h5-cat-item-sort-num {
  width: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h5-cat-sort-input {
  width: 42px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  outline: none;
  padding: 0;
  box-sizing: border-box;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none;
}
.h5-cat-sort-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,195,0,.15);
}
/* 排序保存按钮 */
.h5-cat-mgr-sortbtn {
  padding: 5px 12px;
  border-radius: 16px;
  border: 1px solid var(--success);
  background: #E8F5E9;
  color: #2E7D32;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.h5-cat-mgr-sortbtn:active {
  background: var(--success);
  color: #fff;
  transform: scale(0.96);
}
/* 旧的拖拽相关样式（清理） */
.h5-cat-item-sort { display: none; }
.h5-cat-act.sort-up, .h5-cat-act.sort-dn { display: none; }
.h5-cat-act.disabled,
.h5-cat-act.sort-up.disabled,
.h5-cat-act.sort-dn.disabled { display: none; }
.h5-cat-item-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.h5-cat-item-info {
  flex: 1;
  min-width: 0;
}
.h5-cat-item-name {
  font-size: 15px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 4px;
}
.h5-cat-item-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}
.h5-cat-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
.h5-cat-item-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.h5-cat-act {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.h5-cat-act:active { transform: scale(0.92); background: #f0f0f0; }
.h5-cat-act.del { color: #FF5252; }
.h5-cat-act.del:active { background: #FFEBEE; }


/* --- 状态Tab --- */
.h5-pd-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: #fff;
  border-bottom: 1px solid #f5f5f5;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.h5-pd-tabs::-webkit-scrollbar { display: none; }
.h5-pd-tab {
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 13px;
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  font-weight: 500;
}
.h5-pd-tab.active {
  background: var(--danger);
  color: #fff;
  font-weight: 700;
}

/* --- 批量操作条 --- */
.h5-pd-batch-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #FFFEF5;
  border-bottom: 1px solid #FFE0B2;
  flex-shrink: 0;
  flex-wrap: wrap;
  font-size: 12px;
}
.h5-pd-batch-acts {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.h5-pd-batch-btn {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  border: none;
  font-weight: 600;
}
.h5-pd-batch-btn.ok { background: #E8F5E9; color: #2E7D32; }
.h5-pd-batch-btn.warn { background: #FFF3E0; color: #E65100; }
.h5-pd-batch-btn.del { background: #FFEBEE; color: #C62828; }
.h5-pd-batch-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* --- 商品列表容器 --- */
.h5-pd-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 10px 80px;
}
.h5-pd-empty {
  text-align: center;
  padding: 70px 20px;
  color: #ccc;
}
.h5-pd-empty-icon { font-size: 52px; margin-bottom: 10px; }
.h5-pd-empty p { font-size: 14px; margin: 4px 0; }

/* --- 单个商品卡片（H5） --- */
.h5-pd-item {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  position: relative;
  border: 1.5px solid transparent;
  transition: border-color .15s, background .15s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.h5-pd-item.checked {
  border-color: var(--primary);
  background: #FFFEF5;
}

.h5-pd-check {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  flex-shrink: 0;
}
.h5-pd-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* 缩略图 */
.h5-pd-thumb {
  width: 90px; height: 90px;
  min-width: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fefefe, #f0ece4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.h5-pd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.h5-pd-thumb-icon {
  font-size: 38px;
}

/* 信息区 */
.h5-pd-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 2px 0;
}
.h5-pd-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.h5-pd-name {
  font-size: 15px;
  font-weight: 700;
  color: #212121;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.h5-pd-tag {
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1.5;
  flex-shrink: 0;
}
.h5-pd-tag.hot {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  color: #E65100;
}
.h5-pd-tag.off {
  background: #FFEBEE;
  color: #C62828;
}
.h5-pd-subtitle {
  font-size: 12px;
  color: #999;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

/* 底部价格+操作行 */
.h5-pd-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 4px;
  gap: 6px;
}
.h5-pd-price {
  font-size: 19px;
  font-weight: 800;
  color: var(--danger);
  line-height: 1.2;
}
.h5-pd-price small {
  font-size: 12px;
  font-weight: 700;
  margin-right: 1px;
}
.h5-pd-actions {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.h5-pd-stock {
  font-size: 11px;
  color: #aaa;
  white-space: nowrap;
}
.h5-pd-stock.warn { color: var(--danger); }
.h5-pd-sales {
  font-size: 11px;
  color: #bbb;
  white-space: nowrap;
}
.h5-pd-edit-btn {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
  font-weight: 500;
}
.h5-pd-edit-btn.off {
  border-color: #FFE0B2;
  background: #FFF3E0;
  color: #E65100;
}
.h5-pd-edit-btn:active { transform: scale(.95); }
.h5-pd-del-btn {
  border-color: #FFCDD2;
  background: #FFF5F5;
  color: #FF1744;
}
.h5-pd-del-btn:active { background: #FF1744; color: #fff; transform: scale(.95); }

/* === Order List Cards === */
.order-list { display: flex; flex-direction: column; gap: 10px; }
.order-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}
.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.order-card-title {
  display: flex; align-items: center; gap: 10px;
}
.order-card-no { font-size: 13px; font-weight: 700; color: var(--text); }
.order-card-time {
  font-size: 11px; color: var(--text-secondary);
}
.order-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.order-card-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.order-card-item .qty { color: var(--text-secondary); font-size: 12px; }
.order-item-img {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f9f9f9, #eee);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; overflow: hidden;
}
.order-item-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.order-item-info {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px;
}
.order-item-name { font-size: 13px; font-weight: 600; }
.order-item-sub {
  font-size: 11px; color: var(--text-secondary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.order-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.order-card-total { font-size: 16px; font-weight: 700; color: var(--text); }
.order-card-total .num { color: var(--danger); }
.order-card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 4px;
}
.order-card-addr {
  font-size: 11px; color: var(--text-secondary);
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; gap: 8px;
}
.addr-distance {
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8f4fd, #d4ecf7);
  color: #1976D2;
  font-weight: 600;
  padding: 1px 7px; border-radius: 10px; font-size: 10px;
}
.order-card-card {
  font-size: 11px; color: #C2185B;
  margin-top: 3px; padding: 5px 10px;
  background: #FCE4EC;
  border-radius: var(--radius-sm);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.order-card-delivery {
  font-size: 11px; color: #D32F2F;
  margin-top: 2px; display: flex; align-items: center; gap: 4px;
  font-weight: 600;
}

/* === Category List / Banner List === */
.simple-list { display: flex; flex-direction: column; gap: 8px; }
.simple-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}
.simple-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.simple-item-info { flex: 1; min-width: 0; }
.simple-item-name { font-size: 14px; font-weight: 600; }
.simple-item-sub { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }
.simple-item-actions { display: flex; gap: 4px; }

/* === Shop Avatar Upload === */
.shop-avatar-upload {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: border-color .2s, background .2s;
  background: var(--bg);
  position: relative;
}
.shop-avatar-upload:hover { border-color: var(--primary); background: var(--primary-light); }
.shop-avatar-preview {
  width: 100%; height: 100%; object-fit: cover;
}
.shop-avatar-placeholder {
  font-size: 36px; line-height: 1;
}

/* === 商品图片上传 === */
.prod-img-upload {
  width: 80px; height: 80px;
  border-radius: 8px;
  border: 2px dashed var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: border-color .2s, background .2s;
  background: var(--bg);
}
.prod-img-upload:hover { border-color: var(--primary); background: var(--primary-light); }
.prod-img-add-more { width: 60px !important; height: 60px !important; }
.prod-img-placeholder { font-size: 28px; }
.prod-img-add-more .prod-img-placeholder { font-size: 22px; color: #aaa; }
.prod-img-preview-wrap {
  position: relative; width: 80px; height: 80px; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
}
.prod-img-preview { width: 100%; height: 100%; object-fit: cover; }
.prod-img-remove {
  position: absolute; top: 2px; right: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; border: none;
  font-size: 11px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  padding: 0; line-height: 1;
}
.prod-img-remove:hover { background: var(--danger); }

/* === 店铺资质 === */
.qual-cols {
  display: flex; gap: 12px;
}
.qual-col {
  flex: 1; display: flex; flex-direction: column; gap: 8px;
}
.qual-col--wide {
  flex: 1.8;
}
.qual-row {
  display: flex; gap: 10px;
}
.qual-row--inner {
  gap: 8px;
}
.qual-item {
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
}
.qual-label {
  font-size: 12px; color: var(--text-secondary); white-space: nowrap;
  flex-shrink: 0; width: 70px;
}
.qual-thumb {
  flex: 1; height: 56px;
  border-radius: 6px;
  border: 1px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
  transition: border-color .2s;
}
.qual-thumb:hover { border-color: var(--primary); }
.qual-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.qual-plus {
  font-size: 20px; color: var(--text-light); line-height: 1;
}
/* 环境图区域 */
.qual-env-wrap {
  flex: 1;
}
.qual-env-list {
  display: flex; gap: 6px; overflow-x: auto;
}
.qual-env-item {
  width: 56px; height: 56px; min-width: 56px;
  border-radius: 6px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.qual-env-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.qual-env-del {
  position: absolute; top: 2px; right: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff; font-size: 12px; line-height: 18px;
  text-align: center; cursor: pointer;
}
.qual-env-add {
  display: flex; align-items: center; justify-content: center;
  border-style: dashed;
  background: var(--bg);
  transition: border-color .2s;
}
.qual-env-add:hover { border-color: var(--primary); }

/* === Shop Info Page === */
.shop-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  margin-bottom: 12px;
}
.shop-card-title { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 12px; }

/* === 入驻审核入口 === */
.apply-review-entry {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, #FFF7E6 0%, #FFEFE5 100%);
  border-radius: 10px;
  margin-bottom: 14px;
  gap: 12px;
  border: 1px solid rgba(232, 97, 93, 0.12);
  cursor: pointer;
}
.apply-review-icon { font-size: 32px; flex-shrink: 0; }
.apply-review-text { flex: 1; min-width: 0; }
.apply-review-title { font-size: 15px; font-weight: 700; color: #333; }
.apply-review-desc { font-size: 12px; color: #888; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.apply-review-arrow { font-size: 18px; color: #E8615D; flex-shrink: 0; }

/* === 花店入驻入口（店铺页） === */
.apply-shop-entry {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: linear-gradient(135deg, #F0F5FF 0%, #E8F4FF 100%);
  border-radius: 12px;
  margin-bottom: 14px;
  gap: 14px;
  border: 1.5px solid rgba(24,144,255,0.15);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.apply-shop-entry:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(24,144,255,0.12);
}
.apply-shop-entry:active { transform: scale(0.99); }
.apply-shop-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(24,144,255,0.08);
  border-radius: 14px;
  font-size: 28px;
  flex-shrink: 0;
}
.apply-shop-text { flex: 1; min-width: 0; }
.apply-shop-title { font-size: 16px; font-weight: 800; color: #333; }
.apply-shop-desc { font-size: 12px; color: #888; margin-top: 3px; line-height: 1.4; }
.apply-shop-badge {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* 弹窗内入驻表单 */
.apply-form-body { padding: 8px 0; }

/* === 补充资质页面样式 === */
.qualify-success-tip {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, #F6FFED 0%, #E8F9F0 100%);
  border-radius: 12px;
  margin-bottom: 16px;
}
.qualify-success-icon {
  font-size: 36px;
  margin-bottom: 6px;
}
.qualify-success-text {
  font-size: 15px; font-weight: 700;
  color: #389E0D;
}
.qualify-success-sub {
  font-size: 12px; color: #7CB342;
  margin-top: 4px;
}

/* 表单分组标题 */
.form-section-title {
  font-size: 14px; font-weight: 700;
  color: #333;
  margin: 18px 0 10px;
  padding-left: 2px;
}

/* 图片上传区域 */
.photo-upload-row {
  display: flex;
  gap: 10px;
}
.photo-upload-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.photo-upload-single {
  cursor: pointer;
}
.photo-upload-box {
  width: 100%;
  aspect-ratio: 3/2;
  border: 2px dashed #D9D9D9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
  background: #FAFAFA;
}
.photo-upload-box:hover {
  border-color: #1890FF;
  background: #E8F4FF;
}
.photo-upload-box-lg {
  aspect-ratio: 16/9;
  max-height: 140px;
}
.photo-placeholder {
  text-align: center;
  color: #BFBFBF;
  font-size: 24px;
  line-height: 1.4;
  user-select: none;
}
.photo-placeholder span {
  font-size: 11px;
  color: #D9D9D9;
}
.photo-label {
  font-size: 11px;
  color: #999;
  margin-top: 4px;
  text-align: center;
}

/* 图片预览 */
.photo-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid #1890FF33;
  display: none;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-preview-lg {
  aspect-ratio: 16/9;
  max-height: 140px;
}
.photo-remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  background: rgba(232,97,93,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* === Switch Toggle === */
.switch-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg);
  padding: 10px 14px; border-radius: var(--radius-sm);
  cursor: pointer; margin-bottom: 14px;
}
.switch-row span { font-size: 14px; }
.switch {
  width: 48px; height: 26px; background: #ddd;
  border-radius: 13px; position: relative;
  transition: background .25s;
}
.switch.on { background: var(--success); }
.switch-thumb {
  width: 22px; height: 22px; background: #fff;
  border-radius: 50%; position: absolute; top: 2px; left: 2px;
  transition: left .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.switch.on .switch-thumb { left: 24px; }

.form-item { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--bg);
  transition: border var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--primary); background: #fff; }
.form-textarea { height: 80px; padding: 10px 12px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* === Badges & Tags === */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-success { background:#E8F5E9; color:var(--success); }
.badge-warning { background:#FFF3E0; color:var(--warning); }
.badge-danger { background:#FFEBEE; color:var(--danger); }
.badge-info { background:#E3F2FD; color:var(--info); }
.badge-default { background:var(--bg); color:var(--text-secondary); }
.badge-on { background:#E8F5E9; color:var(--success); }
.badge-off { background:#F5F5F5; color:var(--text-light); }

/* === Status Steps === */
.status-steps {
  display: flex;
  margin-bottom: 16px;
}
.status-step {
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 10px;
  color: var(--text-light);
  padding-top: 22px;
}
.status-step::before {
  content:'';
  position:absolute;
  top:6px; left:50%;
  transform:translateX(-50%);
  width:10px; height:10px;
  border-radius:50%;
  background:var(--border);
  border:2px solid var(--border);
  z-index:1;
}
.status-step::after {
  content:'';
  position:absolute;
  top:11px; left:50%;
  width:100%; height:2px;
  background:var(--border);
}
.status-step:last-child::after { display:none; }
.status-step.active { color:var(--primary-dark); font-weight:600; }
.status-step.active::before { background:var(--primary); border-color:var(--primary); }
.status-step.done { color:var(--success); }
.status-step.done::before { background:var(--success); border-color:var(--success); }
.status-step.done::after { background:var(--success); }

/* === Modal (Full Screen Mobile) === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal {
  background: #fff;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.modal-title { font-size: 16px; font-weight: 700; }
.modal-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
}
.modal-body { padding: 16px; overflow-y: auto; flex: 1; }
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 16px));
  border-top: 1px solid var(--border);
}

/* === Confirm === */
.confirm-content { text-align: center; padding: 16px 0; }
.confirm-icon { font-size: 44px; margin-bottom: 10px; }
.confirm-text { font-size: 14px; color: var(--text); line-height: 1.6; }

/* === Toast === */
.mobile-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #333;
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
  max-width: 90vw;
}
.mobile-toast.show { opacity: 1; }
.mobile-toast.error { background: var(--danger); }

/* === Empty State === */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
}
.empty-icon { font-size: 48px; margin-bottom: 8px; }
.empty-text { font-size: 13px; }

/* ==================== 登录页 ==================== */
.login-page {
  position: fixed; inset: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #FFF8E1 0%, #FFE082 40%, #FFC300 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-container {
  width: 100%; max-width: 360px;
}
.login-header {
  text-align: center;
  margin-bottom: 24px;
}
.login-logo {
  font-size: 56px;
  margin-bottom: 12px;
}
.login-title {
  font-size: 24px; font-weight: 800;
  color: #5D4037;
  margin-bottom: 6px;
}
.login-subtitle {
  font-size: 13px;
  color: #8D6E63;
}

/* === 登录/注册 Tab 切换 === */
.login-tabs {
  display: flex;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}
.login-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 700;
  color: #8D6E63;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.25s;
  user-select: none;
}
.login-tab.active {
  background: #fff;
  color: #5D4037;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.login-tab:hover:not(.active) { color: #5D4037; }

.required { color: #E8615D; }

.login-form {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.login-input-group {
  margin-bottom: 18px;
}
.login-label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: #5D4037;
  margin-bottom: 6px;
}
.login-input {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 1.5px solid #EBEDF0;
  border-radius: 10px;
  font-size: 16px;
  color: #212121;
  background: #FAFBFC;
  transition: border-color 0.2s;
}
.login-input:focus {
  border-color: var(--primary);
  background: #FFF;
}
.login-code-row {
  display: flex;
  gap: 10px;
}
.login-code-input {
  flex: 1;
}
.login-code-btn {
  flex-shrink: 0;
  white-space: nowrap;
  height: 46px;
  padding: 0 16px;
  background: var(--primary);
  color: #5D4037;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.login-code-btn:active { opacity: 0.8; }
.login-code-btn.sending {
  background: #E0E0E0;
  color: #9E9E9E;
  pointer-events: none;
}
.login-submit-btn {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, #FFC300, #FFB300);
  color: #5D4037;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  margin: 6px 0 20px;
  box-shadow: 0 4px 12px rgba(255,195,0,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.login-submit-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(255,195,0,0.25);
}
.login-submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
.login-hint {
  text-align: center;
}
.login-hint p {
  font-size: 12px;
  color: #9E9E9E;
  line-height: 1.8;
}
.login-phones {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}
.login-phones span {
  font-size: 12px;
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  padding: 2px 8px;
  background: var(--primary-light);
  border-radius: 6px;
  transition: background 0.2s;
}
.login-phones span:active {
  background: var(--primary);
}

/* === 退出登录按钮 === */
.logout-btn {
  margin-left: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  color: #5D4037;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.logout-btn:active {
  background: rgba(255,0,0,0.15);
  color: var(--danger);
}

/* === More Page (sub menu) === */
.more-menu { display: flex; flex-direction: column; gap: 8px; }
.more-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
}
.more-item:active { background: var(--bg); }
.more-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.more-item-icon.cat { background: #E3F2FD; }
.more-item-icon.banner { background: #FFF3E0; }
.more-item-icon.order { background: #E8F5E9; }
.more-item-icon.shop { background: #F3E5F5; }
.more-item-info { flex: 1; }
.more-item-name { font-size: 14px; font-weight: 600; }
.more-item-sub { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }
.more-item-arrow { font-size: 14px; color: var(--text-light); }

/* === Order Detail === */
.order-detail-section { margin-bottom: 16px; }
.order-detail-title { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
}
.order-detail-row .label { color: var(--text-secondary); }
.order-detail-row .value { font-weight: 500; text-align: right; }
.order-detail-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.order-detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.order-detail-item:last-child { border-bottom: none; }
.order-detail-total {
  text-align: right;
  padding: 10px 0 4px;
  font-size: 16px;
  font-weight: 700;
}
.order-detail-total .num { color: var(--danger); }

/* Upload area */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 12px;
}
.upload-area .upload-icon { font-size: 32px; margin-bottom: 6px; }
.upload-area .upload-text { font-size: 12px; color: var(--text-secondary); }

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
}
.switch input { display: none; }
.switch-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.switch-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}
.switch input:checked + .switch-slider { background: var(--success); }
.switch input:checked + .switch-slider::before { transform: translateX(20px); }

/* Responsive tablet */
@media (min-width: 768px) {
  body { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
  .bottom-nav { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
}

/* ==========================================
   AI 助理页面
   ========================================== */
.ai-page {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px;
  min-height: calc(100vh - 120px);
}
.ai-header {
  text-align: center;
  padding: 18px 0 10px;
}
.ai-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}
.ai-robot-icon {
  font-size: 28px;
  animation: ai-bounce 2s ease-in-out infinite;
}
@keyframes ai-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.ai-title-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
}
.ai-desc {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* --- 功能卡片 --- */
.ai-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  cursor: pointer;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,195,0,.05));
  pointer-events: none;
}
.ai-card:active { transform: scale(.98); }
.ai-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ai-card-body { flex:1; min-width: 0; }
.ai-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 3px;
}
.ai-card-desc {
  font-size: 12px;
  color:#888;
  line-height: 1.4;
  margin-bottom: 5px;
}
.ai-card-tag {
  display: inline-block;
  font-size: 11px;
  background: #FFF8E1;
  color: #E6AF00;
  padding: 1px 8px;
  border-radius: 20px;
}
.ai-card-arrow {
  font-size: 24px;
  color: #ccc;
  flex-shrink: 0;
}

/* --- 快捷统计 --- */
.ai-quick-stats {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
}
.ai-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ai-stat-num {
  font-size: 15px;
  font-weight: 800;
}
.ai-stat-label {
  font-size: 11px;
  opacity: .8;
}
.ai-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.25);
}

/* --- AI 对话区 --- */
.ai-chat-section {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 240px;
}
.ai-chat-header {
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
}
.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 14px;
  min-height: 140px;
  max-height: 280px;
}
.ai-welcome-msg {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.ai-avatar-bot, .ai-avatar-user {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: #f5f5f5;
}
.ai-avatar-user { background: #E3F2FD; }
.ai-msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  word-break: break-word;
}
.ai-bubble-bot {
  background: #F5F5F5;
  color: #333;
  border-top-left-radius: 4px;
}
.ai-bubble-bot b { color: #667eea; }
.ai-bubble-user {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-top-right-radius: 4px;
}
.ai-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid #f0f0f0;
}
.ai-chat-input {
  flex: 1;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  outline: none;
  background: #fafafa;
}
.ai-chat-input:focus { border-color: #667eea; background: #fff; }
.ai-send-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
.ai-send-btn:active { transform: scale(.95); }

/* --- AI 发布产品 --- */
.ai-pub-intro {
  background: #F3E5F5;
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  color: #7B1FA2;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* AI 发布产品 - 图片上传 */
.ai-image-upload {
  border: 2px dashed #D1C4E9;
  border-radius: 10px;
  padding: 12px;
  background: #fafafa;
}
.ai-upload-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.ai-upload-btn:active {
  transform: scale(0.97);
  opacity: 0.8;
}
.ai-upload-icon {
  font-size: 28px;
  margin-bottom: 4px;
}
.ai-upload-text {
  font-size: 13px;
  color: #667eea;
  font-weight: 600;
}
.ai-upload-hint {
  font-size: 11px;
  color: #aaa;
  margin-top: 2px;
}
.ai-upload-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.ai-upload-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}
.ai-upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-thumb-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.15s;
}
.ai-thumb-remove:active { background: rgba(255,23,68,0.85); }

/* AI 结果中的图片预览 */
.ai-res-images {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow-x: auto;
}
.ai-res-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0ecec;
  flex-shrink: 0;
}
.ai-pub-preview {
  margin-top: 16px;
  border-top: 1px dashed #ddd;
  padding-top: 14px;
}
.ai-preview-label {
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 10px;
}
.ai-result-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #eee;
}
.ai-res-name {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}
.ai-res-subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.ai-res-price {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}
.ai-res-price b { color: #FF1744; font-size: 18px; }
.ai-res-tags { display: flex; gap: 6px; margin-bottom: 10px; }
.ai-res-tag {
  font-size: 11px;
  background: #E8F5E9;
  color: #388E3C;
  padding: 2px 8px;
  border-radius: 10px;
}
.ai-res-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
}
.ai-res-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* --- AI 朋友圈 - 主题选择 --- */
.ai-moments-modal .modal-body { max-height: none; }
.ai-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ai-theme-item {
  position: relative;
  background: #FAFAFA;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.ai-theme-item:active { transform: scale(0.95); }
.ai-theme-item.active {
  border-color: #667eea;
  background: #F0F4FF;
}
.ai-theme-icon { font-size: 20px; margin-bottom: 3px; }
.ai-theme-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}
.ai-theme-desc {
  font-size: 10px;
  color: #aaa;
  margin-top: 2px;
  line-height: 1.3;
  display: none; /* 小空间下隐藏描述 */
}
.ai-theme-check {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #667eea;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s;
}
.ai-theme-item.active .ai-theme-check { opacity: 1; }

/* 上传按钮小版 */
.ai-upload-btn-sm {
  padding: 12px !important;
}
.ai-upload-btn-sm .ai-upload-icon {
  font-size: 22px !important;
}
.ai-upload-btn-sm .ai-upload-text {
  font-size: 12px !important;
}

/* 朋友圈图片展示 */
.ai-moments-img-showcase {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.ai-moments-show-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  flex-shrink: 0;
}

/* --- AI 朋友圈 --- */
.ai-moments-body { padding: 4px 0; }
.ai-moments-tip {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}
.ai-moments-list { display: flex; flex-direction: column; gap: 10px; }
.ai-moment-card {
  background: #FAFAFA;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #eee;
}
.ai-moment-type {
  font-size: 13px;
  font-weight: 700;
  color: #f5576c;
  margin-bottom: 8px;
}
.ai-moment-text {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 8px;
}
.ai-moment-time {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 10px;
}
.ai-copy-btn { width: 100%; }

/* --- AI 预估单量 --- */
.ai-forecast-modal .modal-body { padding: 4px 0; }
.forecast-hero {
  text-align: center;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  border-radius: 14px;
  padding: 24px 16px;
  color: #fff;
  margin-bottom: 14px;
}
.forecast-hero-label {
  font-size: 13px;
  opacity: .85;
  margin-bottom: 6px;
}
.forecast-hero-num {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
}
.forecast-hero-num small {
  font-size: 16px;
  font-weight: 500;
  margin-left: 2px;
}
.forecast-hero-sub {
  font-size: 12px;
  opacity: .75;
  margin-top: 4px;
}
.conf-高 { color: #A5D6A7; font-weight: 700; }
.conf-中 { color: #FFE082; font-weight: 700; }
.conf-低 { color: #EF9A9A; font-weight: 700; }

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.forecast-item {
  text-align: center;
  background: #FAFAFA;
  border-radius: 10px;
  padding: 12px 6px;
}
.forecast-val {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  margin-bottom: 3px;
}
.forecast-k {
  font-size: 11px;
  color: #999;
}

.forecast-advice, .forecast-stock {
  background: #FFFDE7;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}
.advice-title, .stock-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.advice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advice-list li {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}
.advice-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: #FFC300;
  font-weight: bold;
}
.stock-list { display: flex; flex-direction: column; gap: 6px; }
.stock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0,0,0,.08);
}
.stock-name { color: #555; }
.stock-num {
  font-weight: 700;
  color: #4facfe;
}
