/* =========================================================
   报销系统 · 现代页面样式（登录 / 功能中心 / 利润表）
   设计语言：留白充足、圆角卡片、柔和阴影、品牌蓝紫渐变
   ========================================================= */

:root {
  --bg: #f7f7f4;
  --card: #ffffff;
  --line: #ececec;
  --text: #1b1d21;
  --sub: #72777f;
  --primary: #ff7a00;
  --primary-d: #df6300;
  --primary-soft: #fff4ea;
  --grad: linear-gradient(135deg, #ff8a1e 0%, #ff6a00 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,122,0,.12), rgba(255,106,0,.12));
  --ok: #16a34a;
  --err: #f4554c;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(30,20,10,.04), 0 8px 28px rgba(30,20,10,.06);
  --shadow-lg: 0 12px 36px rgba(255,122,0,.20);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* ============ 登录页 ============ */
.auth-wrap { display: flex; min-height: 100vh; }

.auth-aside {
  position: relative;
  flex: 1.05;
  background: var(--grad);
  color: #fff;
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.auth-aside::before,
.auth-aside::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .5;
}
.auth-aside::before { width: 320px; height: 320px; background: rgba(255,255,255,.16); top: -90px; right: -70px; }
.auth-aside::after  { width: 260px; height: 260px; background: rgba(255,255,255,.12); bottom: -80px; left: -60px; }

.auth-brand { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.brand-logo {
  height: 42px; width: auto;
  object-fit: contain;
}
.auth-brand h1 { font-size: 19px; margin: 0; font-weight: 600; letter-spacing: .5px; }

.auth-hero { position: relative; z-index: 1; max-width: 440px; }
.hero-text h2 { font-size: 32px; line-height: 1.3; margin: 0 0 14px; font-weight: 700; }
.hero-text p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.85); margin: 0 0 28px; }

.auth-feats { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.auth-feats li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: rgba(255,255,255,.92); }
.auth-feats .fi {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 15px;
}

.auth-foot { position: relative; z-index: 1; font-size: 12.5px; color: rgba(255,255,255,.7); }

.auth-main {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  background: #fff;
}
.auth-card { width: 380px; max-width: 100%; position: relative; }
.card-mascot {
  position: absolute; top: -48px; right: -12px;
  width: 100px; height: auto; object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.1));
  pointer-events: none;
}
.auth-card h3 { font-size: 24px; margin: 0 0 6px; font-weight: 700; }
.auth-card .lead { color: var(--sub); font-size: 14px; margin: 0 0 28px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--sub); margin-bottom: 7px; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .pre { position: absolute; left: 14px; font-size: 15px; color: var(--sub); pointer-events: none; }
.input-wrap input {
  width: 100%; padding: 13px 14px 13px 40px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 15px; color: var(--text); background: #fbfcfe;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.input-wrap input:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(255,122,0,.14); outline: none;
}
.input-wrap.code input { padding-right: 116px; }

.btn-code {
  position: absolute; right: 6px; top: 6px; bottom: 6px;
  border: none; background: var(--primary-soft); color: var(--primary);
  font-size: 13.5px; font-weight: 600; padding: 0 14px; border-radius: 9px; cursor: pointer;
  transition: .15s;
}
.btn-code:hover:not(:disabled) { background: #dde6ff; }
.btn-code:disabled { color: var(--sub); background: #f0f2f6; cursor: not-allowed; }

.btn-primary {
  width: 100%; padding: 14px; margin-top: 6px;
  border: none; border-radius: 12px; cursor: pointer;
  background: var(--grad); color: #fff; font-size: 15.5px; font-weight: 600;
  box-shadow: var(--shadow-lg); transition: transform .12s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 44px rgba(47,87,224,.26); }
.btn-primary:active { transform: translateY(0); }

.auth-msg { font-size: 13.5px; min-height: 20px; margin-top: 14px; text-align: center; }
.auth-msg.err { color: var(--err); }
.auth-msg.ok { color: var(--ok); }
.auth-note { margin-top: 22px; font-size: 12.5px; color: var(--sub); text-align: center; line-height: 1.6; }

/* ============ 顶部栏（功能页 / 利润表页 共用） ============ */
.pg-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 28px; background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30;
}
/* 左侧用户区（头像 + 用户名），桌面端显示，移动端隐藏 */
.top-user { display: flex; align-items: center; gap: 10px; }
.tu-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ff9a40);
  color: #fff; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tu-meta { display: flex; flex-direction: column; line-height: 1.25; }
