/**
 * 趣游旅行 - PC端公共样式
 * 包含：全局重置、Header导航、Footer页脚、悬浮按钮、响应式
 * 与手机端模板共用 Font Awesome 6 图标库
 */

/* ========== CSS 变量（与手机端保持一致） ========== */
:root {
  --ct-primary: #2563EB;
  --ct-primary-dark: #1D4ED8;
  --ct-primary-light: #EFF6FF;
  --ct-accent: #F59E0B;
  --ct-accent-light: #FFFBEB;
  --ct-danger: #EF4444;
  --ct-success: #10B981;
  --ct-bg: #F8FAFC;
  --ct-bg-alt: #EEF2F7;
  --ct-card: #FFFFFF;
  --ct-text: #1E293B;
  --ct-text-sub: #64748B;
  --ct-text-light: #94A3B8;
  --ct-border: #E2E8F0;
  --ct-shadow: 0 2px 8px rgba(0,0,0,.06);
  --ct-shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --ct-shadow-lg: 0 8px 28px rgba(0,0,0,.1);
  --ct-radius: 12px;
  --ct-radius-sm: 8px;
  --ct-font: "PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
}

/* ========== 字体声明 ========== */
@font-face {
  font-family: 'AlimamaShuHeiTi';
  src: url('../fonts/AlimamaShuHeiTi-Bold.woff2') format('woff2'),
       url('../fonts/AlimamaShuHeiTi-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========== 全局重置（覆盖旧框架） ========== */
#pc-header, #pc-footer, #qu-floating-bar,
.qu-wechat-overlay, .qu-nav-overlay {
  font-family: var(--ct-font);
  box-sizing: border-box;
}
#pc-header *, #pc-footer *, #qu-floating-bar *,
.qu-wechat-overlay *, .qu-nav-overlay *,
#pc-header *::before, #pc-footer *::before,
#pc-header *::after, #pc-footer *::after {
  box-sizing: border-box;
}

/* ==================================================================
   PC Header — 蓝色系导航栏（两层结构：工具栏 + Logo搜索区）
   ================================================================== */
#pc-header {
  position: relative;
  z-index: 1000;
  background: #fff;
  font-family: var(--ct-font);
  padding-top: 36px; /* 补偿固定工具栏高度 */
}

/* ---------- ① 顶部工具栏（始终固定页面顶部） ---------- */
.pc-hd-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(135deg, #1a2744 0%, #152238 100%);
  color: rgba(255,255,255,.7);
  font-size: 12px;
  transition: box-shadow .3s;
}
/* 滚动后加阴影 */
.pc-hd-toolbar.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.pc-hd-toolbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc-hd-toolbar__inner > div a,
.pc-hd-toolbar a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.pc-hd-toolbar__inner > div a:hover,
.pc-hd-toolbar a:hover { color: #fff; }
.pc-hd-toolbar__left { display: flex; gap: 16px; align-items: center; }
.pc-hd-toolbar__right { display: flex; gap: 0; align-items: center; }

/* 工具栏中纯链接文字的间距（我的订单、帮助中心、我的趣游） */
.pc-hd-toolbar__right > a:not([class]) { padding: 0 10px; }

/* ------ 工具栏图标项（APP / 社群 / 公众号 / 小程序） ------ */
.pc-hd-tb-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  margin: 0 2px;
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255,255,255,.7) !important;
  text-decoration: none !important;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}
.pc-hd-tb-item i { font-size: 13px; }

