.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-accordion dd {
  margin: 0;
}

.faq-acc-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.faq-acc-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.faq-acc-q {
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-acc-q:hover {
  background: #fafafa;
}

.faq-acc-qtext {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.faq-accordion  .faq-acc-icon {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: #212121;
  font-size: 28px !important;
}

.faq-accordion  .faq-acc-icon--open {
  transform: rotate(180deg);
}

.faq-acc-q[aria-expanded="true"] {
  background: #fafafa;
}

.faq-acc-a {
  padding: 0 24px;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-acc-a--open {
  max-height: 500px;
  padding-bottom: 16px;
}

.faq-acc-atext {
  display: block;
  padding: 16px 0;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.faq-acc-atext strong {
  font-weight: 700;
  color: #333;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .faq-acc-q {
    padding: 16px 0px !important;
  }

  .faq-acc-qtext {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .faq-acc-a {
    padding: 0 20px 0 20px;
  }

  .faq-acc-atext {
    padding: 14px;
    font-size: 14px;
  }

 
}

/* 侧边栏容器 */
.scenic-aside {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.scenic-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 卡片通用样式 */
.scenic-card {
  border: 1px solid rgba(31, 35, 41, 0.08);
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(31, 35, 41, 0.06);
}

.scenic-card-head {
  margin-bottom: 16px;
}

.scenic-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.scenic-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.scenic-card-button {
  width: 100%;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scenic-card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* 营业时间样式 */
.business-hours {
  position: relative;
}

.business-hours--row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.business-hours--row-between {
  justify-content: space-between;
}

.business-hours--title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.business-hours--chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(31, 35, 41, 0.55);
  border-bottom: 2px solid rgba(31, 35, 41, 0.55);
  transform: rotate(45deg);
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.business-hours--status {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0f7a3a;
}

.business-hours--hours {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 2;
  gap: 12px;
  font-size: 14px;
  color: rgba(31, 35, 41, 0.85);
}

.business-hours--day {
  font-weight: 600;
}

.business-hours--time {
  text-align: right;
  color: rgba(31, 35, 41, 0.8);
}

.business-hours--header {
  cursor: pointer;
  user-select: none;
}

.business-hours.is-open .business-hours--chevron {
  transform: rotate(-135deg);
}

.business-hours--expanded {
  margin-top: 10px;
}

.business-hours--time.is-empty {
  color: rgba(31, 35, 41, 0.45);
}

.business-hours--empty {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(31, 35, 41, 0.45);
}

/* 移动端样式 */
@media (max-width: 768px) {
  .scenic-card {
    padding: 16px;
  }

  .scenic-card-title {
    font-size: 16px;
  }

  .scenic-card-desc {
    font-size: 13px;
  }

  .scenic-card-button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .business-hours--title {
    font-size: 16px;
  }

  .business-hours--status {
    font-size: 14px;
  }

  .business-hours--hours {
    font-size: 13px;
  }
}

.scenic-list {
  position: relative;
  width: 100%;
  min-height: 95vh;
  background: var(--color-surface);
  padding-bottom: 50px;
}

.scenic-list .banner-section {
 margin-bottom: 25px;
}



/* Guide & Overview 行 - 与侧边栏水平对齐 */
.scenic-overview-row {
  display: block;
  margin-top: 25px;
}

.scenic-overview-row.has-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: start;
}
.scenic-overview-row.has-aside > * {
  margin-left: 24px;
}
.scenic-overview-row.has-aside > *:first-child {
  margin-left: 0;
}
@supports (gap: 24px) {
  .scenic-overview-row.has-aside {
    gap: 24px;
  }
  .scenic-overview-row.has-aside > * {
    margin-left: 0;
  }
}

.scenic-overview-content {
  min-width: 0;
  width: 100%;
}

.scenic-aside-wrapper {
  width: 360px;
  position: relative;
  top: 40px;
}

/* 复用 city-section 样式 */
.scenic-list .city-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 12px;
}

.scenic-list .city-section-title {
  display: inline-flex;
  align-items: baseline;
  color: var(--color-fg);
}
.scenic-list .city-section-title > * {
  margin-left: var(--sp-1);
}
.scenic-list .city-section-title > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-1)) {
  .scenic-list .city-section-title {
    gap: var(--sp-1);
  }
  .scenic-list .city-section-title > * {
    margin-left: 0;
  }
}

.scenic-list .city-section-title-main {
  font-size: var(--fz-lg);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

.scenic-list .city-section-title-sub {
  font-size: var(--fz-lg);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: var(--color-fg);
}

.scenic-list .city-section-full {
  margin-top: 25px;
}

.scenic-list .city-section-full:first-child {
  margin-top: 0;
}

/* FAQ 包装器 */
.scenic-faq-wrapper {
  width: 100%;
  margin: 0 auto;
}

.city-section.city-section-full .content-header .content-header--summary {
  background: unset;
  padding-inline: var(--summary-padding-start) var(--summary-padding-start);
}

.city-section.city-section-full .content-header .content-header--field {
  padding: unset;
}

.scenic-track .card-grid-page > * {
  margin-left: 6px;
  margin-bottom: 6px;
}
.scenic-track .card-grid-page > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 12px) {
  .scenic-track .card-grid-page {
    gap: 12px;
  }
  .scenic-track .card-grid-page > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.scenic-faq-wrapper .faq-acc-qtext {
  font-size: 16px;
  padding: 10px 0;
}

.scenic-list .gta-video-preview {
  background: unset;
}



/* 移动端样式 */
@media (max-width: 768px) {
  .scenic-list {
    padding-bottom: 30px;
  }



  /* Guide & Overview 行改为单列 */
  .scenic-overview-row {
    display: block;
    margin-top: 20px;
  }

  .scenic-aside-wrapper {
    display: none;
  }

  .scenic-mobile-aside {
    padding: 0 var(--container-padding-x) 0 var(--container-padding-x);
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* 隐藏翻页箭头 */
  .scenic-list .city-track .slide-track-arrow {
    display: none !important;
  }

  /* 重置 SlideTrack 容器 */
  .scenic-list .city-track .slide-track,
  .scenic-list .city-track .slide-track-viewport {
    overflow: visible !important;
    height: auto !important;
  }

  .scenic-list .city-track .slide-track-rail {
    transform: none !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: unset;
    padding: 2px;
  }

  /* 每个 slide-track-item 都显示 */
  .scenic-list .city-track .slide-track-item {
    flex: none !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  /* 卡片改为两列布局 */
  .scenic-list .city-track .card-grid-page {
    display: grid !important;
    align-items: start !important;
  }
  .scenic-list .city-track .card-grid-page > * {
    margin-bottom: 12px;
  }
  .scenic-list .city-track .card-grid-page > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 12px) {
    .scenic-list .city-track .card-grid-page {
      gap: 12px !important;
    }
    .scenic-list .city-track .card-grid-page > * {
      margin-bottom: 0;
    }
  }

  /* 卡片包装器 */
  .scenic-list .city-track .card-wrap {
    width: 100% !important;
    margin: 0 !important;
  }

  /* 卡片高度自适应 */
  .scenic-list .city-track .card-item {
    height: auto !important;
    width: 100% !important;
  }

  /* 标题样式 */
  .scenic-list .city-section-head {
    padding: 6px 0 10px;
  }

  .scenic-list .city-section-title-main,
  .scenic-list .city-section-title-sub {
    font-size: var(--fz-md);
  }

  /* 隐藏占位卡片 */
  .scenic-list .city-track .card-item--placeholder {
    display: none !important;
  }

  .scenic-faq-wrapper .faq-accordion {
    border: unset;
  }

  .scenic-faq-wrapper .faq-acc-q[aria-expanded="true"] {
    background-color: unset;
  }

  .scenic-faq-wrapper .faq-acc-a {
    padding: unset;
  }

  .scenic-faq-wrapper .faq-acc-atext {
    padding: unset;
    font-size: 14px;
    color: #212121;
  }
  .scenic-faq-wrapper .faq-acc-qtext {
    font-size: 14px;
    padding: 14px 0;
  }

}

/* 小屏幕优化 */
@media (max-width: 375px) {
  .scenic-list .city-track .card-grid-page > * {
    margin-bottom: 10px;
  }
  .scenic-list .city-track .card-grid-page > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 10px) {
    .scenic-list .city-track .card-grid-page {
      gap: 10px !important;
    }
    .scenic-list .city-track .card-grid-page > * {
      margin-bottom: 0;
    }
  }
}
.website-scenic-banner {
  position: relative;
  height: 254px;
  overflow: hidden;
}

.website-scenic-banner-inner {
  position: relative;
  height: 100%;
}

.website-scenic-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.website-scenic-banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 0.3) 65%,
      rgba(0, 0, 0, 0.65) 85%,
      rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  /* 让蒙层不干扰点击 */
}

.website-scenic-banner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}