.tu-name { font-size: 14px; font-weight: 600; }
.tu-tag {
  font-size: 11px; color: var(--primary-d); background: var(--primary-soft);
  padding: 1px 7px; border-radius: 9px; width: fit-content; margin-top: 2px;
}
/* 右侧聚簇：用户头像 + 菜单按钮 融合 */
.top-right-cluster { display: flex; align-items: center; gap: 10px; }
.pg-brand { display: flex; align-items: center; gap: 12px; }
.pg-brand .logo {
  width: 36px; height: 36px;
  object-fit: contain;
}
.pg-brand h1 { font-size: 16px; margin: 0; font-weight: 600; white-space: nowrap; }
.pg-brand .sub { margin: 1px 0 0; font-size: 12px; color: var(--sub); }

/* ====== pg 菜单触发按钮 ====== */
.pg-menu-toggle {
  display: flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 15px;
  border: 1px solid var(--line); border-radius: 20px;
  background: var(--card); cursor: pointer;
  transition: .18s; flex-shrink: 0;
}
.pg-menu-toggle:hover {
  border-color: rgba(255,122,0,.35);
  box-shadow: 0 2px 10px rgba(255,122,0,.10);
}
.pg-menu-toggle .pmt-label { font-size: 14px; font-weight: 500; color: var(--text); }
.pg-menu-toggle .pmt-arrow { font-size: 10px; color: var(--sub); transition: transform .22s; margin-left: 1px; }
.pg-menu-toggle.open .pmt-arrow { transform: rotate(180deg); }

/* 汉堡线（仅移动端可见） */
.pg-menu-toggle span {
  display: none; width: 18px; height: 2px; background: var(--text);
  border-radius: 2px; margin: 3px 0; transition: transform .22s, opacity .15s;
}

.pg-user { display: none; }

/* ====== pg 下拉菜单面板 ====== */
.pg-mobile-menu {
  display: none; z-index: 999;
  animation: pmm-slide .2s cubic-bezier(.16,1,.3,1);
}
.pg-mobile-menu.open { display: block; }
@keyframes pmm-slide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ---- 桌面端：右对齐紧凑卡片 ---- */
@media (min-width: 769px) {
  .pg-menu-toggle .pmt-label { display: inline; }
  .pg-menu-toggle .pmt-arrow { display: inline; }

  .pg-mobile-menu {
    position: absolute; right: 20px; top: 100%; margin-top: 8px;
    width: 240px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(30,20,10,.08);
    border-radius: 16px;
    box-shadow:
      0 4px 6px rgba(30,20,10,.04),
      0 12px 32px rgba(30,20,10,.08),
      0 0 0 1px rgba(255,255,255,.6) inset;
    padding: 6px;
  }
}

/* ---- 移动端：全宽毛玻璃面板 ---- */
@media (max-width: 768px) {
  .top-user { display: none; }
  .top-right-cluster { width: 100%; justify-content: space-between; gap: 12px; }
  .pg-menu-toggle {
    width: 38px; height: 38px; padding: 8px; border: none; border-radius: 8px;
    background: none; gap: 0;
  }
  .pg-menu-toggle:hover { background: rgba(0,0,0,.05); box-shadow: none; }
  .pg-menu-toggle .pmt-label { display: none; }
  .pg-menu-toggle .pmt-arrow { display: none; }
  .pg-menu-toggle span { display: block; }
  .pg-menu-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .pg-menu-toggle.open span:nth-child(2) { opacity: 0; }
  .pg-menu-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  .pg-mobile-menu {
    position: fixed; right: 0; left: 0; top: 52px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255,122,0,.15);
    box-shadow: 0 12px 40px rgba(30,20,10,.14);
    padding: 8px 0 16px;
  }
}

