/* ========== 列表页变量（List Page Tokens） ========== */
.prolist-page,
.list-page {
  --list-accent: #f98516;
  --list-accent-hot: #ff8a00;
  --list-bg-alt: #f5f5f5;
  --list-radius: 9px;
  --list-shadow: 0 2px 3px -1px #d2d2d2;
}

/* ========== 全宽横幅（Banner） ========== */
.list-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.list-banner img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 500px;
  object-fit: cover;
}

/* ========== 面包屑（Breadcrumb — List Page） ========== */
.prolist-page .breadcrumb-wrap,
.list-page .breadcrumb-wrap {
  padding: 16px 0 0;
}
.prolist-page .breadcrumb,
.list-page .breadcrumb {
  font-size: 13px;
  color: #888;
}
.prolist-page .breadcrumb a:hover,
.list-page .breadcrumb a:hover {
  color: var(--list-accent);
  text-decoration: underline;
}
.prolist-page .breadcrumb .current,
.list-page .breadcrumb .current {
  color: #333;
}

/* ========== 页面标题与简介（Page Title / Intro） ========== */
.list-head {
  padding: 20px 0 28px;
}
.list-head h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: #222;
}
.list-head h1 span {
  color: var(--list-accent-hot);
}
.list-intro {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.list-intro p + p {
  margin-top: 12px;
}

/* ========== 区块副标题（Section Subtitle） ========== */
.list-section {
  padding: 36px 0 40px;
}
.list-section.alt-bg {
  background: var(--list-bg-alt);
}
.section-head {
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.section-head p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.section-head a {
  color: var(--list-accent);
}
.section-head a:hover {
  text-decoration: underline;
}

/* ========== 导航扩展下拉（Nav Dropdowns — List Page） ========== */
.pull-down.grid-3 {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 8px;
  min-width: 480px;
}
.drop-down:hover > .pull-down.grid-3,
.drop-down.open > .pull-down.grid-3 {
  display: grid;
}
.pull-down .nav-group-title {
  display: block;
  padding: 8px 14px 4px;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  pointer-events: none;
}

/* ========== 精选横卡产品（Featured Product Cards） ========== */
.featured-products {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.featured-card {
  display: flex;
  background: #fff;
  border-radius: var(--list-radius);
  box-shadow: var(--list-shadow);
  overflow: hidden;
  border: 1px solid #eee9e5;
  transition: box-shadow .25s;
}
.featured-card:hover {
  box-shadow: #ccc 0 0 10px;
}
.featured-card-media {
  display: block;
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
}
.featured-card-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}
.featured-hot {
  position: absolute;
  top: 12px;
  left: 12px;
}
.featured-hot img {
  width: 56px;
  height: auto;
  min-height: 0;
}
.featured-card-body {
  flex: 1;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
}
.featured-card-body .product-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 10px;
  min-height: auto;
  -webkit-line-clamp: unset;
}
.featured-card-body .product-point {
  font-size: 13px;
  color: #666;
  margin: 8px 0 10px;
  line-height: 1.5;
}
.featured-card-body .line-trait {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin-bottom: 14px;
  flex: 1;
}
.featured-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #eee;
}
.featured-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ========== 团期下拉（Date Dropdown） ========== */
.date-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--list-accent);
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}
.date-toggle img {
  width: 12px;
  height: 13px;
}
.date-list {
  display: none;
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  min-width: 280px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 50;
  list-style: none;
}
.date-list.open {
  display: block;
}
.date-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}
.date-list li:last-child {
  border-bottom: none;
}
.date-list .font-color {
  color: var(--list-accent);
  font-weight: 600;
  white-space: nowrap;
}
.featured-price-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.featured-price-row .price {
  font-size: 14px;
  color: var(--list-accent);
}
.featured-price-row .price span {
  font-size: 22px;
  font-weight: 700;
}

