/* ================================================================
   丰翼定制旅行 · 全局样式（所有页面共享）
   ================================================================ */
*{margin:0;padding:0;box-sizing:border-box}
:root{
  --primary:#1565c0;
  --primary-dark:#0d47a1;
  --accent:#ff7043;
  --accent-light:#ffab91;
  --teal:#00897b;
  --bg:#f5f7fa;
  --card:#ffffff;
  --text:#1a1a2e;
  --text-light:#6b7280;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover:0 20px 50px rgba(0,0,0,0.15);
  --radius:16px;
  /* 入境旅游专用色 */
  --china-red:#c62828;
  --china-gold:#f9a825;
  --china-dark:#8b0000;
  --china-bg:#fff8f0;
}
html{scroll-behavior:smooth;overflow-x:hidden}
body{
  font-family:"PingFang SC","Microsoft YaHei","Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* emoji PNG 图标 */
.emoji-png{
  display:inline-block;width:1.1em;height:1.1em;
  vertical-align:middle;margin:0 1px;object-fit:contain;
}
/* 图标 img 一律穿透触摸：点击落在容器元素上，
   杜绝 iOS Safari/微信 WebView 长按弹「存储图像」菜单、
   拖拽手势吞掉点击导致标签取消/切换失效 */
.emoji-png,img.nav-ico,.service-panel-title .title-icon{
  pointer-events:none;
  -webkit-user-select:none;user-select:none;
  -webkit-touch-callout:none;
}

/* 导航 */
nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 60px;
  transition:all .4s ease;
}
nav.scrolled{
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  box-shadow:0 2px 20px rgba(0,0,0,0.08);
  padding:14px 60px;
}
.logo{
  font-size:26px;font-weight:800;
  display:flex;align-items:center;gap:10px;
  color:#fff;transition:color .4s;text-decoration:none;
}
nav.scrolled .logo{color:var(--primary-dark)}
.logo img{height:40px;width:auto;display:block;object-fit:contain;-webkit-filter:drop-shadow(0 1px 1px rgba(0,0,0,0.35)) drop-shadow(0 0 3px rgba(255,255,255,0.6));filter:drop-shadow(0 1px 1px rgba(0,0,0,0.35)) drop-shadow(0 0 3px rgba(255,255,255,0.6))}
/* 顶部透明状态（叠在深色 hero/banner 上）：多层白色光晕拼出描边，保证蓝色 logo 清晰 */
nav:not(.scrolled) .logo img{
  -webkit-filter:drop-shadow(0 0 1px rgba(255,255,255,.95)) drop-shadow(0 0 2px rgba(255,255,255,.85)) drop-shadow(0 0 5px rgba(255,255,255,.6)) drop-shadow(0 2px 3px rgba(0,0,0,.4));
  filter:drop-shadow(0 0 1px rgba(255,255,255,.95)) drop-shadow(0 0 2px rgba(255,255,255,.85)) drop-shadow(0 0 5px rgba(255,255,255,.6)) drop-shadow(0 2px 3px rgba(0,0,0,.4));
}
.nav-links{display:flex;gap:36px;list-style:none}
.nav-links a{
  text-decoration:none;color:rgba(255,255,255,0.9);
  font-size:15px;font-weight:500;transition:color .3s;position:relative;
}
nav.scrolled .nav-links a{color:var(--text)}
.nav-links a:hover{color:var(--accent)}
.nav-links a::after{
  content:"";position:absolute;bottom:-6px;left:0;
  width:0;height:2px;background:var(--accent);transition:width .3s;
}
.nav-links a:hover::after{width:100%}

/* 导航栏"服务"下拉菜单 */
.nav-dropdown{position:relative}
.nav-dropdown>a{cursor:pointer}
.nav-dropdown>a::after{
  content:"";display:inline-block;width:8px;height:8px;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg);margin-left:6px;margin-bottom:2px;
  transition:transform .3s;vertical-align:middle;
  position:static;
  bottom:auto;left:auto;background:transparent;
}
.nav-dropdown:hover>a::after{transform:rotate(-135deg);margin-bottom:-2px;width:8px;height:8px;position:static;background:transparent}
.nav-dropdown .dropdown-menu{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);
  background:#fff;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.15);
  padding:8px 0;min-width:160px;opacity:0;visibility:hidden;
  transition:all .3s;z-index:999;
}
.nav-dropdown:hover .dropdown-menu{
  opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);
}
.nav-dropdown .dropdown-menu a{
  display:block;padding:10px 24px;font-size:14px;color:var(--text);
  text-decoration:none;white-space:nowrap;transition:all .25s;
}
.nav-dropdown .dropdown-menu a:hover{
  background:#f5f7fa;color:var(--primary);
}
.nav-dropdown .dropdown-menu a::after{display:none}
.nav-ico{
  font-style:normal;display:inline-block;margin-right:6px;
  font-size:1.1em;line-height:1;vertical-align:-1px;
}
img.nav-ico{width:18px;height:18px;object-fit:contain;vertical-align:-3px}
.nav-phone{
  display:flex;flex-direction:column;align-items:flex-end;gap:2px;
  font-size:13px;color:#fff;line-height:1.4;text-align:right;
}
.nav-phone .phone-icon{
  display:inline-block;width:20px;height:20px;vertical-align:middle;margin-right:6px;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(28%) sepia(56%) saturate(3957%) hue-rotate(347deg) brightness(93%) contrast(102%);
}
.nav-phone .phone-num{font-size:15px;font-weight:700;color:#fff;text-decoration:none;}
.nav-phone .phone-hours{font-size:12px;opacity:0.85;}
nav.scrolled .nav-phone .phone-num{color:var(--primary-dark)}
nav.scrolled .nav-phone .phone-hours{color:var(--text);opacity:0.7}

/* 移动端汉堡菜单按钮 */
.nav-toggle{
  display:none;flex-direction:column;justify-content:center;align-items:center;
  width:40px;height:40px;border:none;background:transparent;cursor:pointer;
  gap:6px;padding:0;z-index:1001;
}
.nav-toggle span{
  display:block;width:24px;height:2px;background:#fff;border-radius:2px;
  transition:all .3s;
}
nav.scrolled .nav-toggle span{background:var(--text)}
.nav-toggle.active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.nav-toggle.active span:nth-child(2){opacity:0}
.nav-toggle.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}

/* Hero（仅首页使用） */
.hero{
  min-height:100vh;
  background:linear-gradient(135deg,#0d47a1 0%,#1565c0 40%,#1e88e5 70%,#42a5f5 100%);
  position:relative;display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;overflow:hidden;
}
/* Banner 季节背景图轮播层 */
.hero-banner-layer{position:absolute;inset:0;z-index:0;}
.hero-banner-slide{
  position:absolute;inset:0;
  background-size:cover;background-position:center;background-repeat:no-repeat;
  opacity:0;transition:opacity 1.8s ease-in-out;
}
.hero-banner-slide.active{opacity:0.18}
.hero-banner-slide.fading{opacity:0}
.hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 20% 80%,rgba(255,152,0,0.35),transparent 50%),
    radial-gradient(circle at 80% 20%,rgba(33,150,243,0.4),transparent 50%),
    radial-gradient(circle at 50% 50%,rgba(13,71,161,0.3),transparent 70%);
}
.hero-shapes{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.shape{
  position:absolute;border-radius:50%;
  background:rgba(255,255,255,0.08);
  animation:float 20s infinite ease-in-out;
}
.shape:nth-child(1){width:300px;height:300px;top:10%;left:5%;animation-delay:0s}
.shape:nth-child(2){width:200px;height:200px;top:60%;left:15%;animation-delay:3s}
.shape:nth-child(3){width:150px;height:150px;top:20%;right:10%;animation-delay:6s}
.shape:nth-child(4){width:250px;height:250px;bottom:10%;right:20%;animation-delay:9s}
@keyframes float{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-40px) rotate(180deg)}
}
.hero-content{position:relative;z-index:2;max-width:800px;padding:0 20px}
.hero h1{
  font-size:64px;font-weight:800;margin-bottom:20px;
  text-shadow:0 4px 30px rgba(0,0,0,0.2);
  animation:fadeUp 1s ease;
}
.hero h1 .highlight{
  background:linear-gradient(90deg,#ff9800,#ff7043);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero p{
  font-size:20px;margin-bottom:40px;opacity:0.95;
  animation:fadeUp 1s ease .2s both;
}
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}
.search-box{
  background:rgba(255,255,255,0.95);border-radius:50px;
  padding:8px;display:flex;align-items:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.2);
  animation:fadeUp 1s ease .4s both;
  max-width:560px;margin:0 auto;
}
.search-box input{
  flex:1;border:none;outline:none;padding:14px 24px;
  font-size:15px;background:transparent;color:var(--text);
}
.search-box button{
  padding:14px 32px;background:var(--primary);color:#fff;
  border:none;border-radius:50px;font-size:15px;font-weight:600;
  cursor:pointer;transition:background .3s;white-space:nowrap;
}
.search-box button:hover{background:var(--primary-dark)}
.hero-stats{display:flex;gap:50px;justify-content:center;margin-top:50px;animation:fadeUp 1s ease .6s both;}
.stat{text-align:center}
.stat .num{font-size:36px;font-weight:800;color:#ffd54f}
.stat .label{font-size:14px;opacity:0.85;margin-top:4px}

/* 通用section */
.section{padding:100px 60px;max-width:1280px;margin:0 auto}
.section-header{text-align:center;margin-bottom:60px}
.section-tag{
  display:inline-block;padding:6px 18px;background:rgba(21,101,192,0.1);
  color:var(--primary);border-radius:20px;font-size:13px;font-weight:600;
  margin-bottom:16px;
}
.section-header h2{font-size:42px;font-weight:800;margin-bottom:14px}
.section-header p{font-size:16px;color:var(--text-light);max-width:600px;margin:0 auto}

/* 目的地卡片 */
.dest-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;}
.dest-card{
  background:var(--card);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow);transition:all .4s ease;cursor:pointer;
  position:relative;
}
.dest-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-hover)}
.dest-img{
  height:240px;position:relative;overflow:hidden;
  background-size:cover;background-position:center;background-repeat:no-repeat;
}
.dest-img .img-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(0,0,0,0.3) 100%);
  transition:transform .5s;
}
.dest-card:hover .dest-img .img-overlay{transform:scale(1.05)}
.dest-info{padding:24px}
.dest-info h3{font-size:20px;font-weight:700;margin-bottom:8px}
.dest-info p{font-size:14px;color:var(--text-light);margin-bottom:14px}
.dest-price{display:flex;align-items:center;justify-content:space-between;}
.price{font-size:22px;font-weight:800;color:#ff6a00}
.price small{font-size:13px;color:var(--text-light);font-weight:400}
.dest-tag{
  position:absolute;top:16px;left:16px;
  padding:5px 14px;background:rgba(255,255,255,0.95);
  border-radius:20px;font-size:12px;font-weight:600;color:var(--text);
}
.rating{font-size:14px;color:#ffa000;display:flex;align-items:center;gap:4px}

/* 定制表单（首页专用） */
.customize{
  background:linear-gradient(135deg,#0d47a1 0%,#1565c0 50%,#1a237e 100%);
  border-radius:30px;padding:60px;color:#fff;
  position:relative;overflow:hidden;
}
.customize::before{
  content:"";position:absolute;top:-100px;right:-100px;
  width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,112,67,0.2),transparent 70%);
}
.customize-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:50px;align-items:center;position:relative;z-index:2}
.customize-text h2{font-size:38px;font-weight:800;margin-bottom:20px}
.customize-text p{font-size:16px;opacity:0.9;margin-bottom:24px;line-height:1.8}
.feature-list{list-style:none}
.feature-list li{display:flex;align-items:center;gap:12px;margin-bottom:14px;font-size:15px;}
.feature-list li .check{
  width:34px;height:34px;
  object-fit:contain;
  flex-shrink:0;
}

/* 右侧视觉场景卡片 */
.scene-cards{display:flex;gap:12px;margin-top:28px}
.scene-card{flex:1;height:140px;border-radius:14px;position:relative;overflow:hidden;cursor:default;transition:all .4s;}
.scene-card:hover{transform:translateY(-6px)}
.scene-card .scene-bg{position:absolute;inset:0;transition:transform .5s;}
.scene-card:hover .scene-bg{transform:scale(1.08)}
.scene-card .scene-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 30%,rgba(0,0,0,0.65) 100%);
}
.scene-card .scene-text{
  position:absolute;bottom:14px;left:14px;right:14px;
  color:#fff;font-size:13px;font-weight:600;
  display:flex;align-items:center;gap:6px;
}
.scene-card .scene-icon{font-size:18px}
.scene-card .scene-badge{
  position:absolute;top:10px;right:10px;
  padding:3px 10px;background:rgba(255,255,255,0.9);
  border-radius:12px;font-size:11px;font-weight:600;color:var(--text);
}