/* 各入口专属颜色（仅图标变色，文字保持白色，hover 加背景） */
.pc-hd-tb-item--app i          { color: #00D6A0; }
.pc-hd-tb-item--app:hover i    { color: #00F5B8; }
.pc-hd-tb-item--app:hover      { background: rgba(0,214,160,.15); }
.pc-hd-tb-item--group i        { color: #FF6B6B; }
.pc-hd-tb-item--group:hover i  { color: #FF8A8A; }
.pc-hd-tb-item--group:hover    { background: rgba(255,107,107,.15); }
.pc-hd-tb-item--mp i           { color: #07C160; }
.pc-hd-tb-item--mp:hover i     { color: #0AD86C; }
.pc-hd-tb-item--mp:hover       { background: rgba(7,193,96,.15); }
.pc-hd-tb-item--miniapp i      { color: #6366F1; }
.pc-hd-tb-item--miniapp:hover i{ color: #818cf8; }
.pc-hd-tb-item--miniapp:hover  { background: rgba(99,102,241,.15); }

/* ------ 二维码 hover 弹出容器 ------ */
.pc-hd-qr-wrap {
  position: relative;
}
.pc-hd-qr-popup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  padding: 14px 14px 8px;
  text-align: center;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  white-space: nowrap;
  /* 三角箭头 */
}
.pc-hd-qr-popup::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}
.pc-hd-qr-wrap:hover .pc-hd-qr-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(8px);
}
.pc-hd-qr-popup img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  margin: 0 auto;
}
.pc-hd-qr-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #aaa;
  margin: 0 auto;
}
.pc-hd-qr-placeholder i { font-size: 28px; }
.pc-hd-qr-placeholder span { font-size: 11px; }
.pc-hd-qr-popup p {
  margin: 6px 0 0;
  font-size: 11px;
  color: #999;
}

/* ---------- ② 主区域：Logo + 搜索 + 服务热线 ---------- */
.pc-hd-main {
  border-bottom: 1px solid #f0f0f0;
}
.pc-hd-main__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.pc-hd-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.pc-hd-logo__img {
  width: 50px;
  height: 50px;
  background: #FFE234;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(255,226,52,.3);
  position: relative;
  overflow: hidden;
}
.pc-hd-logo__text {
  font-size: 28px;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 1px;
  font-family: 'AlimamaShuHeiTi', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

/* Logo 光束划过动画 */
@keyframes pcLogoBeam {
  0%   { left: -120%; }
  40%  { left: 120%; }
  100% { left: 120%; }
}
.pc-hd-logo__img::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 60%;
  height: 140%;
  background: linear-gradient(105deg,
    transparent 30%, 
    rgba(255,255,255,.5) 45%, 
    rgba(255,255,255,.7) 50%, 
    rgba(255,255,255,.5) 55%, 
    transparent 70%);
  transform: skewX(-20deg);
  animation: pcLogoBeam 3.5s ease-in-out infinite;
  pointer-events: none;
}
.pc-hd-logo__text {
  position: relative;
  overflow: hidden;
}
.pc-hd-logo__text::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -120%;
  width: 50%;
  height: 140%;
  background: linear-gradient(105deg,
    transparent 30%, 
    rgba(255,255,255,.4) 45%, 
    rgba(255,255,255,.6) 50%, 
    rgba(255,255,255,.4) 55%, 
    transparent 70%);
  transform: skewX(-20deg);
  animation: pcLogoBeam 3.5s ease-in-out 1.4s infinite;
  pointer-events: none;
}

/* 搜索框 */
.pc-hd-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  border: 2px solid #FFE234;
  border-radius: 30px;
  background: #fff;
  height: 44px;
  position: relative;
}
.pc-hd-search form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* 搜索类型下拉 */
.pc-hd-search__type {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: 100%;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid #e8e8e8;
  user-select: none;
  transition: color .2s;
}
.pc-hd-search__type:hover { color: #333; }
.pc-hd-search__type i { font-size: 10px; transition: transform .25s; }
.pc-hd-search__type.is-open i { transform: rotate(180deg); }

/* 类型下拉菜单 */
.pc-hd-search__type-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -2px;
  min-width: 100px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  z-index: 100;
}
.pc-hd-search__type.is-open .pc-hd-search__type-drop { display: block; }
.pc-hd-search__type-drop li {
  padding: 8px 16px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.pc-hd-search__type-drop li:hover,
.pc-hd-search__type-drop li.active {
  color: #2563EB;
  background: #EFF6FF;
}

.pc-hd-search input {
  flex: 1;
  border: none;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  color: #333;
  background: transparent;
  min-width: 0;
  height: 100%;
}
/* 搜索标签占位动画 */
.pc-hd-search input::placeholder { color: #bbb; }
.pc-hd-search input.tag-placeholder::placeholder {
  opacity: 0;
  transition: opacity .3s;
}
.pc-hd-search button {
  border: none;
  background: #FFE234;
  color: #1a1a1a;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  height: calc(100% + 4px);
  margin: -2px -2px -2px 0;
  border-radius: 0 30px 30px 0;
  flex-shrink: 0;
  transition: background .2s;
}
.pc-hd-search button:hover { background: #F5D000; }
.pc-hd-search-tags { display: none; }

/* 服务热线 */
.pc-hd-service {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  line-height: 1.3;
}
.pc-hd-service__label {
  font-size: 12px;
  color: #999;
}
.pc-hd-service__time {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 1px;
}
.pc-hd-service__phone {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
}

/* 弹窗内关闭按钮 */
.pc-hd-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #999;
  font-size: 18px;
  transition: all .2s;
  text-decoration: none;
}
.pc-hd-btn:hover {
  background: #f0f0f0;
  color: #333;
}

/* 搜索弹窗（移动端备用） */
.pc-hd-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.pc-hd-search-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.pc-hd-search-box {
  width: 520px;
  max-width: 90vw;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  display: flex;
  overflow: hidden;
  transform: translateY(-10px);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.pc-hd-search-overlay.active .pc-hd-search-box {
  transform: translateY(0);
}
.pc-hd-search-box input {
  flex: 1;
  border: none;
  padding: 16px 22px;
  font-size: 16px;
  outline: none;
  color: var(--ct-text);
}
.pc-hd-search-box input::placeholder {
  color: var(--ct-text-light);
}
.pc-hd-search-box button {
  border: none;
  background: #FFE234;
  color: #1a1a1a;
  padding: 0 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.pc-hd-search-box button:hover {
  background: #F5D000;
}

/* 移动端汉堡菜单 */
.pc-hd-mbtn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.pc-hd-mbtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all .3s;
}
.pc-hd-mbtn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.pc-hd-mbtn.active span:nth-child(2) {
  opacity: 0;
}
.pc-hd-mbtn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 移动端导航面板 */
.pc-hd-mnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.pc-hd-mnav.active {
  opacity: 1;
  pointer-events: auto;
}
.pc-hd-mnav-inner {
  background: #fff;
  max-height: 80vh;
  overflow-y: auto;
  padding: 16px;
  transform: translateY(-10px);
  transition: transform .25s;
  margin-top: 60px;
}
.pc-hd-mnav.active .pc-hd-mnav-inner {
  transform: translateY(0);
}
.pc-hd-mnav-inner a {
  display: block;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s;
}
.pc-hd-mnav-inner a:hover,
.pc-hd-mnav-inner a.active {
  background: #f8f8f8;
  color: #000;
}

/* ---------- Header 响应式 ---------- */
@media (max-width: 960px) {
  .pc-hd-toolbar__right .pc-hd-qr-wrap:nth-child(n+4) { display: none; }
  .pc-hd-main__inner { height: 64px; }
  .pc-hd-logo__text { font-size: 22px; }
  .pc-hd-logo__img { width: 40px; height: 40px; font-size: 18px; }
  .pc-hd-service { display: none; }
  .pc-hd-search { max-width: 380px; }
  .pc-hd-toolbar__right { gap: 0; }
  .pc-hd-tb-item { padding: 4px 8px; font-size: 11px; }
}
@media (max-width: 768px) {
  #pc-header { padding-top: 0; }
  .pc-hd-toolbar { display: none; }
  .pc-hd-main__inner { height: 56px; padding: 0 16px; }
  .pc-hd-search { display: none; }
  .pc-hd-service { display: none; }
  .pc-hd-mbtn { display: flex; }
  .pc-hd-mnav { display: block; }
  .pc-hd-logo__text { font-size: 20px; }
  .pc-hd-logo__img { width: 36px; height: 36px; font-size: 16px; }
}

/* ==================================================================
   PC Footer — 现代风格页脚
   ================================================================== */
#pc-footer {
  background: #0F172A;
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
  font-family: var(--ct-font);
}

.pc-ft-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1.4fr 1.2fr 1.2fr;
  gap: 32px;
}

.pc-ft-brand {}
.pc-ft-brand__logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.pc-ft-brand__logo b { color: var(--ct-accent); }
.pc-ft-brand__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  margin-bottom: 18px;
}

/* 服务承诺 */
.pc-ft-promises {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pc-ft-promise {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* 链接列 */
.pc-ft-col {}
.pc-ft-col__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.pc-ft-col__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-ft-col__links a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.pc-ft-col__links a:hover {
  color: var(--ct-accent);
}

/* 联系我们 */
.pc-ft-contact {}
.pc-ft-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.pc-ft-contact__item .ico {
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,.3);
}
.pc-ft-contact__item a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.pc-ft-contact__item a:hover {
  color: var(--ct-accent);
}

/* 二维码 */
.pc-ft-qr {
  text-align: center;
}
.pc-ft-qr img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.1);
  padding: 4px;
  background: #fff;
}
.pc-ft-qr p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 6px;
}

