/* 新疆寰梦国际旅行社 - 全局样式 */
/* 主色调：湖蓝 #1e88c1 草绿 #6b9b37 暖白 #f5f7fa */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background: #f5f7fa;
}
a { text-decoration: none; color: inherit; transition: all .3s; }
img { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.clearfix::after { content: ""; display: table; clear: both; }

/* 顶部信息条 */
.top-bar {
  background: #f0f6fa;
  border-bottom: 1px solid #e0ecf2;
  font-size: 13px;
  color: #666;
  padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar .phone-top a { color: #1e88c1; font-weight: bold; font-size: 16px; }
.top-bar .welcome { }

/* 头部 */
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 60px; }
.logo .logo-text h1 {
  font-size: 22px;
  color: #1e88c1;
  font-weight: bold;
  letter-spacing: 1px;
}
.logo .logo-text p { font-size: 12px; color: #999; letter-spacing: 2px; }

.nav { display: flex; gap: 5px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #333;
  border-radius: 4px;
  font-weight: 500;
}
.nav > li:hover > a, .nav > li.active > a {
  background: #1e88c1;
  color: #fff;
}
.nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 50;
}
.nav > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav .submenu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}
.nav .submenu li:last-child a { border-bottom: 0; }
.nav .submenu li a:hover {
  background: #f0f6fa;
  color: #1e88c1;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid #eee;
}
.header-phone .phone-icon {
  width: 36px;
  height: 36px;
  background: #1e88c1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.header-phone .phone-num {
  font-size: 20px;
  font-weight: bold;
  color: #1e88c1;
}
.header-phone .phone-label { font-size: 12px; color: #999; }

/* Banner 轮播 */
.banner {
  position: relative;
  height: 480px;
  overflow: hidden;
  z-index: 1;
}
.banner .container {
  position: relative;
  z-index: 5;
}
.banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
  background-size: cover;
  background-position: center;
}
.banner-slide.active { opacity: 1; }
.banner-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,136,193,.3), rgba(107,155,55,.2));
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}
.banner-text h2 {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
  margin-bottom: 15px;
  letter-spacing: 4px;
}
.banner-text p {
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  margin-bottom: 25px;
}
.banner-text .btn-banner {
  display: inline-block;
  padding: 12px 36px;
  background: #6b9b37;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(107,155,55,.4);
  position: relative;
  z-index: 10;
  pointer-events: auto;
}
.banner-text .btn-banner:hover { background: #5a8a2a; transform: translateY(-2px); }
.banner-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.banner-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s;
}
.banner-dots span.active { background: #fff; width: 30px; border-radius: 6px; }

/* 通用板块标题 */
.section { padding: 50px 0; }
.section-title {
  text-align: center;
  margin-bottom: 35px;
}
.section-title h2 {
  font-size: 30px;
  color: #1e88c1;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.section-title h2::before,
.section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: #6b9b37;
}
.section-title h2::before { left: 0; }
.section-title h2::after { right: 0; }
.section-title p {
  color: #999;
  font-size: 14px;
  letter-spacing: 2px;
}

/* 服务优势 */
.features {
  background: #fff;
  padding: 40px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid #f0f0f0;
}
.feature-item:last-child { border-right: 0; }
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #1e88c1, #6b9b37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
}
.feature-item h3 { font-size: 18px; margin-bottom: 8px; color: #333; }
.feature-item p { color: #888; font-size: 13px; }

/* 线路卡片 */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.tour-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: all .3s;
}
.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,.12);
}
.tour-card .tour-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.tour-card .tour-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #6b9b37;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
}
.tour-card .tour-info { padding: 18px; }
.tour-card .tour-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  height: 44px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tour-card .tour-title:hover { color: #1e88c1; }
.tour-card .tour-desc {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tour-card .tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}
.tour-card .tour-price {
  color: #ff6b35;
  font-size: 22px;
  font-weight: bold;
}
.tour-card .tour-price small { font-size: 13px; font-weight: normal; }
.tour-card .btn-book {
  display: block;
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, #1e88c1, #6b9b37);
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  width: 100%;
}
.tour-card .btn-book:hover { opacity: .9; }

/* 板块更多按钮 */
.more-wrap { text-align: center; margin-top: 30px; }
.btn-more {
  display: inline-block;
  padding: 10px 36px;
  border: 2px solid #1e88c1;
  color: #1e88c1;
  border-radius: 30px;
  font-size: 15px;
}
.btn-more:hover {
  background: #1e88c1;
  color: #fff;
}

/* 新闻列表 */
.news-section { background: #fff; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.news-card {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s;
}
.news-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.news-card .news-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.news-card .news-body { padding: 18px; }
.news-card .news-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}
.news-card .news-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card .news-title:hover { color: #1e88c1; }
.news-card .news-summary {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 关于我们简介 */
.about-section {
  background: linear-gradient(135deg, #f0f6fa, #e8f3e8);
}
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-size: 32px;
  color: #1e88c1;
  margin-bottom: 20px;
}
.about-text h2 span { color: #6b9b37; }
.about-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.8;
}
.about-text .about-phone {
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.about-text .about-phone .p-icon {
  width: 50px;
  height: 50px;
  background: #1e88c1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.about-text .about-phone .p-text .p-label { font-size: 13px; color: #999; }
.about-text .about-phone .p-text .p-num { font-size: 26px; font-weight: bold; color: #1e88c1; }
.about-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* 页脚 */
.footer {
  background: #2c3e50;
  color: #bdc3c7;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #1e88c1;
}
.footer-about p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.footer-about .f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-about .f-logo img { height: 45px; }
.footer-about .f-logo span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 13px;
}
.footer-links li a:hover { color: #1e88c1; }
.footer-contact li {
  margin-bottom: 12px;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact li .f-icon {
  color: #1e88c1;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid #3a4a5a;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #7f8c8d;
}
.footer-bottom .f-phone { color: #1e88c1; font-weight: bold; }

/* 内页 Banner */
.page-banner {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30,136,193,.5);
}
.page-banner .page-title {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
  letter-spacing: 3px;
}
.page-banner p { font-size: 16px; opacity: .9; }

/* 面包屑 */
.breadcrumb {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  color: #888;
}
.breadcrumb a { color: #1e88c1; }
.breadcrumb span { margin: 0 8px; }

/* 内页主体 */
.main-content { padding: 40px 0; }
.page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
}

/* 侧边栏 */
.sidebar-widget {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.sidebar-widget h3 {
  font-size: 18px;
  color: #1e88c1;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}
.sidebar-widget ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 14px;
}
.sidebar-widget ul li:last-child { border-bottom: 0; }
.sidebar-widget ul li a:hover { color: #1e88c1; }
.sidebar-widget ul li::before {
  content: "›";
  color: #6b9b37;
  margin-right: 8px;
}

/* 联系侧边栏电话 */
.sidebar-phone {
  background: linear-gradient(135deg, #1e88c1, #6b9b37);
  color: #fff;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  margin-bottom: 25px;
}
.sidebar-phone .sp-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
}
.sidebar-phone .sp-label { font-size: 14px; opacity: .9; margin-bottom: 5px; }
.sidebar-phone .sp-num { font-size: 24px; font-weight: bold; margin-bottom: 10px; }
.sidebar-phone .sp-wechat { font-size: 13px; opacity: .9; }

/* 新闻详情页 */
.article {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.article h1 {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}
.article-meta {
  color: #999;
  font-size: 13px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
.article-content {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}
.article-content p { margin-bottom: 18px; text-indent: 2em; }
.article-content h2, .article-content h3 {
  color: #1e88c1;
  margin: 25px 0 15px;
}
.article-content img {
  max-width: 100%;
  border-radius: 6px;
  margin: 15px 0;
}
.article-content ul, .article-content ol {
  margin: 15px 0;
  padding-left: 30px;
}
.article-content ul li {
  list-style: disc;
  margin-bottom: 8px;
}

/* 线路详情 */
.tour-detail {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.tour-detail h1 {
  font-size: 26px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}
.tour-detail .tour-subtitle {
  color: #888;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.tour-detail .price-box {
  background: #fff8f5;
  border: 1px solid #ffe0d0;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tour-detail .price-box .price {
  color: #ff6b35;
  font-size: 32px;
  font-weight: bold;
}
.tour-detail .price-box .price small { font-size: 14px; font-weight: normal; }
.tour-detail .price-box .btn-book-big {
  padding: 12px 40px;
  background: linear-gradient(135deg, #1e88c1, #6b9b37);
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}
.tour-detail .info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 6px;
}
.tour-detail .info-item { text-align: center; font-size: 13px; color: #666; }
.tour-detail .info-item strong {
  display: block;
  color: #333;
  font-size: 15px;
  margin-bottom: 5px;
}
.tour-detail .section-h {
  font-size: 20px;
  color: #1e88c1;
  margin: 30px 0 15px;
  padding-left: 12px;
  border-left: 4px solid #6b9b37;
}
.tour-detail .day-item {
  padding: 20px;
  margin-bottom: 15px;
  background: #fafafa;
  border-radius: 6px;
  border-left: 3px solid #1e88c1;
}
.tour-detail .day-item .day-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.tour-detail .day-item .day-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* 联系我们页面 */
.contact-page {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px 0;
}
.contact-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafc;
  border-radius: 8px;
}
.contact-item .c-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e88c1, #6b9b37);
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
}
.contact-item h3 { font-size: 18px; margin-bottom: 10px; color: #333; }
.contact-item p { color: #666; font-size: 14px; line-height: 1.8; }
.contact-item .big {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  font-weight: bold;
  color: #1e88c1;
}

/* 模态框 */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 30px;
  text-align: center;
  position: relative;
  animation: modalIn .3s ease;
}
@keyframes modalIn {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
}
.modal-close:hover { color: #333; }
.modal-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
}
.modal-subtitle {
  color: #888;
  font-size: 14px;
  margin-bottom: 25px;
}
.modal-btns {
  display: flex;
  gap: 15px;
}
.modal-btn {
  flex: 1;
  padding: 15px 10px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all .3s;
}
.modal-btn.phone {
  background: #1e88c1;
  color: #fff;
}
.modal-btn.phone:hover { background: #1775a8; }
.modal-btn.wechat {
  background: #6b9b37;
  color: #fff;
}
.modal-btn.wechat:hover { background: #5a8a2a; }
.modal-btn .m-icon { font-size: 24px; display: block; margin-bottom: 5px; }
.modal-tip {
  margin-top: 15px;
  font-size: 12px;
  color: #999;
}

/* 浮动电话按钮（移动端） */
.floating-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #1e88c1;
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(30,136,193,.4);
  z-index: 99;
  cursor: pointer;
  text-decoration: none;
}


/* 汉堡菜单按钮 */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 6px;
  box-sizing: border-box;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #1e88c1;
  margin: 3px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* 响应式 */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .header .container { height: 60px; flex-wrap: wrap; }
  .logo img { height: 40px; }
  .logo .logo-text h1 { font-size: 16px; }
  .logo .logo-text p { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav.active {
    display: flex;
  }
  .nav > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav > li > a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-size: 15px;
  }
  .nav .submenu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: #f8f9fa;
    box-shadow: none;
    min-width: auto;
  }
  .nav > li:hover .submenu {
    display: none;
  }
  .nav > li.active .submenu {
    display: block;
  }
  .nav .submenu li a {
    padding: 10px 35px;
    font-size: 14px;
    color: #666;
  }
  .nav-toggle {
    display: flex;
  }
  .header-phone { display: none; }
  .floating-phone { display: flex; }
  .banner { height: 320px; z-index: 1; }
  .banner-text { top: 55%; }
  .banner-text h2 { font-size: 22px; margin-bottom: 10px; }
  .banner-text p { font-size: 14px; margin-bottom: 15px; }
  .banner-text .btn-banner { padding: 8px 24px; font-size: 13px; z-index: 10; position: relative; }
  .banner-text h2 { font-size: 24px; letter-spacing: 2px; }
  .banner-text p { font-size: 14px; }
  .features .container { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: 0; border-bottom: 1px solid #f0f0f0; }
  .tour-grid, .news-grid { grid-template-columns: 1fr; gap: 15px; }
  .section-title h2 { font-size: 22px; padding: 0 30px; }
  .about-wrap { grid-template-columns: 1fr; gap: 25px; }
  .about-text h2 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
  .tour-detail .info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: 1fr; }
  .page-banner { height: 140px; }
  .page-banner .page-title { width: 92%; }
  .page-banner h1 { 
    font-size: 16px; 
    line-height: 1.4; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .page-banner p { 
    font-size: 12px; 
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .tour-detail .price-box { flex-direction: column; gap: 15px; }
  .contact-page { padding: 20px; }
  .article { padding: 20px; }
  .article h1 { font-size: 20px; }
  .article-img { margin: 15px 0; }
  .article-img img { max-height: 260px; width: 100%; object-fit: cover; }
}

/* 小包团特色板块 */
.xiaobaotuan-section {
  background: linear-gradient(135deg, #e8f4f8 0%, #f0f7e8 100%);
}
.xiaobaotuan-section .section-title h2 {
  color: #1e88c1;
}
.xiaobaotuan-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 35px;
}
.xiaobaotuan-section .feature-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(30, 136, 193, 0.08);
  transition: all 0.3s;
  border-top: 3px solid #6b9b37;
}
.xiaobaotuan-section .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(30, 136, 193, 0.15);
}
.xiaobaotuan-section .feature-icon {
  font-size: 42px;
  margin-bottom: 15px;
}
.xiaobaotuan-section .feature-card h3 {
  color: #1e88c1;
  margin-bottom: 12px;
  font-size: 18px;
}
.xiaobaotuan-section .feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
.xiaobaotuan-cta {
  text-align: center;
  padding-top: 10px;
}
.xiaobaotuan-cta .btn-primary {
  display: inline-block;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  margin-right: 20px;
}
.xiaobaotuan-cta .cta-phone {
  font-size: 16px;
  color: #333;
}
.xiaobaotuan-cta .cta-phone strong {
  color: #e74c3c;
  font-size: 20px;
}
@media (max-width: 992px) {
  .xiaobaotuan-section .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .xiaobaotuan-cta .btn-primary {
    display: block;
    margin: 0 auto 15px;
  }
}
@media (max-width: 576px) {
  .xiaobaotuan-section .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* 文章内图片样式 */
.article-main-img {
  margin: 0 0 25px 0;
  border-radius: 8px;
  overflow: hidden;
}
.article-main-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.article-img {
  margin: 25px 0;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.article-img img {
  max-width: 100%;
  width: auto;
  max-height: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}


/* 首页视频板块 - 左右布局 */
.video-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a2a44 100%);
  color: #fff;
}
.video-section .section-title h2 { color: #fff; }
.video-section .section-title p { color: rgba(255,255,255,0.7); }

.video-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.video-info { padding-right: 10px; }
.video-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.3;
}
.video-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  margin-bottom: 25px;
}
.video-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.video-points li {
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
}
.video-points li span {
  display: inline-block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  background: #6b9b37;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  margin-right: 12px;
  flex-shrink: 0;
}
.video-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 15px; }
.video-cta .btn-primary {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
}
.video-phone { font-size: 15px; color: #fff; }
.video-phone strong { color: #ffd700; font-size: 18px; }

.video-player {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.hero-video {
  width: 100%;
  display: block;
  background: #000;
}
/* 微信/移动端视频容器 */
.video-player {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.video-player video {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  background: #000;
}

@media (max-width: 992px) {
  .video-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .video-info {
    order: 1;
    padding-right: 0;
  }
  .video-player {
    order: 2;
  }
}
@media (max-width: 768px) {
  .video-section { padding: 40px 0; }
  .video-info h3 { font-size: 24px; }
  .video-desc { font-size: 14px; }
  .video-points li { font-size: 14px; }
  .video-cta { flex-direction: column; align-items: flex-start; }
  .video-cta .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 768px) {
  .video-overlay {
    padding: 20px;
  }
  .video-text h3 {
    font-size: 22px;
  }
  .video-text p {
    font-size: 14px;
  }
  .video-text .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    margin: 0 0 10px 0;
    text-align: center;
  }
}

/* 视频播放优化 - 移动端微信兼容 */
.video-player { position: relative; }
.video-player video {
  background: #000;
  object-fit: cover;
}
@media (max-width: 768px) {
  .video-player video { object-fit: contain; }
}


/* 首页底部热线条 */
.hotline-bar {
  background: linear-gradient(135deg, #1e88c1 0%, #2a9fd6 100%);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.hotline-bar::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.hotline-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.hotline-icon {
  font-size: 48px;
  animation: hotline-pulse 2s ease-in-out infinite;
}
@keyframes hotline-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.hotline-text { text-align: center; color: #fff; }
.hotline-label { font-size: 16px; opacity: 0.9; margin-bottom: 6px; }
.hotline-num {
  display: block;
  font-size: 36px;
  font-weight: bold;
  color: #ffd700;
  letter-spacing: 2px;
  text-decoration: none;
  line-height: 1.2;
}
.hotline-num:hover { color: #fff; }
.hotline-wechat { font-size: 13px; opacity: 0.85; margin-top: 4px; }

@media (max-width: 768px) {
  .hotline-bar { padding: 20px 0; }
  .hotline-icon { font-size: 32px; }
  .hotline-label { font-size: 13px; }
  .hotline-num { font-size: 24px; letter-spacing: 1px; }
  .hotline-wechat { font-size: 12px; }
}