/* 右侧数据亮点 */
.stats-row{display:flex;gap:16px;margin-top:24px}
.stat-mini{
  flex:1;text-align:center;padding:16px 12px;
  background:rgba(255,255,255,0.08);border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  transition:all .3s;
}
.stat-mini:hover{background:rgba(255,255,255,0.15);transform:translateY(-3px)}
.stat-mini .stat-num{font-size:24px;font-weight:800;color:#ffd54f}
.stat-mini .stat-label{font-size:11px;opacity:0.75;margin-top:4px}
.form-card{
  background:rgba(255,255,255,0.1);backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.2);border-radius:20px;padding:40px;
  overflow:visible;
}
.form-card h3{font-size:24px;font-weight:700;margin-bottom:28px;text-align:center}
.form-group{margin-bottom:20px}
.form-group label{display:block;font-size:13px;margin-bottom:8px;opacity:0.85;font-weight:500}
.required-mark{color:#ff5252;font-weight:700;margin-left:2px;font-size:15px;line-height:1;vertical-align:middle}
.optional-mark{color:#9e9e9e;font-weight:400;font-size:12px;margin-left:4px}
.form-group input,.form-group select{
  width:100%;padding:13px 16px;background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);border-radius:10px;
  color:#fff;font-size:14px;outline:none;transition:border .3s;
}
.form-group input::placeholder{color:rgba(255,255,255,0.5)}
.form-group input:focus,.form-group select:focus{border-color:var(--accent)}
.form-group select option{color:#333}
/* 统一所有表单控件高度（input/div/button 行高机制不同会参差），消除不对称 */
.form-group input,.form-group select,
.dest-input-wrapper input,
.sms-row input,.sms-btn,
.custom-select-trigger,
.submit-btn{height:50px;box-sizing:border-box}
/* 日期/人数两列：桌面端 flex 等宽并排，移动端（≤900px）改为上下两行 */
.form-row{display:flex;gap:16px}
.form-row>*{flex:1 1 0;min-width:0;max-width:50%}
.form-row input[type="date"]{min-width:0;width:100%;max-width:100%}
/* date 输入框强化：消除 iOS Safari/微信 WebView 内核的 UA 系统控件差异，
   否则 date 保留系统外观（自带 padding/行高），高度宽度与其他 input 不一致 */
.form-row input[type="date"]{
  -webkit-appearance:none;
  appearance:none;
  padding:13px 16px;
  line-height:1.5;
}
.form-row input[type="date"]::-webkit-datetime-edit{
  display:inline-block;
  line-height:1.5;
  min-width:0;
}
.form-row input[type="date"]::-webkit-datetime-edit-fields-wrapper{min-width:0;line-height:1.5}
.form-row input[type="date"]::-webkit-date-and-time-value{min-width:0}
.form-row input[type="date"]::-webkit-inner-spin-button{display:none}
.tags{display:flex;flex-wrap:wrap;gap:8px;overflow:visible}
.tag-btn{
  padding:12px 18px;background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);border-radius:24px;
  color:#fff;font-size:14px;cursor:pointer;transition:all .3s;
  display:inline-flex;align-items:center;gap:6px;
  line-height:2.2;min-height:46px;overflow:visible;
  user-select:none;-webkit-user-select:none;-webkit-touch-callout:none;
  touch-action:manipulation;
}
.tag-btn.active{background:var(--accent);border-color:var(--accent)}
@media(hover:hover){.tag-btn:hover{background:var(--accent);border-color:var(--accent)}}

/* 定制分类标签 */
.category-tabs{display:flex;gap:10px}
.cat-btn{
  flex:1;display:flex;align-items:center;justify-content:center;gap:6px;
  padding:11px 20px;background:rgba(255,255,255,0.08);
  border:2px solid rgba(255,255,255,0.15);border-radius:12px;
  color:rgba(255,255,255,0.7);font-size:14px;cursor:pointer;user-select:none;
  transition:all .3s;font-weight:500;line-height:1.4;
}
.cat-btn.active{
  background:var(--accent);border-color:var(--accent);
  color:#fff;font-weight:600;box-shadow:0 4px 15px rgba(228,162,53,0.35);
}
@media(hover:hover){.cat-btn:hover{background:rgba(255,255,255,0.15);color:#fff}}

/* 偏好面板切换：同一时间只显示一个面板 */
.pref-panel{display:none}
.pref-panel.active{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.pref-panel .tag-btn{
  width:100%;
  display:flex;
  justify-content:center;
  padding:12px 8px;
  font-size:13px;
  text-align:center;
}

/* 目的地输入框特殊样式 */
.dest-input-wrapper{position:relative}
.dest-input-wrapper input{
  width:100%;padding:13px 44px 13px 16px;background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);border-radius:10px;
  color:#fff;font-size:14px;outline:none;transition:border .3s;
  cursor:pointer;
}
.dest-input-wrapper input::placeholder{color:rgba(255,255,255,0.5)}
.dest-input-wrapper input:focus{border-color:var(--accent)}
.dest-input-wrapper .dest-trigger{
  position:absolute;right:12px;top:50%;transform:translateY(-50%);
  background:none;border:none;color:rgba(255,255,255,0.7);font-size:18px;
  cursor:pointer;padding:4px;line-height:1;
}
.dest-input-wrapper .dest-trigger:hover{color:#fff}

/* 已选目的地标签 */
.selected-dest-tags{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px;min-height:0;}
.selected-dest-tag{
  display:inline-flex;align-items:center;gap:4px;
  padding:4px 10px;background:rgba(255,255,255,0.18);
  border:1px solid rgba(255,255,255,0.3);border-radius:20px;
  font-size:12px;color:#fff;animation:tagPop .25s ease;
}
@keyframes tagPop{
  from{opacity:0;transform:scale(0.8)}
  to{opacity:1;transform:scale(1)}
}
.selected-dest-tag .remove-tag{cursor:pointer;font-size:14px;opacity:0.7;line-height:1;}
.selected-dest-tag .remove-tag:hover{opacity:1;color:var(--accent)}

/* 验证码行 */
.sms-row{display:flex;gap:10px}
.sms-row input{flex:1}
.sms-btn{
  padding:13px 18px;background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);border-radius:10px;
  color:#fff;font-size:13px;font-weight:600;cursor:pointer;
  transition:all .3s;white-space:nowrap;
}
.sms-btn:hover{background:rgba(255,255,255,0.25)}
.sms-btn.counting{background:rgba(255,255,255,0.08);cursor:not-allowed;opacity:0.7}
.sms-btn:disabled{opacity:0.5;cursor:not-allowed}

.submit-btn{
  width:100%;padding:15px;background:var(--accent);color:#fff;
  border:none;border-radius:10px;font-size:16px;font-weight:700;
  cursor:pointer;transition:all .3s;margin-top:10px;
}
.submit-btn:hover{background:#f4511e;transform:translateY(-2px);box-shadow:0 10px 30px rgba(255,112,67,0.4)}
.submit-btn:disabled{opacity:0.6;cursor:not-allowed;transform:none !important;box-shadow:none !important}

/* ===== 自定义下拉选择组件 ===== */
.custom-select{position:relative;user-select:none}
.custom-select-trigger{
  width:100%;padding:13px 40px 13px 16px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);border-radius:10px;
  color:#fff;font-size:14px;cursor:pointer;
  transition:border .3s,box-shadow .3s;
  position:relative;outline:none;
}
.custom-select-trigger:hover{border-color:rgba(255,255,255,0.4)}
.custom-select-trigger:focus,
.custom-select.open .custom-select-trigger{
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(255,112,67,0.2);
}
.custom-select-placeholder{color:rgba(255,255,255,0.5);transition:color .2s}
.custom-select-placeholder.selected{color:#fff;font-weight:500}
.custom-select-arrow{
  position:absolute;right:14px;top:50%;
  transform:translateY(-50%);font-size:12px;
  color:rgba(255,255,255,0.5);transition:transform .3s;
}
.custom-select.open .custom-select-arrow{transform:translateY(-50%) rotate(180deg)}

.custom-select-dropdown{
  position:absolute;top:calc(100% + 4px);left:0;right:0;
  background:#fff;border-radius:12px;
  box-shadow:0 12px 48px rgba(0,0,0,0.3);
  overflow:hidden;z-index:200;
  opacity:0;visibility:hidden;
  transform:translateY(-8px);
  transition:all .25s cubic-bezier(0.23,1,0.32,1);
}
.custom-select.open .custom-select-dropdown{
  opacity:1;visibility:visible;transform:translateY(0);
}
.custom-select-option{
  padding:13px 16px;font-size:14px;color:var(--text);
  cursor:pointer;transition:all .15s;
  display:flex;align-items:center;gap:8px;
  border-bottom:1px solid #f3f4f6;
}
.custom-select-option:last-child{border-bottom:none}
.custom-select-option:hover{background:#fff3e0;color:#e65100}
.custom-select-option.selected{
  background:#e8f0fe;color:var(--primary);font-weight:600;
}
.custom-select-option.selected::after{
  content:"";display:inline-block;width:16px;height:16px;margin-left:auto;
  background:url('../images/icons/2713.png') center/contain no-repeat;
}

/* ===== 目的地推荐弹层 ===== */
.dest-popup-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(0,0,0,0.55);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s;
}
.dest-popup-overlay.open{opacity:1;pointer-events:auto}

.dest-popup{
  background:#fff;border-radius:20px;
  width:90vw;max-width:960px;max-height:85vh;
  display:flex;flex-direction:column;
  box-shadow:0 30px 80px rgba(0,0,0,0.3);
  animation:popupIn .35s ease;
  overflow:hidden;
}
@keyframes popupIn{
  from{opacity:0;transform:translateY(40px) scale(0.95)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

/* 弹层头部 */
.dest-popup-header{
  padding:20px 28px;border-bottom:1px solid #e5e7eb;
  display:flex;align-items:center;justify-content:space-between;
  flex-shrink:0;
}
.dest-popup-header h3{font-size:20px;font-weight:700;color:var(--text)}
.dest-popup-close{
  width:36px;height:36px;border-radius:50%;border:none;
  background:#f3f4f6;color:var(--text-light);font-size:18px;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  transition:all .2s;
}
.dest-popup-close:hover{background:#e5e7eb;color:var(--text)}

/* 弹层内容 */
.dest-popup-body{padding:28px;overflow-y:auto;flex:1}

/* 主题分组 */
.theme-section{margin-bottom:40px;padding-top:10px;scroll-margin-top:20px;}
.theme-section:first-child{padding-top:0}
.theme-section:last-child{margin-bottom:0}
.theme-title{
  font-size:18px;font-weight:700;color:var(--text);
  margin-bottom:18px;padding-left:14px;
  border-left:4px solid var(--primary);
  display:flex;align-items:center;gap:8px;
}
.theme-title .theme-icon{width:24px;height:24px;object-fit:contain}

/* 弹层中的目的地卡片网格 */
.popup-dest-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:14px;}
.popup-dest-card{
  padding:14px 16px;border-radius:14px;cursor:pointer;
  transition:all .25s ease;
  border:1px solid #e5e7eb;
  background:#fff;
  position:relative;
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
}
.popup-dest-card:hover{transform:translateY(-4px);border-color:var(--accent);box-shadow:0 8px 24px rgba(0,0,0,0.08);}
.popup-dest-card.selected{border-color:var(--primary);background:#f5f9ff;box-shadow:0 0 0 2px rgba(21,101,192,0.15),0 8px 24px rgba(0,0,0,0.08);}
.popup-dest-card .pd-check{
  position:absolute;top:10px;right:10px;
  width:22px;height:22px;border-radius:50%;
  background:var(--primary);color:#fff;
  display:none;align-items:center;justify-content:center;
  font-size:12px;font-weight:700;
}
.popup-dest-card.selected .pd-check{display:flex}
.popup-dest-card .pd-name{font-size:15px;font-weight:700;color:var(--text);margin-bottom:2px;}
.popup-dest-card .pd-province{font-size:12px;color:#6b7280;margin-bottom:6px;}
.popup-dest-card .pd-desc{
  font-size:12px;color:#9ca3af;margin-top:0;
  line-height:1.45;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;
}

/* 弹层底部 */
.dest-popup-footer{
  padding:16px 28px;border-top:1px solid #e5e7eb;
  display:flex;align-items:center;justify-content:space-between;
  flex-shrink:0;background:#fafbfc;
}
.dest-popup-footer .hint{font-size:13px;color:var(--text-light);}
.dest-popup-footer .btn-confirm{
  padding:10px 28px;background:var(--accent);color:#fff;
  border:none;border-radius:8px;font-size:14px;font-weight:600;
  cursor:pointer;transition:all .3s;
}
.dest-popup-footer .btn-confirm:hover{background:#f4511e}
.dest-popup-footer .btn-clear{
  padding:10px 20px;background:none;color:var(--text-light);
  border:1px solid #d1d5db;border-radius:8px;font-size:14px;
  cursor:pointer;transition:all .2s;margin-right:auto;
}
.dest-popup-footer .btn-clear:hover{background:#fee2e2;color:#dc2626;border-color:#fca5a5}

/* 主题快速跳转标签 */
.theme-nav{
  padding:14px 14px;border-bottom:1px solid #e5e7eb;flex-shrink:0;
  display:flex;flex-wrap:wrap;gap:8px;
}
.theme-nav-tab{
  padding:6px 14px;border-radius:20px;border:1px solid #d1d5db;
  background:#fff;color:var(--text);font-size:13px;cursor:pointer;
  transition:all .2s;white-space:nowrap;
}
.theme-nav-tab:hover{background:#e8f0fe;border-color:var(--primary);color:var(--primary)}
.theme-nav-tab.active{background:var(--primary);color:#fff;border-color:var(--primary)}

/* 特色体验 */
.experience-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px}
.exp-card{
  background:var(--card);border-radius:var(--radius);padding:36px 28px;
  text-align:center;box-shadow:var(--shadow);transition:all .3s;
  border-top:4px solid transparent;
}
.exp-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-hover)}
.exp-card:nth-child(1){border-top-color:var(--primary-dark)}
.exp-card:nth-child(2){border-top-color:var(--accent)}
.exp-card:nth-child(3){border-top-color:var(--primary)}
.exp-card:nth-child(4){border-top-color:#0288d1}
.exp-icon{font-size:48px;margin-bottom:20px}
.exp-card h3{font-size:20px;font-weight:700;margin-bottom:12px}
.exp-card p{font-size:14px;color:var(--text-light)}

/* 评价区域 */
.testimonials{
  background:linear-gradient(180deg,#f5f7fa 0%,#e8eaf6 100%);
  padding:100px 60px;
  overflow:hidden;
}
.test-wrapper{max-width:1280px;margin:0 auto;position:relative;}
.test-carousel{overflow:hidden;position:relative;margin:0 50px;touch-action:pan-y;}
.test-track{display:flex;transition:transform .5s cubic-bezier(0.25,0.1,0.25,1);gap:30px;user-select:none;-webkit-user-select:none;}
.test-card{
  background:#fff;border-radius:var(--radius);padding:36px;
  box-shadow:var(--shadow);position:relative;
  flex:0 0 calc((100% - 60px) / 3);max-width:calc((100% - 60px) / 3);
  box-sizing:border-box;
}
.test-card::before{
  content:"\201C";position:absolute;top:10px;right:24px;
  font-size:80px;color:var(--primary);opacity:0.1;font-family:Georgia;
}
.test-card .stars{color:#ffa000;margin-bottom:16px;font-size:16px}
.test-card p{font-size:15px;color:var(--text);margin-bottom:20px;line-height:1.7}
.test-user{display:flex;align-items:center;gap:14px}
.test-avatar{
  width:50px;height:50px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:700;color:#fff;
}
.test-user-info .name{font-weight:700;font-size:15px}
.test-user-info .trip{font-size:13px;color:var(--text-light)}

/* 评价导航箭头 */
.test-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  width:48px;height:48px;border-radius:50%;
  background:#fff;border:1px solid #e5e7eb;
  box-shadow:0 4px 16px rgba(0,0,0,0.1);
  cursor:pointer;z-index:2;display:flex;
  align-items:center;justify-content:center;
  font-size:20px;color:var(--text);
  transition:all .3s;
}
.test-arrow:hover{background:var(--primary);color:#fff;border-color:var(--primary);box-shadow:0 6px 24px rgba(21,101,192,0.3)}
.test-arrow-left{left:0}
.test-arrow-right{right:0}
.test-arrow:disabled{opacity:0.3;cursor:not-allowed;transform:translateY(-50%)}
.test-arrow:disabled:hover{background:#fff;color:var(--text);border-color:#e5e7eb;box-shadow:0 4px 16px rgba(0,0,0,0.1)}

/* 评价指示点 */
.test-dots{display:flex;justify-content:center;gap:8px;margin-top:24px;}
.test-dot{width:10px;height:10px;border-radius:50%;background:#d1d5db;cursor:pointer;transition:all .3s;}
.test-dot.active{background:var(--primary);width:28px;border-radius:5px;}

/* 页脚 */
footer{
  background:#1a1a2e;color:rgba(255,255,255,0.7);
  padding:60px 60px 30px;
}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;
  max-width:1280px;margin:0 auto 40px;
}
.footer-brand h3{color:#fff;font-size:24px;margin-bottom:16px;display:flex;align-items:center;gap:10px}
.footer-brand h3 img{height:32px;width:auto;display:block}
.footer-brand p{font-size:14px;line-height:1.7;max-width:300px}
.footer-col h4{color:#fff;font-size:16px;margin-bottom:18px}
.footer-col a{display:block;color:rgba(255,255,255,0.6);text-decoration:none;font-size:14px;margin-bottom:10px;transition:color .3s}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:24px;text-align:center;font-size:13px;
  max-width:1280px;margin:0 auto;
}
.footer-beian{
  margin-top:10px;font-size:12px;line-height:1.8;
  color:#fff;
  display:flex;flex-wrap:wrap;gap:4px 18px;justify-content:center;align-items:center;
}
.footer-beian a,.footer-beian a:link,.footer-beian a:visited,.footer-beian a:active{color:rgba(255,255,255,0.72);text-decoration:none;transition:opacity .2s}
.footer-beian a:hover{opacity:.75}
.footer-tels{
  margin-top:7px;font-size:12px;line-height:1.9;
  color:rgba(255,255,255,0.72);
  display:flex;flex-wrap:wrap;gap:4px 18px;justify-content:center;align-items:center;
}
@media (max-width:768px){
  footer{display:none !important}
}

/* Toast */
.toast{
  position:fixed;bottom:40px;left:50%;transform:translateX(-50%) translateY(20px);
  background:#fff;color:var(--text);padding:16px 32px;border-radius:50px;
  box-shadow:0 10px 40px rgba(0,0,0,0.2);font-size:15px;font-weight:500;
  z-index:9999;display:flex;align-items:center;gap:10px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .35s ease, transform .35s ease, visibility .35s ease;
  white-space:nowrap;max-width:calc(100vw - 32px);box-sizing:border-box
}
.toast #toastMsg{white-space:nowrap}
.toast.show{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translateX(-50%) translateY(0)
}
.toast .icon{width:28px;height:28px;flex:0 0 auto;flex-shrink:0;border-radius:50%;background:#4caf50;color:#fff;display:flex;align-items:center;justify-content:center;font-size:16px;overflow:hidden}
.toast .icon.warn{background:#e53935}
.toast .icon img.emoji-png{width:16px;height:16px;margin:0;vertical-align:top;}
.toast .icon svg{width:16px;height:16px;display:block}
@media(max-width:640px){
  .toast{bottom:180px}
}


/* ================================================================
   公司团建页面（team-building.html）
   ================================================================ */
.page-team .service-hero{
  min-height:70vh;display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;position:relative;overflow:hidden;
  background:linear-gradient(135deg,#1b5e20 0%,#2e7d32 40%,#43a047 70%,#66bb6a 100%);
}
.page-team .service-hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 30% 70%,rgba(255,183,77,0.3),transparent 50%),
             radial-gradient(circle at 70% 30%,rgba(76,175,80,0.3),transparent 50%);
}
.page-team .service-hero-content{position:relative;z-index:2;max-width:800px;padding:0 20px}
.page-team .service-hero h1{font-size:56px;font-weight:800;margin-bottom:16px;text-shadow:0 4px 30px rgba(0,0,0,0.2)}
.page-team .service-hero p{font-size:20px;opacity:0.95;margin-bottom:30px;line-height:1.7}
.page-team .service-hero .hero-stats{display:flex;gap:50px;justify-content:center;margin-top:40px}

.page-team .service-section{padding:100px 60px;max-width:1280px;margin:0 auto}
.page-team .section-intro{text-align:center;margin-bottom:60px}
.page-team .section-intro h2{font-size:42px;font-weight:800;margin-bottom:14px;color:#1a1a2e}
.page-team .section-intro p{font-size:16px;color:#6b7280;max-width:700px;margin:0 auto;line-height:1.7}

.page-team .activity-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:30px}
.page-team .activity-card{
  background:#fff;border-radius:20px;overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);transition:all .4s;
  border-top:5px solid transparent;
}
.page-team .activity-card:hover{transform:translateY(-10px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-team .activity-card:nth-child(1){border-top-color:#43a047}
.page-team .activity-card:nth-child(2){border-top-color:#ff7043}
.page-team .activity-card:nth-child(3){border-top-color:#1e88e5}
.page-team .activity-card:nth-child(4){border-top-color:#8e24aa}
.page-team .activity-card:nth-child(5){border-top-color:#f57c00}
.page-team .activity-card:nth-child(6){border-top-color:#00897b}
.page-team .activity-img{
  height:200px;background-size:cover;background-position:center;
  background-color:#e8f5e9;position:relative;
}
.page-team .activity-img .activity-tag{
  position:absolute;top:14px;left:14px;
  padding:5px 14px;background:rgba(255,255,255,0.95);border-radius:20px;
  font-size:12px;font-weight:700;color:#2e7d32;
}
.page-team .activity-body{padding:28px}
.page-team .activity-body h3{font-size:22px;font-weight:700;margin-bottom:12px;color:#1a1a2e}
.page-team .activity-body p{font-size:15px;color:#6b7280;line-height:1.7;margin-bottom:16px}
.page-team .activity-features{display:flex;flex-wrap:wrap;gap:8px}
.page-team .activity-features span{
  padding:4px 12px;background:#f5f7fa;border-radius:20px;
  font-size:12px;color:#6b7280;font-weight:500;
}

.page-team .case-section{background:linear-gradient(180deg,#f5f7fa 0%,#e8f5e9 100%);padding:100px 60px}
.page-team .case-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(380px,1fr));gap:30px;max-width:1280px;margin:0 auto}
.page-team .case-card{
  background:#fff;border-radius:20px;overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);transition:all .3s;
}
.page-team .case-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-team .case-header{padding:28px 30px;display:flex;align-items:center;gap:16px;border-bottom:1px solid #f0f0f0}
.page-team .case-company{
  width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:22px;font-weight:800;color:#fff;flex-shrink:0;
}
.page-team .case-company-info .company-name{font-weight:700;font-size:17px;color:#1a1a2e}
.page-team .case-company-info .company-detail{font-size:13px;color:#9ca3af;margin-top:2px}
.page-team .case-body{padding:24px 30px 30px}
.page-team .case-body h4{font-size:18px;font-weight:700;margin-bottom:12px;color:#2e7d32}
.page-team .case-body p{font-size:14px;color:#6b7280;line-height:1.7;margin-bottom:16px}
.page-team .case-stats{display:flex;gap:20px}
.page-team .case-stat{text-align:center}
.page-team .case-stat .cs-num{font-size:24px;font-weight:800;color:#2e7d32}
.page-team .case-stat .cs-label{font-size:12px;color:#9ca3af;margin-top:4px}

.page-team .flow-section{padding:100px 60px;max-width:1280px;margin:0 auto;text-align:center}
.page-team .flow-steps{display:flex;flex-wrap:wrap;justify-content:center;gap:40px;margin-top:50px;position:relative}
.page-team .flow-step{flex:1;min-width:200px;max-width:250px;text-align:center;position:relative;}
.page-team .flow-step-num{
  width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:28px;font-weight:800;color:#fff;margin:0 auto 20px;
  position:relative;z-index:2;
}
.page-team .flow-step:nth-child(1) .flow-step-num{background:#43a047}
.page-team .flow-step:nth-child(2) .flow-step-num{background:#ff7043}
.page-team .flow-step:nth-child(3) .flow-step-num{background:#1e88e5}
.page-team .flow-step:nth-child(4) .flow-step-num{background:#8e24aa}
.page-team .flow-step:nth-child(5) .flow-step-num{background:#00897b}
.page-team .flow-step h4{font-size:17px;font-weight:700;margin-bottom:8px;color:#1a1a2e}
.page-team .flow-step p{font-size:13px;color:#6b7280;line-height:1.6}

.page-team .cta-bar{background:linear-gradient(135deg,#2e7d32,#43a047);padding:60px;text-align:center;color:#fff}
.page-team .cta-bar h2{font-size:36px;font-weight:800;margin-bottom:16px}
.page-team .cta-bar p{font-size:17px;opacity:0.9;margin-bottom:30px}
.page-team .cta-bar .cta-phone{display:inline-flex;align-items:center;gap:12px;font-size:28px;font-weight:800;margin-bottom:10px}
.page-team .cta-bar .cta-phone .phone-icon{
  display:inline-block;width:36px;height:36px;vertical-align:middle;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(28%) sepia(56%) saturate(3957%) hue-rotate(347deg) brightness(93%) contrast(102%);
}
.page-team .cta-bar .cta-note{font-size:15px;opacity:0.75}


/* ================================================================
   会议会奖页面（mice.html）
   ================================================================ */
.page-mice .mice-hero{
  min-height:70vh;display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;position:relative;overflow:hidden;
  background:linear-gradient(135deg,#0d47a1 0%,#1565c0 40%,#1e88e5 70%,#42a5f5 100%);
}
.page-mice .mice-hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 25% 75%,rgba(255,152,0,0.25),transparent 50%),
             radial-gradient(circle at 75% 25%,rgba(33,150,243,0.3),transparent 50%);
}
.page-mice .mice-hero-content{position:relative;z-index:2;max-width:800px;padding:0 20px}
.page-mice .mice-hero h1{font-size:56px;font-weight:800;margin-bottom:16px;text-shadow:0 4px 30px rgba(0,0,0,0.2)}
.page-mice .mice-hero p{font-size:20px;opacity:0.95;margin-bottom:30px;line-height:1.7}
.page-mice .mice-hero .acronym-row{display:flex;gap:30px;justify-content:center;margin-top:40px;flex-wrap:wrap}
.page-mice .mice-hero .acronym-item{text-align:center;min-width:120px}
.page-mice .mice-hero .acronym-item .letter{font-size:42px;font-weight:900;color:#ffd54f}
.page-mice .mice-hero .acronym-item .meaning{font-size:14px;opacity:0.85;margin-top:4px}

.page-mice .service-section{padding:100px 60px;max-width:1280px;margin:0 auto}
.page-mice .section-intro{text-align:center;margin-bottom:60px}
.page-mice .section-intro h2{font-size:42px;font-weight:800;margin-bottom:14px;color:#1a1a2e}
.page-mice .section-intro p{font-size:16px;color:#6b7280;max-width:700px;margin:0 auto;line-height:1.7}

.page-mice .service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
.page-mice .service-card{
  background:#fff;border-radius:20px;padding:40px 32px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);transition:all .4s;
  text-align:center;position:relative;overflow:hidden;
}
.page-mice .service-card::before{content:"";position:absolute;top:0;left:0;right:0;height:4px;}
.page-mice .service-card:nth-child(1)::before{background:#1565c0}
.page-mice .service-card:nth-child(2)::before{background:#ff7043}
.page-mice .service-card:nth-child(3)::before{background:#43a047}
.page-mice .service-card:nth-child(4)::before{background:#8e24aa}
.page-mice .service-card:hover{transform:translateY(-10px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-mice .service-icon{font-size:56px;margin-bottom:20px}
.page-mice .service-card h3{font-size:22px;font-weight:700;margin-bottom:14px;color:#1a1a2e}
.page-mice .service-card p{font-size:14px;color:#6b7280;line-height:1.7;margin-bottom:18px}
.page-mice .service-card .service-tags{display:flex;flex-wrap:wrap;gap:6px;justify-content:center}
.page-mice .service-card .service-tags span{
  padding:4px 12px;background:#f5f7fa;border-radius:20px;font-size:12px;color:#6b7280;
}

.page-mice .venue-section{background:linear-gradient(180deg,#f5f7fa 0%,#e3f2fd 100%);padding:100px 60px}
.page-mice .venue-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;max-width:1280px;margin:0 auto}
.page-mice .venue-card{
  background:#fff;border-radius:20px;overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);transition:all .3s;
}
.page-mice .venue-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-mice .venue-img{height:200px;background-size:cover;background-position:center;background-color:#e3f2fd;position:relative}
.page-mice .venue-img .venue-capacity{
  position:absolute;bottom:14px;left:14px;
  padding:5px 14px;background:rgba(0,0,0,0.7);border-radius:20px;
  color:#fff;font-size:12px;font-weight:600;
}
.page-mice .venue-info{padding:24px}
.page-mice .venue-info h3{font-size:20px;font-weight:700;margin-bottom:8px;color:#1a1a2e}
.page-mice .venue-info .venue-location{font-size:13px;color:#6b7280;margin-bottom:12px}
.page-mice .venue-info .venue-features{display:flex;flex-wrap:wrap;gap:6px}
.page-mice .venue-info .venue-features span{
  padding:3px 10px;background:#e8f0fe;color:#1565c0;border-radius:12px;font-size:12px;font-weight:500;
}
.page-mice .venue-img .venue-view{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(0.95);
  padding:8px 18px;background:rgba(21,101,192,0.9);border-radius:20px;
  color:#fff;font-size:13px;font-weight:600;opacity:0;transition:all .25s;
  pointer-events:none;white-space:nowrap;
}
.page-mice .venue-card:hover .venue-view{opacity:1;transform:translate(-50%,-50%) scale(1)}
.page-mice .venue-card{cursor:pointer}

/* ===== 会场详情弹层 ===== */
.venue-modal-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(0,0,0,0.6);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s;
  padding:20px;
}
.venue-modal-overlay.open{opacity:1;pointer-events:auto}
.venue-modal{
  background:#fff;border-radius:24px;
  width:100%;max-width:760px;max-height:90vh;
  overflow:hidden;position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
  animation:venueModalIn .35s ease;
  display:flex;flex-direction:column;
}
@keyframes venueModalIn{
  from{opacity:0;transform:translateY(40px) scale(0.95)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
.venue-modal-close{
  position:absolute;top:16px;right:16px;z-index:10;
  width:40px;height:40px;border-radius:50%;border:none;
  background:rgba(255,255,255,0.95);color:var(--text);
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.12);transition:all .2s;
}
.venue-modal-close:hover{background:#fff;transform:rotate(90deg)}
.venue-modal-img{
  height:280px;background-size:cover;background-position:center;
  background-color:#e3f2fd;flex-shrink:0;
}
.venue-modal-body{padding:32px;overflow-y:auto;flex:1}
.venue-modal-capacity{
  display:inline-block;padding:5px 14px;background:var(--accent);
  color:#fff;border-radius:20px;font-size:12px;font-weight:600;margin-bottom:14px;
}
.venue-modal-body h3{font-size:26px;font-weight:800;color:var(--text);margin-bottom:8px}
.venue-modal-location{
  font-size:14px;color:#6b7280;margin-bottom:18px;
  display:flex;align-items:center;gap:6px;
}
.venue-modal-location::before{
  content:"";display:inline-block;width:16px;height:16px;
  background:url('../images/icons/1f4cd.png') center/contain no-repeat;
}
.venue-modal-features{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
.venue-modal-features span{
  padding:5px 12px;background:#e8f0fe;color:#1565c0;border-radius:14px;
  font-size:13px;font-weight:500;
}
.venue-modal-desc{
  font-size:15px;color:#4b5563;line-height:1.8;margin-bottom:26px;
}
.venue-modal-cta{text-align:center}
.venue-modal-cta .btn-primary{
  display:inline-block;padding:12px 32px;background:var(--primary);color:#fff;
  border-radius:30px;text-decoration:none;font-size:15px;font-weight:600;
  transition:background .3s;
}
.venue-modal-cta .btn-primary:hover{background:var(--primary-dark)}

@media (max-width:640px){
  .venue-modal-img{height:200px}
  .venue-modal-body{padding:24px}
  .venue-modal-body h3{font-size:22px}
  .venue-modal-desc{font-size:14px}
}

.page-mice .case-section{padding:100px 60px;max-width:1280px;margin:0 auto}
.page-mice .case-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(380px,1fr));gap:30px}
.page-mice .case-card{
  background:#fff;border-radius:20px;padding:36px 32px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);transition:all .3s;
  border-left:5px solid #1565c0;
}
.page-mice .case-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-mice .case-card h4{font-size:20px;font-weight:700;margin-bottom:6px;color:#1a1a2e}
.page-mice .case-card .case-type{font-size:13px;color:#1565c0;font-weight:600;margin-bottom:14px}
.page-mice .case-card p{font-size:14px;color:#6b7280;line-height:1.7;margin-bottom:18px}
.page-mice .case-meta{display:flex;gap:24px;font-size:12px;color:#9ca3af}
.page-mice .case-meta span{display:flex;align-items:center;gap:4px}

.page-mice .why-section{padding:100px 60px;max-width:1280px;margin:0 auto}
.page-mice .why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-top:50px}
.page-mice .why-card{
  background:#fff;border-radius:20px;padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);text-align:center;transition:all .3s;
}
.page-mice .why-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,0.1)}
.page-mice .why-card .why-icon{font-size:40px;margin-bottom:16px}
.page-mice .why-card h4{font-size:18px;font-weight:700;margin-bottom:10px;color:#1a1a2e}
.page-mice .why-card p{font-size:14px;color:#6b7280;line-height:1.6}

.page-mice .cta-bar{background:linear-gradient(135deg,#0d47a1,#1565c0);padding:60px;text-align:center;color:#fff}
.page-mice .cta-bar h2{font-size:36px;font-weight:800;margin-bottom:16px}
.page-mice .cta-bar p{font-size:17px;opacity:0.9;margin-bottom:30px}
.page-mice .cta-bar .cta-phone{display:inline-flex;align-items:center;gap:12px;font-size:28px;font-weight:800;margin-bottom:10px}
.page-mice .cta-bar .cta-phone .phone-icon{
  display:inline-block;width:36px;height:36px;vertical-align:middle;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(28%) sepia(56%) saturate(3957%) hue-rotate(347deg) brightness(93%) contrast(102%);
}
.page-mice .cta-bar .cta-note{font-size:15px;opacity:0.75}


/* ================================================================
   入境旅游页面（inbound-tourism.html）
   ================================================================ */
.page-inbound .inbound-hero{
  min-height:80vh;display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;position:relative;overflow:hidden;
  background:linear-gradient(135deg,#8b0000 0%,#c62828 30%,#d32f2f 60%,#e53935 100%);
}
.page-inbound .inbound-hero::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 30% 70%,rgba(249,168,37,0.3),transparent 50%),
             radial-gradient(circle at 70% 30%,rgba(198,40,40,0.3),transparent 50%),
             radial-gradient(circle at 50% 50%,rgba(139,0,0,0.2),transparent 70%);
}
.page-inbound .inbound-hero-content{position:relative;z-index:2;max-width:900px;padding:0 20px}
.page-inbound .inbound-hero .hero-badge{
  display:inline-block;padding:8px 24px;background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.3);border-radius:30px;
  font-size:14px;margin-bottom:24px;letter-spacing:1px;
}
.page-inbound .inbound-hero h1{font-size:60px;font-weight:800;margin-bottom:10px;text-shadow:0 4px 30px rgba(0,0,0,0.2)}
.page-inbound .inbound-hero .subtitle-en{font-size:24px;font-weight:400;opacity:0.9;margin-bottom:8px;font-style:italic}
.page-inbound .inbound-hero .subtitle-zh{font-size:20px;opacity:0.85;margin-bottom:30px}
.page-inbound .inbound-hero .hero-stats{display:flex;gap:50px;justify-content:center;margin-top:40px}
.page-inbound .inbound-hero .hero-stats .stat .num{color:#f9a825}

.page-inbound .section-alt{background:linear-gradient(180deg,#fff8f0 0%,#fff3e0 100%);padding:100px 60px}
.page-inbound .section-alt .container,.page-inbound .section .container{max-width:1280px;margin:0 auto}
.page-inbound .section-header .en-sub{font-size:18px;color:#c62828;font-style:italic;margin-bottom:12px}
.page-inbound .section-header p{max-width:700px;line-height:1.7}

.page-inbound .why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px}
.page-inbound .why-card{
  background:#fff;border-radius:20px;padding:36px 28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);transition:all .3s;
  text-align:center;border-top:4px solid transparent;
}
.page-inbound .why-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,0.1)}
.page-inbound .why-card:nth-child(1){border-top-color:#c62828}
.page-inbound .why-card:nth-child(2){border-top-color:#f9a825}
.page-inbound .why-card:nth-child(3){border-top-color:#c62828}
.page-inbound .why-card:nth-child(4){border-top-color:#f9a825}
.page-inbound .why-card:nth-child(5){border-top-color:#c62828}
.page-inbound .why-card:nth-child(6){border-top-color:#f9a825}
.page-inbound .why-card .why-icon{font-size:48px;margin-bottom:16px}
.page-inbound .why-card h3{font-size:20px;font-weight:700;margin-bottom:6px;color:#1a1a2e}
.page-inbound .why-card .why-en{font-size:14px;color:#c62828;font-style:italic;margin-bottom:12px}
.page-inbound .why-card p{font-size:14px;color:#6b7280;line-height:1.7}

.page-inbound .route-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(360px,1fr));gap:30px}
.page-inbound .route-card{
  background:#fff;border-radius:20px;overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);transition:all .3s;
}
.page-inbound .route-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-inbound .route-img{height:220px;background-size:cover;background-position:center;background-color:#fce4ec;position:relative}
.page-inbound .route-img .route-days{
  position:absolute;top:14px;right:14px;
  padding:6px 16px;background:rgba(198,40,40,0.9);border-radius:20px;
  color:#fff;font-size:13px;font-weight:700;
}
.page-inbound .route-body{padding:28px}
.page-inbound .route-body h3{font-size:22px;font-weight:700;margin-bottom:4px;color:#1a1a2e}
.page-inbound .route-body .route-en{font-size:14px;color:#c62828;font-style:italic;margin-bottom:12px}
.page-inbound .route-body p{font-size:14px;color:#6b7280;line-height:1.7;margin-bottom:14px}
.page-inbound .route-body .route-stops{display:flex;flex-wrap:wrap;gap:6px}
.page-inbound .route-body .route-stops span{
  padding:4px 12px;background:#fff8f0;border:1px solid #ffe0b2;
  border-radius:20px;font-size:12px;color:#c62828;font-weight:500;
}

.page-inbound .service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.page-inbound .inbound-service{
  background:#fff;border-radius:20px;padding:36px 28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);transition:all .3s;
  text-align:center;position:relative;overflow:hidden;
}
.page-inbound .inbound-service::before{
  content:"";position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,#c62828,#f9a825);
}
.page-inbound .inbound-service:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(0,0,0,0.12)}
.page-inbound .inbound-service .svc-icon{font-size:48px;margin-bottom:14px}
.page-inbound .inbound-service h4{font-size:18px;font-weight:700;margin-bottom:4px;color:#1a1a2e}
.page-inbound .inbound-service .svc-en{font-size:13px;color:#c62828;font-style:italic;margin-bottom:10px}
.page-inbound .inbound-service p{font-size:13px;color:#6b7280;line-height:1.6}

.page-inbound .dest-grid-ib{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
.page-inbound .ib-dest-card{
  background:#fff;border-radius:16px;overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);transition:all .3s;cursor:default;
}
.page-inbound .ib-dest-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,0.1)}
.page-inbound .ib-dest-img{height:160px;background-size:cover;background-position:center;background-color:#fce4ec;position:relative}
.page-inbound .ib-dest-info{padding:18px}
.page-inbound .ib-dest-info h4{font-size:16px;font-weight:700;color:#1a1a2e;margin-bottom:2px}
.page-inbound .ib-dest-info .ib-en{font-size:12px;color:#c62828;font-style:italic;margin-bottom:6px}
.page-inbound .ib-dest-info p{font-size:12px;color:#6b7280;line-height:1.5}

.page-inbound .tips-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.page-inbound .tip-card{
  background:#fff;border-radius:16px;padding:28px 24px;
  box-shadow:0 6px 20px rgba(0,0,0,0.04);transition:all .3s;
  display:flex;gap:16px;align-items:flex-start;
}
.page-inbound .tip-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,0.08)}
.page-inbound .tip-card .tip-icon{
  width:48px;height:48px;border-radius:12px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:24px;
}
.page-inbound .tip-card .tip-icon.red{background:#ffebee}
.page-inbound .tip-card .tip-icon.gold{background:#fff8e1}
.page-inbound .tip-card .tip-icon.green{background:#e8f5e9}
.page-inbound .tip-card .tip-icon.blue{background:#e3f2fd}
.page-inbound .tip-card .tip-info h4{font-size:16px;font-weight:700;color:#1a1a2e;margin-bottom:2px}
.page-inbound .tip-card .tip-info .tip-en{font-size:12px;color:#c62828;font-style:italic;margin-bottom:6px}
.page-inbound .tip-card .tip-info p{font-size:13px;color:#6b7280;line-height:1.6}

.page-inbound .contact-grid{max-width:500px;margin:0 auto;grid-template-columns:1fr}
.page-inbound .contact-box{
  background:#fff;border-radius:20px;padding:36px;text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}
.page-inbound .contact-box h4{font-size:20px;font-weight:700;margin-bottom:6px;color:#1a1a2e}
.page-inbound .contact-box .contact-en{font-size:14px;color:#c62828;font-style:italic;margin-bottom:16px}
.page-inbound .contact-box .contact-val{font-size:18px;font-weight:700;color:#c62828;margin-bottom:6px}
.page-inbound .contact-box .contact-sub{font-size:13px;color:#6b7280}

.page-inbound .cta-bar{background:linear-gradient(135deg,#8b0000,#c62828);padding:60px;text-align:center;color:#fff;}
.page-inbound .cta-bar h2{font-size:36px;font-weight:800;margin-bottom:8px}
.page-inbound .cta-bar .cta-en{font-size:18px;opacity:0.85;font-style:italic;margin-bottom:16px}
.page-inbound .cta-bar p{font-size:17px;opacity:0.9;margin-bottom:30px}
.page-inbound .cta-bar .cta-phone{display:inline-flex;align-items:center;gap:12px;font-size:28px;font-weight:800;margin-bottom:10px}
.page-inbound .cta-bar .cta-phone .phone-icon{
  display:inline-block;width:36px;height:36px;vertical-align:middle;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(28%) sepia(56%) saturate(3957%) hue-rotate(347deg) brightness(93%) contrast(102%);
}
.page-inbound .cta-bar .cta-note{font-size:15px;opacity:0.75}

/* ----------------------------------------------------------------
   入境旅游：季节提示条 + 卡片可点击态 + 中英文详情弹层
   ---------------------------------------------------------------- */
.page-inbound .season-hint{
  display:flex;align-items:center;justify-content:center;gap:10px;
  margin-bottom:34px;padding:12px 26px;
  background:linear-gradient(90deg,rgba(198,40,40,0.08),rgba(249,168,37,0.14),rgba(198,40,40,0.08));
  border:1px solid rgba(198,40,40,0.18);border-radius:40px;
  text-align:center;
}
.page-inbound .season-hint .season-hint-text{display:flex;flex-direction:column;align-items:center;gap:2px}
.page-inbound .season-hint .season-hint-text strong{font-size:16px;color:var(--china-red);font-weight:700}
.page-inbound .season-hint .season-hint-text em{font-size:13px;color:var(--text-light);font-style:italic}

/* 卡片可点击态 */
.page-inbound .ib-click{cursor:pointer}
.page-inbound .route-img .route-view{
  position:absolute;bottom:14px;left:14px;
  padding:5px 14px;background:rgba(0,0,0,0.55);border-radius:20px;
  color:#fff;font-size:12px;font-weight:600;backdrop-filter:blur(4px);
  display:inline-flex;align-items:center;gap:4px;
  transition:background .25s;
}
.page-inbound .route-card:hover .route-view{background:var(--china-red)}
.page-inbound .route-view i{font-style:normal;transition:transform .25s}
.page-inbound .route-card:hover .route-view i{transform:translateX(3px)}
.page-inbound .ib-dest-img .ib-dest-rank{
  position:absolute;top:12px;left:12px;
  width:26px;height:26px;border-radius:50%;
  background:rgba(198,40,40,0.9);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:800;box-shadow:0 2px 8px rgba(0,0,0,0.25);
}

/* 弹层遮罩 */
.ib-modal-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(0,0,0,0.6);
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .3s;
  padding:24px;
}
.ib-modal-overlay.open{opacity:1;pointer-events:auto}

/* 弹层主体 */
.ib-modal{
  background:#fff;border-radius:22px;
  width:92vw;max-width:760px;max-height:88vh;
  overflow-y:auto;position:relative;
  box-shadow:0 30px 90px rgba(0,0,0,0.35);
  animation:ibModalIn .35s cubic-bezier(0.23,1,0.32,1);
}
@keyframes ibModalIn{
  from{opacity:0;transform:translateY(40px) scale(0.96)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
.ib-modal-close{
  position:sticky;top:16px;float:right;z-index:10;
  width:38px;height:38px;margin:16px 16px 0 0;border-radius:50%;
  border:none;background:rgba(255,255,255,0.92);color:#333;
  font-size:16px;cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,0.18);transition:all .2s;
}
.ib-modal-close:hover{background:var(--china-red);color:#fff;transform:rotate(90deg)}

/* 弹层横幅 */
.ib-cover{
  height:230px;background-size:cover;background-position:center;position:relative;
}
.ib-cover::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,0.15) 0%,transparent 40%,rgba(0,0,0,0.45) 100%);
}
.ib-cover-badge{
  position:absolute;bottom:18px;left:24px;z-index:2;
  padding:7px 18px;background:rgba(198,40,40,0.92);border-radius:22px;
  color:#fff;font-size:14px;font-weight:700;letter-spacing:.5px;
  box-shadow:0 4px 16px rgba(0,0,0,0.3);
}

/* 弹层内容 */
.ib-body{padding:6px 30px 34px}
.ib-head{padding:22px 0 4px}
.ib-head h3{font-size:26px;font-weight:800;color:var(--text)}
.ib-en-title{font-size:16px;color:var(--china-red);font-style:italic;margin-top:4px}

/* 城市/线路标签 */
.ib-stops,.ib-tags{display:flex;flex-wrap:wrap;gap:8px;margin:14px 0 6px}
.ib-stops span{
  padding:5px 14px;background:#fff8f0;border:1px solid #ffe0b2;
  border-radius:20px;font-size:13px;color:var(--china-red);font-weight:500;
}
.ib-tags span{
  padding:5px 14px;background:#e8f0fe;border-radius:20px;
  font-size:13px;color:var(--primary);font-weight:500;
}

/* 弹层内容分节 */
.ib-section{margin-top:26px}
.ib-sec-title{
  font-size:16px;font-weight:700;color:var(--text);
  padding-left:12px;border-left:4px solid var(--china-red);
  margin-bottom:14px;
}
#ibModal .ib-cn{font-size:14px;color:#444;line-height:1.85;margin-bottom:10px}
#ibModal .ib-en{font-size:13px;color:var(--text-light);font-style:italic;line-height:1.8}

/* 行程亮点 */
.ib-highlights{list-style:none}
.ib-highlights li{
  display:flex;flex-direction:column;gap:2px;
  padding:12px 16px;margin-bottom:10px;
  background:#faf9f7;border:1px solid #f0ece6;border-radius:12px;
}
.ib-hl-cn{font-size:14px;font-weight:600;color:var(--text)}
.ib-hl-en{font-size:12px;color:var(--text-light);font-style:italic}

/* 每日行程 */
.ib-itinerary{display:flex;flex-direction:column;gap:0}
.ib-day{
  display:flex;gap:14px;padding:13px 4px;
  border-bottom:1px dashed #e8e4de;
}
.ib-day:last-child{border-bottom:none}
.ib-day-num{
  flex-shrink:0;width:44px;height:44px;border-radius:12px;
  background:linear-gradient(135deg,var(--china-red),#e53935);
  color:#fff;font-size:14px;font-weight:800;
  display:flex;align-items:center;justify-content:center;
}
.ib-day-text{flex:1;padding-top:1px}
.ib-day-text .zh{font-size:14px;color:#333;line-height:1.6;font-weight:500}
.ib-day-text .en{font-size:12.5px;color:var(--text-light);line-height:1.6;margin-top:3px;font-style:italic}

/* 城市景点 / 美食 / 最佳时间 */
.ib-spots{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.ib-spot{
  display:flex;flex-direction:column;gap:2px;
  padding:12px 16px;background:#faf9f7;border:1px solid #f0ece6;border-radius:12px;
}
.ib-spot .zh{font-size:14px;font-weight:600;color:var(--text)}
.ib-spot .en{font-size:12px;color:var(--text-light);font-style:italic}
.ib-food,.ib-best{
  display:flex;flex-direction:column;gap:4px;
  padding:14px 18px;background:#fff8f0;border:1px solid #ffe8cc;border-radius:12px;
}
.ib-food .zh,.ib-best .zh{font-size:14px;font-weight:600;color:#333}
.ib-food .en,.ib-best .en{font-size:12.5px;color:var(--text-light);font-style:italic}

/* 弹层底部 CTA */
.ib-cta{
  margin-top:28px;padding:16px 20px;
  background:linear-gradient(135deg,#8b0000,#c62828);border-radius:14px;
  color:#fff;font-size:14px;text-align:center;line-height:1.7;
}
.ib-cta a{color:#ffd54f;font-weight:700;text-decoration:none;white-space:nowrap}
.ib-cta a:hover{text-decoration:underline}

/* ----------------------------------------------------------------
   公司团建：季节推荐目的地 + 团建活动弹层
   ---------------------------------------------------------------- */
.page-team .season-hint{
  display:flex;align-items:center;justify-content:center;gap:10px;
  margin-bottom:34px;padding:12px 26px;
  background:linear-gradient(90deg,rgba(198,40,40,0.08),rgba(249,168,37,0.14),rgba(198,40,40,0.08));
  border:1px solid rgba(198,40,40,0.18);border-radius:40px;
  text-align:center;
}
.page-team .season-hint .season-hint-text{display:flex;flex-direction:column;align-items:center;gap:2px}
.page-team .season-hint .season-hint-text strong{font-size:16px;color:var(--china-red);font-weight:700}
.page-team .season-hint .season-hint-text em{font-size:13px;color:var(--text-light);font-style:italic}

.page-team .tb-dest-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px}
.page-team .tb-dest-card{
  background:#fff;border-radius:16px;overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,0.05);transition:all .3s;cursor:default;
}
.page-team .tb-dest-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,0.1)}
.page-team .tb-click{cursor:pointer}
.page-team .tb-dest-img{height:180px;background-size:cover;background-position:center;background-color:#fce4ec;position:relative}
.page-team .tb-dest-img .tb-dest-rank{
  position:absolute;top:12px;left:12px;
  width:26px;height:26px;border-radius:50%;
  background:rgba(198,40,40,0.9);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:800;box-shadow:0 2px 8px rgba(0,0,0,0.25);
}
.page-team .tb-dest-img .tb-dest-view{
  position:absolute;bottom:14px;left:14px;
  padding:5px 14px;background:rgba(0,0,0,0.55);border-radius:20px;
  color:#fff;font-size:12px;font-weight:600;backdrop-filter:blur(4px);
  display:inline-flex;align-items:center;gap:4px;
  transition:background .25s;
}
.page-team .tb-dest-card:hover .tb-dest-view{background:var(--china-red)}
.page-team .tb-dest-info{padding:18px}
.page-team .tb-dest-info h4{font-size:16px;font-weight:700;color:#1a1a2e;margin-bottom:2px}
.page-team .tb-dest-info .tb-en{font-size:12px;color:#c62828;font-style:italic;margin-bottom:6px}
.page-team .tb-dest-info p{font-size:12px;color:#6b7280;line-height:1.5}

/* 团建活动列表 */
.tb-activities{display:flex;flex-direction:column;gap:14px}
.tb-act{display:flex;gap:14px;align-items:flex-start}
.tb-act-num{
  flex-shrink:0;width:30px;height:30px;border-radius:50%;
  background:var(--china-red);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:13px;font-weight:800;
}
.tb-act-text{flex:1}
.tb-act-title{font-size:15px;font-weight:700;color:#1a1a2e;margin-bottom:4px}
.tb-act-desc{font-size:13px;color:#6b7280;line-height:1.6}


/* ================================================================
   全局响应式
   ================================================================ */
@media(max-width:900px){
  /* 导航 */
  nav{padding:14px 20px}
  nav.scrolled{padding:12px 20px}
  .nav-toggle{display:flex;margin-left:auto}
  .nav-links{
    display:none;position:absolute;top:100%;left:0;right:0;
    background:rgba(255,255,255,0.98);backdrop-filter:blur(10px);
    flex-direction:column;gap:0;padding:12px 20px 20px;
    box-shadow:0 12px 40px rgba(0,0,0,0.12);
    border-top:1px solid rgba(0,0,0,0.06);
  }
  .nav-links.open{display:flex}
  .nav-links li{width:100%}
  .nav-links a{
    display:block;color:var(--text);padding:14px 0;font-size:16px;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }
  .nav-links a::after{display:none}
  .nav-links a:hover{color:var(--primary)}
  .nav-dropdown .dropdown-menu{
    position:static;transform:none;opacity:1;visibility:visible;
    box-shadow:none;background:transparent;padding:0 0 0 16px;
    display:none;
  }
  .nav-dropdown.open .dropdown-menu{display:block}
  .nav-dropdown>a::after{display:none}
  .nav-phone{display:none}
  .logo{font-size:20px;gap:8px}
  .logo img{height:34px}

  /* 首页 */
  .hero h1{font-size:32px}
  .hero p{font-size:15px}
  .hero-stats{gap:16px;flex-wrap:nowrap}
  .hero-stats .stat .num{font-size:30px}
  .section{padding:60px 24px}
  .section-header h2{font-size:28px}
  .customize-grid{grid-template-columns:1fr;gap:30px}
  .customize{padding:40px 28px}
  /* 移动端：出发日期/出行人数改为上下两行，各占整行 */
  .form-row{flex-direction:column;gap:0}
  .form-row>*{flex:none;max-width:100%}
  .footer-grid{grid-template-columns:repeat(3,1fr);gap:24px}
  .footer-brand{grid-column:1/-1;text-align:left}
  .footer-brand p{margin:0}
  .search-box{flex-direction:column;border-radius:20px;padding:16px}
  .search-box input{width:100%;margin-bottom:8px}
  .search-box button{width:100%}
  .dest-popup{width:95vw;max-height:90vh}
  .popup-dest-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr))}
  .dest-popup-header,.dest-popup-body,.dest-popup-footer,.theme-nav{padding-left:16px;padding-right:16px}
  .sms-row{flex-direction:column}
  .sms-row input{flex:none;width:100%}
  .pref-panel.active{grid-template-columns:repeat(2,1fr)}
  .testimonials{padding:60px 24px}
  .test-card{flex:0 0 calc(50% - 10px);max-width:calc(50% - 10px)}
  .test-carousel{margin:0 40px}
  .test-track{gap:20px}
  .dest-card{min-width:150px}

  /* 公司团建 */
  .page-team .service-hero h1{font-size:32px}
  .page-team .service-hero{padding:80px 20px}
  .page-team .service-section,.page-team .case-section,.page-team .flow-section,.page-team .cta-bar{padding:60px 24px}
  .page-team .activity-grid{grid-template-columns:1fr}
  .page-team .case-grid{grid-template-columns:1fr}
  .page-team .section-intro h2{font-size:28px}
  .page-team .tb-dest-grid{grid-template-columns:1fr}
  .page-team .tb-dest-img{height:160px}
  .page-team .season-hint{padding:10px 14px;flex-direction:column;gap:4px}

  /* 会议会奖 */
  .page-mice .mice-hero h1{font-size:32px}
  .page-mice .mice-hero{padding:80px 20px}
  .page-mice .mice-hero .acronym-row{
    display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
    max-width:280px;margin:30px auto 0;
  }
  .page-mice .mice-hero .acronym-item{min-width:auto;padding:10px}
  .page-mice .mice-hero .acronym-item .letter{font-size:26px}
  .page-mice .mice-hero .acronym-item .meaning{font-size:12px}
  .page-mice .service-section,.page-mice .venue-section,.page-mice .case-section,.page-mice .why-section,.page-mice .cta-bar{padding:60px 24px}
  .page-mice .service-grid{grid-template-columns:1fr}
  .page-mice .venue-grid{grid-template-columns:1fr}
  .page-mice .why-grid{grid-template-columns:1fr}
  .page-mice .case-grid{grid-template-columns:1fr}
  .page-mice .section-intro h2{font-size:28px}
  .page-mice .service-card{padding:32px 24px}

  /* 入境旅游 */
  .page-inbound .inbound-hero h1{font-size:32px}
  .page-inbound .inbound-hero .subtitle-en{font-size:16px}
  .page-inbound .inbound-hero .subtitle-zh{font-size:15px}
  .page-inbound .inbound-hero{padding:80px 20px}
  .page-inbound .section,.page-inbound .section-alt,.page-inbound .cta-bar{padding:60px 24px}
  .page-inbound .section-header h2{font-size:28px}
  .page-inbound .route-grid{grid-template-columns:1fr}
  .page-inbound .why-grid{grid-template-columns:1fr}
  .page-inbound .season-hint{padding:10px 14px;flex-direction:column;gap:4px}
  .ib-modal-overlay{padding:12px}
  .ib-modal{width:100vw;max-height:94vh;border-radius:16px}
  .ib-cover{height:180px}
  .ib-body{padding:0 18px 26px}
  .ib-head h3{font-size:22px}
  .ib-spots{grid-template-columns:1fr}
  .ib-cover-badge{left:18px;bottom:14px;font-size:13px}

  /* 子页面 */
  body.page-sub nav{padding:14px 20px}
  body.page-sub nav.scrolled{padding:12px 20px}
  body.page-sub .nav-toggle span{background:var(--text)}
  body.page-sub .nav-links{background:rgba(255,255,255,0.98)}
  body.page-sub .nav-links a{color:var(--text)}
  body.page-sub .logo{font-size:20px}
  body.page-sub .logo img{height:34px}
  .page-banner{padding:80px 24px 60px;margin-top:62px}
  .page-banner h1{font-size:28px}
  .page-banner p{font-size:15px}
  .info-content{padding:60px 24px}
  .info-content h2{font-size:26px}
  .info-content h3{font-size:18px}
  .info-content p{font-size:15px;line-height:1.8}
  .values-grid,.timeline,.job-list,.benefits{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .contact-card{padding:24px 20px;gap:16px}
  .contact-card .c-icon{width:48px;height:48px;border-radius:12px;font-size:24px;flex-shrink:0}
  .map-box{padding:24px 20px}
  .map-embed iframe{height:240px}
  .privacy-card{padding:28px 20px}
  .privacy-card h3{font-size:17px}
  .privacy-card p,.privacy-card li{font-size:14px}
  .apply-box{padding:32px 24px}
}

/* 评价轮播：手机端（≤640px 每页1张） */
@media(max-width:640px){
  .testimonials{padding:48px 20px}
  .test-carousel{margin:0 36px}
  .test-track{gap:16px}
  .test-card{flex:0 0 calc(100% - 36px);max-width:calc(100% - 36px);padding:26px 22px}
  .test-card p{font-size:14px;margin-bottom:16px}
  .test-card .stars{margin-bottom:12px}
  .test-arrow{width:40px;height:40px;font-size:16px}
  .test-user{gap:10px}
  .test-avatar{width:44px;height:44px;font-size:18px}
  .test-dots{margin-top:18px}
}

/* ================================================================
   子页面（关于我们/加入我们/联系方式/隐私政策）
   ================================================================ */
/* 子页面导航：常驻白底 + 深色文字（与首页透明导航区分） */
body.page-sub nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 60px;background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);box-shadow:0 2px 20px rgba(0,0,0,0.08);
  transition:padding .4s;
}
body.page-sub nav.scrolled{padding:14px 60px}
body.page-sub .logo{font-size:26px;font-weight:800;display:flex;align-items:center;gap:8px;color:var(--primary-dark);text-decoration:none}
body.page-sub .logo img{height:40px;width:auto;display:block;object-fit:contain;-webkit-filter:drop-shadow(0 1px 1px rgba(0,0,0,0.35)) drop-shadow(0 0 3px rgba(255,255,255,0.6));filter:drop-shadow(0 1px 1px rgba(0,0,0,0.35)) drop-shadow(0 0 3px rgba(255,255,255,0.6))}
body.page-sub .nav-links{display:flex;gap:36px;list-style:none}
body.page-sub .nav-links a{
  text-decoration:none;color:var(--text);font-size:15px;font-weight:500;
  transition:color .3s;position:relative;
}
body.page-sub .nav-links a:hover{color:var(--accent)}
body.page-sub .nav-links a::after{content:"";position:absolute;bottom:-6px;left:0;width:0;height:2px;background:var(--accent);transition:width .3s}
body.page-sub .nav-links a:hover::after{width:100%}
body.page-sub .nav-links a.active{color:var(--primary)}
body.page-sub .nav-links a.active::after{width:100%}
body.page-sub .nav-dropdown{position:relative}
body.page-sub .nav-dropdown>a{cursor:pointer}
body.page-sub .nav-dropdown>a::after{
  content:"";display:inline-block;width:8px;height:8px;
  border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg);margin-left:6px;margin-bottom:2px;
  transition:transform .3s;vertical-align:middle;
  position:static;bottom:auto;left:auto;background:transparent;
}
body.page-sub .nav-dropdown:hover>a::after{transform:rotate(-135deg);margin-bottom:-2px;width:8px;height:8px;position:static;background:transparent}
body.page-sub .nav-dropdown .dropdown-menu{
  position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(8px);
  background:#fff;border-radius:12px;box-shadow:0 12px 40px rgba(0,0,0,0.15);
  padding:8px 0;min-width:160px;opacity:0;visibility:hidden;
  transition:all .3s;z-index:999;
}
body.page-sub .nav-dropdown:hover .dropdown-menu{
  opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);
}
body.page-sub .nav-dropdown .dropdown-menu a{
  display:block;padding:10px 24px;font-size:14px;color:var(--text);
  text-decoration:none;white-space:nowrap;transition:all .25s;
}
body.page-sub .nav-dropdown .dropdown-menu a:hover{
  background:#f5f7fa;color:var(--primary);
}
body.page-sub .nav-dropdown .dropdown-menu a::after{display:none}
body.page-sub .nav-phone{
  display:flex;flex-direction:column;align-items:flex-end;gap:2px;
  font-size:13px;color:var(--text);line-height:1.4;text-align:right;
}
body.page-sub .nav-phone .phone-num{font-size:15px;font-weight:700;color:var(--primary-dark);text-decoration:none;}
body.page-sub .nav-phone .phone-hours{font-size:12px;color:var(--text);opacity:0.7;}
body.page-sub nav.scrolled .nav-phone .phone-num{color:var(--primary-dark)}
body.page-sub nav.scrolled .nav-phone .phone-hours{color:var(--text);opacity:0.7}

/* 子页面头部 banner */
.page-banner{
  margin-top:80px;padding:100px 60px 80px;
  background:linear-gradient(135deg,#0d47a1 0%,#1565c0 40%,#1e88e5 70%,#42a5f5 100%);
  color:#fff;text-align:center;position:relative;overflow:hidden;
}
.page-banner::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(circle at 20% 80%,rgba(255,152,0,0.35),transparent 50%),
             radial-gradient(circle at 80% 20%,rgba(33,150,243,0.4),transparent 50%);
}
.page-banner h1{font-size:48px;font-weight:800;position:relative;z-index:2;margin-bottom:16px}
.page-banner p{font-size:18px;opacity:0.9;position:relative;z-index:2;max-width:600px;margin:0 auto}

/* 子页面内容区 */
.info-content{max-width:1000px;margin:0 auto;padding:80px 60px}
.info-content h2{font-size:34px;font-weight:800;margin-bottom:24px;color:var(--text)}
.info-content h3{font-size:22px;font-weight:700;margin:40px 0 16px;color:var(--primary-dark)}
.info-content p{font-size:16px;color:var(--text-light);line-height:2;margin-bottom:18px}
.info-content strong{color:var(--primary-dark)}

/* 关于我们：价值观卡片 */
.values-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;margin:40px 0}
.value-card{
  background:var(--card);border-radius:var(--radius);padding:36px 28px;
  text-align:center;box-shadow:var(--shadow);transition:all .3s;
  border-top:4px solid var(--primary);
}
.value-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-hover)}
.value-card:nth-child(2){border-top-color:var(--accent)}
.value-card:nth-child(3){border-top-color:var(--primary)}
.value-card:nth-child(4){border-top-color:#0288d1}
.value-card .v-icon{font-size:48px;margin-bottom:16px}
.value-card h4{font-size:18px;font-weight:700;margin-bottom:10px}
.value-card p{font-size:14px;color:var(--text-light);line-height:1.6}

/* 关于我们：里程碑 */
.timeline{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;margin:40px 0}
.timeline-item{
  background:var(--card);border-radius:var(--radius);padding:32px 24px;
  text-align:center;box-shadow:var(--shadow);position:relative;
}
.timeline-item .year{font-size:32px;font-weight:800;color:var(--primary);margin-bottom:8px}
.timeline-item h4{font-size:16px;font-weight:700;margin-bottom:8px}
.timeline-item p{font-size:13px;color:var(--text-light);line-height:1.6}

/* 加入我们：岗位卡片 */
.job-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px;margin:40px 0}
.job-card{
  background:var(--card);border-radius:var(--radius);padding:32px 28px;
  box-shadow:var(--shadow);transition:all .3s;cursor:pointer;
  border-left:4px solid var(--primary);
}
.job-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover);border-left-color:var(--accent)}
.job-card:nth-child(2){border-left-color:var(--accent)}
.job-card:nth-child(2):hover{border-left-color:var(--primary)}
.job-card:nth-child(3){border-left-color:var(--primary)}
.job-card:nth-child(3):hover{border-left-color:var(--accent)}
.job-card:nth-child(4){border-left-color:var(--accent)}
.job-card:nth-child(4):hover{border-left-color:var(--primary)}
.job-card h4{font-size:20px;font-weight:700;margin-bottom:8px}
.job-card .job-tag{
  display:inline-block;padding:4px 14px;background:rgba(21,101,192,0.1);
  color:var(--primary);border-radius:12px;font-size:12px;font-weight:600;margin-bottom:12px;
}
.job-card .job-desc{font-size:14px;color:var(--text-light);line-height:1.8;margin-bottom:16px}
.job-card .job-req{font-size:13px;color:var(--text-light);line-height:1.7}
.job-card .job-req li{margin-bottom:4px;list-style:none;padding-left:16px;position:relative}
.job-card .job-req li::before{content:"\25B8";position:absolute;left:0;top:1px;color:var(--accent);font-size:13px;line-height:1}

/* 加入我们：福利 */
.benefits{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:20px;margin:40px 0;
}
.benefit-item{
  background:var(--card);border-radius:var(--radius);padding:28px 20px;
  text-align:center;box-shadow:var(--shadow);
}
.benefit-item .b-icon{font-size:36px;margin-bottom:10px}
.benefit-item h4{font-size:15px;font-weight:700;margin-bottom:6px}
.benefit-item p{font-size:13px;color:var(--text-light)}

/* 加入我们：投递区 */
.apply-box{
  background:linear-gradient(135deg,#0d47a1 0%,#1565c0 50%,#1a237e 100%);
  border-radius:var(--radius);padding:48px;text-align:center;color:#fff;
  position:relative;overflow:hidden;margin-top:40px;
}
.apply-box::before{
  content:"";position:absolute;top:-60px;right:-60px;width:300px;height:300px;
  border-radius:50%;background:radial-gradient(circle,rgba(255,112,67,0.2),transparent 70%);
}
.apply-box h3{font-size:26px;font-weight:800;margin-bottom:16px;position:relative;z-index:2;color:#fff;text-shadow:0 1px 4px rgba(0,0,0,0.3)}
.apply-box p{font-size:16px;color:#fff;opacity:1;position:relative;z-index:2;margin-bottom:24px;text-shadow:0 1px 3px rgba(0,0,0,0.25)}
.apply-box .email{
  display:inline-block;padding:14px 40px;background:var(--accent);color:#fff;
  border-radius:30px;font-size:16px;font-weight:700;text-decoration:none;
  transition:all .3s;position:relative;z-index:2;
}
.apply-box .email:hover{background:#f4511e;transform:translateY(-2px);box-shadow:0 10px 30px rgba(255,112,67,0.4)}

/* 联系方式：联系卡片 */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin:40px 0}
.contact-card{
  background:var(--card);border-radius:var(--radius);padding:36px 32px;
  box-shadow:var(--shadow);transition:all .3s;display:flex;align-items:flex-start;gap:20px;
  border-top:4px solid var(--primary);
}
.contact-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-hover)}
.contact-card:nth-child(2){border-top-color:var(--accent)}
.contact-card:nth-child(3){border-top-color:var(--primary)}
.contact-card:nth-child(4){border-top-color:var(--accent)}
.contact-card .c-icon{
  width:64px;height:64px;border-radius:16px;display:flex;align-items:center;justify-content:center;
  font-size:32px;flex-shrink:0;background:rgba(21,101,192,0.08);
}
.contact-card:nth-child(2) .c-icon{background:rgba(255,112,67,0.08)}
.contact-card:nth-child(4) .c-icon{background:rgba(255,112,67,0.08)}
.contact-card h4{font-size:18px;font-weight:700;margin-bottom:8px}
.contact-card .c-detail{font-size:15px;color:var(--text);line-height:1.8}
.contact-card .c-note{font-size:13px;color:var(--text-light);margin-top:6px}

/* 联系方式：地图 */
.map-box{
  background:var(--card);border-radius:var(--radius);padding:36px;
  box-shadow:var(--shadow);margin-top:24px;text-align:center;
}
.map-box h4{font-size:18px;font-weight:700;margin-bottom:12px;display:flex;align-items:center;justify-content:center;gap:6px}
.map-embed{
  margin-top:16px;border-radius:12px;overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
}
.map-embed iframe{
  width:100%;height:320px;border:0;display:block;
}
.map-link{
  display:inline-block;margin-top:14px;font-size:14px;font-weight:600;
  color:var(--primary);text-decoration:none;transition:color .2s;
}
.map-link:hover{color:var(--accent)}

/* 隐私政策：内容卡片 */
.info-content.privacy{max-width:900px}
.privacy-card{
  background:var(--card);border-radius:var(--radius);padding:48px 44px;
  box-shadow:var(--shadow);
}
.privacy-card h3{
  font-size:20px;font-weight:700;margin:32px 0 12px;color:var(--primary-dark);
  display:flex;align-items:center;gap:8px;
}
.privacy-card h3:first-child{margin-top:0}
.privacy-card h3 .num{
  display:inline-flex;align-items:center;justify-content:center;
  width:32px;height:32px;border-radius:8px;background:var(--primary);color:#fff;
  font-size:16px;flex-shrink:0;
}
.privacy-card h3:nth-of-type(2) .num{background:var(--accent)}
.privacy-card h3:nth-of-type(3) .num{background:var(--primary)}
.privacy-card h3:nth-of-type(4) .num{background:var(--accent)}
.privacy-card h3:nth-of-type(5) .num{background:var(--primary)}
.privacy-card h3:nth-of-type(6) .num{background:var(--accent)}
.privacy-card p{font-size:15px;line-height:2;color:var(--text);margin-bottom:14px}
.privacy-card ul{margin:0 0 16px 0;padding-left:0;list-style:none}
.privacy-card li{
  font-size:15px;line-height:1.9;color:var(--text);margin-bottom:10px;
  padding-left:24px;position:relative;
}
.privacy-card li::before{
  content:"";position:absolute;left:0;top:11px;width:8px;height:8px;
  border-radius:50%;background:var(--accent);
}
.privacy-card .highlight-box{
  background:rgba(21,101,192,0.05);border-left:4px solid var(--primary);
  border-radius:8px;padding:20px 24px;margin:24px 0;
}
.privacy-card .highlight-box p{margin-bottom:0;font-size:14px;color:var(--text-light)}
.privacy-card .update-date{
  margin-top:32px;padding-top:24px;border-top:1px solid #e0e0e0;
  font-size:14px;color:var(--primary);font-weight:600;
}
.privacy-nav{
  display:flex;flex-wrap:wrap;gap:12px;margin-bottom:32px;
}
.privacy-nav a{
  padding:8px 18px;background:var(--card);border-radius:20px;
  font-size:14px;color:var(--text-light);text-decoration:none;
  box-shadow:var(--shadow);transition:all .3s;
}
.privacy-nav a:hover{background:var(--primary);color:#fff;transform:translateY(-2px)}

/* 子页面响应式 */
@media(max-width:480px){
  .logo{font-size:18px;gap:6px}
  .logo img{height:32px}
  .nav-toggle{width:36px;height:36px}
  .nav-toggle span{width:20px}
  .nav-phone .phone-num{font-size:13px}
  .nav-links{padding:10px 16px 18px}
  .nav-links a{padding:12px 0;font-size:15px}

  .hero h1{font-size:26px}
  .hero p{font-size:14px}
  .hero-stats{gap:10px}
  .hero-stats .stat .num{font-size:22px}
  .hero-stats .stat .label{font-size:11px;margin-top:2px}
  .section{padding:48px 20px}
  .section-header h2{font-size:24px}
  /* 首页定制表单：移动端两行展示，控件字号/内边距收紧 */
  .form-card{padding:28px 20px}
  .form-row{gap:0}
  /* date 与其它 input 完全一致（14px / 13px 16px 由基础样式继承），不再单独缩小 */
  .form-row .custom-select-trigger{padding:12px 40px 12px 14px;font-size:13px}
  .footer-grid{grid-template-columns:repeat(3,1fr);gap:16px}
  .footer-brand h3{font-size:18px;margin-bottom:10px}
  .footer-brand h3 img{height:26px}
  .footer-brand p{font-size:12px;line-height:1.6;max-width:260px}
  .footer-col h4{font-size:14px;margin-bottom:10px}
  .footer-col a{font-size:12px;margin-bottom:6px}

  .page-mice .mice-hero h1{font-size:26px}
  .page-mice .mice-hero .acronym-row{max-width:240px;gap:10px}
  .page-mice .mice-hero .acronym-item .letter{font-size:22px}
  .page-mice .section-intro h2{font-size:24px}
  .page-mice .service-card{padding:28px 20px}

  .page-team .service-hero h1{font-size:26px}
  .page-team .section-intro h2{font-size:24px}

  .page-inbound .inbound-hero h1{font-size:26px}
  .page-inbound .section-header h2{font-size:24px}

  .page-banner h1{font-size:24px}
  .info-content h2{font-size:22px}
  .info-content{padding:48px 20px}
  .value-card,.timeline-item,.job-card,.benefit-item,.contact-card{padding:20px 16px}
  .contact-card{gap:12px}
  .contact-card .c-icon{width:42px;height:42px;font-size:21px;border-radius:10px}
  .contact-card h4{font-size:16px}
  .contact-card .c-detail{font-size:14px;line-height:1.6}
  .contact-card .c-note{font-size:12px}
  .map-embed iframe{height:200px}
}

/* —— 出行天数弹层（index 表单） —— */
.days-pop{position:absolute;z-index:20;top:calc(100% + 4px);left:0;right:0;background:#fff;border-radius:12px;box-shadow:0 12px 48px rgba(0,0,0,.3);padding:14px;opacity:0;visibility:hidden;transform:translateY(-8px);transition:opacity .18s,transform .18s,visibility .18s}
.days-pop.open{opacity:1;visibility:visible;transform:translateY(0)}
.days-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:8px}
.days-btn{padding:10px 0;border:1px solid #e2e8f0;border-radius:8px;background:#f8fafc;color:#1f2937;font-size:13px;cursor:pointer;transition:background .15s,color .15s,border-color .15s}
.days-btn:hover{background:#eaf2ff;color:#ff7043;border-color:#ffd0bf}
.days-btn.is-on{background:#ff7043;color:#fff;border-color:#ff7043}
.days-above{margin-top:10px;width:100%;padding:11px 0;border:1px dashed #ffb59c;border-radius:8px;background:#fff3ee;color:#ff7043;font-size:13px;font-weight:600;cursor:pointer;transition:background .15s;text-align:center}
.days-above:hover{background:#ffe6dc}

/* ===== 返回顶部按钮 ===== */
.scroll-top-btn{
  position:fixed;right:30px;bottom:40px;z-index:999;
  width:48px;height:48px;border-radius:50%;
  background:rgba(13,71,161,0.85);color:#fff;border:none;
  display:flex;align-items:center;justify-content:center;cursor:pointer;
  opacity:0;visibility:hidden;transform:translateY(20px);
  transition:opacity .3s,visibility .3s,transform .3s,background .3s,box-shadow .3s;
  box-shadow:0 4px 20px rgba(0,0,0,0.25);
}
.scroll-top-btn.visible{opacity:1;visibility:visible;transform:translateY(0)}
.scroll-top-btn:hover{
  background:rgba(21,101,192,0.95);transform:translateY(-3px);
  box-shadow:0 6px 25px rgba(0,0,0,0.3);
}
.scroll-top-btn:active{transform:translateY(-1px)}
.scroll-top-btn svg{width:24px;height:24px;display:block}
@media(max-width:768px){
  .scroll-top-btn{right:20px;bottom:24px;width:42px;height:42px}
  .scroll-top-btn svg{width:20px;height:20px}
}

/* ===== 移动端电话拨打按钮（位于返回顶部按钮上方） ===== */
.mobile-call-btn{
  position:fixed;right:30px;bottom:100px;z-index:998;
  width:48px;height:48px;border-radius:50%;
  background:#e53935;color:#fff;text-decoration:none;
  display:none;align-items:center;justify-content:center;cursor:pointer;
  box-shadow:0 4px 20px rgba(229,57,53,0.4);
  transition:transform .3s,box-shadow .3s;
}
.mobile-call-btn:hover{
  transform:scale(1.08);box-shadow:0 6px 25px rgba(229,57,53,0.5);
}
.mobile-call-btn:active{transform:scale(0.96)}
.mobile-call-btn svg{width:22px;height:22px;display:block}
@media(max-width:900px){
  .mobile-call-btn{display:flex}
}
@media(max-width:768px){
  .mobile-call-btn{right:20px;bottom:76px;width:42px;height:42px}
  .mobile-call-btn svg{width:20px;height:20px}
}

/* ===== 移动端：子页面（page-sub）导航覆盖 =====
   说明：body.page-sub 的导航样式特异性(0,2,0~0,3,1)高于移动端通用规则(0,1,0~0,2,0)，
   导致子页面移动端：① .nav-links 默认 display:flex 无法隐藏（页面一打开就挂着竖排菜单）
   ② 点击"服务"后下拉 opacity:0/visibility:hidden 不可见 ③ nav padding 60px 过宽。
   此处同权后写覆盖，保证移动端子页面导航行为与首页一致。 */
@media(max-width:900px){
  body.page-sub nav{padding:14px 20px}
  body.page-sub nav.scrolled{padding:12px 20px}
  body.page-sub .nav-links{
    display:none;position:absolute;top:100%;left:0;right:0;
    background:rgba(255,255,255,0.98);backdrop-filter:blur(10px);
    flex-direction:column;gap:0;padding:12px 20px 20px;
    box-shadow:0 12px 40px rgba(0,0,0,0.12);
    border-top:1px solid rgba(0,0,0,0.06);
  }
  body.page-sub .nav-links.open{display:flex}
  body.page-sub .nav-links li{width:100%}
  body.page-sub .nav-links a{
    display:block;color:var(--text);padding:14px 0;font-size:16px;
    border-bottom:1px solid rgba(0,0,0,0.06);
  }
  body.page-sub .nav-links a::after{display:none}
  body.page-sub .nav-links a:hover{color:var(--primary)}
  body.page-sub .nav-dropdown .dropdown-menu{
    position:static;top:auto;left:auto;transform:none;
    opacity:1;visibility:visible;box-shadow:none;background:transparent;
    min-width:0;padding:0 0 0 16px;display:none;transition:none;z-index:auto;
  }
  body.page-sub .nav-dropdown.open .dropdown-menu{display:block}
  body.page-sub .nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:none}
  body.page-sub .nav-dropdown>a::after{display:none}
  body.page-sub .nav-dropdown .dropdown-menu a{padding:12px 0;font-size:15px;white-space:normal}
  body.page-sub .nav-dropdown .dropdown-menu a:hover{background:transparent}
  /* 子页面头部电话移动端同样隐藏（page-sub 特异性更高需覆盖） */
  body.page-sub .nav-phone{display:none}
}

/* 桌面端点击"服务"展开下拉时也确保可见（双保险，避免仅靠 :hover） */
.nav-dropdown.open .dropdown-menu{
  opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto;
}

/* 运营资质页 - 资质图片网格 */
.cert-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin:22px 0}
.cert-item{border:1px solid #f0f1f3;border-radius:12px;overflow:hidden;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.04)}
.cert-item img{width:100%;height:220px;object-fit:cover;display:block}
.cert-item .cert-cap{padding:12px 14px;font-size:14px;color:#555;line-height:1.5}
.cert-item .cert-cap b{color:#1f2d3d;display:block;margin-bottom:4px;font-size:15px}
.notice-box{background:#fff8e6;border:1px solid #ffe2a8;border-radius:10px;padding:12px 16px;margin:16px 0;font-size:14px;color:#7a5b00;line-height:1.6}
.notice-box strong{color:#8a5a00}
@media(max-width:600px){.cert-grid{grid-template-columns:1fr}}

/* ===== 移动端服务选择面板（弹层展示，替代下拉） ===== */
.service-panel-overlay{
  position:fixed;inset:0;z-index:99999;
  background:rgba(0,0,0,.5);
  display:flex;align-items:flex-end;justify-content:center;
  opacity:0;visibility:hidden;
  transition:opacity .25s ease, visibility .25s ease;
  -webkit-tap-highlight-color:transparent;
}
.service-panel-overlay.show{opacity:1;visibility:visible}
.service-panel{
  width:100%;max-width:520px;background:#fff;
  border-radius:18px 18px 0 0;
  padding:18px 20px calc(20px + env(safe-area-inset-bottom,0px));
  transform:translateY(100%);
  transition:transform .25s ease;
  box-shadow:0 -8px 30px rgba(0,0,0,.18);
}
.service-panel-overlay.show .service-panel{transform:translateY(0)}
.service-panel-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid #f0f1f3;
}
.service-panel-title{font-size:16px;font-weight:700;color:#1f2d3d}
.service-panel-close{
  width:30px;height:30px;border:none;background:#f2f3f5;border-radius:50%;
  font-size:15px;line-height:1;color:#666;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
}
.service-panel-close:active{background:#e3e5e8}
.service-panel-body{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.service-panel-item{
  display:flex;align-items:center;gap:8px;
  padding:14px 12px;background:#f7f8fa;border-radius:10px;
  text-decoration:none;color:#333;font-size:15px;font-weight:500;
  transition:background .15s;
}
.service-panel-item:active{background:#e8eaee}
.service-panel-item .nav-ico{font-size:20px;line-height:1;margin:0}
.service-panel-item img.nav-ico{width:22px;height:22px;vertical-align:-4px}
.service-panel-title .title-icon{width:18px;height:18px;vertical-align:-3px;margin-right:2px}
@media(max-width:480px){
  .service-panel-body{grid-template-columns:1fr}
  .service-panel-item{padding:13px 14px}
}

/* ===== 跟团旅游新页面样式（2026-08-18 新增） ===== */
.section-head{text-align:center;margin:36px 0 18px}
.section-head h2{font-size:28px;color:var(--text);margin-bottom:8px}
.section-head p{color:#888;font-size:15px}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin:28px 0}
.product-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,.08);transition:transform .3s,box-shadow .3s;display:flex;flex-direction:column}
.product-card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(0,0,0,.12)}
.product-card .pc-img{width:100%;height:180px;object-fit:cover;display:block}
.product-card .pc-body{padding:16px 20px 22px;display:flex;flex-direction:column;flex:1}
.product-card .pc-title{font-size:18px;font-weight:600;color:var(--text)}
.product-card .pc-meta{font-size:13px;color:#888;margin:8px 0;flex:1;line-height:1.6}
.product-card .pc-price{font-size:18px;color:#ff6a00;font-weight:700;margin-top:6px}
.btn-detail{display:inline-block;margin-top:14px;padding:10px 22px;border-radius:30px;background:var(--primary);color:#fff;text-decoration:none;font-size:14px;text-align:center;transition:opacity .2s}
.btn-detail:hover{opacity:.9}
.cta-center{text-align:center;margin:40px 0}
.cta-center .btn-detail{font-size:16px;padding:14px 36px}
.pd-img{width:100%;height:320px;object-fit:cover;border-radius:16px;margin:0 0 24px}
.pd-price{font-size:26px;color:#ff6a00;font-weight:700;margin:14px 0}
.pd-list{list-style:none;padding:0;margin:12px 0}
.pd-list li{padding:11px 0;border-bottom:1px solid #eee;display:flex;gap:10px;align-items:flex-start;line-height:1.6}
.pd-list li::before{content:"¹3";color:var(--primary);font-weight:700;flex:0 0 auto}
.booking-form{max-width:640px;margin:24px auto 0;background:#fff;border-radius:16px;padding:28px;box-shadow:0 8px 30px rgba(0,0,0,.06)}
.booking-form .bf-group{margin-bottom:18px}
.booking-form label{display:block;font-size:13px;color:#555;margin-bottom:7px;font-weight:500}
.booking-form input,.booking-form select,.booking-form textarea{width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:10px;font-size:15px;color:#333;box-sizing:border-box;font-family:inherit}
.booking-form input:focus,.booking-form select:focus,.booking-form textarea:focus{outline:none;border-color:var(--primary)}
.booking-form textarea{resize:vertical;min-height:90px}
.booking-form .submit-btn{width:100%;height:50px;border:none;border-radius:10px;background:var(--primary);color:#fff;font-size:16px;cursor:pointer;margin-top:6px;transition:opacity .2s}
.booking-form .submit-btn:hover{opacity:.9}
@media(max-width:768px){.product-grid{grid-template-columns:1fr}.booking-form{padding:20px}}

/* ================================================================
   移动端增强（全站）：输入框字号≥16px 防 iOS 聚焦自动放大；主按钮触控区≥44px
   ================================================================ */
@media (max-width:900px){
  input, select, textarea,
  .custom-select-trigger{
    font-size:16px !important;
  }
  .search-box button,
  .btn-detail,
  .dest-popup-footer .btn-confirm,
  .dest-popup-footer .btn-clear,
  .days-btn{
    min-height:44px;
  }
}
