/* ================================================
   Travel Site Design - Warm Modern
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2D2D2D;
  --primary-light: #4A4A4A;
  --primary-dark: #1A1A1A;
  --accent: #C97D60;
  --accent-light: #DF9E82;
  --accent-dark: #B06448;
  --bg: #FFFFFF;
  --bg-alt: #F8F6F4;
  --text: #2D2D2D;
  --text-secondary: #6B6B6B;
  --text-muted: #9E9E9E;
  --border: #E8E2DC;
  --border-light: #F0ECE8;
  --shadow: 0 2px 12px rgba(45,45,45,0.06);
  --shadow-lg: 0 8px 40px rgba(45,45,45,0.1);
  --font: 'Inter', -apple-system, 'Microsoft YaHei', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Noto Serif SC', serif;
  --t: 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--t);
}
.topbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 0 6px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 26px; color: var(--primary); font-family: var(--font-serif); }
.brand-mark { width: 48px; height: 48px; background: var(--accent); color: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-family: var(--font-serif); font-style: italic; }
.brand-logo { height: 56px; width: auto; max-width: 220px; object-fit: contain; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list a { padding: 10px 22px; font-size: 16px; font-weight: 600; color: var(--text-secondary); border-radius: 8px; transition: all var(--t); }
.nav-list a:hover { color: var(--primary); background: var(--bg-alt); }
.nav-list a.active { color: var(--accent-dark); background: rgba(201,125,96,0.1); }
.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--bg-alt); border-radius: 8px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }

/* Hero */
/* ====== HERO - Full-Image Carousel with Text Overlay ====== */
.hero {
  position: relative; overflow: hidden;
  margin-top: 72px; width: 100%; height: 560px;
}
.carousel { position: relative; width: 100%; height: 100%; overflow: hidden; }
.carousel-inner { display: flex; transition: transform 0.6s ease; height: 100%; }
.carousel-item { min-width: 100%; flex-shrink: 0; height: 100%; position: relative; }
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 渐变遮罩，让文字更清晰 */
.carousel-item::after {
  content: ''; position: absolute; inset: 0;
  z-index: 1;
}