/* ====== pg 菜单项（通用） ====== */
.pg-mobile-menu a,
.pg-mobile-menu .pg-mm-item,
.pg-mobile-menu .pg-mm-name,
.pg-mobile-menu button {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 10px 14px;
  border: none; background: none; cursor: pointer;
  font-size: 14px; color: var(--text); transition: .15s;
  text-decoration: none; white-space: nowrap;
  border-radius: 10px;
}
.pg-mobile-menu a:hover,
.pg-mobile-menu .pg-mm-item:hover,
.pg-mobile-menu button:not(.pg-mm-logout):hover {
  background: rgba(255,122,0,.08); color: var(--primary);
}

/* 用户信息行 */
.pg-mobile-menu .pg-mm-name {
  color: var(--sub); font-weight: 600; cursor: default; font-size: 13px;
  padding: 6px 14px 2px; gap: 10px;
}
.pg-mobile-menu .pg-mm-name::before { content: '👤'; font-size: 16px; }
.pg-mobile-menu .pg-mm-name:hover { background: none; color: var(--sub); }

/* 分割线 */
.pg-mobile-menu .pg-mm-divider {
  height: 1px; background: var(--line);
  margin: 4px 10px;
}

/* 退出按钮 */
.pg-mobile-menu .pg-mm-logout {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 4px;
  padding: 10px 0; border-radius: 10px;
  background: linear-gradient(135deg, #fff0e8, #ffe8d8);
  color: #c44a00; font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(200,74,0,.15); cursor: pointer; transition: .15s;
}
.pg-mobile-menu .pg-mm-logout::before { content: '🚪'; font-size: 15px; }
.pg-mobile-menu .pg-mm-logout:hover { background: linear-gradient(135deg, #ffe5d5, #ffdcc8); }
.pg-mobile-menu .pg-mm-logout:active { transform: scale(.97); }
.pg-link { color: var(--primary); text-decoration: none; font-size: 13.5px; font-weight: 500; }
.pg-name { font-size: 13.5px; font-weight: 500; }
.pg-out {
  border: none; background: #f0f2f6; color: var(--text);
  padding: 7px 14px; border-radius: 9px; cursor: pointer; font-size: 13px; transition: .15s;
}
.pg-out:hover { background: #e6e9f0; }

/* ============ 通用内容容器 ============ */
.pg-main { max-width: 960px; margin: 28px auto; padding: 0 20px; }
.pg-greet { font-size: 22px; font-weight: 700; margin: 0 0 4px; display: flex; align-items: center; gap: 14px; }
.greet-mascot img { height: 64px; width: auto; object-fit: contain; }
.pg-greet .nm { color: var(--primary); }
.pg-sub { color: var(--sub); font-size: 14px; margin: 0 0 26px; }

/* ============ 功能中心卡片 ============ */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.feat-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); transition: transform .16s, box-shadow .16s, border-color .16s;
  position: relative;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,122,0,.4); }
.feat-card.locked { opacity: .6; }
.feat-card.locked:hover { transform: none; box-shadow: var(--shadow); border-color: var(--line); cursor: not-allowed; }
.feat-ic {
  width: 54px; height: 54px; border-radius: 15px; background: var(--grad-soft);
  display: grid; place-items: center; font-size: 26px; margin-bottom: 18px;
}
.feat-card h3 { font-size: 18px; margin: 0 0 8px; font-weight: 650; }
.feat-card p { font-size: 13.5px; color: var(--sub); line-height: 1.7; margin: 0; }
.feat-arrow { margin-top: 18px; color: var(--primary); font-size: 13.5px; font-weight: 600; }
.feat-lock { position: absolute; top: 22px; right: 22px; font-size: 13px; color: var(--sub); }
/* 预留 / 外链徽标 */
.feat-card.reserved { opacity: .92; }
.feat-badge {
  position: absolute; top: 22px; right: 22px; font-size: 12px;
  color: #8a6d3b; background: #fff3e0; border: 1px solid #ffd9a8;
  padding: 4px 10px; border-radius: 20px; font-weight: 600; white-space: nowrap;
}
.feat-badge.ext { color: var(--primary); background: var(--grad-soft); border-color: rgba(255,122,0,.35); }
.feat-arrow.soon { color: var(--sub); }
.feat-arrow.ext { color: var(--primary); }

/* ============ 利润表页 ============ */
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); margin-bottom: 18px;
}
.panel h3 { font-size: 16px; margin: 0 0 16px; font-weight: 650; }

