/* ============================================================
   门店返图H5系统 - 全局样式 v2.0
   风格：玻璃拟态 + 未来感 + 大圆角 + 柔和渐变
   ============================================================ */

/* ---- 基础变量 ---- */
:root {
  --primary: #FF6B35;
  --primary-light: #FF8C5A;
  --primary-dark: #E55A2B;
  --secondary: #FF9500;
  --accent: #7B61FF;
  --accent-light: #A78BFA;
  --bg: #FAFAFC;
  --bg-warm: #FFF8F3;
  --bg-gradient: linear-gradient(180deg, #FFF5EE 0%, #FAFAFC 40%, #F0F4FF 100%);
  --card-bg: rgba(255,255,255,0.85);
  --card-border: rgba(255,255,255,0.6);
  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-glow: 0 4px 24px rgba(255,107,53,0.15);
  --radius-sm: 1.2rem;
  --radius-md: 1.6rem;
  --radius-lg: 2.4rem;
  --radius-xl: 3.2rem;
}

/* ---- 基础重置 ---- */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { font-size: 11px; -webkit-font-smoothing: antialiased; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ---- 背景渐变层 ---- */
.app-bg {
  position: fixed;
  inset: 0;
  background: var(--bg-gradient);
  z-index: -1;
}
.app-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -30%;
  width: 80%;
  height: 60%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.app-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -20%;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(123,97,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   顶部Header（橙色渐变 + 搜索栏）
   ============================================================ */
.app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #FF4E2C 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.2rem 1.6rem 1.2rem;
  box-shadow: 0 4px 20px rgba(255,107,53,0.25);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  min-height: 3.2rem;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.hamburger-btn {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s;
}
.hamburger-btn:active { background: rgba(255,255,255,0.35); transform: scale(0.95); }
.hamburger-btn svg {
  width: 1.8rem; height: 1.8rem;
  stroke: #fff; stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.store-avatar {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.store-avatar svg {
  width: 1.6rem; height: 1.6rem;
  stroke: #fff; stroke-width: 1.8; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.header-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: 50%; transform: translateX(-50%);
  max-width: 50%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 0.8rem; }
.header-notify-btn {
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.header-notify-btn:active { background: rgba(255,255,255,0.35); transform: scale(0.95); }
.header-notify-btn svg { width: 1.8rem; height: 1.8rem; stroke: #fff; stroke-width: 2; fill: none; }
.notify-dot {
  position: absolute; top: -0.2rem; right: -0.2rem;
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: var(--danger);
  border: 2px solid #fff;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* ---- 搜索栏 ---- */
.search-bar {
  position: relative;
  width: 100%;
}
.search-bar input {
  width: 100%;
  height: 4.4rem;
  border-radius: 100px;
  border: none;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  padding: 0 1.6rem 0 4.2rem;
  font-size: 1.5rem;
  color: #fff;
  -webkit-appearance: none;
  transition: all 0.2s;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.6); }
.search-bar input:focus {
  outline: none;
  background: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.search-bar .search-icon {
  position: absolute;
  left: 1.4rem; top: 50%;
  transform: translateY(-50%);
  width: 1.8rem; height: 1.8rem;
  stroke: rgba(255,255,255,0.7); stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  pointer-events: none;
}
.search-bar .clear-btn {
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.search-bar .clear-btn.show { opacity: 1; pointer-events: auto; }
.search-bar .clear-btn svg {
  width: 1.2rem; height: 1.2rem;
  stroke: #fff; stroke-width: 2.5; fill: none;
}

/* ============================================================
   底部导航栏
   ============================================================ */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 5.6rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}
/* 底部导航红点 */
.bottom-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  height: 100%;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  position: relative;
}
.bottom-tab .nav-dot {
  position: absolute;
  top: 0.4rem;
  right: calc(50% - 1.8rem);
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.4rem;
  border-radius: 100px;
  background: var(--danger);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(239,68,68,0.3);
  animation: pulse 2s ease-in-out infinite;
}
.bottom-tab .nav-dot.show { display: flex; }
.bottom-tab .label {
  font-size: 1.1rem;
  font-weight: 500;
}
.bottom-tab.active {
  color: var(--primary);
}
.bottom-tab:active { transform: scale(0.92); }

/* ============================================================
   侧边抽屉
   ============================================================ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 30rem; max-width: 85vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}
.drawer.show { transform: translateX(0); }
.drawer-header {
  flex-shrink: 0;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #FF4E2C 100%);
  padding: 2.4rem 2rem 2rem;
  color: #fff;
  border-radius: 0 0 var(--radius-lg) 0;
}
.drawer-close {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-bottom: 1.6rem;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
}
.drawer-close:active { background: rgba(255,255,255,0.35); transform: scale(0.95); }
.drawer-close svg { width: 1.6rem; height: 1.6rem; stroke: #fff; stroke-width: 2; fill: none; }
.drawer-header-info { display: flex; align-items: center; gap: 1.2rem; }
.drawer-avatar {
  width: 5.6rem; height: 5.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.drawer-avatar svg { width: 2.6rem; height: 2.6rem; stroke: #fff; stroke-width: 1.5; fill: none; }
.drawer-avatar {
  position: relative;
  cursor: pointer;
}
.avatar-edit-badge {
  position: absolute;
  bottom: 0; right: 0;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.drawer-header-name { font-size: 1.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.drawer-header-region { font-size: 1.2rem; opacity: 0.9; }

.drawer-body { flex: 1; overflow-y: auto; padding: 1.6rem 0; }
.drawer-info { padding: 0 2rem; }
.drawer-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 1.4rem;
}
.drawer-info-row .label { color: var(--text-muted); }
.drawer-info-row .value { color: var(--text); font-weight: 600; }

.drawer-section { padding: 1.6rem 2rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.drawer-section-title {
  font-size: 1.5rem; font-weight: 700; color: var(--text);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.drawer-section-title svg { width: 2rem; height: 2rem; stroke: var(--primary); stroke-width: 1.8; fill: none; }

.drawer-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.drawer-stat {
  text-align: center;
  padding: 1.4rem 0.4rem;
  background: linear-gradient(135deg, #FFF5EE, #FFF0E6);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.drawer-stat:active { transform: scale(0.96); }
.drawer-stat:hover { border-color: var(--primary-light); box-shadow: var(--shadow-glow); }
.drawer-stat .num { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.3rem; }
.drawer-stat .txt { font-size: 1.1rem; color: var(--text-muted); }

.drawer-menu { padding: 0.8rem 2rem; }
.drawer-menu-item {
  display: flex; align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  cursor: pointer; transition: all 0.15s;
}
.drawer-menu-item:last-child { border-bottom: none; }
.drawer-menu-item svg { width: 2.2rem; height: 2.2rem; stroke: var(--primary); stroke-width: 1.8; fill: none; margin-right: 1.2rem; flex-shrink: 0; }
.drawer-menu-item .text { flex: 1; font-size: 1.5rem; color: var(--text); font-weight: 500; }
.drawer-menu-item .arrow svg { width: 1.6rem; height: 1.6rem; stroke: var(--text-muted); stroke-width: 2; }

/* ============================================================
   玻璃卡片
   ============================================================ */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--card-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.glass-card:active { transform: scale(0.98); }

.card-title {
  font-size: 1.8rem; font-weight: 700; color: var(--text);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
}
.card-title .more {
  font-size: 1.3rem; color: var(--primary); font-weight: 500;
}

/* ============================================================
   按钮
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 4.4rem; padding: 0 2.4rem;
  border-radius: 100px;
  font-size: 1.4rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none; gap: 0.6rem;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.btn-primary:active { box-shadow: 0 2px 8px rgba(255,107,53,0.25); }
.btn-success { background: linear-gradient(135deg, #34D399, var(--success)); color: #fff; }
.btn-warning { background: linear-gradient(135deg, #FBBF24, var(--warning)); color: #fff; }
.btn-danger { background: linear-gradient(135deg, #F87171, var(--danger)); color: #fff; }
.btn-default { background: #F3F4F6; color: var(--text-secondary); }
.btn-block { width: 100%; }
.btn-group { display: flex; gap: 1rem; }
.btn-group .btn { flex: 1; }
.btn svg { width: 1.6rem; height: 1.6rem; stroke: currentColor; stroke-width: 2; fill: none; }

/* ============================================================
   标签
   ============================================================ */
.tag {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 1.2rem; font-weight: 600;
}
.tag-primary { background: rgba(255,107,53,0.1); color: var(--primary); }
.tag-success { background: rgba(16,185,129,0.1); color: var(--success); }
.tag-warning { background: rgba(255,107,53,0.1); color: #FF6B35; }
.tag-overdue { background: rgba(185,28,28,0.1); color: #B91C1C; }
.tag-danger { background: rgba(239,68,68,0.1); color: var(--danger); }
.tag-gray { background: #F3F4F6; color: var(--text-muted); }

/* ============================================================
   5类返图分类卡片
   ============================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  padding: 0 1.6rem;
  margin-top: 1.2rem;
}
.category-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.4rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 0.4rem;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  opacity: 0;
  transition: opacity 0.2s;
}
.category-card:hover::before, .category-card:active::before { opacity: 1; }
.category-card:active { transform: scale(0.96) translateY(2px); }
.category-card .icon-wrap {
  width: 5.2rem; height: 5.2rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255,107,53,0.12), rgba(255,107,53,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.2s;
}
.category-card:hover .icon-wrap { background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.08)); }
.category-card .icon-wrap svg { width: 2.4rem; height: 2.4rem; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.category-card .name { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.category-card .count { font-size: 1.3rem; color: var(--primary); font-weight: 600; }

/* ============================================================
   区域卡片（运营主管首页）
   ============================================================ */
.region-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding: 0 1.6rem;
  margin-top: 1.2rem;
}
.region-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  display: flex; align-items: center; gap: 1.6rem;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  position: relative; overflow: hidden;
}
.region-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0.4rem;
  background: linear-gradient(180deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.region-card:active { transform: scale(0.98); }
.region-card .icon-wrap {
  width: 5rem; height: 5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(123,97,255,0.15), rgba(123,97,255,0.05));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.region-card .icon-wrap svg { width: 2.4rem; height: 2.4rem; stroke: var(--accent); stroke-width: 1.8; fill: none; }
.region-card .content { flex: 1; }
.region-card .name { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.region-card .desc { font-size: 1.3rem; color: var(--text-muted); }
.region-card .arrow svg { width: 2rem; height: 2rem; stroke: var(--text-muted); stroke-width: 2; fill: none; }

/* ============================================================
   列表项
   ============================================================ */
.list-item {
  display: flex; align-items: flex-start;
  padding: 1.6rem;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.2s;
}
.list-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.list-item:active { transform: scale(0.98); box-shadow: var(--shadow-md); }
.list-item .thumb {
  width: 5.2rem; height: 5.2rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(255,107,53,0.04));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-right: 1.2rem;
}
.list-item .thumb svg { width: 2.4rem; height: 2.4rem; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.list-item .content { flex: 1; min-width: 0; }
.list-item .title { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-item .desc { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 0.8rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.list-item .meta { display: flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; flex-wrap: wrap; }

/* ============================================================
   返图详情页
   ============================================================ */
.detail-section {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  margin: 1.2rem 1.6rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.detail-row { display: flex; padding: 1.2rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.detail-row:last-child { border-bottom: none; }
.detail-row .label { width: 8rem; color: var(--text-muted); font-size: 1.4rem; flex-shrink: 0; }
.detail-row .value { flex: 1; color: var(--text); font-size: 1.4rem; font-weight: 600; }

/* 参考图片 */
.ref-images { display: flex; gap: 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.8rem; margin: 1rem -0.5rem; }
.ref-images::-webkit-scrollbar { display: none; }
.ref-image {
  flex-shrink: 0; width: 14rem; height: 14rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FFE8D6, #FFD4B8);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,107,53,0.2);
  position: relative; overflow: hidden;
}
.ref-image .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: #fff; font-size: 1.1rem; font-weight: 600;
  text-align: center;
}
.ref-image svg { width: 3rem; height: 3rem; stroke: var(--primary); stroke-width: 1.5; fill: none; }

/* 标准说明 */
.standard-box {
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(123,97,255,0.04));
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-top: 1rem;
  border: 1px solid rgba(255,107,53,0.1);
}
.standard-box .title {
  font-size: 1.4rem; font-weight: 700; color: var(--primary);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.standard-box .title svg { width: 1.8rem; height: 1.8rem; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.standard-box .content { font-size: 1.3rem; color: var(--text-secondary); line-height: 1.8; }

/* 驳回区域 */
.reject-box {
  background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.03));
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-top: 1rem;
  border: 1.5px solid rgba(239,68,68,0.15);
}
.reject-box .title { font-size: 1.5rem; font-weight: 700; color: var(--danger); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
.reject-box .title svg { width: 1.8rem; height: 1.8rem; stroke: var(--danger); stroke-width: 1.8; fill: none; }
.reject-box .content { font-size: 1.3rem; color: var(--danger); line-height: 1.6; }

/* 上传区域 */
.upload-area {
  border: 2px dashed rgba(255,107,53,0.3);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.02));
  margin-top: 1.2rem;
}
.upload-area:active { border-color: var(--primary); background: rgba(255,107,53,0.08); }
.upload-area svg { width: 4rem; height: 4rem; stroke: var(--primary); stroke-width: 1.5; fill: none; margin-bottom: 1rem; }
.upload-area .text { font-size: 1.4rem; font-weight: 600; }
.upload-area .sub { font-size: 1.2rem; color: var(--primary-light); margin-top: 0.4rem; }

/* 已提交图片 */
.submitted-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.2rem; }
.submitted-images .img-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #FFE8D6, #FFD4B8);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,107,53,0.15);
}
.submitted-images .img-placeholder svg { width: 2.8rem; height: 2.8rem; stroke: var(--primary); stroke-width: 1.5; fill: none; }

/* ============================================================
   进度条（运营端）
   ============================================================ */
.progress-bar {
  width: 100%; height: 0.8rem;
  background: #F3F4F6;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 0.8rem;
}
.progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 100px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-info { display: flex; justify-content: space-between; align-items: center; margin-top: 0.6rem; font-size: 1.2rem; color: var(--text-muted); }

/* ============================================================
   门店进度卡片（运营端）
   ============================================================ */
.store-progress-item {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin: 1.2rem 1.6rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  cursor: pointer; transition: all 0.2s;
}
.store-progress-item:active { transform: scale(0.98); }
.store-progress-item .header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.store-progress-item .name { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.store-progress-item .meta { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 1.2rem; }

/* ============================================================
   类型筛选标签
   ============================================================ */
.type-filter {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.5rem;
  margin-bottom: 1.2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.type-filter::-webkit-scrollbar { display: none; }
.type-filter .filter-tag {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 1.2rem; font-weight: 500;
  background: var(--card-bg);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.type-filter .filter-tag.active {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(255,107,53,0.3);
}

/* ============================================================
   统计网格
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.stat-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.stat-card .value { font-size: 2.8rem; font-weight: 800; color: var(--primary); margin-bottom: 0.4rem; }
.stat-card .label { font-size: 1.3rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   整改通知
   ============================================================ */
.rectify-item {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin: 1.2rem 1.6rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.rectify-item .header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.rectify-item .title { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.rectify-item .reason {
  background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.03));
  border-left: 4px solid var(--danger);
  color: var(--danger);
  padding: 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.3rem; line-height: 1.6;
  margin: 1rem 0;
}

/* 审核记录项 */
.audit-item {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin: 1.2rem 1.6rem;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.2s;
}
.audit-item:active { transform: scale(0.98); }
.audit-item .header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.audit-item .title { font-size: 1.6rem; font-weight: 700; color: var(--text); }
.audit-item .meta { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.audit-item .remark {
  background: #F9FAFB;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   表单
   ============================================================ */
.form-group { margin-bottom: 1.6rem; }
.form-group label { display: block; font-size: 1.3rem; color: var(--text-secondary); margin-bottom: 0.6rem; font-weight: 500; }
.form-group input {
  width: 100%; height: 4.6rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 0 1.4rem;
  font-size: 1.4rem;
  transition: all 0.2s;
  background: #FAFAFA;
  -webkit-appearance: none;
  color: var(--text);
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

/* 单选按钮样式 */
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E5E7EB;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.4rem;
  color: var(--text);
}
.radio-label:hover { border-color: var(--primary-light); background: rgba(255,107,53,0.03); }
.radio-label input[type="radio"] {
  width: 2rem; height: 2rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   弹窗
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.show { display: flex; opacity: 1; }
.modal {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  width: 85%; max-width: 36rem;
  max-height: 90vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
}
.modal-scroll {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.4rem 2rem 1.2rem;
}
.modal-footer {
  flex-shrink: 0;
  padding: 0 2rem 2rem;
}
.modal-overlay.show .modal { transform: scale(1); }
.modal-footer {
  flex-shrink: 0;
  padding: 0 2rem 2rem;
  display: flex;
  gap: 1rem;
}
.modal-footer .btn { flex: 1; }

/* ============================================================
   空状态
   ============================================================ */
.empty {
  text-align: center;
  padding: 6rem 2rem;
  color: var(--text-muted);
}
.empty .empty-icon-wrap {
  width: 12rem;
  height: 12rem;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
  border-radius: 50%;
  position: relative;
}
.empty .empty-icon-wrap svg {
  width: 5rem;
  height: 5rem;
  stroke: #9CA3AF;
  stroke-width: 1.5;
  fill: none;
  animation: floatEmpty 3s ease-in-out infinite;
}
.empty .empty-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 6rem;
  height: 0.6rem;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  animation: shadowPulse 3s ease-in-out infinite;
}
.empty .text {
  font-size: 1.6rem;
  color: #6B7280;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.empty .sub {
  font-size: 1.3rem;
  color: #9CA3AF;
}

@keyframes floatEmpty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(0.8); opacity: 0.3; }
}

/* ============================================================
   动画
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-enter { animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, -40%) scale(0.9); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* ============================================================
   Toast
   ============================================================ */
.toast-msg {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 1.4rem 3rem;
  border-radius: 100px;
  font-size: 1.4rem;
  z-index: 9999;
  animation: toastIn 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* ============================================================
   登录页
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 40%, #FF4E2C 100%);
  position: relative;
}
.login-page::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(123,97,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.login-header {
  padding: 5rem 2.4rem 2.4rem;
  text-align: center; color: #fff;
  position: relative; z-index: 1;
}
.login-header .logo {
  width: 8rem; height: 8rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 2.4rem;
  margin: 0 auto 1.6rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
}
.login-header .logo svg { width: 4rem; height: 4rem; stroke: #fff; stroke-width: 1.5; fill: none; }
.login-header h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 0.6rem; }
.login-header p { font-size: 1.3rem; opacity: 0.9; }

.login-card {
  flex: 1;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 3.2rem 2.4rem;
  position: relative; z-index: 1;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.login-card .title { font-size: 2.2rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.login-card .subtitle { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 2.4rem; }
.login-form .form-group { margin-bottom: 1.8rem; }
.login-form .form-group label { font-size: 1.3rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 0.6rem; display: block; }
.login-form .form-group input {
  width: 100%; height: 4.8rem;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-sm);
  padding: 0 1.6rem;
  font-size: 1.4rem;
  background: #FAFAFA;
  transition: all 0.2s;
  -webkit-appearance: none;
  color: var(--text);
}
.login-form .form-group input:focus { outline: none; border-color: var(--primary-light); background: #fff; box-shadow: 0 0 0 3px rgba(255,107,53,0.1); }
.login-form .form-group .error { color: var(--danger); font-size: 1.2rem; margin-top: 0.4rem; display: none; }
.login-form .form-group.has-error input { border-color: var(--danger); }
.login-form .form-group.has-error .error { display: block; }

.btn-login {
  width: 100%; height: 4.8rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: #fff; border: none;
  border-radius: 100px;
  font-size: 1.5rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
  -webkit-appearance: none;
}
.btn-login:active { transform: scale(0.98); box-shadow: 0 2px 12px rgba(255,107,53,0.25); }

.login-tips {
  margin-top: 2.4rem;
  padding: 1.6rem;
  background: linear-gradient(135deg, rgba(255,107,53,0.06), rgba(123,97,255,0.04));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,107,53,0.1);
}
.login-tips h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 1rem; font-weight: 600; }
.login-tips .tip-item {
  font-size: 1.2rem; color: var(--primary);
  margin-bottom: 0.6rem;
  display: flex; align-items: center;
  cursor: pointer; padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,107,53,0.1);
  opacity: 0.85;
}
.login-tips .tip-item:last-child { border-bottom: none; margin-bottom: 0; }

/* ============================================================
   滚动条隐藏
   ============================================================ */
::-webkit-scrollbar { width: 0; height: 0; }

/* ============================================================
   主容器修复（防止Header遮挡）
   ============================================================ */
.app-main { padding-top: 13rem; padding-bottom: 7rem; min-height: 100vh; }

/* ============================================================
   首页统计条
   ============================================================ */
.home-stats-bar {
  display: flex;
  gap: 1.2rem;
  padding: 0 1.6rem;
  margin-bottom: 1.2rem;
}
.home-stat-chip {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.home-stat-chip:nth-child(1) {
  background: linear-gradient(135deg, #FFF5EE, #FFEDE0);
  border: 1px solid rgba(255,107,53,0.15);
}
.home-stat-chip:nth-child(2) {
  background: linear-gradient(135deg, #F0FDF4, #ECFDF5);
  border: 1px solid rgba(16,185,129,0.15);
}
.home-stat-chip:nth-child(3) {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid rgba(59,130,246,0.15);
}
.home-stat-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.home-stat-chip:active { transform: scale(0.96); }
.home-stat-chip .num { font-size: 2.2rem; font-weight: 800; }
.home-stat-chip:nth-child(1) .num { color: var(--primary); }
.home-stat-chip:nth-child(2) .num { color: var(--success); }
.home-stat-chip:nth-child(3) .num { color: #3B82F6; }
.home-stat-chip .txt { font-size: 1.1rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ============================================================
   首页区域（催办/本周/本月/临时/逾期）
   ============================================================ */
.home-section {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin: 1.4rem 1.6rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.home-section-header .title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.home-section-header .title .dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.home-section-header .title .dot.urgent { background: var(--danger); box-shadow: 0 0 6px rgba(239,68,68,0.4); }
.home-section-header .title .dot.normal { background: var(--primary); }
.home-section-header .title .dot.overdue { background: var(--danger); }
.home-section-header .title .dot.temp { background: var(--accent); }
.home-section-header .more { font-size: 1.2rem; color: var(--text-muted); }

/* 催办卡片（紧急） */
.urgent-card {
  background: linear-gradient(135deg, rgba(239,68,68,0.06), rgba(239,68,68,0.02));
  border: 1.5px solid rgba(239,68,68,0.15);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.urgent-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(239,68,68,0.15); }
.urgent-card:active { transform: scale(0.98); }
.urgent-card .title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.urgent-card .title { font-size: 1.6rem; font-weight: 600; color: var(--text); }
.urgent-card .badge { font-size: 1.2rem; font-weight: 600; padding: 0.2rem 0.8rem; border-radius: 100px; }
.urgent-card .badge.danger { background: rgba(239,68,68,0.1); color: var(--danger); }
.urgent-card .badge.warning { background: rgba(245,158,11,0.1); color: var(--warning); }
.urgent-card .progress-bar { margin: 0.8rem 0; }
.urgent-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 1.3rem; color: var(--text-muted); }
.urgent-card .meta .time { color: var(--danger); font-weight: 600; }

/* 普通卡片 */
.normal-card {
  background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.02));
  border: 1.5px solid rgba(255,107,53,0.1);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.normal-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(255,107,53,0.12); }
.normal-card:active { transform: scale(0.98); }
.normal-card .title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.normal-card .title { font-size: 1.6rem; font-weight: 600; color: var(--text); }
.normal-card .tag-type { font-size: 1.2rem; font-weight: 600; padding: 0.2rem 0.8rem; border-radius: 100px; background: rgba(255,107,53,0.1); color: var(--primary); }
.normal-card .desc { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.normal-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 1.3rem; color: var(--text-muted); }

/* 卡片底部操作按钮 */
.card-actions { display: flex; justify-content: flex-end; margin-top: 0.8rem; }
.card-btn-go {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.4rem; border-radius: 100px;
  font-size: 1.3rem; font-weight: 600;
  border: 1.5px solid var(--primary);
  background: rgba(255,107,53,0.08); color: var(--primary);
  cursor: pointer; transition: all 0.2s;
}
.card-btn-go:active { background: var(--primary); color: #fff; transform: scale(0.96); }
.card-btn-go svg { width: 1.4rem; height: 1.4rem; stroke: currentColor; stroke-width: 2; fill: none; }

/* 逾期卡片（补交） */
.overdue-card {
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(239,68,68,0.03));
  border: 2px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.overdue-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(239,68,68,0.2); }
.overdue-card:active { transform: scale(0.98); }
.overdue-card .title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.overdue-card .title { font-size: 1.6rem; font-weight: 700; color: var(--danger); }
.overdue-card .overdue-days { font-size: 1.4rem; font-weight: 700; color: var(--danger); }
.overdue-card .desc { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.overdue-card .actions { display: flex; gap: 0.8rem; }

/* 大提交按钮 */
.btn-submit-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  height: 4.8rem;
  padding: 0 2.4rem;
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-appearance: none;
  background: linear-gradient(135deg, #FF4E2C, #FF6B35);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,78,44,0.4);
  width: 100%;
}
.btn-submit-large:active { transform: scale(0.96); box-shadow: 0 2px 12px rgba(255,78,44,0.3); }
.btn-submit-large svg { width: 1.8rem; height: 1.8rem; stroke: #fff; stroke-width: 2; fill: none; }

/* 补交按钮 */
.btn-resubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 3.6rem;
  padding: 0 1.6rem;
  border-radius: 100px;
  font-size: 1.3rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-appearance: none;
  background: linear-gradient(135deg, var(--danger), #F87171);
  color: #fff;
  box-shadow: 0 2px 12px rgba(239,68,68,0.3);
}
.btn-resubmit:active { transform: scale(0.96); }

/* ============================================================
   返图大厅（时间轴）
   ============================================================ */
.timeline {
  padding: 0 1.6rem;
}
.timeline-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: var(--radius-sm);
}
.timeline-item:hover { background: rgba(255,107,53,0.03); }
.timeline-item:last-child { border-bottom: none; }
.timeline-item .time-col {
  width: 5rem;
  flex-shrink: 0;
  text-align: center;
}
.timeline-item .time-col .day { font-size: 1.8rem; font-weight: 700; color: var(--text); }
.timeline-item .time-col .month { font-size: 1.1rem; color: var(--text-muted); }
.timeline-item .time-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.timeline-item .time-line .dot {
  width: 1rem; height: 1rem;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
}
.timeline-item .time-line .line {
  width: 0.2rem; flex: 1;
  background: linear-gradient(180deg, var(--primary-light), transparent);
}
.timeline-item .content-col {
  flex: 1;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline-item .content-col:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.timeline-item .content-col:active { transform: scale(0.98); }
.timeline-item .content-col .title { font-size: 1.5rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.timeline-item .content-col .meta { display: flex; gap: 0.6rem; font-size: 1.2rem; flex-wrap: wrap; }

/* ============================================================
   运营端门店状态
   ============================================================ */
.store-status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1.6rem;
  margin-bottom: 1.2rem;
}
.store-status-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  cursor: pointer;
  transition: all 0.2s;
}
.store-status-card:active { transform: scale(0.96); }
.store-status-card .num { font-size: 2.4rem; font-weight: 800; margin-bottom: 0.3rem; }
.store-status-card .num.not-started { color: var(--text-muted); }
.store-status-card .num.in-progress { color: var(--primary); }
.store-status-card .num.overdue { color: var(--danger); }
.store-status-card .num.redo { color: var(--warning); }
.store-status-card .label { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   响应式
   ============================================================ */
@media (min-width: 400px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .store-status-grid { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================================
   卡片入场动画（交错动画）
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-enter > * {
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.page-enter > *:nth-child(1) { animation-delay: 0.05s; }
.page-enter > *:nth-child(2) { animation-delay: 0.1s; }
.page-enter > *:nth-child(3) { animation-delay: 0.15s; }
.page-enter > *:nth-child(4) { animation-delay: 0.2s; }
.page-enter > *:nth-child(5) { animation-delay: 0.25s; }
.page-enter > *:nth-child(6) { animation-delay: 0.3s; }
.page-enter > *:nth-child(7) { animation-delay: 0.35s; }

/* 列表项入场 */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.timeline-item {
  animation: slideInRight 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.timeline-item:nth-child(1) { animation-delay: 0.05s; }
.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.15s; }
.timeline-item:nth-child(4) { animation-delay: 0.2s; }
.timeline-item:nth-child(5) { animation-delay: 0.25s; }

/* 首页卡片交错 */
.home-section .urgent-card,
.home-section .normal-card,
.home-section .overdue-card {
  animation: fadeInUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.home-section .urgent-card:nth-child(1) { animation-delay: 0.05s; }
.home-section .urgent-card:nth-child(2) { animation-delay: 0.1s; }
.home-section .normal-card:nth-child(1) { animation-delay: 0.05s; }
.home-section .normal-card:nth-child(2) { animation-delay: 0.1s; }

/* ============================================================
   快捷操作栏（底部）
   ============================================================ */
.quick-actions {
  display: flex;
  gap: 1rem;
  padding: 0 1.6rem;
  margin-bottom: 1.2rem;
}
.quick-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-action-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.quick-action-btn:active { transform: scale(0.96); }
.quick-action-btn .icon {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-action-btn .icon svg { width: 1.6rem; height: 1.6rem; stroke-width: 2; fill: none; }
.quick-action-btn .text { font-size: 1.2rem; font-weight: 600; color: var(--text); }

/* ============================================================
   帮助中心
   ============================================================ */
.help-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  margin: 1.2rem 1.6rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.help-card .title { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 1.2rem; }
.help-item {
  display: flex; align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.2s;
}
.help-item:last-child { border-bottom: none; }
.help-item:hover { background: rgba(255,107,53,0.03); }
.help-item .icon { width: 3.6rem; height: 3.6rem; border-radius: 50%; background: rgba(255,107,53,0.1); display: flex; align-items: center; justify-content: center; margin-right: 1.2rem; flex-shrink: 0; }
.help-item .icon svg { width: 1.8rem; height: 1.8rem; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.help-item .content { flex: 1; }
.help-item .content .name { font-size: 1.4rem; font-weight: 600; color: var(--text); }
.help-item .content .desc { font-size: 1.2rem; color: var(--text-muted); }
.help-item .arrow { width: 2rem; height: 2rem; stroke: var(--text-muted); stroke-width: 2; fill: none; }

/* ============================================================
   骨架屏加载
   ============================================================ */
@keyframes skeletonShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: skeletonShine 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}
.skeleton-card {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin: 1.2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
}
.skeleton-card .skeleton-line { height: 1.6rem; margin-bottom: 1.2rem; border-radius: 0.4rem; }
.skeleton-card .skeleton-line.short { width: 60%; }
.skeleton-card .skeleton-line.thin { height: 1rem; }
.skeleton-chip {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem;
  text-align: center;
  height: 7.2rem;
}
.skeleton-grid { display: flex; gap: 1.2rem; padding: 0 1.6rem; margin-bottom: 1.2rem; }

/* ============================================================
   下拉刷新
   ============================================================ */
.pull-refresh {
  display: flex; align-items: center; justify-content: center;
  height: 0; overflow: hidden;
  transition: height 0.3s;
}
.pull-refresh.show { height: 4rem; }
.pull-refresh svg { width: 2rem; height: 2rem; stroke: var(--primary); stroke-width: 2; fill: none; animation: spin 1s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================================================
   数字增长动画
   ============================================================ */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.num-anim { animation: countUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both; }

/* ============================================================
   拍照/相册选择按钮
   ============================================================ */
.photo-options {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.photo-option-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.6rem;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(255,107,53,0.25);
  background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,107,53,0.02));
  cursor: pointer;
  transition: all 0.2s;
}
.photo-option-btn:hover { border-color: var(--primary); background: rgba(255,107,53,0.08); }
.photo-option-btn:active { transform: scale(0.96); }
.photo-option-btn svg { width: 2.4rem; height: 2.4rem; stroke: var(--primary); stroke-width: 1.8; fill: none; }
.photo-option-btn .label { font-size: 1.3rem; font-weight: 600; color: var(--primary); }

/* ============================================================
   批量操作栏
   ============================================================ */
.batch-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.6rem;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.batch-bar .select-info { font-size: 1.3rem; color: var(--text-secondary); font-weight: 500; }
.batch-bar .batch-actions { display: flex; gap: 0.8rem; }
.batch-bar .batch-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.batch-bar .batch-btn-approve { background: rgba(16,185,129,0.1); color: var(--success); }
.batch-bar .batch-btn-approve:active { background: var(--success); color: #fff; }
.batch-bar .batch-btn-reject { background: rgba(239,68,68,0.1); color: var(--danger); }
.batch-bar .batch-btn-reject:active { background: var(--danger); color: #fff; }

/* 审核项选择框 */
.audit-item .select-checkbox {
  width: 2rem; height: 2rem;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-right: 1rem;
}

/* ============================================================
   进度条平滑动画增强
   ============================================================ */
.progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.progress-bar .fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}
@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