/* 轮播文字叠加 */
.carousel-caption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  z-index: 2; color: white;
}
.carousel-caption h1 {
  font-family: var(--font-serif); font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.carousel-caption p {
  font-size: clamp(14px, 1.6vw, 20px);
  opacity: 0.85; max-width: 600px; line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: white; border: none;
  backdrop-filter: blur(4px);
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 28px; cursor: pointer; transition: all 0.3s;
  z-index: 3; line-height: 50px; text-align: center;
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-prev:hover, .carousel-next:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.carousel-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3; align-items: center;
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.dot.active { background: white; width: 28px; border-radius: 5px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-size: 14px; font-weight: 700; border-radius: 6px; transition: all var(--t); cursor: pointer; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* Section */
.sec { padding: 60px 0; }
.sec-header { text-align: center; margin-bottom: 36px; }
.sec-header.left { text-align: left; }
.sec-tag { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 8px; }
.sec-title { font-family: var(--font-serif); font-weight: 700; font-size: clamp(26px, 3vw, 38px); line-height: 1.2; color: var(--text); margin-bottom: 10px; }
.sec-desc { font-size: 15px; color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.7; }
.sec-header.left .sec-desc { margin: 0; }

/* About / Service */
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.about-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); min-height: 260px; }
.about-img img, .about-img video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text { font-size: 15px; color: var(--text-secondary); line-height: 1.9; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.service-item { display: block; padding: 14px; border: 1px solid var(--border); border-radius: 12px; transition: all var(--t); color: inherit; text-decoration: none; }
.service-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.service-icon { width: 36px; height: 36px; background: rgba(201,125,96,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.service-icon svg { width: 20px; height: 20px; color: var(--accent); }
.service-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.service-item p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* Cards */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-item { background: white; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all var(--t); }
.card-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-4px); }
.card-img { width: 100%; height: 200px; object-fit: cover; display: block; background: #eef0f2; }
.card-body { padding: 16px 18px 18px; }
.card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: #1a1a2e; }
.card-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; white-space: normal; }

/* Contact */
.c-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.c-info, .c-form { background: white; border-radius: 12px; padding: 32px; border: 1px solid var(--border); }
.c-info h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.c-items { display: grid; gap: 10px; }
.c-item { display: flex; gap: 12px; padding: 12px; background: var(--bg-alt); border-radius: 8px; align-items: center; }
.c-ico { width: 38px; height: 38px; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.c-item .cl { font-size: 12px; color: var(--text-muted); }
.c-item .cv { font-size: 14px; font-weight: 600; }
.f-grid { display: grid; gap: 16px; }
.f-group label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 4px; }
.f-group input, .f-group textarea { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--text); background: var(--bg-alt); }
.f-group input:focus, .f-group textarea:focus { outline: none; border-color: var(--accent); }
.f-group textarea { min-height: 100px; resize: vertical; }
.ok-note { padding: 12px; background: #F0F0F0; border-radius: 8px; font-weight: 600; text-align: center; }

/* Article */
.art-cover { position: relative; min-height: 380px; }
.art-cover img { width: 100%; height: 380px; object-fit: cover; }
.art-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,26,26,0.85), transparent); }
.art-cover-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; z-index: 2; max-width: 800px; margin: 0 auto; }
.art-cover-text h1 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 38px); color: white; }
.art-body { max-width: 720px; margin: 0 auto; padding: 40px 24px; }
.art-body .summary { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.art-body .content { font-size: 16px; line-height: 1.9; }
.art-body .content video, .art-body video { max-width: 100%; border-radius: 8px; display: block; margin: 16px auto; }
.art-foot { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }

/* Page Banner */
.page-banner {
  position: relative; padding: 120px 24px 56px; text-align: center;
  background: #2f90c4 center/cover no-repeat;
  color: white;
}
.page-banner.has-bg h1, .page-banner.has-bg p { color: white; }
.page-banner.has-bg p { color: rgba(255,255,255,0.8); }
.page-banner h1 { font-family: var(--font-serif); font-size: clamp(28px, 3.5vw, 42px); color: white; margin-bottom: 8px; }
.page-banner p { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }

/* 404 */
.page-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 48px 24px; }
.page-404 h1 { font-family: var(--font-serif); font-size: 100px; font-weight: 800; color: var(--primary); line-height: 1; opacity: 0.08; margin-bottom: 10px; }
.page-404 h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.page-404 p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; }
.page-404 .acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: #2f90c4; color: white; padding: 20px 24px; margin-top: auto; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-main {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-bottom: 14px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-text { font-weight: 700; font-size: 16px; color: white; }
.footer-links { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-links a {
  padding: 4px 14px; font-size: 13px; color: white;
  text-decoration: none; border-radius: 4px; transition: color 0.2s;
}
.footer-links a:hover { color: white; opacity: 0.85; }
.footer-contact { display: flex; gap: 12px; font-size: 13px; color: white; flex-wrap: wrap; }
.footer-contact a { color: white; text-decoration: none; }
.footer-contact a:hover { color: white; opacity: 0.85; }
.footer-bar {
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; justify-content: center; align-items: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 12px; color: white; text-align: center;
}

/* 酒店 & 美食双栏卡片 */
.hf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hf-card {
  background: white; border-radius: 14px; padding: 24px; border: 1px solid var(--border);
  box-shadow: var(--shadow); transition: box-shadow var(--t);
}
.hf-card:hover { box-shadow: var(--shadow-lg); }
.hf-title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 700;
  margin-bottom: 16px; color: var(--text);
}
.hf-list { display: grid; gap: 10px; }
.hf-item {
  display: flex; gap: 14px; padding: 12px; background: var(--bg-alt);
  border-radius: 10px; text-decoration: none; color: var(--text);
  transition: all var(--t); align-items: center;
}
.hf-item:hover { background: rgba(201,125,96,0.08); transform: translateX(4px); }
.hf-item img {
  width: 64px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.hf-item-text { flex: 1; min-width: 0; }
.hf-item-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.hf-price { font-size: 12px; color: var(--accent); font-weight: 600; }
@media(max-width:768px){
  .hf-grid { grid-template-columns: 1fr; gap: 12px; }
  .hf-item { padding: 8px; gap: 10px; }
  .hf-item img { width: 44px; height: 36px; border-radius: 6px; }
  .hf-card { padding: 14px; }
  .hf-title { font-size: 16px; margin-bottom: 10px; }
  .hf-item-text strong { font-size: 13px; }
  .hf-price { font-size: 11px; }
}

/* Responsive */
@media(max-width:1024px){
  .about-row { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .c-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px){
  .nav-list { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; height: auto; }
  .carousel-item img { height: 200px; }
  .carousel-prev, .carousel-next { width: 36px; height: 36px; font-size: 20px; line-height: 36px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .hero h1 { font-size: 32px; }
  .sec { padding: 20px 0; }
  .sec-header { margin-bottom: 16px; }
  .sec-title { font-size: 18px; margin-bottom: 4px; }
  .sec-desc { font-size: 12px; }
  .sec-tag { font-size: 10px; margin-bottom: 4px; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .quick-nav-item { padding: 10px 6px; border-radius: 10px; }
  .quick-nav-item .qicon { width: 36px; height: 36px; font-size: 16px; }
  .quick-nav-item .qlabel { font-size: 11px; }
  .quick-nav-grid { gap: 6px; padding: 0 12px; }
  .card-img { height: 100px; object-fit: cover; background: #eef0f2; border-radius: 10px 10px 0 0; }
  .card-body { padding: 10px 12px 12px; }
  .card-body h3 { font-size: 14px; margin-bottom: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .card-body p { display: none; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-item { display: block; padding: 14px; color: inherit; text-decoration: none; }
  .service-item h4 { font-size: 14px; }
  .service-item p { font-size: 12px; }
  .service-icon { width: 36px; height: 36px; margin-bottom: 8px; }
  .about-row { gap: 20px; }
  .about-img { min-height: 180px; }
  .about-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .about-stat-item { padding: 10px; }
  .about-stat-item .stat-value { font-size: 18px; }
  .about-stat-item .stat-name { font-size: 11px; }
  .page-banner { padding: 100px 16px 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
}

/* 移动端页脚 */
@media(max-width:768px){
  .footer { padding: 12px 16px 64px !important; }
  .footer-main { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .footer-links a { font-size: 12px; padding: 2px 10px; }
  .footer-contact { justify-content: center; font-size: 12px; }
  .footer-bar { 
    flex-direction: column; gap: 4px;
    font-size: 10px; color: white;
  }
  .footer-bar a { color: white; }
}

/* ================================================
   H5 Mobile Optimization - 现代移动端设计
   ================================================ */

/* 导航栏移动端 */
@media(max-width:768px){
  .topbar { height: 56px; }
  .nav-inner { height: 56px; padding: 0 16px; justify-content: center; }
  .brand { font-size: 16px; justify-content: center; gap: 8px; }
  .brand-text { display: block; font-size: 16px; font-weight: 700; }
  .brand-mark { width: 36px; height: 36px; font-size: 14px; }
  .brand-logo { height: 40px; max-width: 160px; }
  .nav-toggle { display: none !important; }
  .nav-list { 
    position: fixed; top: 56px; left: 0; right: 0; bottom: 56px; 
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 12px; display: none; 
    z-index: 200; overflow-y: auto;
  }
  .nav-list a { padding: 14px 20px; font-size: 15px; border-radius: 10px; }
  main { padding-bottom: 64px; }
}

/* 移动端底部导航栏（可横向滑动） */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  display: none; align-items: center;
  height: 56px; box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 2px;
  white-space: nowrap;
}
.mobile-bottom-nav::-webkit-scrollbar { display: none; }
.mobile-bottom-nav .tab {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 4px 10px; min-width: 48px;
  color: var(--text-muted); font-size: 10px; font-weight: 500;
  text-decoration: none; transition: all var(--t);
  border-radius: 8px; position: relative; flex-shrink: 0;
}
.mobile-bottom-nav .tab svg { width: 20px; height: 20px; display: block; }
.mobile-bottom-nav .tab span { font-size: 10px; display: block; }
.mobile-bottom-nav .tab.active { color: #2196F3; }
.mobile-bottom-nav .tab.active::before {
  content: ''; position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%); width: 20px; height: 3px;
  background: #2196F3; border-radius: 0 0 3px 3px;
}
@media(max-width:768px){
  .mobile-bottom-nav { display: flex; justify-content: flex-start; }
}

/* 启动闪屏 */
#splash-screen {
  position: fixed; inset: 0; z-index: 99999;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d2d 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 1; transition: opacity 0.5s ease, visibility 0.5s ease;
}
.splash-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,0.5);
}
#splash-screen::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
}
.splash-content { position: relative; z-index: 2; }
#splash-screen.hidden { opacity: 0 !important; visibility: hidden; pointer-events: none; }
.splash-content { text-align: center; }
.splash-icon { 
  width: 72px; height: 72px; margin: 0 auto 16px;
  background: rgba(255,255,255,0.15); border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: white; font-family: var(--font-serif);
}
.splash-title { color: white; font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.splash-loader { width: 160px; height: 3px; margin: 0 auto; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.splash-loader .bar { height: 100%; width: 30%; background: white; border-radius: 3px; animation: splashLoad 1s ease infinite; }
@keyframes splashLoad { 0%{transform:translateX(-100%)} 100%{transform:translateX(400%)} }

/* 移动端快速导航 */
.mobile-quick-nav { display: none; margin-top: -20px; position: relative; z-index: 5; }
@media(max-width:768px){
  .mobile-quick-nav { display: block; }
}
.quick-nav-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin: 0 auto; max-width: 1200px; padding: 0 16px;
}
.quick-nav-item {
  display: flex; flex-direction: column; align-items: center;
  background: white; border-radius: 14px; padding: 14px 8px;
  border: 1px solid var(--border); transition: all var(--t);
  box-shadow: var(--shadow); cursor: pointer; text-decoration: none; color: var(--text);
}
.quick-nav-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.quick-nav-item .qicon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px; font-size: 20px;
}
.quick-nav-item .qicon.green { background: rgba(5,150,105,0.1); color: #059669; }
.quick-nav-item .qicon.orange { background: rgba(234,179,8,0.1); color: #EAB308; }
.quick-nav-item .qicon.purple { background: rgba(139,92,246,0.1); color: #8B5CF6; }
.quick-nav-item .qicon.red { background: rgba(239,68,68,0.1); color: #EF4444; }
.quick-nav-item .qlabel { font-size: 12px; font-weight: 600; }

/* 移动详情页优化 */
@media(max-width:768px){
  .art-cover { min-height: 200px !important; }
  .art-cover img { height: 200px !important; }
  .art-cover-text { padding: 14px 16px !important; }
  .art-cover-text h1 { font-size: 18px !important; margin-bottom: 4px !important; }
  .art-cover-text a { font-size: 12px !important; margin-bottom: 8px !important; }
  .art-cover-text p { font-size: 13px !important; margin-top: 4px !important; }
  .art-cover-text .detail-tags { gap: 8px !important; font-size: 11px !important; }
  .art-cover-text .detail-tags svg { width: 14px !important; height: 14px !important; }
  .art-body { padding: 16px 12px !important; }
  .art-body .content { font-size: 15px !important; }
}

/* ================================================
   Qunar-style 桌面首页全覆盖 (≥1025px)
   ================================================ */
@media(min-width:1025px){

/* 蓝白主色调覆盖 */
.hero { height: calc(100vh - 72px); margin-top: 72px; }

.carousel-item::after {
  background: none;
}

/* 搜索框叠加 */
.hero-search-wrap { display: none; }

/* 轮播下方全宽关于区 - 自然衔接轮播图 */
.desk-hero-about {
  position: relative; padding: 64px 0 56px;
  background: #f0f4f8;
}
.desk-hero-about::before { display: none; }
.desk-hero-about-inner {
  display: flex; align-items: center; gap: 56px;
}
.desk-hero-about-img {
  flex: 0 0 420px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  position: relative;
}
.desk-hero-about-img img, .desk-hero-about-img video { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.5s; }
.desk-hero-about-img:hover img { transform: scale(1.03); }
.desk-hero-about-text { flex: 1; }
.desk-hero-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #555; margin-bottom: 10px;
}
.desk-hero-about-text h2 {
  font-size: 34px; font-weight: 800; color: #1a1a2e;
  line-height: 1.2; margin-bottom: 14px;
}
.desk-hero-about-text p {
  font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 28px;
  max-width: 100%;
}
.desk-hero-about-actions { display: flex; gap: 14px; }
.desk-btn-primary {
  padding: 13px 30px; background: #1a1a2e; color: white; border-radius: 60px;
  font-weight: 700; font-size: 14px; text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.desk-btn-primary:hover { background: #333; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(26,26,46,0.2); }
.desk-btn-outline {
  padding: 13px 30px; background: transparent; color: #1a1a2e; border: 2px solid #d0d4dc;
  border-radius: 60px; font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px;
}
.desk-btn-outline:hover { border-color: #1a1a2e; background: rgba(26,26,46,0.03); }

/* 隐藏手机专属元素 */
.mobile-quick-nav { display: none !important; }
.mobile-bottom-nav { display: none !important; }

/* 桌面节标题 */
.desk-sec-title {
  font-size: 30px; font-weight: 800; color: #1a2a3a; text-align: center;
  margin-bottom: 6px; position: relative; letter-spacing: 2px;
  background: linear-gradient(135deg, #1a2a3a, #2c5282);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.desk-sec-title::after {
  content: ''; display: block; width: 40px; height: 3px;
  background: linear-gradient(90deg, #2196F3, #1976D2);
  border-radius: 3px; margin: 12px auto 0;
}
.desk-sec-sub { font-size: 15px; color: #888; text-align: center; margin-bottom: 36px; }

/* 热门景点 - 紧凑现代 */
.desk-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.desk-card-item {
  background: white; border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit;
  border: 1px solid #eceef0; transition: all 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.desk-card-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #d5d9e0;
}
.desk-card-img-wrap {
  position: relative; overflow: hidden; height: 150px; background: #eef0f2;
}
.desk-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.desk-card-body { padding: 10px 14px 14px; }
.desk-card-body h3 {
  font-size: 15px; font-weight: 700; color: #1a1a2e;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* 双栏 (酒店美食) */
.desk-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.desk-col-card { background: white; border-radius: 16px; padding: 24px; border: 1px solid #eee; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.desk-col-title { font-size: 20px; font-weight: 700; color: #1a1a2e; margin-bottom: 14px; }
.desk-col-list { display: grid; gap: 10px; }
.desk-col-item {
  display: flex; gap: 14px; padding: 12px 14px; border-radius: 12px;
  background: #f8f9fb; text-decoration: none; color: inherit; align-items: center;
  transition: all 0.3s;
}
.desk-col-item:hover { background: #eef2ff; transform: translateX(4px); }
.desk-col-item img { width: 68px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.desk-col-item-text { flex: 1; min-width: 0; }
.desk-col-item-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 2px; color: #1a1a2e; }
.desk-col-item-text span { font-size: 12px; color: #888; }

/* 文章区 - 横向滚动 */
.art-sec {
  padding: 56px 0; background: #f8f9fb;
}
.art-sec-header {
  text-align: center; margin-bottom: 32px;
}
.art-scroll-wrap {
  overflow: hidden; margin: 0 -12px; padding: 0 12px;
}
.art-scroll {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.art-scroll::-webkit-scrollbar { height: 4px; }
.art-scroll::-webkit-scrollbar-track { background: #eee; border-radius: 4px; }
.art-scroll::-webkit-scrollbar-thumb { background: #2196F3; border-radius: 4px; }
.art-scroll-card {
  flex: 0 0 280px; scroll-snap-align: start;
  background: white; border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit; transition: all 0.3s;
  border: 1px solid #e8ecf0;
}
.art-scroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.art-scroll-img { width: 280px; height: 160px; overflow: hidden; background: #f0f0f0; }
.art-scroll-img img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform 0.5s;
}
.art-scroll-card:hover .art-scroll-img img { transform: scale(1.08); }
.art-scroll-body { padding: 16px 18px 20px; }
.art-scroll-date {
  font-size: 12px; color: #2196F3; font-weight: 600; margin-bottom: 6px; display: block;
}
.art-scroll-body h3 {
  font-size: 16px; font-weight: 700; color: #1a1a2e; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* 关于区 */
.desk-about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.desk-about-img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.desk-about-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.desk-about-text h2 { font-size: 28px; font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.desk-about-text p { font-size: 15px; color: #666; line-height: 1.9; margin-bottom: 20px; }
.desk-service-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.desk-feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 12px; border-radius: 10px; background: #f8f9fb; }
.desk-feature-item .fi-icon { width: 36px; height: 36px; background: rgba(33,150,243,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #2196F3; }
.desk-feature-item h4 { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.desk-feature-item p { font-size: 12px; color: #888; line-height: 1.5; margin-bottom: 0; }

/* 桌面 section padding */
.desk-section { padding: 64px 0; }
.desk-section-alt { padding: 64px 0; background: #f8f9fb; }

/* 页脚延伸 */
.desk-footer-top { background: #1a1a2e; color: white; padding: 48px 24px; }
.desk-footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.desk-fcol h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.desk-fcol a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); padding: 4px 0; text-decoration: none; }
.desk-fcol a:hover { color: white; }
.desk-fcol p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 10px; max-width: 280px; }

} /* end desktop ≥1025px */

/* 分页 */
.pagination-bar {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; margin-top: 40px;
}
.pagination-bar .page-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  border-radius: 8px; border: 1px solid var(--border);
  background: white; color: var(--text); cursor: pointer;
  transition: all var(--t); text-decoration: none;
}
.pagination-bar .page-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(201,125,96,0.06); }
.pagination-bar .page-info { font-size: 14px; color: var(--text-secondary); }
@media(max-width:768px){
  .pagination-bar { flex-wrap: wrap; gap: 8px; margin-top: 24px; }
  .pagination-bar .page-btn { padding: 8px 16px; font-size: 13px; }
  .pagination-bar .page-info { font-size: 12px; }
}

.admin-body {
  margin: 0; padding: 0; display: flex; min-height: 100vh;
  background: #F0F2F5; color: #333; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px; line-height: 1.6;
}
.admin-body * { box-sizing: border-box; }
.admin-body a { color: #2398E0; text-decoration: none; }
.admin-body a:hover { color: #1A7AC0; text-decoration: underline; }
.admin-body h1, .admin-body h2, .admin-body h3, .admin-body h4 { margin: 0 0 8px; color: #1A1A1A; }

.admin-sidebar {
  width: 220px; min-height: 100vh; background: #001529;
  padding: 0; flex-shrink: 0; position: sticky; top: 0; align-self: flex-start;
}
.admin-brand {
  display: block; padding: 20px 16px; font-size: 16px; font-weight: 700;
  color: white !important; border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none !important;
}
.admin-sidebar a {
  display: block; padding: 12px 20px; color: rgba(255,255,255,0.65) !important;
  font-size: 13px; transition: all 0.2s; border-left: 3px solid transparent;
  text-decoration: none !important;
}
.admin-sidebar a:hover { color: white !important; background: rgba(255,255,255,0.06); border-left-color: #2398E0; }
.admin-sidebar a.active { color: white !important; background: #1890FF; border-left-color: #1890FF; }

.admin-main { flex: 1; padding: 24px; max-width: 100%; overflow-x: auto; }

.admin-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; gap: 16px;
}
.admin-header h1 { font-size: 24px; font-weight: 700; margin: 4px 0; }
.admin-header span { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.admin-header p { font-size: 13px; color: #888; margin: 0; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: white; border-radius: 8px; padding: 20px; box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  text-align: center;
}
.stat-card span { display: block; font-size: 12px; color: #888; margin-bottom: 8px; }
.stat-card b { font-size: 28px; color: #2398E0; }

.admin-card {
  background: white; border-radius: 8px; padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06); margin-bottom: 24px;
}
.admin-card h2 { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #F0F0F0; }

.quick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 8px; }
.quick-grid a {
  display: block; padding: 12px 16px; background: #F6F8FA; border-radius: 6px;
  font-size: 13px; color: #333 !important; text-decoration: none !important; text-align: center;
}
.quick-grid a:hover { background: #E6F0FF; color: #2398E0 !important; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  padding: 12px; text-align: left; border-bottom: 1px solid #F0F0F0; font-size: 13px;
}
.admin-table th { font-weight: 600; color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.admin-table td img { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; }
.admin-table td b { display: block; font-size: 14px; color: #1A1A1A; }
.admin-table td small { display: block; font-size: 12px; color: #999; margin-top: 2px; }
.admin-table tr:hover td { background: #F6F8FA; }
.admin-table .actions { white-space: nowrap; }
.admin-table .actions a, .admin-table .actions button {
  display: inline-block; padding: 4px 12px; font-size: 12px; border-radius: 4px;
  border: 1px solid #D9D9D9; background: white; cursor: pointer; color: #333 !important;
  text-decoration: none !important; margin: 0 2px;
}
.admin-table .actions a:hover, .admin-table .actions button:hover { border-color: #2398E0; color: #2398E0 !important; background: #E6F0FF; }

.empty { text-align: center; padding: 48px 16px; color: #999; font-size: 14px; }

.form-grid { display: grid; gap: 16px; }
.field-card {
  display: block; padding: 16px; border: 1px solid #F0F0F0; border-radius: 8px;
}
.field-card > span { display: block; font-size: 12px; font-weight: 600; color: #666; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.field-card input, .field-card textarea {
  width: 100%; padding: 8px 12px; border: 1px solid #D9D9D9; border-radius: 6px;
  font-size: 14px; font-family: inherit; transition: border-color 0.2s;
}
.field-card input:focus, .field-card textarea:focus { outline: none; border-color: #2398E0; box-shadow: 0 0 0 2px rgba(35,152,224,0.15); }
.field-card small { display: block; font-size: 12px; color: #999; margin-top: 6px; }
.image-field .upload-preview { width: 120px; height: 80px; object-fit: cover; border-radius: 6px; margin-bottom: 8px; display: block; }

/* Banner multi-image upload */
.banner-list { display: flex; flex-direction: column; gap: 12px; }
.banner-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: #F8F9FA; border-radius: 8px; border: 1px solid #F0F0F0;
}
.banner-item .upload-preview { width: 90px; height: 56px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.banner-item .banner-url { flex: 1; }
.banner-item input[type="file"] { font-size: 12px; max-width: 180px; }

.admin-body .btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; font-size: 13px; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s; text-decoration: none !important; }
.admin-body .btn.sm { padding: 4px 10px; font-size: 12px; }
.admin-body .btn.primary { background: #2398E0; color: white !important; }
.admin-body .btn.primary:hover { background: #1A7AC0; }
.admin-body .btn.ghost { background: transparent; border: 1px solid #D9D9D9; color: #333 !important; }
.admin-body .btn.ghost:hover { border-color: #2398E0; color: #2398E0 !important; }
.admin-body .btn.dark { background: #333; color: white !important; }
.admin-body .btn.dark:hover { background: #555; }

.login-page {
  display: flex; align-items: center; justify-content: center;
  width: 100vw; min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.login-card {
  background: white; border-radius: 16px; padding: 48px 40px; width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2); text-align: center;
}
.login-card .brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #2398E0, #667eea);
  color: white; font-size: 20px; font-weight: 900; margin-bottom: 16px;
}
.login-card h1 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.login-card p { font-size: 13px; color: #999; margin-bottom: 20px; }
.login-card label { display: block; text-align: left; font-size: 12px; font-weight: 600; color: #666; margin-bottom: 12px; }
.login-card label input { width: 100%; padding: 10px 14px; border: 1px solid #D9D9D9; border-radius: 8px; font-size: 14px; margin-top: 4px; }
.login-card label input:focus { outline: none; border-color: #2398E0; box-shadow: 0 0 0 2px rgba(35,152,224,0.15); }
.login-card .error { background: #FFF2F0; border: 1px solid #FFCCC7; color: #CF1322; padding: 8px 12px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; }
.login-card .btn.primary { width: 100%; justify-content: center; padding: 12px; }

/* ================================================
   手机端小程序风格优化 (≤768px)
   参考云游锡林浩特小程序蓝白风格
   ================================================ */
@media(max-width:768px){
  /* 整体间距优化 */
  .wrap { padding: 0 14px; }
  .sec { padding: 24px 0; }

  /* 卡片网格 - 小程序风圆角卡片 */
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .card-item {
    border-radius: 14px !important;
    border: 1px solid #edf0f5 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    transition: all 0.2s !important;
    overflow: hidden !important;
  }
  .card-item:active {
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .card-img { height: 100px !important; }
  .card-body { padding: 10px 12px !important; }
  .card-body h3 { font-size: 13px !important; }
  .card-body p { font-size: 12px !important; color: #888 !important; }

  /* 底部导航 - 小程序风格 */
  .mobile-bottom-nav {
    height: 52px;
    background: #fff !important;
    border-top: none !important;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.06) !important;
    padding: 0 2px;
  }
  .mobile-bottom-nav .tab {
    padding: 4px 6px;
    min-width: 44px;
    gap: 1px;
    border-radius: 6px;
    transition: all 0.15s;
  }
  .mobile-bottom-nav .tab svg { width: 20px; height: 20px; }
  .mobile-bottom-nav .tab span { font-size: 10px; font-weight: 600; }
  .mobile-bottom-nav .tab.active {
    color: #2196F3 !important;
    background: rgba(33,150,243,0.06);
  }
  .mobile-bottom-nav .tab.active::before { display: none; }

  /* 快速导航网格 - 小程序蓝白风格，8项（4列×2行） */
  .quick-nav-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 8px;
    padding: 0 14px;
  }
  .quick-nav-item {
    border-radius: 16px;
    padding: 10px 4px;
    border: none !important;
    background: #f5f8fc !important;
    box-shadow: none !important;
  }
  .quick-nav-item:active { background: #e8f0fe !important; }
  .quick-nav-item .qicon {
    width: 38px; height: 38px;
    border-radius: 12px;
    margin-bottom: 3px;
  }
  .quick-nav-item .qicon.green { background: rgba(76,175,80,0.08); color: #4CAF50; }
  .quick-nav-item .qicon.orange { background: rgba(255,152,0,0.08); color: #FF9800; }
  .quick-nav-item .qicon.purple { background: rgba(156,39,176,0.08); color: #9C27B0; }
  .quick-nav-item .qicon.red { background: rgba(233,30,99,0.08); color: #E91E63; }
  .quick-nav-item .qlabel { font-size: 11px; color: #444; }

  /* 详情页优化 */
  .art-cover { min-height: 180px !important; border-radius: 0 0 20px 20px !important; overflow: hidden; }
  .art-cover img { height: 180px !important; }
  .art-cover-text { padding: 14px 16px 18px !important; }
  .art-cover-text h1 { font-size: 18px !important; }
  .art-body { padding: 16px 14px !important; }

  /* 信息卡片 - 小程序卡片风格 */
  .detail-info-grid { gap: 8px !important; }
  .detail-info-grid > div {
    padding: 14px 16px !important;
    border-radius: 14px !important;
    border: 1px solid #edf0f5 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03) !important;
  }

  /* 描述卡片 */
  .detail-desc-card {
    padding: 16px !important;
    border-radius: 14px !important;
    border: 1px solid #edf0f5 !important;
    background: #f8fafd !important;
  }

  /* 横幅 (列表页) */
  .page-banner { padding: 60px 16px 32px !important; min-height: auto !important; }
  .page-banner h1 { font-size: 20px !important; }
  .page-banner p { font-size: 13px !important; }

  /* 标签 */
  .detail-tags { gap: 10px !important; margin-top: 8px !important; }
  .detail-tags span { font-size: 11px !important; }
  .detail-tags svg { width: 14px !important; height: 14px !important; }

  /* 文章区 */
  .art-foot { margin-top: 20px !important; padding-top: 14px !important; }
  .art-foot .btn { padding: 8px 16px !important; font-size: 13px !important; }

  /* 底部padding (给底部导航留空间) */
  .site-shell { padding-bottom: 56px; }
}