/* ============ 利润表页（电商订单抓取风格）============ */
/* ===================== 利润表 · 投资人信 / 经营报告风 ===================== */
.pf-page { background: #ece6da; }
.pf-main { max-width: 920px; background: transparent; padding-bottom: 40px; }

/* 控制条（工具性，置于报告纸之外） */
.pf-toolbar {
  display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap;
  background: rgba(255,255,255,.72); border: 1px solid #e2dccd; border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 4px 16px rgba(40,30,15,.05); margin-bottom: 22px;
  backdrop-filter: saturate(160%) blur(6px);
}
.pf-field { display: flex; flex-direction: column; gap: 7px; }
.pf-field-label { font-size: 12px; font-weight: 600; color: #9a8f7a; letter-spacing: 1px; }
.pf-month {
  padding: 10px 14px; border: 1.5px solid #ddd5c4; border-radius: 10px; font-size: 14px;
  background: #fffdf8; color: #2a241b; min-width: 168px;
}
.pf-month:focus { border-color: #b5480a; box-shadow: 0 0 0 4px rgba(181,72,10,.12); outline: none; }
.pf-search-field { position: relative; flex: 1; min-width: 200px; }
.pf-search-ico { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 13px; opacity: .4; }
.pf-search {
  width: 100%; padding: 11px 14px 11px 38px; border: 1.5px solid #ddd5c4; border-radius: 10px;
  font-size: 14px; background: #fffdf8; transition: border-color .15s, box-shadow .15s;
}
.pf-search:focus { border-color: #b5480a; box-shadow: 0 0 0 4px rgba(181,72,10,.12); outline: none; }

/* 报告纸 */
.pf-paper {
  background: #fffdf8; border: 1px solid #e7e0d2; border-radius: 6px;
  box-shadow: 0 2px 4px rgba(40,30,15,.04), 0 20px 54px rgba(40,30,15,.12);
  padding: 44px 52px 40px; position: relative;
}
.pf-paper::before {
  content: ''; position: absolute; inset: 11px; border: 1px solid #efe9dc; border-radius: 3px; pointer-events: none;
}

/* 信件抬头 */
.pf-letterhead { margin-bottom: 28px; }
.pf-lh-rule { height: 0; border-top: 3px double #c9a96a; width: 100%; margin-bottom: 18px; opacity: .85; }
.pf-lh-top { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.pf-lh-brand { font-family: "Noto Serif SC","Songti SC","STSong",serif; font-weight: 700; letter-spacing: 3px; color: #2a241b; font-size: 15px; }
.pf-lh-doc { color: #9a8f7a; letter-spacing: 1px; }
.pf-lh-meta {
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap;
  margin-top: 14px; font-size: 12.5px; color: #8a8071;
}
.pf-lh-meta b { color: #2a241b; font-weight: 600; }
.pf-lh-title {
  font-family: "Noto Serif SC","Songti SC","STSong",serif; font-weight: 700;
  font-size: 27px; letter-spacing: 4px; color: #1f1a13; text-align: center; margin: 30px 0 0;
}
.pf-lh-salut {
  font-family: "Noto Serif SC","Songti SC","STSong",serif; font-size: 15px; color: #2a241b;
  text-align: left; margin: 26px 0 4px; letter-spacing: 1px;
}
.pf-lh-intro {
  font-family: "Noto Serif SC","Songti SC","STSong",serif; font-size: 14.5px; line-height: 2.05;
  color: #3a342b; text-align: justify; text-indent: 2em; margin: 0;
}

/* 关键指标（财报摘要） */
.pf-overview {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0;
  margin: 12px 0 30px; border: 1px solid #ece4d4; border-radius: 8px; overflow: hidden;
  background: #fffdf8;
}
.pf-ov-card {
  padding: 18px 18px 16px; position: relative; border-right: 1px solid #efe8da;
}
.pf-ov-card:last-child { border-right: none; }
.pf-ov-card .k { font-size: 12px; color: #9a8f7a; margin-bottom: 10px; font-weight: 600; letter-spacing: 1px; }
.pf-ov-card .v { font-family: "Noto Serif SC","Songti SC",Georgia,serif; font-size: 24px; font-weight: 700; letter-spacing: .5px; font-variant-numeric: tabular-nums; color: #2a241b; }
.pf-ov-card.income .v { color: #1d7a44; }
.pf-ov-card.cost .v { color: #2f5fb0; }
.pf-ov-card.expense .v { color: #b5480a; }
.pf-ov-card.profit { background: linear-gradient(180deg, #fff6ec, #fff1e2); }
.pf-ov-card.profit .v { color: #b5480a; }
.pf-ov-card.loss { background: linear-gradient(180deg, #fdeeee, #fbe3e3); }
.pf-ov-card.loss .v { color: #c0392b; }

/* 明细章节 */
.pf-tablecard { padding: 4px 0 0; }
.pf-empty { text-align: center; padding: 54px 20px; color: #b3ab9a; font-size: 14px; }

.pf-group { padding: 6px 0 4px; }
.pf-group-head {
  display: flex; align-items: center; gap: 12px; padding: 18px 2px 10px; font-weight: 700; font-size: 16px;
  border-bottom: 1px solid #e7e0d2; position: relative;
}
.pf-group-idx {
  font-family: "Noto Serif SC","Songti SC","STSong",serif; font-size: 12px; font-weight: 600;
  color: #b5480a; background: #fbeede; padding: 2px 9px; border-radius: 4px; letter-spacing: 1px;
}
.pf-group-title { flex: 1; font-family: "Noto Serif SC","Songti SC","STSong",serif; letter-spacing: 1px; color: #1f1a13; }
.pf-group-sub { font-family: "Noto Serif SC","Songti SC",Georgia,serif; font-variant-numeric: tabular-nums; font-weight: 700; font-size: 15px; color: #2a241b; }

.pf-rows { display: flex; flex-direction: column; }
.pf-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 2px;
  border-bottom: 1px dashed #ece4d4; transition: background .12s;
}
.pf-row:not(.is-auto):hover { background: #faf6ee; }
.pf-row.selected { background: #fdf2e6; }
.pf-row.is-auto { background: #fbf7ef; }
.pf-cb { width: 16px; height: 16px; accent-color: #b5480a; flex-shrink: 0; cursor: pointer; }
.pf-cb-ph { width: 16px; height: 16px; flex-shrink: 0; }
.pf-row-name { flex: 1; font-size: 14px; color: #2f2a22; }
.pf-row.is-auto .pf-row-name { color: #9a8f7a; font-weight: 600; }
.pf-row-amt { font-family: "Noto Serif SC","Songti SC",Georgia,serif; font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; color: #2a241b; min-width: 140px; text-align: right; }
.pf-row.is-auto .pf-row-amt { color: #b5480a; }
.pf-row-rate { width: 72px; text-align: right; font-size: 12px; color: #b3ab9a; font-variant-numeric: tabular-nums; }
.pf-row.selected .pf-row-rate { color: #b5480a; }

/* 页脚落款 */
.pf-letterfoot { margin-top: 34px; text-align: center; }
.pf-foot-rule { height: 0; border-top: 1px solid #e2dccd; width: 60%; margin: 0 auto 18px; }
.pf-foot-note { font-size: 12px; color: #a59b89; line-height: 1.9; margin: 0 auto; max-width: 560px; }
.pf-foot-sign { font-family: "Noto Serif SC","Songti SC","STSong",serif; font-style: italic; font-size: 14px; color: #6b6354; margin: 14px 0 0; letter-spacing: 1px; }

/* 窄屏适配：报告纸收窄、指标单列堆叠、抬头留白收紧 */
@media (max-width: 640px) {
  .pf-paper { padding: 28px 20px 28px; }
  .pf-paper::before { inset: 8px; }
  .pf-lh-title { font-size: 21px; letter-spacing: 2px; }
  .pf-lh-meta { gap: 14px; }
  .pf-overview { grid-template-columns: repeat(2, 1fr); }
  .pf-ov-card:nth-child(2n) { border-right: none; }
  .pf-ov-card:nth-child(-n+2) { border-bottom: 1px solid #efe8da; }
  .pf-ov-card .v { font-size: 21px; }
  .pf-row-amt { min-width: 110px; font-size: 14px; }
  .pf-row-rate { width: 56px; }
}

/* 底部毛玻璃浮层 */
.pf-fab {
  position: fixed; left: 50%; bottom: 22px; z-index: 200;
  transform: translateX(-50%); display: flex; align-items: center; gap: 22px;
  background: rgba(38,28,20,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: #fff; padding: 13px 18px; border-radius: 18px; box-shadow: 0 12px 40px rgba(0,0,0,.28);
  animation: pf-fab-in .25s ease;
}
@keyframes pf-fab-in { from { transform: translateX(-50%) translateY(22px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }
.pf-fab-info { display: flex; align-items: baseline; gap: 10px; }
.pf-fab-count { font-size: 13.5px; opacity: .85; }
.pf-fab-amt { font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums; }
.pf-fab-amt b { color: #ffb066; }
.pf-fab-actions { display: flex; gap: 8px; }
.pf-fab-btn {
  border: none; background: #ff7a00; color: #fff; font-size: 13px; font-weight: 700;
  padding: 9px 16px; border-radius: 11px; cursor: pointer; transition: filter .15s;
}
.pf-fab-btn:hover { filter: brightness(1.08); }
.pf-fab-btn.ghost { background: rgba(255,255,255,.16); }

/* 利润页门店下拉：统一橙主题（覆盖 components.css 蓝紫） */
.pf-field #storeSlot .bx-select-trigger { border-color: #e6e6e6; border-radius: 11px; padding: 10px 14px; font-size: 14px; min-width: 168px; }
.pf-field #storeSlot .bx-select-wrap.open .bx-select-trigger { border-color: #ff7a00; box-shadow: 0 0 0 4px rgba(255,122,0,.12); }
.pf-field #storeSlot .bx-select-opt.selected { background: #fff4ea; color: #ff7a00; }
.pf-field #storeSlot .bx-select-opt:hover { background: #fff8f1; }

/* ============ 响应式 ============ */
@media (max-width: 880px) {
  .auth-aside { display: none; }
  .auth-main { flex: 1; }
}
@media (max-width: 768px) {
  .pg-topbar { padding: 10px 16px; position: relative; }
  .pg-brand h1 { font-size: 14.5px; }
  .pg-brand .sub { display: none; }
  .pg-main { margin: 18px auto; padding: 0 12px; }
  .auth-card { padding: 8px; }
}
@media (max-width: 768px) and (min-width: 561px) {
  .pg-main { margin: 20px auto; }
}