/* 底部栏 */
.pc-ft-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.pc-ft-bottom__copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.pc-ft-bottom__links {
  display: flex;
  gap: 16px;
  font-size: 12px;
}
.pc-ft-bottom__links a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.pc-ft-bottom__links a:hover {
  color: rgba(255,255,255,.6);
}

/* ==================================================================
   右侧悬浮按钮（公共）
   ================================================================== */
.qu-floating-bar {
  position: fixed;
  right: 20px;
  bottom: 160px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity .3s ease, transform .3s ease;
}
.qu-floating-bar.is-hidden {
  opacity: 0;
  transform: translateX(70px);
  pointer-events: none;
}
.qu-floating-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  position: relative;
  text-decoration: none;
  color: #555;
  font-size: 22px;
  line-height: 1;
  transition: transform .2s, box-shadow .2s, background .2s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.qu-floating-btn:active {
  transform: scale(.9);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.qu-floating-btn--service { color: #4A90D9; }
.qu-floating-btn--wechat { color: #07C160; }
.qu-floating-btn--nav { color: #FF6B35; }
.qu-floating-btn--top { color: #999; }
.qu-floating-btn--service:active { background: #EBF3FC; }
.qu-floating-btn--wechat:active { background: #E8F8EE; }
.qu-floating-btn--nav:active { background: #FFF2EC; }
.qu-floating-btn--top:active { background: #f5f5f5; }

.qu-floating-btn .qu-tooltip {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: rgba(0,0,0,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  line-height: 1.4;
}
.qu-floating-btn .qu-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,0,0,.78);
}
@media (hover:hover) {
  .qu-floating-btn:hover .qu-tooltip { opacity: 1; }
}

/* 公众号弹窗 */
.qu-wechat-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.qu-wechat-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.qu-wechat-popup {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px 28px;
  width: 360px;
  max-width: 88vw;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transform: translateY(16px) scale(.96);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.qu-wechat-overlay.is-active .qu-wechat-popup {
  transform: translateY(0) scale(1);
}
.qu-wechat-popup__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.qu-wechat-popup__desc {
  font-size: 13px;
  color: #999;
  margin-bottom: 18px;
  line-height: 1.4;
}
.qu-wechat-popup__qr {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
}
.qu-wechat-popup__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.qu-wechat-popup__actions {
  display: flex;
  gap: 10px;
}
.qu-wechat-popup__btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  font-family: inherit;
}
.qu-wechat-popup__btn:active { opacity: .82; }
.qu-wechat-popup__btn--open { background: #07C160; color: #fff; }
.qu-wechat-popup__btn--download { background: #f5f5f5; color: #333; }
.qu-wechat-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  line-height: 1;
  transition: background .2s, color .2s;
}
.qu-wechat-popup__close:hover {
  background: #e0e0e0;
  color: #666;
}

/* 快捷导航面板 */
.qu-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.qu-nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.qu-nav-panel {
  width: 100%;
  max-height: 70vh;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom,0px));
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
}
.qu-nav-overlay.is-active .qu-nav-panel {
  transform: translateY(0);
}
.qu-nav-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.qu-nav-panel__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
.qu-nav-panel__close {
  width: 28px;
  height: 28px;
  border: none;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.qu-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.qu-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: background .15s;
}
.qu-nav-item:active { background: #f5f7fa; }
.qu-nav-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.qu-nav-item__icon--recommend { background: #FFF1F0; color: #FF4D4F; }
.qu-nav-item__icon--ranking { background: #FFFBE6; color: #FAAD14; }
.qu-nav-item__icon--booking { background: #E6F7FF; color: #1890FF; }
.qu-nav-item__icon--qa { background: #F6FFED; color: #52C41A; }
.qu-nav-item__icon--custom { background: #F9F0FF; color: #722ED1; }
.qu-nav-item__icon--product { background: #FFF7E6; color: #FA8C16; }
.qu-nav-item__icon--itinerary { background: #FFF1F0; color: #FF6B35; }
.qu-nav-item__icon--article { background: #E6FFFB; color: #13C2C2; }
.qu-nav-item__arrow { margin-left: auto; color: #ccc; font-size: 14px; }

/* 快捷导航按钮仅在首页显示（PC端默认隐藏） */
.qu-floating-btn--nav { display: none !important; }

/* ==================================================================
   响应式
   ================================================================== */
@media (max-width: 1024px) {
  .pc-hd-nav { display: none; }
  .pc-hd-mbtn { display: flex; }
  .pc-hd-mnav { display: block; }
  .pc-ft-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pc-hd-inner { padding: 0 16px; }
  .pc-hd-logo__slogan { display: none; }
  .pc-ft-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pc-ft-bottom {
    flex-direction: column;
    text-align: center;
  }
  /* 悬浮按钮移动端适配 */
  .qu-floating-bar {
    right: 10px;
    bottom: 110px;
    gap: 8px;
  }
  .qu-floating-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .qu-floating-btn .qu-tooltip { display: none !important; }
  .qu-floating-btn--nav:not(.qu-hidden-on-other) { display: flex !important; }
}