.website-scenic-banner-content--name {
  width: 100%;
  text-align: left;
  font-size: 34px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  padding-bottom: 5px;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.website-scenic-banner .content-header .content-header--name {
  color: #fff;
}

.website-scenic-banner-content--text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 52px;
}



.website-scenic-banner .content-header {
  width: 100%;
  margin-bottom: 10px;
}

.website-scenic-banner .content-header--field {
  position: relative;
  padding: unset !important;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.website-scenic-banner .content-header--value {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.35;
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.website-scenic-banner .content-header--summary,
.website-scenic-banner .content-header--summarybox,
.website-scenic-banner .content-header--summary-clip,
.website-scenic-banner .content-header--summary-list {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
}

.website-scenic-banner .content-header--summary {
  font-size: 13px;
  line-height: 1.35;
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.website-scenic-banner .content-header--summarybox {
  position: relative;
}

.website-scenic-banner .content-header--summary-clip {
  max-height: none;
}

.website-scenic-banner .content-header--summary-list {
  list-style: none;
}

.website-scenic-banner .content-header--morebar-inside {
  padding: 2px 0 10px;
  padding-left: 0;
}

.website-scenic-banner .content-header--toolbar {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  padding: 6px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  backdrop-filter: saturate(120%) blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.website-scenic-banner .content-header--field:hover .content-header--toolbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.website-scenic-banner .content-header--btn.gta-btn {
  padding: 0 5px;
  height: auto;
  line-height: normal;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.website-scenic-banner .content-header--btn.gta-btn .gta-icon[data-size="custom"] {
  --gta-icon-size: 18px;
}

.website-scenic-banner .content-header--add {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
}

.website-scenic-banner .content-header--morebtn.gta-btn {
  color: rgba(255, 255, 255, 0.92);
}

.website-scenic-banner .content-header--morebtn.gta-btn:hover {
  color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .website-scenic-banner {
    height: 200px;
  }

  .website-scenic-banner-content--name {
    font-size: 24px;
  }



  .website-scenic-banner .content-header--value {
    width: 100%;
    max-width: 100%;
    font-size: var(--fz-xs) !important;
  }

  .website-scenic-banner .content-header--summary,
  .website-scenic-banner .content-header--summarybox,
  .website-scenic-banner .content-header--summary-clip,
  .website-scenic-banner .content-header--summary-list {
    width: 100%;
    max-width: 100%;
  }

  .website-scenic-banner-content--text {
    margin-bottom: 30px;
  }
}


/*# sourceMappingURL=website-route-scenic.0c4cd6af.chunk.css.map*/