/* ========== 线路卡片网格（Route Card Grid） ========== */
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.route-card {
  background: #fff;
  border-radius: var(--list-radius);
  box-shadow: var(--list-shadow);
  overflow: hidden;
  border: 1px solid #eee9e5;
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: #ccc 0 0 10px;
}
.route-card-media {
  position: relative;
}
.route-card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.route-card .product-rank {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #f98516, #f9aa5e);
  color: #fff;
  font-weight: 700;
  padding: 5px 12px;
  border-bottom-right-radius: 6px;
  font-size: 13px;
}
.route-card-body {
  padding: 16px;
}
.route-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.route-card .route-point {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.route-card .route-jingdian {
  margin-bottom: 12px;
  min-height: 26px;
}
.route-card .route-jingdian span {
  display: inline-block;
  margin: 0 4px 4px 0;
  border-radius: 5px;
  border: 1px dashed #ffca97;
  color: var(--list-accent);
  line-height: 16px;
  padding: 2px 6px;
  font-size: 12px;
}
.route-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #eee;
}
.route-card-foot .days {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.route-card-foot .enrolled {
  font-size: 12px;
  color: #999;
}
.route-card-foot .booking_btn {
  flex-shrink: 0;
}

/* ========== 攻略文章（Articles Grid） ========== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: #fff;
  border-radius: var(--list-radius);
  box-shadow: var(--list-shadow);
  overflow: hidden;
  border: 1px solid #eee9e5;
  transition: transform .2s, box-shadow .2s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: #ccc 0 0 10px;
}
.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.article-card-title {
  padding: 14px 16px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #222;
}

/* ========== 常见问题（FAQ Accordion） ========== */
.faq-section {
  padding: 40px 0 48px;
}
.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.faq-head h2 {
  font-size: 24px;
  font-weight: 700;
}
.faq-toggle-all {
  border: 1px solid var(--list-accent);
  color: var(--list-accent);
  background: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all .25s;
}
.faq-toggle-all:hover {
  background: var(--list-accent);
  color: #fff;
}
.faq-list {
  list-style: none;
  border: 1px solid #eee;
  border-radius: var(--list-radius);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid #eee;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  background: #fff;
  transition: background .2s;
}
.faq-question:hover {
  background: #fafafa;
}
.faq-question.is-open {
  background: #fff8f0;
}
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.faq-q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  transition: transform .25s;
  margin-right: 4px;
}
.faq-question.is-open .faq-arrow {
  transform: rotate(-135deg);
  margin-top: 6px;
}
.faq-answer {
  display: none;
  padding: 0 18px 18px 60px;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
}
.faq-answer.is-open {
  display: block;
}
.faq-answer p + p {
  margin-top: 10px;
}

/* ========== 评价与咨询侧栏（Reviews + Inquiry Sticky） ========== */
.reviews-inquiry-wrap {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0 48px;
}
.reviews-col {
  flex: 1;
  min-width: 0;
}
.reviews-col h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-intro {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}
.review-card {
  background: #fff;
  border: 1px solid #eee9e5;
  border-radius: var(--list-radius);
  box-shadow: var(--list-shadow);
  padding: 20px;
  margin-bottom: 18px;
}
.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-user-name {
  font-weight: 600;
  font-size: 15px;
}
.review-stars {
  color: #ffb03f;
  font-size: 14px;
  letter-spacing: 2px;
  margin-left: auto;
}
.review-body {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}
.inquiry-sticky {
  flex: 0 0 320px;
  position: sticky;
  top: 80px;
}
.inquiry-sticky-box {
  background: #fdf6f0;
  border: 1px solid #ffca97;
  border-radius: var(--list-radius);
  overflow: hidden;
  box-shadow: var(--list-shadow);
}
.inquiry-sticky-head {
  background: linear-gradient(to right, #ff8a00, #ffb03f);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 20px;
  text-align: center;
}
.inquiry-sticky-body {
  padding: 20px;
}
.inquiry-sticky-body .form-group {
  margin-bottom: 14px;
}
.inquiry-sticky-body input,
.inquiry-sticky-body textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.inquiry-sticky-body input:focus,
.inquiry-sticky-body textarea:focus {
  border-color: var(--list-accent);
}
.inquiry-sticky-body textarea {
  min-height: 100px;
  resize: vertical;
}
.inquiry-sticky-body .btn-submit {
  width: 100%;
  border: none;
  background: var(--list-accent);
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
}
.inquiry-sticky-body .btn-submit:hover {
  background: var(--list-accent-hot);
}

/* ========== 顾问团队（Team Section） ========== */
.team-section {
  padding: 40px 0 56px;
  background: var(--list-bg-alt);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-member {
  text-align: center;
  background: #fff;
  border-radius: var(--list-radius);
  padding: 20px 16px;
  box-shadow: var(--list-shadow);
  border: 1px solid #eee9e5;
  transition: transform .2s;
}
.team-member:hover {
  transform: translateY(-4px);
}
.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid #ffca97;
}
.team-member span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* ========== 响应式（Responsive） ========== */
@media (max-width: 991px) {
  .route-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    flex-direction: column;
  }
  .featured-card-media {
    flex: none;
    max-width: 100%;
  }
  .featured-card-media img {
    min-height: 200px;
  }
  .reviews-inquiry-wrap {
    flex-direction: column;
  }
  .inquiry-sticky {
    flex: none;
    width: 100%;
    position: static;
  }
}

@media (max-width: 767px) {
  .list-head h1 {
    font-size: 22px;
  }
  .section-head h2,
  .faq-head h2,
  .reviews-col h2 {
    font-size: 20px;
  }
  .route-grid,
  .articles-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .pull-down.grid-3 {
    min-width: 280px;
    grid-template-columns: 1fr;
  }
  .date-list {
    min-width: 240px;
    left: auto;
    right: 0;
  }
}
