.content-layout{
  margin-bottom: 44px;
  display: flex;
}

.content-list{
  background: white;
  min-height: 100vh;
  margin: 22px 0;
  border-radius: 15px;
  padding: 16px;
}
 
.navigation {
  position: relative;
  width: 100%;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.navigation-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  height: var(--hdr-ctl-h);
  position: relative; /* 添加相对定位 */
}

.navigation-tab {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  height: 100%;
  padding: var(--sp-4) var(--sp-4);
  position: relative;
}

.navigation-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;  /* 改为 bottom: 0 */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-brand);
 
}

.navigation-tab-title {
  font-size: var(--fz-15);
  font-weight: var(--fw-medium);
  color: var(--color-fg);
}



.navigation-dropdown {
  border-top: 1px solid var(--color-border);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;

  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  overflow-y: auto;
  height: 309px;
}

.navigation-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navigation-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));

  max-width: 100%;

  margin: 0 auto;
  padding: 0;
}

.navigation-dropdown-item {
  width: 275px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease;
  margin-top: 13.5px;
}

.navigation-dropdown-item:last-child{
  margin-bottom: 13.5px;
}

.navigation-dropdown-item:hover {
  /* transform: translateY(-4px); */
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-md);
}

.navigation-dropdown-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: var(--sp-2);
  flex-shrink: 0;
  margin-right: var(--sp-2);
}

.navigation-dropdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation-dropdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation-dropdown-flex {
  width: calc(100% - 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.navigation-dropdown-title {
  width: 100%;
  text-align: left;
  color: var(--color-fg-muted);
  font-size: var(--fz-xs);
  font-weight: var(--fw-normal);
  line-height: 1.32;
}

.navigation-dropdown-name {
  width: 100%;
  font-size: var(--fz-sm);
  color: var(--color-fg);
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

 .site-banner {
  position: relative;
  height: 308px;

  background: #f5f7fa;
}

.site-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.site-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.site-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.site-banner-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

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

.site-banner-content {
  position: relative;
  z-index: 2;

  padding-top: 56px;
  margin: 0 auto;
}

.site-banner-title {
  margin: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: var(--fz-5xl);
  font-weight: 700;
  line-height: 1.2;
}

.site-banner-subDesc {
  width: 100%;
  margin: 8px 0 0;
  border: 0;
  resize: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.site-banner-search {
  display: flex;
  align-items: center;
  margin-top: 50px;
  height: 48px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: min(690px, 100%);
}

.site-banner-searchIcon i {
  font-size: 22px;
}

.site-banner-searchIcon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 48px;
}

.site-banner-searchInput {
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
}

.site-banner-searchBtn {
  width: 96px;
  height: 100%;
  border: 0;
  background: #F5B301;
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.site-banner-searchBtn:hover {
  background: #F5B301;
}

.site-banner-searchBtn:active {
  background: #F5B301;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .site-banner {
    height: 200px;
  }

  .site-banner-inner {
    padding: 0 16px;
  }

  .site-banner-content {
    width: 100%;
    padding-top: 40px;
  }

  .site-banner-title {
    font-size: 28px;
  }

  .site-banner-subDesc {
    font-size: 14px;
    line-height: 1.4;
  }

  .site-banner-search {
    margin-top: 15px;
    height: 40px;
  }

  .site-banner-searchIcon {
    width: 40px;
    height: 40px;
    flex: 0 0 43px;
    font-size: 40px;
  }


  .site-banner-searchInput {
    /*font-size: 14px;*/
    width: calc(100% - 115px);
  }

  .site-banner-searchBtn {
    width: 72px;
    font-size: 14px;
  }
}

/* 吸顶搜索框样式 */
.site-banner-search-sticky {
  position: fixed;
  top: var(--gta-header-h) !important;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 998;
  padding: 10px 0;
}

.site-banner-search-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.site-banner-search-sticky .site-banner-search {
  margin-top: 0;
}

@media (max-width: 768px) {
  .site-banner-search-sticky .site-banner-search {
    border: 1px solid #f7a900;
  }
}

.card-track-website .article-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.card-track-website .article-cover-wrap {
  position: relative;
  padding-bottom: 22px;
}

.card-track-website .article-cover {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #f4f6f8;
}
.card-track-website .article-cover::before {
  content: "";
  display: block;
  width: 1px;
  margin-left: -1px;
  height: 0;
  padding-bottom: 56.25%;
}
@supports (aspect-ratio: 16/9) {
  .card-track-website .article-cover::before {
    display: none;
  }
}

.card-track-website .article-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 25%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.card-track-website .article-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track-website .article-meta {
  position: absolute;
  left: 5px;
  bottom: 20px;
  transform: translateY(50%);
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.card-track-website .article-meta > * {
  margin-left: 6px;
}
.card-track-website .article-meta > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .card-track-website .article-meta {
    gap: 6px;
  }
  .card-track-website .article-meta > * {
    margin-left: 0;
  }
}

.card-track-website .article-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.card-track-website .article-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track-website .article-name {
  font-size: 14px;
  font-weight: var(--fw-medium);
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: auto;
  color: #333;
  line-height: 1;
  padding-bottom: 2px;
}

.card-track-website .article-body {
  padding: 12px;
  padding-top: 6px;
}

.card-track-website .article-title {
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.card-track-website .article-summary {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.card-track-website .trip-card {
  border-radius: 14px;
  height: 100%;
  border: 1px solid #eef2f7;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-track-website .trip-media {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  width: 100%;
  flex-shrink: 0;
}

.card-track-website .trip-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.card-track-website .trip-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track-website .trip-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-track-website .trip-body > * {
  margin-bottom: 6px;
}
.card-track-website .trip-body > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 6px) {
  .card-track-website .trip-body {
    gap: 6px;
  }
  .card-track-website .trip-body > * {
    margin-bottom: 0;
  }
}

.card-track-website .trip-title {
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  min-height: 20px;
  /* 固定最小高度 */
}

/* 描述区域包装器 - 固定高度 */
.card-track-website .trip-sub-wrapper {
  min-height: 40px;
  /* 2行文字的高度 */
  margin-bottom: 2px;
}

.card-track-website .trip-sub-website {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 36px;
  /* 2行文字的最大高度 */
}

/* 描述占位符 - 当没有描述时使用 */
.card-track-website .trip-sub-placeholder {
  height: 36px;
  /* 与有描述时保持一致 */
  background: transparent;
}

.card-track-website .trip-rating {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 16px;
  margin: 2px 0;
}
.card-track-website .trip-rating > * {
  margin-left: 6px;
}
.card-track-website .trip-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .card-track-website .trip-rating {
    gap: 6px;
  }
  .card-track-website .trip-rating > * {
    margin-left: 0;
  }
}

.card-track-website .trip-star {
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
  position: relative;
  bottom: 1.5px;
}

.card-track-website .trip-score {
  font-weight: 700;
  color: #333;
}

.card-track-website .trip-rating-muted {
  color: #666;
}

.card-track-website .trip-rating-dot {
  color: #666;
}

.card-track-website .trip-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  /* 固定最小高度 */
  margin-top: auto;
  /* 推到底部 */
}

.card-track-website .trip-price-text {
  display: inline-flex;
  align-items: baseline;
  color: #222;
  white-space: nowrap;
}
.card-track-website .trip-price-text > * {
  margin-left: 4px;
}
.card-track-website .trip-price-text > *:first-child {
  margin-left: 0;
}
@supports (gap: 4px) {
  .card-track-website .trip-price-text {
    gap: 4px;
  }
  .card-track-website .trip-price-text > * {
    margin-left: 0;
  }
}

.card-track-website .trip-price-sym {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.card-track-website .trip-price-val {
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.card-track-website .trip-price-from {
  font-size: 12px;
  font-weight: 700;
  color: #666;
}

.card-track-website .trip-price-inquiry {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #333;
}

/* 确保所有卡片高度一致 */
.card-track-website .card-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}



@media screen and (max-width: 768px) {
  .card-track-website .trip-rating > * {
    margin-left: 4px;
  }
  .card-track-website .trip-rating > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 4px) {
    .card-track-website .trip-rating {
      gap: 4px;
    }
    .card-track-website .trip-rating > * {
      margin-left: 0;
    }
  }
}
.card-track-website .card-item.shorts-card {
  border: 0 !important;
  padding: 0;
  margin: 0;
  background: transparent;
  height: 100%;
}

.card-track-website .shorts-thumb {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  border-radius: 12px;
}
.card-track-website .shorts-thumb::before {
  content: "";
  display: block;
  width: 1px;
  margin-left: -1px;
  height: 0;
  padding-bottom: 177.78%;
}
@supports (aspect-ratio: 9/16) {
  .card-track-website .shorts-thumb::before {
    display: none;
  }
}

.card-track-website .shorts-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.card-track-website .shorts-thumb-img,
.card-track-website .shorts-thumb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track-website .shorts-topbar {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 10px;
  padding: 8px 10px;
}

.card-track-website .shorts-topbar-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  color: #ffcf2e;
  letter-spacing: 0.2px;
}

.card-track-website .shorts-badges {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
}

.card-track-website .shorts-badge {
  pointer-events: none;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.78);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
}

.card-track-website .shorts-info {
  padding: 10px 2px 0 2px;
}

.card-track-website .shorts-title {
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  color: #222;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track-website .shorts-views {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #6b7280;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card-track-website .shorts-views:first-child {
  margin-left: 4px;
}

.card-track-website .shorts-views:last-child {
  margin-right: 4px;
}


.card-track-website .shorts-flex {
  margin-left: 1px;
  margin-right: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.card-track-website .card-item.video-card {
  border: 1px solid #e7e7e7;
  padding: 0;
  margin: 0;
  background: transparent;
  height: 100%;
}

.card-track-website .video-surface {
  background: transparent;
}

.card-track-website .video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #f4f6f8;
}
.card-track-website .video-thumb::before {
  content: "";
  display: block;
  width: 1px;
  margin-left: -1px;
  height: 0;
  padding-bottom: 56.25%;
}
@supports (aspect-ratio: 16/9) {
  .card-track-website .video-thumb::before {
    display: none;
  }
}

.card-track-website .video-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.card-track-website .video-thumb img {

  object-fit: cover;

}

.card-track-website .video-thumb.broken {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.card-track-website .video-thumb.broken::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(45deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.04) 6px,
      rgba(0, 0, 0, 0.06) 6px,
      rgba(0, 0, 0, 0.06) 12px);
}

.card-track-website .video-thumb.broken::after {
  content: "🖼️";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 28px;
  opacity: 0.65;
  pointer-events: none;
}

.card-track-website .video-thumb-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.card-track-website .video-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.82);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
}

.card-track-website .video-info {
  padding: var(--control-px);
  position: relative;
}

.card-track-website .video-title {
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track-website .video-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  min-width: 0;
  position: absolute;
  top: -25px;
  left: 5px;
  z-index: 3;
}
.card-track-website .video-row > * {
  margin-left: 8px;
}
.card-track-website .video-row > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .card-track-website .video-row {
    gap: 8px;
  }
  .card-track-website .video-row > * {
    margin-left: 0;
  }
}

.card-track-website .video-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
  flex: 0 0 auto;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.card-track-website .video-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track-website .video-channel {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #333;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-track-website .video-submeta {
  margin-top: 6px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card-track-website .video-submeta > * {
  margin-left: 6px;
}
.card-track-website .video-submeta > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .card-track-website .video-submeta {
    gap: 6px;
  }
  .card-track-website .video-submeta > * {
    margin-left: 0;
  }
}

.card-track-website .video-dot {
  opacity: 0.8;
}

/* 移动端优化 */
@media (max-width: 745px) {
  .card-track-website .card-item.video-card {
    border: 1px solid #eef2f7 !important;
  }

  .card-track-website .video-title {
    margin-top: 20px !important;
  }

  .card-track-website .video-row {
    align-items: flex-end;
  }
  .card-item.video-card .gta-video-pc-preview{
    aspect-ratio: 4 / 3 !important;
  }
}

.card-track-website .city-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-height: 160px;
}
@supports (min-height: clamp(160px, 18vw, 350px)) {
  .card-track-website .city-card {
    min-height: clamp(160px, 18vw, 350px);
  }
}

.card-track-website .city-cover {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f6f8;
}

.card-track-website .city-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-track-website .city-title {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.1;
  color: #fff;
  max-width: calc(100% - 24px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 2;
}

.card-track-website.card-track--scenic .card-item {
  height: auto;
  min-height: 160px;
}
@supports (min-height: clamp(160px, 18vw, 220px)) {
  .card-track-website.card-track--scenic .card-item {
    min-height: clamp(160px, 18vw, 220px);
  }
}

.card-track-website .city-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

@media (max-width: 768px) {
  .card-track-website .city-title {
   line-height: unset;
  }
}

.card-track-website .scenicSpot-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-height: 160px;
}
@supports (min-height: clamp(160px, 18vw, 220px)) {
  .card-track-website .scenicSpot-card {
    min-height: clamp(160px, 18vw, 220px);
  }
}

.card-track-website .scenicSpot-cover {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f4f6f8;
}

.card-track-website .scenicSpot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.card-track-website .scenicSpot-title {
  position: absolute;
  left: 12px;
  bottom: 10px;
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
 
  color: #fff;
  max-width: calc(100% - 24px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  z-index: 2;
}

.card-track-website.card-track--scenic .card-item {
  height: auto;
  min-height: 160px;
}
@supports (min-height: clamp(160px, 18vw, 220px)) {
  .card-track-website.card-track--scenic .card-item {
    min-height: clamp(160px, 18vw, 220px);
  }
}

.card-track-website .scenicSpot-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

@media (max-width: 768px) {
  .card-track-website .scenicSpot-card {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    min-height: clamp(160px, 18vw, 220px);
  }

}
.coupon-card {
  box-sizing: border-box;
  min-height: clamp(120px, 20vw, 180px);
  height: 100%;
}
@supports (min-height: clamp(120px, 20vw, 180px)) {
  .coupon-card {
    min-height: clamp(120px, 20vw, 180px);
  }
}

.coupon-cover {
  position: relative;
  width: 100%;
  padding-top: 42.75%; /* 389/911 ≈ 0.4275 */
  overflow: hidden;
  border-radius: 8px;
  min-height: 120px;
}

.coupon-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
    overflow: hidden;
  transition: transform 0.3s ease;
}

.coupon-card:hover .coupon-img {
  transform: scale(1.05);
}
.card-view-record {
  width: 100%;
  min-height: 130px;
  display: inline-block;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
}

.card-view-record__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f4f6f8;
}

.card-view-record__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-view-record .trip-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-view-record .trip-sub-wrapper {
  overflow: hidden;
}

.card-view-record .trip-sub-website {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 36px;
}

@supports (aspect-ratio: 16/9) {
  .card-view-record__media {
    aspect-ratio: var(--aspect-ratio, 16/9);
    padding-bottom: unset !important;
  }
}
.card-track-website {
  width: 100%;
  min-height: 130px;
  --card-track-item-h: auto;
}

.card-grid-page {
  display: grid;
  align-items: stretch;
  grid-auto-rows: auto;
}
.card-grid-page > * {
  margin-left: 14px;
  margin-bottom: 14px;
}
.card-grid-page > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 14px) {
  .card-grid-page {
    gap: 14px;
  }
  .card-grid-page > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.card-item {
  background: #fff;
  border-radius: var(--sp-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: var(--card-track-item-h);
}

.card-item--placeholder {
  background: #fafbfc;
  border: 1px dashed #d0d7de;
}

.card-item--add {
  cursor: pointer;
  border: 1px dashed #d0d7de;
  background: #fafbfc;
}

.card-cover {
  width: 100%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  min-height: 120px;
}
.card-cover::before {
  content: "";
  display: block;
  width: 1px;
  margin-left: -1px;
  height: 0;
  padding-bottom: 56.25%;
}
.card-cover > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@supports (aspect-ratio: 16/9) {
  .card-cover {
    aspect-ratio: 16/9;
  }
  .card-cover::before {
    display: none;
  }
  .card-cover > * {
    position: static;
    width: auto;
    height: auto;
  }
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.card-body {
  padding: 12px;
  min-height: 50px;
  max-height: 50px;
  flex: 1 1 auto;
}

.card-title {
  font-size: 15px;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.add-plus {
  font-size: 32px;
  color: #6b7280;
  user-select: none;
}

.card-wrap {
  position: relative;
}

.card-toolbar-overlay {
  position: absolute;
  top: var(--sp-2);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px;
  border-radius: var(--sp-2);
}

.card-btn.gta-btn {
  height: auto;
  line-height: normal;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.card-btn.gta-btn .gta-icon[data-size="custom"] {
  --gta-icon-size: var(--fz-lg);
}

.card-track-website [aria-live],
.card-track-website .dnd-kit-screen-reader {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.card-sort-area {
  display: contents;
}


.card-track-website .website-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

.card-track-website .website-favorite i {
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

.swipe-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  user-select: none;
}

.swipe-wrapper {
  width: 100%;
  overflow: hidden;
}

.swipe-wrapper--card {
  padding: 0 16px !important;
  position: relative;
}

.swipe-track {
  display: flex;
  transition: transform 0.3s ease !important;
  will-change: transform;
}

.swipe-item {
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, z-index 0.3s ease !important;
  will-change: transform, opacity;
  position: relative;
}

.swipe-item--active {
  transform: scale(1) translateZ(0);
  z-index: 3;
  opacity: 1;
  position: relative;
}

.swipe-item--adjacent {
  transform: scale(0.85) translateZ(0);
  z-index: 2;
  opacity: 0.8;
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

.swipe-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
}

.swipe-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swipe-indicator--active {
  width: 24px;
  border-radius: 4px;
  background-color: #333;
}
.infinite-swiper {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: grab;
  padding: 0 20px 0 20px;
  overflow: hidden;
}

.infinite-swiper:active {
  cursor: grabbing;
}

.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-item {
  position: absolute;
  background: white;
  border-radius: 8px;
 
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  user-select: none;
}

/* .swiper-item:nth-child(even) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.swiper-item:nth-child(odd) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
} */
.infinite-scroll-component {
  overflow: hidden !important; /* 去掉滚动 */
}

.paginated-list-wrapper {
  position: relative;
  width: 100%;
}

.paginated-list-carousel {
  overflow: hidden;
  position: relative;
}

.paginated-list-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

.paginated-list-track > .paginated-list-page {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pagination-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.nav-button {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.nav-button.left {
  left: -22px;
}

.nav-button.right {
  right: -22px;
}

.nav-button:disabled {
  opacity: 0;
  cursor: not-allowed;
}

.paginated-list-loading {
  text-align: center;
  font-size: 14px;
  color: #999;
  padding: 16px;
}

.paginated-list-done {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  padding: 20px 0;
}


.scenic-track .card-track-website  .card-wrap{
  margin-bottom: 10px;
} 
.main-page{
  background-color: #ffffff;
}

/* 语义标签默认样式重置 —— 仅在 .main-page 下生效 */
.main-page figure {
  margin: 0;
}

.main-content {
   background: var(--color-surface);
   min-height: 95vh;
   padding-bottom: 50px;
 }

 .main-content .home-section-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 6px 0 12px;
 }

 .main-content .home-section-title {
   display: inline-flex;
   align-items: baseline;
   margin-right: calc(-1 * var(--sp-1));
   color: var(--color-fg);
 }
 .main-content .home-section-title > * {
   margin-right: var(--sp-1);
 }
@supports (gap: var(--sp-1)) {
  .main-content .home-section-title {
    gap: var(--sp-1);
    margin-right: 0;
  }
  .main-content .home-section-title > * {
    margin-right: 0;
  }
}

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

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

 .main-content .home-section-full {
   grid-column: 1 / -1;
   margin-top: 25px;
   min-height: 130px;
 }


 .main-nav-top-box {
   position: relative;
   width: min(690px, 100%);
 }

.main-content .card-grid-page > * {
  margin-left: 18px;
  margin-bottom: 18px;
}
.main-content .card-grid-page > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 18px) {
  .main-content .card-grid-page {
    gap: 18px;
  }
  .main-content .card-grid-page > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}


 .fixed-page-container {
  position: fixed;
  right: 10px;
  bottom: 120px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.fixed-page-container > * {
  margin-bottom: 12px;
}
.fixed-page-container > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 12px) {
  .fixed-page-container {
    gap: 12px;
  }
  .fixed-page-container > * {
    margin-bottom: 0;
  }
}

 .gta-video-preview .gta-video-preview__poster.is-hidden{
   opacity: 1;
 }

 .gta-video-preview.is-playing .gta-video-preview__poster{
   opacity: 0;
 }

 .main-content .gta-video-preview{
  background: unset;
 }
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;

  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: drawer-mask-in 160ms ease-out forwards;

  display: flex;
  justify-content: flex-end;

  -webkit-tap-highlight-color: transparent;
}

.drawer-overlay--closing {
  animation: drawer-mask-out 160ms ease-in forwards;
}

.drawer-overlay--left {
  justify-content: flex-start;
}

.drawer-panel {
  width: var(--drawer-w, 360px);
  height: 100%;
  background: #fff;

  display: flex;
  flex-direction: column;

  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
  will-change: transform;

  transform: translateX(100%);
  animation: drawer-panel-in 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.drawer-overlay--left .drawer-panel {
  transform: translateX(-100%);
  animation: drawer-panel-in-left 200ms cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.drawer-overlay--closing .drawer-panel {
  animation: drawer-panel-out 180ms ease-in forwards;
}

.drawer-overlay--closing.drawer-overlay--left .drawer-panel {
  animation: drawer-panel-out-left 180ms ease-in forwards;
}

.drawer-header {
  position: relative;
  height: 56px;
  flex: 0 0 auto;
  margin-top: var(--gta-header-h);
  display: flex;
  align-items: center;
  justify-content: center;

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.drawer-close {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 10px;

  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #111;

  -webkit-tap-highlight-color: transparent;
}

.drawer-close:active {
  background: rgba(0, 0, 0, 0.06);
}

.drawer-header-content {
  width: 100%;
  min-width: 0;
  padding: 0 54px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-body {
  flex: 1 1 auto;
  min-height: 0;

  overflow: auto;
  -webkit-overflow-scrolling: touch;

  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
}

@keyframes drawer-mask-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes drawer-mask-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes drawer-panel-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes drawer-panel-out {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes drawer-panel-in-left {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes drawer-panel-out-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

 
.content-header {
    --content-lh: 1.65;
    --summary-padding-y: 14px;
    --summary-padding-start: 8px;
    --summary-padding-end: 24px;
    --collapse-rows: 4;
    --summary-marker-gap: 16px;
    --more-icon-size: 16px;
    --more-icon-gap: 4px;
    --color-text-strong: #1f2329;
    --color-text-muted: #3b4048;
    --color-surface-1: var(--color-surface-2, #f7f8fa);
    --color-surface-2: #fcf6f2;
    --color-border: rgba(31, 35, 41, .08);
}

.content-header {
    padding: 0;
}

.content-header .content-header--field {
    position: relative;
    padding: 0 20px;
}

.content-header .content-header--value {
    margin: 0;
    color: var(--color-text-strong);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.6;

}

.content-header .content-header--summary {
    padding-block: var(--summary-padding-y);
    padding-inline: var(--summary-padding-start) var(--summary-padding-start);
    font-size: 15px;
    line-height: var(--content-lh);
    color: var(--color-text-muted);
    background: var(--color-surface-1);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: justify;
    text-justify: inter-ideograph;
    white-space: pre-line;
}

.content-header .content-header--summarybox {
    padding-block: var(--summary-padding-y);
    padding-inline: var(--summary-padding-start) var(--summary-padding-start);
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.content-header .content-header--summary-clip {
    position: relative;
}

.content-header .content-header--summary-clip[data-collapsed="true"] {
    max-height: calc(var(--content-lh) * 1em * var(--collapse-rows));
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0));
}

.content-header .content-header--summary-list-website {
    list-style-type: disc !important;
    list-style-position: outside;
    margin: 0;

    font-size: 15px;
    line-height: var(--content-lh);

    text-align: justify;
    text-justify: inter-ideograph;
}

.content-header .content-header--summary-list-website>li {
    margin: 0;
    line-height: var(--content-lh);
    white-space: normal;
    color: inherit;
}

.content-header .content-header--summary-list-website>li::marker {
    font-size: 1em;
    color: currentColor;
}

.content-header .content-header--morebar-inside {
    padding: 2px 0 10px;
    padding-left: var(--summary-padding-start);
}

.content-header .content-header--morebtn.gta-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--more-icon-gap);
    color: #212121;
    padding: 0;
    font-size: 16px;
    line-height: 1;
    position: relative;
}


.content-header .content-header--morebtn.gta-btn:hover {
    color: var(--color-brand);
}

.content-header .content-header--morebtn .gta-icon.gta-icon-chev {
    display: inline-block;
    width: var(--more-icon-size);
    height: var(--more-icon-size);
    transform: rotate(-90deg) translateY(1px);
    transform-origin: 50% 50%;
}

.content-header .content-header--morebtn .gta-icon[data-size="custom"] {
    --gta-icon-size: var(--more-icon-size);
}

.content-header .content-header--morebtn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 2px;
    background: currentColor;
    opacity: .6;
    transform: scaleY(.5);
    transform-origin: bottom;
    pointer-events: none;
}

.content-header .content-header--toolbar {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    gap: 6px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    backdrop-filter: saturate(160%) blur(6px);
    align-items: center;
    z-index: 10;
}

.content-header .content-header--field:hover .content-header--toolbar,
.content-header .content-header--field:focus-within .content-header--toolbar {
    display: inline-flex;
}

.content-header .content-header--field[data-actions="hidden"] .content-header--toolbar {
    display: none !important;
}

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

.content-header .gta-btn .gta-icon[data-size="custom"] {
    --gta-icon-size: var(--fz-lg);
}

.content-header .content-header--add {
    width: 100%;
    display: grid;
    place-items: center;
    gap: 0;
    margin: var(--sp-5) 0;
    min-height: 150px;
    padding: var(--sp-6) var(--sp-4);
    background: var(--color-surface-2);
    border: 1px dashed var(--color-border);
}

.content-header .content-header--add--pulas .gta-icon[data-size="custom"] {
    --gta-icon-size: 48px;
    color: #e5b5b5;
}

.content-header .content-header--add:hover {
    background: color-mix(in srgb, var(--color-surface-2) 92%, black 8%);
    border-color: color-mix(in srgb, var(--color-border) 85%, black 15%);
}

.content-header .content-header--add:active {
    transform: scale(.997);
}

.content-header .content-header--add--label {
    font-size: 14px;
    color: #8f959e;
    margin-bottom: 4px;
}

.content-header .content-header--add--hint {
    font-size: 12px;
    color: #b4bac3;
}


.content-header--summary-list-website .content-header--summary-title {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}


.content-header--summary-list-website .content-header--summary-title {
    position: relative;
    left: calc(-1 * 1.2em);
}

.content-header .content-header--name {
    margin: 0;
    color: var(--color-text-strong);
    padding-top: 10px;
    font-size: var(--fz-5xl);
    font-weight: var(--fw-semibold);
    letter-spacing: .2px;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
}



/* 移动端样式 */
@media (max-width: 768px) {
    .content-header .content-header--summarybox {
        background-color: transparent;
        position: relative;
    }

    .content-header .content-header--field {
        padding: 0px;
    }


    .content-header .content-header--morebtn.gta-btn {

        position: absolute;

        font-size: var(--fz-xs);
        cursor: pointer;
        color: var(--toastify-color-light);
        z-index: 10;
        height: var(--control-h-sm);
    }

    .content-header--summary-clip {
        display: none;
    }

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

}
.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;
  }

 
}

.province-list {
  background: var(--color-surface);
  min-height: 95vh;
  padding-bottom: 50px;
}

.province-list .city-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 12px;
  min-height: 52px;
}

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

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

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

.province-list .city-section-full {
  grid-column: 1 / -1;
  margin-top: 25px;
  min-height: 130px;
}

.province-list .city-track .card-grid-page > * {
  margin-left: 17px;
  margin-bottom: 17px;
}
.province-list .city-track .card-grid-page > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 17px) {
  .province-list .city-track .card-grid-page {
    gap: 17px;
  }
  .province-list .city-track .card-grid-page > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

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

.province-list .banner-edit-right{
  background-color: #f4f6f8;
}



.province-faq-wrapper {
  width: 100%;
  /* max-width: 900px; */
  margin: 0 auto;
}

.province-faq-wrapper .faq-acc-qtext {
  font-size: 16px;
}

/* 移动端样式 */
@media (max-width: 768px) {

  .province-list .city-track .slide-track-arrow {
    display: none !important;
  }

  .province-list .city-track .slide-track,
  .province-list .city-track .slide-track-viewport {
    overflow: visible !important;
    height: auto !important;
  }

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


  .province-list .city-track .slide-track-item {
    flex: none !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }


  .province-list .city-track .card-grid-page {
    display: grid !important;
    gap: 12px !important;
    align-items: start !important;
  }


  .province-list .city-track .card-wrap {
    width: 100% !important;
    margin: 0 !important;
  }


  .province-list .city-track .card-item {
    height: auto !important;
    width: 100% !important;
  }


  .province-list .city-track .scenicSpot-cover {
    aspect-ratio: 16/9 !important;
    width: 100% !important;
  }


  .province-list .city-track .scenicSpot-title {
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: var(--fz-sm) !important;
    line-height: 1.4 !important;
    padding: 8px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 3px 8px rgba(0, 0, 0, 0.5);
  }

  /* 封面底部渐变阴影增强 */
  .province-list .city-track .scenicSpot-cover::after {
    height: 70% !important;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 25%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 75%,
        rgba(0, 0, 0, 0) 100%) !important;
  }


  .province-list .city-track .card-item--placeholder {
    display: none !important;
  }

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

  .province-faq-wrapper .faq-acc-q {
    font-size: 15px !important;
    padding: 16px 10px !important;
  }

  .province-faq-wrapper .faq-acc-a {
    padding: 0 10px !important;
  }

  .province-faq-wrapper .faq-acc-atext {
    padding: 16px 0 !important;
  }

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


}

/* 小屏幕优化 */
@media (max-width: 375px) {
  .province-list .city-track .card-grid-page {
    gap: 10px !important;
  }
}
.banner-edit {
  position: relative;
  width: 100%;
  overflow: hidden;

}

.banner-edit-wrap {
  padding: 0;
}

.banner-edit-inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.banner-edit-bg {
  position: absolute;
  inset: -60px;
  background-size: cover;
  background-position: center;
  transform: scale(1.25);
  filter: blur(26px) saturate(1.75) contrast(1.45) brightness(0.85);
  opacity: 0.95;
}

.banner-edit-bgmask {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 20% 10%,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(0, 0, 0, 0.26) 55%,
      rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.16) 100%);
}

.banner-edit-panel {
  width: 100%;
  margin: 20px 0;
  /* background: #f5f7fa; */
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  overflow: hidden;
  align-items: stretch;
  border-radius: var(--radius-lg);
  z-index: 2;
}

.banner-edit-left {
  background: #fff;
  display: flex;
  min-width: 0;
  max-height: 340px;
}

.banner-edit-left-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;

}

.banner-edit .content-header--value {
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-size: var(--fz-lg);
}

.banner-edit .content-header {
  margin-left: 10px;
  margin-right: 10px;
}

.banner-edit .content-header--summarybox {
  padding: 10px 0;
  border: none !important;
}

.banner-edit .content-header--add {
  margin: 10px 0;
}

.banner-edit-right {
  position: relative;
  width: 100%;
  min-height: 340px;
  overflow: hidden;
}
@supports (min-height: clamp(340px, 34vw, 340px)) {
  .banner-edit-right {
    min-height: clamp(340px, 34vw, 340px);
  }
}

.banner-edit-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.banner-edit-fade {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.banner-edit-fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  user-select: none;
}

.banner-edit-fade-img.is-front {
  z-index: 1;
  opacity: 1;
}

.banner-edit-fade-img.is-back {
  z-index: 2;
  opacity: 0;
  transition: opacity 360ms ease;
}

.banner-edit-fade-img.is-back.is-fading {
  opacity: 1;
}

.banner-edit-image-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 3;
  pointer-events: none;
}

.banner-edit-progress {
  position: absolute;
  left: var(--fz-sm);
  right: var(--fz-sm);
  top: var(--fz-xs);
  display: flex;
  z-index: 60;
}
.banner-edit-progress > * {
  margin-left: var(--sp-2);
}
.banner-edit-progress > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-2)) {
  .banner-edit-progress {
    gap: var(--sp-2);
  }
  .banner-edit-progress > * {
    margin-left: 0;
  }
}

.banner-edit-progress-item {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.banner-edit-progress-item:hover {
  background: rgba(255, 255, 255, 0.35);
}

.banner-edit-progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: rgba(255, 255, 255, 0.92);
}

.banner-edit-progress-item.is-done .banner-edit-progress-bar {
  transform: scaleX(1);
}

.banner-edit-toolbar {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 6px var(--sp-2);
  box-shadow: 0 2px var(--sp-2) rgba(0, 0, 0, 0.2);
  backdrop-filter: saturate(120%) blur(2px);
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 120ms ease;
  z-index: 50;
}
.banner-edit-toolbar > * {
  margin-left: 6px;
}
.banner-edit-toolbar > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .banner-edit-toolbar {
    gap: 6px;
  }
  .banner-edit-toolbar > * {
    margin-left: 0;
  }
}

.banner-edit-panel:hover .banner-edit-toolbar {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.banner-edit-toolbar-btn {
  padding: 0 5px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
}

.banner-edit-noimg .banner-edit-bg {
  background-image: none !important;
  filter: none;
  transform: none;
  inset: 0;
  background: radial-gradient(1200px 420px at 20% 0%,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(245, 245, 245, 0.95) 55%,
      rgba(238, 238, 238, 1) 100%);
}

.banner-edit-noimg .banner-edit-bgmask {
  background: rgba(0, 0, 0, 0.06);
}

.banner-edit-empty-card {
  position: absolute;
  inset: 10px;
  border-radius: var(--sp-2);
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: rgba(248, 236, 236, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.banner-edit-empty-card > * {
  margin-bottom: 10px;
}
.banner-edit-empty-card > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 10px) {
  .banner-edit-empty-card {
    gap: 10px;
  }
  .banner-edit-empty-card > * {
    margin-bottom: 0;
  }
}

.banner-edit-empty-plus {
  font-size: 48px;
  font-weight: 300;
  color: rgba(214, 120, 120, 0.65);
}

.banner-edit-empty-text {
  font-size: var(--fz-sm);
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}

.banner-edit .banner-edit-toolbar-btn.gta-btn {
  padding: 0 5px;
  height: auto;
  line-height: normal;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.banner-edit .banner-edit-toolbar-btn.gta-btn .gta-icon[data-size="custom"] {
  --gta-icon-size: 18px;
}

.banner-edit .banner-edit-toolbar-btn.gta-btn .gta-icon {
  display: inline-block;
  width: var(--gta-icon-size, 18px);
  height: var(--gta-icon-size, 18px);
}

.banner-edit-progress-bar {
  transform: scaleX(0);
  transform-origin: left center;
}

.banner-edit-progress-bar.is-anim {
  animation-name: bannerProgressFill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes bannerProgressFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  .banner-edit-inner.container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-edit-panel {
    grid-template-columns: 1fr;
    background: #f5f7fa;
    box-shadow: none;
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-edit-right {
    width: 100%;
    min-height: auto;
    position: relative;
  }
  .banner-edit-right::before {
    content: "";
    display: block;
    width: 1px;
    margin-left: -1px;
    height: 0;
    padding-bottom: 56.25%;
  }
  @supports (aspect-ratio: 16/9) {
    .banner-edit-right {
      aspect-ratio: 16/9;
    }
    .banner-edit-right::before {
      display: none;
    }
  }

  .banner-edit-viewport {
    position: relative;
    width: 100%;
  }
  .banner-edit-viewport::before {
    content: "";
    display: block;
    width: 1px;
    margin-left: -1px;
    height: 0;
    padding-bottom: 56.25%;
  }
  @supports (aspect-ratio: 16/9) {
    .banner-edit-viewport {
      aspect-ratio: 16/9;
    }
    .banner-edit-viewport::before {
      display: none;
    }
  }

  .banner-edit-left {
    padding-bottom: 10px !important;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.6) 20%,
      rgba(0, 0, 0, 0.35) 45%,
      rgba(0, 0, 0, 0.2) 60%,
      rgba(0, 0, 0, 0.05) 80%,
      rgba(0, 0, 0, 0) 100%);
    z-index: 10;
    padding: 0;
    /* border-radius: 25px 25px 0 0; */
    backdrop-filter: blur(0.5px);
  }

  .banner-edit-left-inner {
    margin-top: var(--sp-2);
    padding-left: var(--sp-2);
    padding-right: var(--sp-2);
 
  }

  .banner-edit-fade {
    position: relative;
    width: 100%;
  }
  .banner-edit-fade::before {
    content: "";
    display: block;
    width: 1px;
    margin-left: -1px;
    height: 0;
    padding-bottom: 56.25%;
  }
  @supports (aspect-ratio: 16/9) {
    .banner-edit-fade {
      aspect-ratio: 16/9;
    }
    .banner-edit-fade::before {
      display: none;
    }
  }

  .banner-edit-fade-img {
    position: relative;
    width: 100%;
    height: auto;
  }
  .banner-edit-fade-img::before {
    content: "";
    display: block;
    width: 1px;
    margin-left: -1px;
    height: 0;
    padding-bottom: 56.25%;
  }
  @supports (aspect-ratio: 16/9) {
    .banner-edit-fade-img {
      aspect-ratio: 16/9;
    }
    .banner-edit-fade-img::before {
      display: none;
    }
  }


  .banner-edit .content-header--value,
  .banner-edit .content-header--name,
  .banner-edit .content-header--summary,
  .banner-edit .content-header--summary-title,
  .banner-edit .content-header--summary-list,
  .banner-edit .content-header--empty-label {
    color: var(--toastify-color-light) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.3);
  }


  .banner-edit .content-header--value {
    padding: 0px;
    font-size: var(--fz-xs) !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

  .banner-edit .content-header--name {
    font-size: var(--fz-3xl);
    font-weight: bold;
  }

  .banner-edit .content-header--summary {
    font-size: var(--fz-sm);
  }

  .banner-edit .content-header--summary-list {
    padding-left: var(--sp-5);
  }

  .banner-edit .content-header--summary-list li {
    margin-bottom: 4px;
  }

  .banner-edit-progress {
    position: absolute;
    left: var(--sp-2);
    right: var(--sp-2);
    top: 10px;
    bottom: var(--sp-2);
    display: flex;
    z-index: 60;
  }
  .banner-edit-progress > * {
    margin-left: var(--sp-2);
  }
  .banner-edit-progress > *:first-child {
    margin-left: 0;
  }
  @supports (gap: var(--sp-2)) {
    .banner-edit-progress {
      gap: var(--sp-2);
    }
    .banner-edit-progress > * {
      margin-left: 0;
    }
  }
}
.intro-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 26px 26px 22px;
  margin-bottom: 20px;
  min-height: 200px;
}

.intro-card .intro-head.intro-head--full {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 0 18px;
}

.intro-card .intro-title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.intro-card .intro-unit {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.intro-card .intro-unit-btn {
  border: 0;
  background: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.intro-card .intro-unit-btn.is-active {
  background: #111;
  color: #fff;
}

.intro-card .intro-body {
  padding: 0;
}

.intro-card .intro-weather {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.intro-card .intro-weather-item {
  padding-top: 6px;
}

.intro-card .intro-weather-month {
  font-size: 13px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 8px;
}

.intro-card .intro-weather-temp {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.intro-card .intro-weather-high {
  font-size: 28px;
  font-weight: 500;
  color: #111;
}

.intro-card .intro-weather-low {
  font-size: 22px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.4);
}

.intro-card .intro-divider {
  margin: 18px 0 14px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.intro-card .intro-grid {
  display: grid;
  gap: 18px 22px;
  min-height: 140px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.intro-card .intro-grid-item {
  min-width: 0;
}

.intro-card .intro-grid-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.55);
}

.intro-card .intro-grid-value {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.intro-card .intro-grid-hint {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.intro-card .intro-grid-value.intro-grid-value--multiline {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.intro-card .intro-bestTimes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.intro-card .intro-bestTime-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.intro-card .intro-bestTime-month {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.intro-card .intro-bestTime-season {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .intro-card {
    padding: 16px 16px 12px;
  }

  .intro-card .intro-head.intro-head--full {
    padding: 0 0 12px;
  }

  .intro-card .intro-title {
    font-size: 18px;
  }

  .intro-card .intro-weather {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .intro-card .intro-weather-high {
    font-size: 24px;
  }

  .intro-card .intro-weather-low {
    font-size: 18px;
  }

  .intro-card .intro-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* 桌面端默认样式保持不变 */
.destination {
  background: var(--color-surface);
  min-height: 95vh;
  padding-bottom: 50px;
}

.destination .city-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 12px;
  min-height: 52px;
}

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

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

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

.destination .city-section-full {
  grid-column: 1 / -1;
  margin-top: var(--sp-6);
  min-height: 130px;
}


.destination .gta-video-preview {
  background: unset;
}


/* 移动端瀑布流样式 */
.card-track-mobile {
  overflow: visible;
  width: 100%;
}

.card-track-masonry {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.card-track-masonry > * {
  margin-left: var(--sp-3);
}
.card-track-masonry > *:first-child {
  margin-left: 0;
}
@supports (gap: var(--sp-3)) {
  .card-track-masonry {
    gap: var(--sp-3);
  }
  .card-track-masonry > * {
    margin-left: 0;
  }
}

.destination .banner-edit-fade{
  background-color: #f4f6f8;
}

/* 默认 PC 端：每个 slide-track-item 里的卡片一行四个 */
.city-track .card-grid-page {
  display: grid;
  /* grid-template-columns: repeat(4, minmax(0, 1fr)); */
}
.city-track .card-grid-page > * {
  margin-left: 17px;
  margin-bottom: 17px;
}
.city-track .card-grid-page > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 17px) {
  .city-track .card-grid-page {
    gap: 17px;
  }
  .city-track .card-grid-page > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

/* 移动端样式 */
@media (max-width: 768px) {

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


  .city-track .slide-track,
  .city-track .slide-track-viewport {
    overflow: visible !important;
    height: auto !important;
  }

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

  /*  每个 slide-track-item 都显示，并上下排列 */
  .city-track .slide-track-item {
    flex: none !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }


  .city-track .card-grid-page {
    display: grid !important;
    /* grid-template-columns: repeat(1, 1fr) !important; */
    gap: var(--fz-xs) !important;
    align-items: start !important;
  }


  .city-track .card-wrap {
    width: 100% !important;
    margin: 0 !important;
  }


  .city-track .card-item {
    height: auto !important;
    width: 100% !important;
  }


  .city-track .scenicSpot-cover {
    aspect-ratio: 16/9 !important;
    width: 100% !important;
  }

  /* 标题最多两行 */
  .city-track .scenicSpot-title {
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: var(--fz-sm) !important;
    line-height: 1.4 !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0;
    bottom: 0;
    padding: var(--sp-2) 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), transparent);
  }



  .city-track .card-item--placeholder {
    display: none !important;
  }

 

  .card-track-website .video-title {
    font-size: var(--fz-md);
    font-weight: var(--fw-medium);
    white-space: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

/* 小屏幕优化 */
@media (max-width: 375px) {
  .city-track-website .card-grid-page {
    gap: 10px !important;
  }
}

.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: 20px;
  }
}
/* 侧边栏容器 */
.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;
    }
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.article-page {
  font-size: 16px;
  background-color: #ffffff;
  .article-main {
    flex: 1;

    .article-content {
      margin-top: 8px;
      font-size: 1em;
      line-height: 1.8;
    }

    .article-main-left {
      overflow: hidden;
      word-break: break-all;
    }

  }
  .article-main-content{
    display: flex;
    padding: 30px 16px;
    max-width: 1000px;
    margin: auto;
  }

  .article-header {
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-border, #e5e6eb);
    position: relative;

  }

  .article-main-right {
    min-width: 260px;
    max-width: 260px;
    margin-left: 60px;
    word-break: break-all;
    position: sticky;
    z-index: 100;
    height: 100%;
    text-align: left;
    padding: 10px 16px;
    /* margin-top: 30px; */

    .article-title-list {
      margin-top: 30px;
    }

    .article-recommend {
      height: 100%;

      .article-recommend--list {
        margin-top: 20px;
        .recommend-recommend--item {
          padding: 8px 0px;
        }
      }
    }

    .article-title-list-sticky {
      position: sticky;
      transition: position 0.3s ease, top 0.3s ease;
      /* 平滑过渡 */
    }

    .article-title-list-sticky.sticky {
      position: fixed;
      /* 吸附效果 */
      top: 85px;
      /* 固定在顶部 */
      width: 260px;
      /* 确保宽度与父元素一致 */
      z-index: 20;
      height: 100%;
      /* 保证在其他元素之上 */
    }
  }

}
.article-page .article-header-2{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.recommend-tips--top {
  .tips-title--text {
    font-size: var(--fz-3xl);
    font-weight: bold;
    margin-bottom: 8px;
  }

  .underline-1 {
    border-bottom: 1px solid rgba(31, 35, 41, .08);
  }
}

@media (max-width: 768px) {
  .article-page {
    font-size: 16px;
    .article-main-content{
      padding: 5px 16px !important;
      flex-direction: column;
    }

    .article-title {
      font-size: var(--fz-3xl);
      line-height: 1.35 !important;
      word-break: break-word;
    }
    .article-summary{
      font-size: 0.75em!important;
      margin-top: 4px!important;
      margin-bottom: 2px!important;
    }

    .article-content {
      font-size: 1em;
    }

    .article-content .rich-video--card {
      flex-direction: column;
    }

    .article-content .rich-video--thumb img {
      width: 100% !important;
      height: 100% !important;
    }

    .article-content .rich-video--card .rich-video--thumb {
      width: auto !important;
      height: auto !important;
    }

    .article-content .rich-video--body .rich-video--footer {
      display: none !important;
    }

    .article-content .rich-trip--card {
      flex-direction: column;
    }

    .article-content .rich-trip--thumb {
      width: auto !important;
      height: auto !important;
    }

    .article-content .rich-trip--thumb img {
      width: 100% !important;
      height: 100% !important;
    }
  }

  .article-page .article-recommend--list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .article-page .article-recommend--list .recommend-recommend--item{
    min-width: 40vw;
    max-width: 40vw;
  }
  .article-main-right {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0px !important;
    position: relative;
    padding: 0px !important;
  }

  .article-title-list {
    display: none;
  }
  .article-page .article-body{
    background: linear-gradient(#0000 0%, #3d3d3d 100% 100%)!important;
  }
}

.article-page .article-author{
  display: flex;
  margin-bottom: unset;
  font-style: unset;
  line-height: unset;
}
.article-page .article-author .article-author-nickname{
  font-weight: 600;
  color: #1f2329;
  line-height: 1.8;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--fz-sm);
}
.article-page .article-author .article-author-time{
  font-size: 12px;
  color: #212121;
  line-height: 1.8;
}
.article-page .article-author .article-avatar{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 4px;
}

.article-page {
  .article-content{
    .article-summary{
      padding-block: 14px;
      padding-inline: 8px 24px;
      font-size: var(--fz-sm);
      line-height: 1.65;
      color: #3b4048;
      background: #fcf6f2;
      border: 1px solid rgba(31, 35, 41, .08);
      border-radius: 8px;
      text-align: justify;
      text-justify: inter-ideograph;
      white-space: pre-line;
    }
  }
}

.article-abstract {
  margin-top: 12px;
  background: #fff;
  color: #212121;
  overflow: scroll;
  /* 265px 是标题和底部的总高度 底部180px */
  height: calc(100% - var(--gta-header-h) - 295px);
  li{
    text-align: left;
    list-style: none;
    display: flex;
    align-items: center;
    padding: 8px 12px;
  }
  li.is-active{
    background: rgba(59, 130, 246, .08);
    color: #1f2329;
    font-weight: 600;
  }
  li:hover{
    background: #f7f8fa;
    color: #1f2329;
  }
  .abstract-dot{
    background-color: #000;
    border-radius: 50%;
    width: 3px;
    height: 3px;
    display: inline-block;
  }
  .ml-abstract-item{
    margin-left: 22px;
  }
  .article-abstract--item{
    a {
      position: relative;
      display: block;
      font-size: var(--fz-md);
      line-height: 1.6;
      color: #212121;
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      margin-left: 16px;
      flex: 1;
    }
  }

}

.article-abstract .article-abstract--hd {
  padding: 12px 16px 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: #1f2329;
  border-bottom: 1px solid rgba(31, 35, 41, .08);
}

.article-abstract.article-abstract--center .article-abstract--hd {
  text-align: center;
}

.article-abstract .article-abstract--list {
  margin: 0;
  padding: 8px 16px 12px 16px;
  list-style: none;
  max-height: 60vh;
  overflow: auto;
  position: relative;
  scroll-behavior: smooth;
  mask-image: linear-gradient(to bottom, transparent 0, black 10px, black calc(100% - 10px), transparent 100%);
}

.article-abstract .article-abstract--list::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(31, 35, 41, .10);
}

.article-abstract .article-abstract--list>.article-abstract--item.toc-l2 {
  margin-top: 6px;
}

.article-abstract .article-abstract--list>.article-abstract--item.toc-l2:first-child {
  margin-top: 0;
}

.article-abstract .article-abstract--item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  /* 20 - 5 */
  height: 1px;
  background: rgba(31, 35, 41, .16);
  transform: translateY(-50%) scaleY(0.5);
  transform-origin: center;
  pointer-events: none;
}

.article-abstract .toc-l3 a {
  padding-left: 34px;
  font-size: 13.5px;
}

.article-abstract .toc-l3 a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 29px;
  height: 1px;
  background: rgba(31, 35, 41, .16);
  transform: translateY(-50%) scaleY(0.5);
  transform-origin: center;
  pointer-events: none;
}

.article-abstract .article-abstract--item.toc-l3.is-active>a::before {
  background: #3b82f6;
}


@media screen and (max-width: 768px) {
  .article-abstract {
    height: auto;
  }
}

.article-page {
  .article-main {
    .article-content-html {
      margin-top: 22px;
      width: 100%;
      p{
        min-height: 16px;
      }
    }

    .article-content .rich-trip--card {
      margin: 10px 0;
      padding: 16px;

      display: flex;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      background: #fff;
      align-items: stretch;

      position: relative;
    }
    .article-content .rich-trip--card > * {
      margin-left: 16px;
    }
    .article-content .rich-trip--card > *:first-child {
      margin-left: 0;
    }
    @supports (gap: 16px) {
      .article-content .rich-trip--card {
        gap: 16px;
      }
      .article-content .rich-trip--card > * {
        margin-left: 0;
      }
    }

    .article-content .rich-trip--overlay-link {
      position: absolute;
      inset: 0;
      display: block;
      z-index: 1;
      text-decoration: none;
      border-radius: 14px;
    }

    .article-content .rich-trip--thumb,
    .article-content .rich-trip--body {
      position: relative;
      z-index: 2;
    }

    .article-content .rich-trip--thumb {
      width: 164px;
      height: 164px;
      overflow: hidden;
      display: inline-block;
      flex: 0 0 auto;
      border-radius: 10px;
    }

    .article-content .rich-trip--thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .article-content .rich-trip--body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }
    .article-content .rich-trip--body > * {
      margin-bottom: 10px;
    }
    .article-content .rich-trip--body > *:last-child {
      margin-bottom: 0;
    }
    @supports (gap: 10px) {
      .article-content .rich-trip--body {
        gap: 10px;
      }
      .article-content .rich-trip--body > * {
        margin-bottom: 0;
      }
    }

    .article-content .rich-image--figure {
      position: relative;
      z-index: 2;
    }
    
    .article-content .rich-image--caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 8px 12px;
      padding-top: calc(8px + var(--cap-grad));
      margin: 0;
      color: #fff;
      font-size: 0.875em; /* 14px */
      line-height: 1.4;
      text-align: center;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      pointer-events: none;
      z-index: 1;
    }

    .article-content .rich-image--caption::before {
      content: "";
      position: absolute;
      inset: calc(-1 * var(--cap-grad)) 0 0 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .28), rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, 0) 100%);
      z-index: -1;
    }

    .article-content .rich-trip--title {
      margin: 0;
      font-size: 1em; /* 16px */
      line-height: 1.3;
      font-weight: 600;
      color: #111827;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .article-content .rich-trip--footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .article-content .rich-trip--footer > * {
      margin-left: 12px;
    }
    .article-content .rich-trip--footer > *:first-child {
      margin-left: 0;
    }
    @supports (gap: 12px) {
      .article-content .rich-trip--footer {
        gap: 12px;
      }
      .article-content .rich-trip--footer > * {
        margin-left: 0;
      }
    }

    .article-content .rich-trip--price {
      margin: 0;
      font-size: 1em; /* 16px */
      font-weight: 700;
      color: #111827;
    }

    .article-content .rich-trip--actions {
      display: flex;
      justify-content: flex-end;
      position: relative;
      z-index: 3;
    }


    .article-content .rich-video--card {
      margin: 10px 0;
      padding: 16px;

      display: flex;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      background: #fff;
      align-items: stretch;

      position: relative;
      text-decoration: none;
      color: inherit;
    }
    .article-content .rich-video--card > * {
      margin-left: 16px;
    }
    .article-content .rich-video--card > *:first-child {
      margin-left: 0;
    }
    @supports (gap: 16px) {
      .article-content .rich-video--card {
        gap: 16px;
      }
      .article-content .rich-video--card > * {
        margin-left: 0;
      }
    }

    .article-content .rich-video--card:hover {
      border-color: #d1d5db;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .article-content .rich-video--thumb,
    .article-content .rich-video--body {
      position: relative;
      z-index: 2;
    }

    .article-content .rich-video--thumb {
      width: 164px;
      height: 164px;
      overflow: hidden;
      display: inline-block;
      flex: 0 0 auto;
      border-radius: 12px;
      background: #f3f4f6;
    }

    .article-content .rich-video--thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .article-content .rich-video--play {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      pointer-events: none;
    }

    .article-content .rich-video--play-icon {
      width: 56px;
      height: 56px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.45);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .article-content .rich-video--play-icon::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 18px;
      width: 0;
      height: 0;
      border-left: 16px solid #fff;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      opacity: 0.95;
    }

    .article-content .rich-video--body {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }
    .article-content .rich-video--body > * {
      margin-bottom: 10px;
    }
    .article-content .rich-video--body > *:last-child {
      margin-bottom: 0;
    }
    @supports (gap: 10px) {
      .article-content .rich-video--body {
        gap: 10px;
      }
      .article-content .rich-video--body > * {
        margin-bottom: 0;
      }
    }

    .article-content .rich-video--title {
      margin: 0;
      font-size: 1em; /* 16px */
      line-height: 1.3;
      font-weight: 700;
      color: #111827;

      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .article-content .rich-video--summary {
      margin: 0;
      font-size: 0.75em; /* 12px */
      line-height: 1.5;
      color: #6b7280;

      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      overflow: hidden;
    }

    .article-content .rich-video--tags {
      display: flex;
      flex-wrap: wrap;
      margin-right: -8px;
      margin-bottom: -8px;
    }
    .article-content .rich-video--tags > * {
      margin-right: 8px;
      margin-bottom: 8px;
    }
    @supports (gap: 8px) {
      .article-content .rich-video--tags {
        gap: 8px;
        margin-right: 0;
        margin-bottom: 0;
      }
      .article-content .rich-video--tags > * {
        margin-right: 0;
        margin-bottom: 0;
      }
    }

    .article-content .rich-video--tag {
      display: inline-flex;
      align-items: center;
      height: 26px;
      padding: 0 5px;
      border-radius: 5px;

      font-size: 0.75em; /* 12px */
      color: #374151;

      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      user-select: none;
    }

    .article-content .rich-video--footer {
      margin-top: auto;
      padding-top: 12px;
      border-top: 1px dashed #e5e7eb;

      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .article-content .rich-video--actions {
      display: flex;
      justify-content: flex-end;
      position: relative;
      z-index: 3;
    }

    .article-content .rich-image--figure img {
      /*aspect-ratio: 16/9;*/
      width: 100%;
    }
  }
}
.recommend-recommend--item .article-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.recommend-recommend--item .article-cover-wrap {
  position: relative;
  padding-bottom: 22px;
}

.recommend-recommend--item .article-cover {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background: #f4f6f8;
}

.recommend-recommend--item .article-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-recommend--item .article-meta {
  position: absolute;
  left: 5px;
  bottom: 20px;
  transform: translateY(50%);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  pointer-events: none;
}

.recommend-recommend--item .article-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #eef2f7;
  border: 2px solid #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
}

.recommend-recommend--item .article-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recommend-recommend--item .article-name {
  font-size: 14px;
  font-weight: 600;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: auto;
  line-height: 1;
  padding-bottom: 2px;
}

.recommend-recommend--item .article-body {
  padding: 12px;
  padding-top: 6px;
}

.recommend-recommend--item .article-title {
  font-size: var(--fz-sm);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  color: #222;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.recommend-recommend--item .article-summary {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.recommend-recommend--item{
  position: relative;
  padding: 0!important;
  margin-bottom: 12px;
  .article-cover-wrap{
    padding: 0;
  }
  .article-body.aside{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 8px;
    background: linear-gradient(#0000 0%, #3d3d3d 80% 100%);
    .article-title{
      margin: 0;
      font-size: 14px !important;
      color: white;
    }
    .article-summary{
      margin-top: 8px;
      margin-bottom: 4px;
      font-size: 11px;
      color: #f5f5f5;
    }
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  .article-recommend--list.mobile {
    overflow: hidden;
    margin-bottom: 12px;
  }
  
  .article-recommend--list.mobile .recommend-recommend--item {
    flex-shrink: 0;
    width: 280px;
    margin-bottom: 0;
  }
}

.metabar-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-top: auto;
  --gta-icon-size: 32px;
  --metabar-avatar-size: 56px;
  --metabar-gap: 14px;
}

.metabar-share-btn.gta-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-surface, #fff);
}


.metabar-share-btn:hover {
  background: var(--color-surface-2, #f7f8fa);
}

.metabar-share-btn:active {
  transform: scale(.97);
}

.article-fixed {
  position: fixed;
  box-shadow: 0 0 4px #0000001f;
  font-size: var(--fz-md);
  font-weight: 600;
  color: var(--color-fg);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 25px;

  .article-fixed-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    cursor: pointer;
    white-space: nowrap;
    i {
      margin-right: 4px;
    }
  }

 

  .favorite-item.favorited i {
    color: var(--color-brand);
  }

  /* 移动端样式 */
  &.is-mobile {
    bottom: 15px;
    right: 50%;
    transform: translate(50%);
    max-width: calc(100vw - 40px);
    gap: 8px;

    .article-fixed-item:first-child {
      border-right: 1px solid var(--color-border, #e5e6eb);
    }
  }

  /* PC 端样式 */
  &.is-pc {
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    .article-fixed-item {
      width: 100%;
      padding: 8px 16px;
      justify-content: center;
    }
  }
}
.app-container:has(.trip-page) {
  background-color: unset;
}

.trip-page {

  max-width: 100%;
  margin: auto;

  padding-bottom: 200px;

  .trip-page-h-title {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 600;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
  }

  .image-album {
    border-radius: 8px;
  }



  .trip-content {
    margin-top: 48px;

    .trip-title-2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 24px;
      line-height: 1.25;
      position: relative;
      padding-left: 20px;

      &:before {
        content: "";
        background-color: var(--color-brand);
        border-radius: 3px;
        width: 4px;
        height: 22px;
        display: block;
        position: absolute;
        top: 3px;
        left: 0;
      }
    }

    h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      margin: 0;
    }

    h4 {
      color: #212121;
      margin-bottom: 12px;
      font-size: 16px;
    }

    .combo-evaluate {
      margin-bottom: 48px;
    }

    .trip-introduction {
      margin-bottom: 48px;
    }

    .combo-price .combo-fee {
      background-color: #ffffff;
      margin-bottom: 48px;
      padding: 10px 20px;
      line-height: 2;
      font-size: 14px;
      color: #212121;
      border-radius: 8px;
    }

    .trip-faq {
      margin-top: 44px;
    }

    .trip-faq .faq-acc-qtext {
      font-size: 16px;
      font-weight: 500;
      color: #212121;
    }
  }

  .trip-tags {
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
  }

  .trip-tips {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 8px;

    background-color: #fff !important;

    .left {
      display: flex;

      .score {
        background: var(--brand-100);
        padding: 2px 4px;
        border-radius: 2px;
        font-size: 13px;
        font-weight: bold;
      }

      .score-num {
        margin-left: 4px;
        cursor: pointer;
        text-decoration: underline;
      }

      .part-num {
        margin-left: 4px;
      }

      .tips-address {
        margin-left: 16px;
        font-size: 12px;

        span {
          margin-right: 8px;
          vertical-align: middle;
        }
      }
    }

    .gta-icon {
      font-size: 14px;
    }

    .favorite-btn {
      border: unset;

      cursor: pointer;
      padding: 2px 5px;
      border-radius: 5px;
    }
  }
}

@media (max-width: 768px) {
  .trip-page {
    padding: 0 16px;
    padding-bottom: 100px;

    .trip-page-h-title {
      font-size: 24px;
      margin-top: 12px;
    }

    .trip-album-mobile {
      margin-top: 12px;

      .gta-landscape-mobile__player {
        background-color: unset !important;
      }
    }

    .trip-content {
      margin-top: 32px;

      .trip-title-2 {
        font-size: 18px;
        margin-bottom: 16px;

        &:before {
          height: 18px;
          top: 2px;
        }
      }

      h3 {
        font-size: 18px;
      }

      h4 {
        font-size: 14px;
      }

      .trip-faq {
        margin-top: 32px;
      }

      .trip-combo-detail-mobile {
        margin-bottom: 48px;
      }

      .trip-faq .faq-acc-q {
        padding: 16px !important;
      }

      .trip-faq .faq-acc-a {
        padding: 0 16px 0 16px !important;
      }

      .trip-faq .faq-acc-atext {
        padding: unset !important;
      }
    }

    .trip-tips {
      flex-direction: row;
      align-items: flex-end;
      position: relative;

      >* {
        margin-left: 12px;
      }

      >*:first-child {
        margin-left: 0;
      }

      @supports (gap: 12px) {
        gap: 12px;

        >* {
          margin-left: 0;
        }
      }

      .left {
        flex-direction: column;
        white-space: nowrap;

        >* {
          margin-bottom: 8px;
        }

        >*:last-child {
          margin-bottom: 0;
        }

        @supports (gap: 8px) {
          gap: 8px;

          >* {
            margin-bottom: 0;
          }
        }

        .tips-address {
          margin-left: 0;
          line-height: 1;
          white-space: nowrap;
        }
      }

      .right {
        position: absolute;
        right: 10px;
        bottom: 15px;
      }

      .favorite-btn {
        padding: 0;
        font-size: 14px;
        line-height: 1;
        padding: 4px;
        white-space: nowrap;
      }
    }


  }
}
.image-album{
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  height: 400px;
  position: relative;
  .image{
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    img{
      width: 100%;
      display: unset;
      z-index: 100;
      position: relative;
      height: 100%;
      object-fit: cover;
    }
  }
  .show-album-icon{
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: #0009;
    border-radius: 5px;
    z-index: 100;
    color: white;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
  }
}

.image-album.only{
  .gaussian-blur{
    width: 100%;
    height: 100%;
    background: radial-gradient(900px 420px at 20% 10%, rgba(255, 255, 255, 0.14) 0%, rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.36) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.16) 100%);
    transform: scale(1.25);
    filter: blur(26px) saturate(1.75) contrast(1.45) brightness(0.85);
    opacity: 0.95;
    position: absolute;
    top: 0;
    z-index: 0;
  }
  display: flex;
  align-items: center;
  justify-content: center;
  .image{
    height: 95%;
    max-width: 60%;
    border-radius: 30px;
    overflow: hidden;
  }
}

.image-album{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.image-album > .image {
  background: #f4f6f8;
  margin: 4px;
}
.image-album > .image:first-child{
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  margin: 4px;
}
@supports (gap: 8px) {
  .image-album{
    gap: 8px;
  }
  .image-album > .image {
    margin: 0;
  }
  .image-album > .image:first-child{
    margin: 0;
  }
}
.image-album.four-mode {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;

  .image {
    margin: 0;
    background: #f4f6f8;
  }

  .image:first-child {
    grid-column: unset;
    grid-row: unset;
  }
}

.three-mode.image-album{
  grid-template-columns: 3fr 1fr;
  grid-template-rows: 1fr 1fr;
  .image:first-child{
    grid-row: 1 / 3;
  }
}

@media (max-width: 768px) {
  .image-album, .three-mode.image-album, .four-mode.image-album {
    height: 240px !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .image-album > .image,
  .three-mode.image-album > .image,
  .four-mode.image-album > .image {
    margin: 2px;
  }
  .image-album .image:first-child,
  .three-mode.image-album .image:first-child,
  .four-mode.image-album .image:first-child {
    grid-column: unset;
    grid-row: unset;
  }
  @supports (gap: 4px) {
    .image-album, .three-mode.image-album, .four-mode.image-album {
      gap: 4px;
    }
    .image-album > .image,
    .three-mode.image-album > .image,
    .four-mode.image-album > .image {
      margin: 0;
    }
  }
  .image:nth-child(n+5) {
    display: none;
  }
  .show-album-icon {
    font-size: 12px;
    padding: 2px 6px;
    right: 8px;
    bottom: 8px;
  }
}

.image-album.two-mode{
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: none;
  }

  .image-album.only {
    height: 240px !important;
    .image {
      max-width: 100%;
      height: 100%;
      border-radius: 12px;
    }
    .gaussian-blur {
      display: none;
    }
  }

.gta-images-layout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;


  .image-main img {
    max-width: 80vw;
    max-height: 70vh;
    object-fit: contain;
  }
  .close-btn {
    position: absolute;
    top: 40px;
    right: 50px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10000;
  }

  .close-btn:hover{
    color: #bebebe;
  }

  .zoom-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10000;
    pointer-events: none;
  }

  .image-main {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: grab;
    width: 100%;
    height: 100%;
    touch-action: none;
  }

  .image-main:active {
    cursor: grabbing;
  }

  .image-main img {
    transition: transform 0.05s linear;
    user-select: none;
    -webkit-user-drag: none;
    max-width: none;
    max-height: none;
    pointer-events: none;
    will-change: transform;
  }
  .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    user-select: none;
    z-index: 10001;
    pointer-events: auto;
  }
  .nav:hover{
    color: #bebebe;
  }

  .nav.left {
    left: 40px;
  }

  .nav.right {
    right: 40px;
  }

  .image-list {
    position: absolute;
    bottom: 20px;
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
  }
  .image-list > * {
    margin-left: 10px;
  }
  .image-list > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 10px) {
    .image-list {
      gap: 10px;
    }
    .image-list > * {
      margin-left: 0;
    }
  }

  .image-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    pointer-events: auto;
  }

  .image-list .image.active {
    opacity: 1;
    border-color: #fff;
  }

  .image-list .image{
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.6;
    border: 2px solid transparent;
  }

  .fade-img {
    animation-duration: 0.35s;
    animation-fill-mode: both;
    transition: transform 0.05s linear;
  }

  .fade-img.right {
    animation-name: slideInFromRight;
  }

  .fade-img.left {
    animation-name: slideInFromLeft;
  }

}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.trip-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* background: #000; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-video-player .gta-landscape-player,
.trip-video-player .gta-video-player{
  background: unset!important;
  overflow: unset!important;
}

/* 默认状态：左侧大视频 */
.trip-video-player:not(.is-fullscreen) {
  width: 100%;
  height: 100%;
}

/* 全屏播放状态：保持原有大小 */
.trip-video-player.is-fullscreen {
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 8px;
}

/* 视频播放器容器 - 保持16:9比例，居中显示 */
.trip-video-player .landscape-video-sdk {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

/* 播放按钮提示 */
.trip-video-player::after {
  /* content: "点击播放"; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.trip-video-player:hover::after {
  opacity: 1;
}

/* 播放时不显示提示 */
.trip-video-player.is-fullscreen::after {
  display: none;
}
.trip-album-carousel {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f6f8;
}

.trip-carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 进度条指示器 */
.trip-carousel-progress {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.trip-carousel-progress-item {
  width: 32px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
}

.trip-carousel-progress-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.trip-carousel-progress-item.is-active {
  background: rgba(255, 255, 255, 0.4);
}

.trip-carousel-progress-item.is-done {
  background: rgba(255, 255, 255, 0.8);
}

.trip-carousel-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

.trip-carousel-progress-item.is-active .trip-carousel-progress-bar {
  transform: scaleX(var(--progress, 0));
}

/* 媒体展示区域 */
.trip-carousel-fade {
  position: relative;
  width: 100%;
  height: 100%;
}

.trip-carousel-fade-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trip-carousel-fade-item.is-front {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
}

.trip-carousel-fade-item.is-back {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.trip-carousel-fade-item.is-back.is-fading {
  opacity: 1;
}

/* 视频容器 */
.trip-carousel-video {
  width: 100%;
  height: 100%;
  /* background: #000; */
}

.trip-carousel-video .landscape-video-sdk,
.trip-carousel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 图片容器 */
.trip-carousel-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.trip-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 图片加载状态 */
.trip-carousel-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.trip-carousel-image-loader {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 图片加载状态样式 */
.trip-carousel-image-loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trip-carousel-image-loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* 空状态 */
.trip-carousel-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}

.trip-page {
  .trip-header {
    .trip-album {
      margin-top: 24px;
      position: relative;
      /* min-height: 400px; */
    }

    /* 有视频时的布局：左侧大视频 + 右侧四张小图 */
    .trip-album.has-video {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      /* max-height: 400px; */

      .trip-album-video {
        /* grid-column: 1 / 2;
        grid-row: 1 / 3; */
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 8px;
        /* background: #000; */
      }

      .gta-video-play-button--center{
        width: 66px;
        height: 66px;
      }

      .gta-video-play-button--center svg{
        width: 50px;
        height: 50px;
      }

      .trip-album-images {
        /* grid-column: 2 / 3;
        grid-row: 1 / 3; */
        aspect-ratio: 16 / 9;
        height: 100%;
      }
    }

    /* 视频全屏播放时 */
    .trip-album.video-fullscreen {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
      border-radius: 8px;
      overflow: hidden;

      /* min-height: 400px; */

      .trip-album-video {
        width: 50%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 8px;
        background: #000;
        transition: all 0.3s ease;
      }

      .trip-album-images {
        display: none;
      }
    }
  }

  .header-summary {
    flex: 1;
  }

  .trip-header--summary {
    display: flex;
    margin-top: 24px;

    .trip-summary--text {
      padding: 8px 20px;
      font-size: var(--fz-sm);
      line-height: 1.65;
      color: #3b4048;
      background: #fcf6f2;
      border: 1px solid rgba(31, 35, 41, .08);
      border-radius: 8px;
      text-align: justify;
      white-space: pre-line;
    }
  }

  .trip-combo-tip {
    width: 320px;
    height: 120px;
    margin-left: 24px;
    text-align: center;

    .combo-tip--content {
      border: 1px solid #e6e6e6;
      border-radius: 8px;
      padding: 20px;
      background-color: white;
      .gta-btn--primary {
        width: 100%;
        margin-top: 12px;
        font-size: var(--fz-md);
      }

      .count-price {
        color: #212121;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.32;
        text-align: left;
      }
    }
  }

  .combo-tip--content.sticky {
    position: fixed;
    top: 128px;
    width: 320px;
    background: white;
    z-index: 999;
  }
}

@media (max-width: 768px) {
  .trip-page {
    .trip-header {
      .trip-album {
        margin-top: 16px;
      }

      /* 移动端轮播图容器 */
      .trip-album-mobile {
        margin-top: 16px;
      }
    }

    .trip-header--summary {
      flex-direction: column;
      margin-top: 16px;

      .trip-summary--text {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
      }
    }

    .trip-combo-tip {
      width: 100%;
      height: auto;
      margin-left: 0;
      margin-top: 16px;

      .combo-tip--content {
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .count-price {
          font-size: 20px;
        }

        .gta-btn--primary {
          width: auto;
          margin-top: 0;
          padding: 8px 16px;
        }
      }
    }

    .combo-tip--content.sticky {
      position: fixed;
      top: 96px;
      left: 0;
      width: 100%;
      border-radius: 0;
      border-left: none;
      border-right: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
  }
}
.trip-page {

  .trip-content--combo {
    border-radius: 12px;
    display: flex;
    width: 100%;
    margin-bottom: 24px;

    .combo-left {
      flex: 1;
    }

    .combo-right {
      width: 320px;
      margin-left: 24px;

      .combo-detail .combo-detail--content {
        padding: 0px;
      }
    }
  }

  .combo-info {
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 24px 20px;
    margin-bottom: 24px;

    .combo-info--title {
      justify-content: space-between;
      align-items: center;
      display: flex;
      margin-bottom: 24px;

      .text-btn {
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        text-decoration-line: underline;
      }
    }

    .combo-info--date {
      margin-bottom: 12px;
      font-size: 14px;
    }

    .combo-info--type {
      margin-bottom: 12px;
      font-size: 14px;

      .type-list {
        display: flex;
        flex-wrap: wrap;

        .gta-btn--primary {
          background: white;
          color: black;
          font-size: 14px;
          font-weight: 700;
          margin: 0 8px 8px 0;

          a {
            width: 100%;
            height: 100%;
          }
        }

        .gta-btn--primary.active {
          border-color: var(--color-brand);
          background:
            color-mix(in srgb, var(--color-brand) 12%, transparent);
          color: var(--color-brand);
        }
      }
    }

    .combo-info--number {
      margin-bottom: 12px;
      font-size: 14px;

      .number-list {
        .number-item {
          background-color: #fff;
          border-radius: 8px;
          justify-content: space-between;
          align-items: center;
          padding: 10px 20px;
          display: flex;
          margin-bottom: 8px;

          .number-title {
            font-size: 16px;
            font-weight: 700;
          }

          .number-btns {
            .gta-btn {
              width: 32px;
              height: 32px;
              line-height: 32px;
              font-size: 18px;
              background: #f5f5f5;
              color: #333333;
              margin: 8px;
            }

            .number {
              display: inline-block;
              font-size: 18px;
              font-weight: 700;
              min-width: 21px;
              text-align: right;
            }
          }
        }
      }
    }

    .combo-info--total {
      margin-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;

      .combo-amount {
        font-size: 24px;
        color: #212121;
        font-weight: 700;
        line-height: 1.32;
      }

      .amount-tip {
        color: #757575;
        margin-top: 2px;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
      }

      .combo-order-btns {
        button {
          border: none;
          font-weight: 600;
          font-size: 16px;
          line-height: 22px;
          padding: 12px 20px;
          height: unset;
        }

        button:first-child {
          margin-right: 16px;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .trip-page {
    .combo-detail {
      border-radius: 8px;
      background-color: #ffffff !important;
    }

    .trip-content--combo {
      flex-direction: column;

      .combo-right {
        display: block;

        width: 100%;
        margin-top: 10px;
        margin-left: 0px;
      }
    }

    .combo-info {
      padding: 16px;
      border-radius: 12px;

      .combo-info--title {
        margin-bottom: 16px;

        .title-3 {
          font-size: 16px;
        }

        .text-btn {
          font-size: 14px;
        }
      }

      .combo-info--number {
        .number-list {
          .number-item {
            padding: 8px 12px;

            .number-title {
              font-size: 14px;
            }

            .number-btns {
              .gta-btn {
                width: 28px;
                height: 28px;
                line-height: 28px;
                font-size: 16px;
                margin: 4px;
              }

              .number {
                font-size: 16px;
              }
            }
          }
        }
      }

      .combo-info--total {
        display: none;
        flex-direction: column;
        align-items: flex-start;

        .combo-amount {
          font-size: 20px;
        }

        .combo-order-btns {
          width: 100%;
          margin-top: 16px;
          display: flex;

          button {
            flex: 1;
            padding: 10px;
            font-size: 14px;
          }

          button:first-child {
            margin-right: 8px;
          }
        }
      }
    }
  }
}
.trip-page .trip-contents .combo-detail,
.mobile-drawer-component .combo-detail {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 24px;
  max-height: 750px;
  overflow-y: auto;
  font-size: 12px;
  position: relative;
}

.trip-page .trip-contents .combo-detail .combo-expand-btn,
.mobile-drawer-component .combo-detail .combo-expand-btn {
  font-size: 20px;
  cursor: pointer;
}

.trip-page .trip-contents .combo-detail .title,
.mobile-drawer-component .combo-detail .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trip-page .trip-contents .combo-detail .title-3,
.mobile-drawer-component .combo-detail .title-3 {
  margin-bottom: 12px;
}

.trip-page .trip-contents .combo-detail .combo-detail--tips,
.mobile-drawer-component .combo-detail--tips,
.mobile-drawer-component .combo-detail .combo-detail--tips {
  margin-bottom: 24px;
}

.trip-page .trip-contents .combo-detail .combo-detail--content,
.trip-page .trip-contents .trip-content--combo .combo-detail--content,
.mobile-drawer-component .combo-detail--content,
.mobile-drawer-component .combo-detail .combo-detail--content {
  margin-bottom: 24px;
}

.trip-page .trip-contents .combo-detail .combo-detail--tip,
.mobile-drawer-component .combo-detail--tip,
.mobile-drawer-component .combo-detail .combo-detail--tip {
  color: rgb(117, 117, 117);
  border: 1px solid #757575;
  background-color: rgb(245, 245, 245);
  border-radius: 6px;
  font-size: 12px;
  padding: 2px 4px;
  margin-right: 8px;
}

.trip-page .trip-contents .combo-detail .combo-detail--line,
.trip-page .trip-contents .trip-content--combo .combo-detail--line,
.mobile-drawer-component .combo-detail--line,
.mobile-drawer-component .combo-detail .combo-detail--line {
  margin-bottom: 24px;
}

.trip-page .trip-contents .combo-detail .combo-detail--line .trip-line--images,
.mobile-drawer-component .combo-detail--line .trip-line--images,
.trip-page .trip-contents .trip-content--combo .combo-detail--line .trip-line--images,
.mobile-drawer-component .combo-detail .combo-detail--line .trip-line--images {
  height: 100px;
}

.trip-page .trip-contents .combo-detail .combo-detail--price,
.mobile-drawer-component .combo-detail--price,
.trip-page .trip-contents .trip-content--combo .combo-detail--price,
.mobile-drawer-component .combo-detail .combo-detail--price {
  margin-bottom: 24px;
}

.trip-page .trip-contents .combo-detail .combo-detail--price .combo-fee,
.mobile-drawer-component .combo-detail--price .combo-fee,
.trip-page .trip-contents .trip-content--combo .combo-detail--price .combo-fee,
.mobile-drawer-component .combo-detail .combo-detail--price .combo-fee {
  color: #555;
  line-height: 1.8;
  word-break: break-all;
  white-space: pre-line;
}

.trip-page .trip-contents .combo-detail .combo-detail--car,
.mobile-drawer-component .combo-detail--car,
.trip-page .trip-contents .trip-content--combo .combo-detail--car,
.mobile-drawer-component .combo-detail .combo-detail--car {
  margin-bottom: 24px;
}

.trip-page .trip-contents .combo-detail .combo-detail--car .combo-car,

.mobile-drawer-component .combo-detail--car .combo-car,
.mobile-drawer-component .combo-detail .combo-detail--car .combo-car {
  color: #555;
  padding: 0 8px;
}

.trip-page .trip-contents .combo-detail .combo-detail--desc,
.trip-page .trip-content--combotrip-content--combo .combo-detail--desc,
.mobile-drawer-component .combo-detail--desc,
.mobile-drawer-component .combo-detail .combo-detail--desc {
  margin-bottom: 24px;
}

.trip-page .trip-contents .combo-detail--text,
.mobile-drawer-component .combo-detail--text {
  p {
    font-size: 12px;
    color: #555;
  }
}

.trip-page .trip-contents .trip-combo-line,
.mobile-drawer-component .trip-combo-line {
  padding: 12px 10px;
  color: #555;
}

.trip-page .trip-contents .trip-combo-line .show-album-icon,
.mobile-drawer-component .trip-combo-line .show-album-icon {
  right: 8px;
  bottom: 8px;
}

.trip-page .trip-contents .trip-combo-line .image-album>*,
.mobile-drawer-component .trip-combo-line .image-album>* {
  margin: 2px;
}

@supports (gap: 4px) {

  .trip-page .trip-contents .trip-combo-line .image-album,
  .mobile-drawer-component .trip-combo-line .image-album {
    gap: 4px;
  }

  .trip-page .trip-contents .trip-combo-line .image-album>*,
  .mobile-drawer-component .trip-combo-line .image-album>* {
    margin: 0;
  }
}

.trip-page .trip-contents .trip-combo-line .trip-line--items,
.mobile-drawer-component .trip-combo-line .trip-line--items {
  font-size: 12px;
  border-left: 1px dashed #ccc;
  padding: 0 15px 20px;
  position: relative;
  word-break: break-all;
}

.trip-page .trip-contents .trip-combo-line .trip-line--items:last-child,
.mobile-drawer-component .trip-combo-line .trip-line--items:last-child {
  padding-bottom: 0;
}

.trip-page .trip-contents .trip-combo-line .trip-line--address .address-text,
.mobile-drawer-component .trip-combo-line .trip-line--address .address-text {
  line-height: 22px;
}

.trip-page .trip-contents .trip-combo-line .trip-line--address .arrow,
.mobile-drawer-component .trip-combo-line .trip-line--address .arrow {
  margin: 0 8px;
}

.trip-page .trip-contents .trip-combo-line .trip-line--address .from i,
.trip-page .trip-contents .trip-combo-line .trip-line--address .to i,
.mobile-drawer-component .trip-combo-line .trip-line--address .from i,
.mobile-drawer-component .trip-combo-line .trip-line--address .to i {
  display: none;
  margin-right: 4px;
}

.trip-page .trip-contents .trip-combo-line .trip-line--address .from.has-gps,
.trip-page .trip-contents .trip-combo-line .trip-line--address .to.has-gps,
.mobile-drawer-component .trip-combo-line .trip-line--address .from.has-gps,
.mobile-drawer-component .trip-combo-line .trip-line--address .to.has-gps {
  cursor: pointer;
}

.trip-page .trip-contents .trip-combo-line .trip-line--address .from.has-gps i,
.trip-page .trip-contents .trip-combo-line .trip-line--address .to.has-gps i,
.mobile-drawer-component .trip-combo-line .trip-line--address .from.has-gps i,
.mobile-drawer-component .trip-combo-line .trip-line--address .to.has-gps i {
  display: inline-block;
}

.trip-page .trip-contents .trip-combo-line .trip-line--dining,
.mobile-drawer-component .trip-combo-line .trip-line--dining {
  margin-top: 12px;
}

.trip-page .trip-contents .trip-combo-line .trip-line--stay,
.mobile-drawer-component .trip-combo-line .trip-line--stay {
  margin: 12px 0;
}

.trip-page .trip-contents .trip-combo-line .item-icon,
.mobile-drawer-component .trip-combo-line .item-icon {
  background-color: rgba(26, 97, 4, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  height: 20px;
  left: -10px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 20px;
}

.trip-page .trip-contents .trip-combo-line .gta-icon.item-icon,
.mobile-drawer-component .trip-combo-line .gta-icon.item-icon {
  background: #333;
}

.combo-detail .dining-text>span,
.mobile-drawer-component .combo-detail .dining-text>span {
  margin-right: 8px;
}

.trip-page .form-dialog .combo-detail--content,
.trip-page .trip-contents .trip-content--combo .combo-detail--content,
.mobile-drawer-component .combo-detail--content {
  max-height: 50vh;
  overflow-y: auto;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .trip-page .trip-contents .trip-content--combo .combo-detail--content,
  .mobile-drawer-component .combo-detail--content:last-child {
    margin-bottom: 0 !important;
  }
  .trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--price:last-child {
    margin-bottom: 0 !important;
  }

  .trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--price:last-child .card-expand{
    border:none;
  }
}


.form-dialog .card-content,
.mobile-drawer-component .card-content {
  font-size: 14px;
}
.card-expand{
  border-bottom: 1px solid #eee;
}
.card-expand .card-content-wrapper {
  overflow-y: hidden;
  transition: height 0.2s ease;
  padding: 0 0; /* 初始没有内边距 */
}

.card-expand .card-expand--title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  cursor: pointer;
}
.card-expand .expand-title--text{
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
.card-expand .card-content{
  padding-bottom: 12px;
}

.card-expand .faq-acc-icon {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: #666;
  font-size: 20px;
}
.card-expand .faq-acc-icon--open {
  transform: rotate(180deg);
}

.trip-introduction--detail {

  background-color: #f5f5f5;

  .trip-detail--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 4px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
  }

  .trip-detail--header--left {
    flex: 1;
    min-width: 0;
  }

  .trip-detail--header--title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 22px;
    background-color: #fff;
  }

  .trip-detail--header--right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .trip-detail--box {
    background-color: #fff;
    margin-bottom: 4px;
      padding: 10px 20px;
 
      overflow: hidden;
  }

  .trip-detail--box:last-child {
    border-radius: 0 0 8px 8px;
  }

  .trip-detail--items--inner {
    border-left: 1px dashed #ccc;
    padding-left: 10px;
    /* padding: 0 10px 10px; */
    position: relative;
    word-break: break-all;

  }

  .trip-detail--items--inner:last-child {
    padding-bottom: 0;
  }

  .trip-detail--items--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .trip-detail--items--switch {
    flex-shrink: 0;
  }

  .trip-detail--items--day-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    margin: 10px 20px 10px 10px;
    text-align: justify;
    flex: 1;
    min-width: 0;
  }

  .trip-detail--items--day-icon {
    background-color: rgba(26, 97, 4, 0.8);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    left: -13px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    width: 24px;
  }

  .trip-detail--items--body {
    margin-top: 12px;
  }

  .trip-detail--items--row {
    display: flex;
    margin-bottom: 2px;
    position: relative;
  }

  .trip-detail--items--row-intro {
    align-items: flex-start;
  }

  .trip-detail--items--icon {
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    left: -23px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 26px;
    transform: translateY(-50%);
  }

  .trip-detail--items--body .gta-icon[data-size="custom"] {
    --gta-icon-size: 24px;
  }

  .trip-detail--items--row-text,
  .trip-detail--items--intro-text {
    color: #212121;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    margin: 10px 20px 10px 10px;
    text-align: justify;
    text-justify: inter-word;
    word-break: break-word;
  }

  .trip-detail--items--intro-text {
    white-space: pre-wrap;
  }

  .trip-detail--items--dining {
    display: inline-flex;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-bottom: -16px;
  }

  .trip-detail--items--dining>* {
    margin-right: 16px;
    margin-bottom: 16px;
  }

  @supports (gap: 16px) {
    .trip-detail--items--dining {
      gap: 16px;
      margin-right: 0;
      margin-bottom: 0;
    }

    .trip-detail--items--dining>* {
      margin-right: 0;
      margin-bottom: 0;
    }
  }

  .trip-detail--items--row-key {
    font-weight: 700;
    color: #333;
  }

  .trip-detail--toolbar {
    position: absolute;
    top: -20px;
    right: 0;
    display: none;
    align-items: center;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    backdrop-filter: saturate(160%) blur(6px);
    z-index: 10;
  }

  .trip-detail--items--card:hover>.trip-detail--items--inner>.trip-detail--toolbar,
  .trip-detail--items--card[data-actions="always"]>.trip-detail--items--inner>.trip-detail--toolbar {
    display: inline-flex;
  }

  .trip-detail--toolbar-btn.gta-btn {
    padding: 0 5px;
    color: #fff;
    height: auto;
    line-height: normal;
  }

  .trip-detail--toolbar-btn.gta-btn .gta-icon[data-size="custom"] {
    --gta-icon-size: 18px;
  }


  .trip-detail--items--day-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .trip-detail--items--route {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    max-width: 100%;
  }

  .trip-detail--items--route>* {
    margin-left: 8px;
  }

  .trip-detail--items--route>*:first-child {
    margin-left: 0;
  }

  @supports (gap: 8px) {
    .trip-detail--items--route {
      gap: 8px;
    }

    .trip-detail--items--route>* {
      margin-left: 0;
    }
  }

  .trip-detail--items--route-from,
  .trip-detail--items--route-to {
    display: inline-block;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trip-detail--items--route-arrow {
    flex: 0 0 auto;
    user-select: none;
    line-height: 1;
  }

  .slide-image {
    width: 100%;
    height: 260px;
    display: block;
    border: 1px solid #eee;
    background: #fafafa;
    overflow: hidden;
    border-radius: 8px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .trip-detail--items--route-from .gta-icon-address,
  .trip-detail--items--route-to .gta-icon-address {
    display: none;
    margin-right: 4px;
  }

  .has-gps .gta-icon-address,
  .has-gps .gta-icon-address {
    display: inline-block;
  }

  .trip-detail--items--route-from.has-gps,
  .trip-detail--items--route-to.has-gps {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .trip-introduction--detail {
    padding: 0;

    .trip-detail--header--right {
      margin-right: unset !important;
    }

    .trip-detail--items--inner {
      padding: 0 0 20px 24px;
      margin-left: 12px;
    }

    .trip-detail--items--day-icon {
      left: -12px;
      width: 24px;
      height: 24px;
      font-size: 12px;
    }

    .trip-detail--items--day-text {
      font-size: 16px;
      margin: 8px 0;

      .trip-detail--items--route-from,
      .trip-detail--items--route-to {
        max-width: 120px;
      }
    }

    .trip-detail--items--row-text,
    .trip-detail--items--intro-text {
      font-size: 14px;
      margin: 4px 0;
      line-height: 1.6;
    }

    .trip-detail--items--icon {
      left: -36px;
      top: 15px;
      width: 20px;
      height: 20px;
      --gta-icon-size: 20px !important;
    }

    .trip-detail--items--dining {
      margin-right: -8px;
      margin-bottom: -8px;
    }

    .trip-detail--items--dining>* {
      margin-right: 8px;
      margin-bottom: 8px;
    }

    @supports (gap: 8px) {
      .trip-detail--items--dining {
        gap: 8px;
        margin-right: 0;
        margin-bottom: 0;
      }

      .trip-detail--items--dining>* {
        margin-right: 0;
        margin-bottom: 0;
      }
    }

    .slide-image {
      height: 180px;
    }
  }
}
.map-content{
  width: 100%;
  height: 100%;
  position: relative;
}

.map-content .map-search-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  display: flex;
  background: white;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.map-content .map-search-bar > * {
  margin-left: 8px;
}
.map-content .map-search-bar > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .map-content .map-search-bar {
    gap: 8px;
  }
  .map-content .map-search-bar > * {
    margin-left: 0;
  }
}

.map-content .map-search-input {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  width: 250px;
  outline: none;
}

.map-content .map-search-input:focus {
  border-color: #1890ff;
}

.map-content .map-search-btn {
  padding: 8px 16px;
  background: #1890ff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.map-content .map-search-btn:hover {
  background: #40a9ff;
}

.map-content .map-location-info {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 100;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  min-width: 280px;
  max-width: 400px;
}

.map-content .location-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  padding-right: 70px;
}

.map-content .location-text > div {
  margin-bottom: 4px;
}

.map-content .location-text > div:last-child {
  margin-bottom: 0;
}

.map-content .location-confirm-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 16px;
  background: #52c41a;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.map-content .location-confirm-btn:hover {
  background: #73d13d;
}

.map-content .map{
  width: 100%;
  height: 100%;
}



.fullscreen-map{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: white;
  z-index: 3000;
}

.map-close-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.map-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }
  
  .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    background-color: #ccc;
    border-radius: 24px;
    transition: 0.4s;
  }
  
  .toggle-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
  }
  
  /* 使用 :has() 伪类增强选中状态的样式 */
  .toggle-switch:has(input:checked) .toggle-slider {
    background-color: #17a43a !important;
  }
  
  .toggle-switch:has(input:checked) .toggle-slider::before {
    transform: translateX(26px) !important;
  }
  
  /* 保持原有的选择器兼容性 */
  .toggle-switch input:checked + .toggle-slider {
    background-color: #17a43a;
  }
  
  .toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
  }
  
  @media (max-width: 768px) {
    .toggle-switch {
      width: 40px;
      height: 20px;
    }
  
    .toggle-slider::before {
      height: 14px;
      width: 14px;
      left: 3px;
      bottom: 3px;
    }
  
    .toggle-switch:has(input:checked) .toggle-slider::before {
      transform: translateX(20px) !important;
    }
    
    .toggle-switch input:checked + .toggle-slider::before {
      transform: translateX(20px); 
    }
  }
  
.trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--content,
.mobile-drawer-component .combo-detail--content {
  margin-bottom: 24px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--line {
  margin-bottom: 24px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--line .trip-line--images {
  height: 100px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--price {
  margin-bottom: 24px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .combo-detail--price .combo-fee {
  color: #555;
  line-height: 1.8;
  word-break: break-all;
  white-space: pre-line;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line {
  padding: 12px 10px;
  color: #555;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .show-album-icon {
  right: 8px;
  bottom: 8px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .image-album>* {
  margin: 2px;
}

@supports (gap: 4px) {
  .trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .image-album {
    gap: 4px;
  }

  .trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .image-album>* {
    margin: 0;
  }
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--items {
  font-size: 12px;
  border-left: 1px dashed #ccc;
  padding: 0 15px 20px;
  position: relative;
  word-break: break-all;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--items:last-child {
  padding-bottom: 0;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .address-text {
  line-height: 22px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .arrow {
  margin: 0 8px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .from i,
.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .to i {
  display: none;
  margin-right: 4px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .from.has-gps,
.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .to.has-gps {
  cursor: pointer;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .from.has-gps i,
.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--address .to.has-gps i {
  display: inline-block;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--dining {
  margin-top: 12px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .trip-line--stay {
  margin: 12px 0;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .item-icon {
  background-color: rgba(26, 97, 4, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  height: 20px;
  left: -10px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 20px;
}

.trip-page .trip-contents .trip-combo-detail-mobile .trip-combo-line .gta-icon.item-icon {
  background: #333;
}

.trip-page .trip-contents .trip-combo-detail-mobile .dining-text>span {
  margin-right: 8px;
}

.GTACalendar {
  background: #fff;
  width: 100%;
  user-select: none;
  padding: 10px 0;
  box-sizing: border-box;
  border-radius: 8px;
  --cal-pad: 15px;
  --cal-gap: 20px;
  --cell-size: 1fr;
}

.GTACalendar.mini {
  width: 320px;
}

.GTACalendar * {
  box-sizing: border-box;
}

.GTACalendar .GTACalendar-header {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  margin-bottom: 8px;
}

.GTACalendar .GTACalendar-title {
  font-weight: 600;
  padding: 20px 0;
  font-size: 20px;
  text-align: center;
}

.GTACalendar .GTACalendar-nav {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.GTACalendar .GTACalendar-nav.is-hidden {
  visibility: hidden;
}

.GTACalendar .GTACalendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, var(--cell-size)));
  color: #151515;
}

@supports (gap: 5px 0px) {
  .GTACalendar .GTACalendar-weekdays {
    gap: 5px 0px;
  }
}

.GTACalendar .GTACalendar-weekday {
  display: flex;
  align-items: center;
  justify-content: center;
}

.GTACalendar .GTACalendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, var(--cell-size)));
}

.GTACalendar .GTACalendar-cell-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.GTACalendar .GTACalendar-cell {
  cursor: pointer;
  border: unset;
  background: unset;
  text-align: center;
}

.GTACalendar .GTACalendar-cell--empty {
  background: transparent;
  border: none;
  pointer-events: none;
}

.GTACalendar .GTACalendar-day {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  margin: 3px 0;
  display: inline-block;
  font-weight: bold;
}

.GTACalendar .GTACalendar-cell--disabled .GTACalendar-day:hover {
  background: unset;
}

.GTACalendar .GTACalendar-day:hover {
  background: var(--brand-100);
}

.GTACalendar .GTACalendar-day.is-active {
  color: white;
  background: var(--color-brand);
}

.GTACalendar .GTACalendar-label {
  font-size: 12px;
  line-height: 1;
  color: #6b7280;
}

.GTACalendar .GTACalendar-label--price {
  color: #16a34a;
  font-weight: 500;
}

.GTACalendar .GTACalendar-cell--disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.GTACalendar .GTACalendar-cell--blackout {
  cursor: not-allowed;
  opacity: 0.55;
}

.GTACalendar .GTACalendar-cell--selected {
  background: var(--color-brand, #16a34a);
  border-color: transparent;
  color: #fff;
}

.GTACalendar .GTACalendar-cell--selected .GTACalendar-day {
  color: #fff;
  font-weight: 900;
}

.GTACalendar .GTACalendar-cell--selected .GTACalendar-label {
  color: rgba(255, 255, 255, 0.92);
}

.GTACalendar .GTACalendar-cell--selected .GTACalendar-label--price {
  color: #fff;
  font-weight: 900;
}


@media (max-width: 768px) {
  .GTACalendar .GTACalendar-title {
    padding: 0px 0px 10px;
  }

  .GTACalendar .GTACalendar-weekday {
    font-size: 18px;
  }

  .gta-icon-disable {
    left: 12px ;
    top: 2px;
  }

  .GTACalendar .GTACalendar-day {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .GTACalendar .date-label {
    font-size: 14px !important;
    color: var(--color-brand);
  }

  .GTACalendar .GTACalendar-cell-wrap {
    margin-top: 8px;
  }

  .GTACalendar-day {
    font-size: 18px;
  }

  .GTACalendar-nav .GTACalendar-nav--next {
    position: relative;
    right: 6px;
  }
}
.GTACalendar .date-label {
  font-size: 12px;
  line-height: 12px;
  height: 12px;
}

.date-tips {
  position: relative;

  .gta-icon {
    margin-right: 2px;
  }

  span {
    font-size: 12px;
    line-height: 12px;
  }

  .gta-btn--secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--btn-fg);
    z-index: 100;
  }
}

.combo-info--date .GTACalendar-cell.GTACalendar-cell--disabled {
  position: relative;

  .gta-icon-disable {
    display: block;
    position: absolute;
    top: 4px;
    left: 13px;
    font-size: 32px;
  }
}

.combo-info--date .GTACalendar-cell {
  .gta-icon-disable {
    display: none;
  }
}

/* 移动端样式 */
@media (max-width: 768px) {
  .combo-info--date {
    .combo-date-mobile-btn {
      width: 100%;
      padding: 12px;
      font-size: 14px;
    }

    .mobile-drawer-component .mobile-drawer-title p {
      font-size: 18px;
    }

  }

  .combo-info--date .GTACalendar-cell.GTACalendar-cell--disabled {
    position: relative;

    .gta-icon-disable {
      left: 12px;
      top: 2px;
    }
  }

  .mobile-calendar-wrapper {

    max-height: calc(70vh - 60px);
    overflow-y: auto;

    .date-tips {
      padding: 16px 0;
      border-top: 1px solid #eee;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      align-items: center;

      div {
        display: flex;
        align-items: center;
        font-size: 12px;
      }

      .gta-btn--secondary {
        position: static;

      }



    }


  }
}
.tag-list{
  display: flex;
  flex-wrap: wrap;
}
.tag{
  color: #757575;
  border-color: #F5F5F5;
  background-color: rgba(245, 245, 245, 255);
  border-radius: 2px;
  margin-right: 8px;
  padding: 0 8px;
  font-size: 14px;
  white-space: nowrap;
}

.evaluate-section {
  padding-bottom: 24px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
}

/* 总体评分 */
.overall-rating {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.overall-rating > * {
  margin-left: 16px;
}
.overall-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 16px) {
  .overall-rating {
    gap: 16px;
  }
  .overall-rating > * {
    margin-left: 0;
  }
}

.rating-header {
  display: flex;
  align-items: baseline;
}
.rating-header > * {
  margin-left: 4px;
}
.rating-header > *:first-child {
  margin-left: 0;
}
@supports (gap: 4px) {
  .rating-header {
    gap: 4px;
  }
  .rating-header > * {
    margin-left: 0;
  }
}

.rating-header .gta-icon-manyi{
  background-image: var(--icon-url);
  background-size: cover;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  background-color: unset;
}

.rating-emoji {
  font-size: 40px;
  line-height: 1;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.rating-max {
  font-size: 20px;
  color: #999;
  font-weight: 500;
}

.rating-info {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.rating-info > * {
  margin-bottom: 4px;
}
.rating-info > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 4px) {
  .rating-info {
    gap: 4px;
  }
  .rating-info > * {
    margin-bottom: 0;
  }
}

.satisfaction-text {
  font-size: 16px;
  color: var(--color-brand);
  font-weight: 600;
}

.total-reviews {
  font-size: 14px;
  color: #999;
}

/* 细分评分 */
.sub-ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  margin-bottom: 24px;
}
.sub-ratings > * {
  margin-left: 6px;
  margin-bottom: 6px;
}
.sub-ratings > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 12px) {
  .sub-ratings {
    gap: 12px;
  }
  .sub-ratings > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.sub-rating-item {
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.sub-rating-item > * {
  margin-bottom: 8px;
}
.sub-rating-item > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 8px) {
  .sub-rating-item {
    gap: 8px;
  }
  .sub-rating-item > * {
    margin-bottom: 0;
  }
}

.sub-rating-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.sub-rating-value {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

/* 分隔线 */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}

/* 评价列表 */
.reviews-section {
  display: flex;
  flex-direction: column;
}
.reviews-section > * {
  margin-bottom: 24px;
}
.reviews-section > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 24px) {
  .reviews-section {
    gap: 24px;
  }
  .reviews-section > * {
    margin-bottom: 0;
  }
}
.reviews-section .gta-btn--secondary{
  --color-surface-1: var(--color-surface-2, #f7f8fa);
  --color-surface-2: #fcf6f2;
  color: var(--btn-fg);
}
.reviews-section .page-container-btn{
  text-align: center;
  margin-top: 12px;
}
.reviews-section .page-container-btn .gta-btn{
  margin-right: 8px;
}
.reviews-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* 排序和筛选 */
.sort-section,
.filter-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-bottom: -12px;
}
.sort-section > *,
.filter-section > * {
  margin-right: 12px;
  margin-bottom: 12px;
}
@supports (gap: 12px) {
  .sort-section,
  .filter-section {
    gap: 12px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .sort-section > *,
  .filter-section > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sort-label,
.filter-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.sort-options,
.filter-options {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}
.sort-options > *,
.filter-options > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .sort-options,
  .filter-options {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .sort-options > *,
  .filter-options > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sort-btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
}
.sort-btn > *,
.filter-btn > * {
  margin-left: 6px;
}
.sort-btn > *:first-child,
.filter-btn > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .sort-btn,
  .filter-btn {
    gap: 6px;
  }
  .sort-btn > *,
  .filter-btn > * {
    margin-left: 0;
  }
}

.sort-btn,
.filter-btn {
  background: #fff;
  border: 1px solid var(--color-brand);
  border-radius: 20px;
  font-size: 14px;
  color: var(--color-brand);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.sort-btn:hover,
.filter-btn:hover {
  background: #fffbe6;
}

.sort-btn.active,
.filter-btn.active {
  background: var(--color-brand);
  color: #fff;
}

.sort-btn svg {
  margin-left: 2px;
}

/* 排序下拉框 */
.sort-dropdown {
  min-width: 180px;
  padding: 8px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* 覆盖 popover 默认样式 */
.sort-section .gta-popover {
  background: transparent;
}

.sort-section .gta-popover-main {
  padding: 0;
  background: transparent;
  box-shadow: none;
  min-width: auto;
}

.sort-section .gta-popover-content {
  padding: 0;
}

.sort-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
}

.sort-dropdown-item:hover {
  background: #f5f5f5;
}

.sort-dropdown-item.active {
  background: #fffbe6;
  color: var(--color-brand);
  font-weight: 600;
  position: relative;
}

.sort-dropdown-item.active .ps-status-icon {
  flex-shrink: 0;
  margin-left: 8px;
  font-size: 22px;
  position:absolute;
  right: 20px;
  top: 10px;
  width: 24px;
  height: 24px;
}

/* 评价列表 */
.reviews-list {
  display: flex;
  flex-direction: column;
}
.reviews-list > * {
  margin-bottom: 32px;
}
.reviews-list > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 32px) {
  .reviews-list {
    gap: 32px;
  }
  .reviews-list > * {
    margin-bottom: 0;
  }
}

/* 评价列表空状态 */
.reviews-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 180px;
}

.reviews-empty .reviews-empty-icon {
  font-size: 150px;
  margin-bottom: 20px;
  color: #999;
}

.reviews-empty .reviews-empty-text {
  font-size: 16px;
  color: #999;
  margin: 0;
}

.review-item {
  display: flex;
  flex-direction: column;
}
.review-item > * {
  margin-bottom: 12px;
}
.review-item > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 12px) {
  .review-item {
    gap: 12px;
  }
  .review-item > * {
    margin-bottom: 0;
  }
}

/* 评价头部 */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.user-info {
  display: flex;
  align-items: center;
}
.user-info > * {
  margin-left: 12px;
}
.user-info > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .user-info {
    gap: 12px;
  }
  .user-info > * {
    margin-left: 0;
  }
}

.user-avatar,
.user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-avatar-placeholder {
  background: linear-gradient(135deg, var(--color-brand), var(--brand-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.user-details {
  display: flex;
  flex-direction: column;
}
.user-details > * {
  margin-bottom: 4px;
}
.user-details > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 4px) {
  .user-details {
    gap: 4px;
  }
  .user-details > * {
    margin-bottom: 0;
  }
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.review-date {
  font-size: 13px;
  color: #999;
}

.review-rating {
  display: flex;
  align-items: center;
}
.review-rating > * {
  margin-left: 8px;
}
.review-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .review-rating {
    gap: 8px;
  }
  .review-rating > * {
    margin-left: 0;
  }
}

.review-satisfaction {
  font-size: 14px;
  color: #6b5bff;
  font-weight: 500;
}

.rating-badge {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(90deg, var(--color-brand), var(--brand-400));
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* 评价内容 */
.review-content {
  font-size: 1em;
  line-height: 1.8;
  color: #333;
}

/* 评价标签 */
.review-tags {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}
.review-tags > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .review-tags {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .review-tags > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.tags-label {
  font-size: 13px;
  color: #999;
  line-height: 24px;
}

.review-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  color: #666;
}

/* 翻译提示 */
.translation-notice {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

/* 评价图片 */
.review-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.review-images > * {
  margin-left: 4px;
  margin-bottom: 4px;
}
.review-images > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 8px) {
  .review-images {
    gap: 8px;
  }
  .review-images > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.review-image-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.review-image-thumb:hover {
  transform: scale(1.05);
}

/* 操作按钮 */
.review-actions {
  display: flex;
  padding-top: 8px;
}
.review-actions > * {
  margin-left: 16px;
}
.review-actions > *:first-child {
  margin-left: 0;
}
@supports (gap: 16px) {
  .review-actions {
    gap: 16px;
  }
  .review-actions > * {
    margin-left: 0;
  }
}

.review-actions.liked .action-btn{
  color: var(--color-brand);
}

.action-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: none;
  border: none;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}
.action-btn > * {
  margin-left: 6px;
}
.action-btn > *:first-child {
  margin-left: 0;
}
.action-btn i {
  font-size: 18px;
  position: relative;
  top: -1px;
}
@supports (gap: 6px) {
  .action-btn {
    gap: 6px;
  }
  .action-btn > * {
    margin-left: 0;
  }
}

.action-btn:hover {
  color: var(--color-brand);
}

.action-btn svg {
  width: 16px;
  height: 16px;
}

.helpful-count {
  font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .evaluate-section {
    padding-bottom: 16px;
  }

  .overall-rating {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-header {
    align-items: center;
  }

  .rating-number {
    font-size: 36px;
  }

  .rating-emoji {
    font-size: 32px;
  }

  .rating-max {
    font-size: 18px;
  }

  .satisfaction-text {
    font-size: 14px;
  }

  .total-reviews {
    font-size: 12px;
  }

  .sub-ratings {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-rating-name {
    font-size: 12px;
  }

  .sub-rating-value {
    font-size: 16px;
  }

  .reviews-title {
    font-size: 18px;
  }

  .sort-section,
  .filter-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .sort-section > *,
  .filter-section > * {
    margin-bottom: 8px;
  }
  .sort-section > *:last-child,
  .filter-section > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 8px) {
    .sort-section,
    .filter-section {
      gap: 8px;
    }
    .sort-section > *,
    .filter-section > * {
      margin-bottom: 0;
    }
  }

  .sort-label,
  .filter-label {
    font-size: 12px;
  }

  .sort-btn,
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sort-dropdown-item {
    font-size: 12px;
  }

  .user-name {
    font-size: 12px;
  }

  .review-date {
    font-size: 11px;
  }

  .review-satisfaction {
    font-size: 12px;
  }

  .review-content {
    font-size: 0.875em;
  }

  .review-images {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-image-thumb {
    height: 80px;
  }

  .action-btn {
    font-size: 11px;
  }
}

/* 遮罩层 */
.evaluate-dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 对话框容器 */
.evaluate-dialog-content {
  background: #fff;
  border-radius: 16px;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  max-height: 800px;
  display: flex;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* 左侧：图片预览区域 */
.evaluate-dialog-images-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #000;
  min-width: 0;
}

/* 主图 */
.evaluate-dialog-main-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.evaluate-dialog-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

/* 关闭按钮 */
.evaluate-dialog-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #999;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.evaluate-dialog-close-btn:hover {
  color: #333;
  background: #f5f5f5;
}

/* 右侧：评论信息区域 */
.evaluate-dialog-info-section {
  width: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  position: relative;
  overflow-y: auto;
  flex-shrink: 0;
}

/* 用户信息 */
.evaluate-dialog-user {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.evaluate-dialog-user > * {
  margin-left: 12px;
}
.evaluate-dialog-user > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .evaluate-dialog-user {
    gap: 12px;
  }
  .evaluate-dialog-user > * {
    margin-left: 0;
  }
}

.evaluate-dialog-avatar,
.evaluate-dialog-avatar-placeholder {
  width: 40px!important;
  height: 40px!important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.evaluate-dialog-avatar-placeholder {
  background: linear-gradient(135deg, #6b5bff, var(--color-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.evaluate-dialog-user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.evaluate-dialog-user-info > * {
  margin-bottom: 4px;
}
.evaluate-dialog-user-info > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 4px) {
  .evaluate-dialog-user-info {
    gap: 4px;
  }
  .evaluate-dialog-user-info > * {
    margin-bottom: 0;
  }
}

.evaluate-dialog-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.evaluate-dialog-date {
  font-size: 12px;
  color: #999;
}

/* 评分 */
.evaluate-dialog-rating {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.evaluate-dialog-rating > * {
  margin-left: 8px;
}
.evaluate-dialog-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .evaluate-dialog-rating {
    gap: 8px;
  }
  .evaluate-dialog-rating > * {
    margin-left: 0;
  }
}

.review-satisfaction {
  font-size: 14px;
  color: var(--color-brand);
  font-weight: 600;
}

.rating-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(90deg, var(--color-brand), var(--brand-400));
  color: #fff;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
}

/* Tags */
.evaluate-dialog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  margin-right: -8px;
  margin-bottom: -8px;
}
.evaluate-dialog-tags > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .evaluate-dialog-tags {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .evaluate-dialog-tags > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.tags-label {
  font-size: 13px;
  color: #666;
}


/* 评价内容 */
.evaluate-dialog-review-content {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  flex: 1;
  overflow-y: auto;
}

.evaluate-dialog-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

/* 导航按钮 */
.evaluate-dialog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  color: #fff;
  font-size: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.evaluate-dialog-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.evaluate-dialog-nav-left {
  left: 20px;
}

.evaluate-dialog-nav-right {
  right: 20px;
}

/* 图片计数器 */
.evaluate-dialog-image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 缩略图 */
.evaluate-dialog-thumbnails {
  display: flex;
  padding: 16px 20px;
  background: #000;
  overflow-x: auto;
  justify-content: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.evaluate-dialog-thumbnails > * {
  margin-left: 12px;
}
.evaluate-dialog-thumbnails > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .evaluate-dialog-thumbnails {
    gap: 12px;
  }
  .evaluate-dialog-thumbnails > * {
    margin-left: 0;
  }
}

.evaluate-dialog-thumbnail {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  opacity: 0.6;
}

.evaluate-dialog-thumbnail.active {
  opacity: 1;
  border-color: #6b5bff;
  box-shadow: 0 0 0 2px rgba(107, 91, 255, 0.3);
}

.evaluate-dialog-thumbnail:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.6);
}

.evaluate-dialog-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-img {
  animation-duration: 0.35s;
  animation-fill-mode: both;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .evaluate-dialog-content {
    flex-direction: column;
    width: 95vw;
    max-width: 600px;
    height: 90vh;
    max-height: 90vh;
  }

  .evaluate-dialog-images-section {
    flex: 1;
    min-height: 50vh;
  }

  .evaluate-dialog-info-section {
    width: 100%;
    flex: 1;
    padding: 0;
  }

  .evaluate-dialog-user,
  .evaluate-dialog-rating,
  .evaluate-dialog-tags,
  .evaluate-dialog-review-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .evaluate-dialog-main-image {
    min-height: 300px;
  }

  .evaluate-dialog-nav {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .evaluate-dialog-nav-left {
    left: 15px;
  }

  .evaluate-dialog-nav-right {
    right: 15px;
  }

  .evaluate-dialog-thumbnails {
    padding: 12px 15px;
  }
  .evaluate-dialog-thumbnails > * {
    margin-left: 10px;
  }
  .evaluate-dialog-thumbnails > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 10px) {
    .evaluate-dialog-thumbnails {
      gap: 10px;
    }
    .evaluate-dialog-thumbnails > * {
      margin-left: 0;
    }
  }

  .evaluate-dialog-thumbnail {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .evaluate-dialog-content {
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .evaluate-dialog-user,
  .evaluate-dialog-rating,
  .evaluate-dialog-tags,
  .evaluate-dialog-review-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .evaluate-dialog-user {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .evaluate-dialog-user > * {
    margin-left: 12px;
  }
  .evaluate-dialog-user > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 12px) {
    .evaluate-dialog-user {
      gap: 12px;
    }
    .evaluate-dialog-user > * {
      margin-left: 0;
    }
  }

  .evaluate-dialog-avatar,
  .evaluate-dialog-avatar-placeholder {
    width: 48px!important;
    height: 48px!important;
    font-size: 20px;
  }

  .evaluate-dialog-user-name {
    font-size: 15px;
  }

  .evaluate-dialog-rating {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .evaluate-dialog-satisfaction {
    font-size: 14px;
  }

  .evaluate-dialog-rating-badge {
    padding: 5px 14px;
    font-size: 14px;
  }

  .evaluate-dialog-tags {
    padding-top: 12px;
    padding-bottom: 12px;
    margin-right: -6px;
    margin-bottom: -6px;
  }
  .evaluate-dialog-tags > * {
    margin-right: 6px;
    margin-bottom: 6px;
  }
  @supports (gap: 6px) {
    .evaluate-dialog-tags {
      gap: 6px;
      margin-right: 0;
      margin-bottom: 0;
    }
    .evaluate-dialog-tags > * {
      margin-right: 0;
      margin-bottom: 0;
    }
  }

  .evaluate-dialog-tag {
    padding: 5px 12px;
    font-size: 12px;
  }

  .evaluate-dialog-review-content {
    font-size: 14px;
    line-height: 1.7;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .evaluate-dialog-main-image {
    min-height: 250px;
  }

  .evaluate-dialog-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .evaluate-dialog-nav-left {
    left: 12px;
  }

  .evaluate-dialog-nav-right {
    right: 12px;
  }

  .evaluate-dialog-image-counter {
    bottom: 15px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .evaluate-dialog-thumbnails {
    padding: 10px 12px;
  }
  .evaluate-dialog-thumbnails > * {
    margin-left: 8px;
  }
  .evaluate-dialog-thumbnails > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 8px) {
    .evaluate-dialog-thumbnails {
      gap: 8px;
    }
    .evaluate-dialog-thumbnails > * {
      margin-left: 0;
    }
  }

  .evaluate-dialog-thumbnail {
    width: 50px;
    height: 50px;
  }

  .evaluate-dialog-close-btn {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

.webSite-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  min-height: 200px;
}

.webSite-empty-state .empty-state-icon {
  font-size: 160px;
  margin-bottom: 16px;
}

.webSite-empty-state .empty-state-message {
  font-size: 14px;
  color: #999;
  margin: 0;
  text-align: center;
}
.trip-header-menu {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  top: var(--gta-header-h, 60px);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform .18s ease, opacity .18s ease;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;

  .content {
    width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: flex;

    div {
      height: 48px;
      line-height: 48px;
      padding: 0 24px;
      font-size: 16px;
      margin-bottom: -2px;
      cursor: pointer;
    }

    .active {
      color: var(--color-brand);
      border-bottom: 2px solid var(--color-brand);
    }

    div:hover {
      color: var(--color-brand);
      background: var(--brand-50);
      border-bottom: 2px solid var(--color-brand);
    }
  }
}

.trip-header-menu.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .trip-header-menu {
    top: var(--gta-header-h, 48px);

    .content {
      width: 100%;
      padding: 0 16px;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;

      &::-webkit-scrollbar {
        display: none;
      }

      div {
        height: 40px;
        line-height: 40px;
        padding: 0 12px;
        font-size: 14px;
        flex: 0 0 auto;
      }

      .active {
        color: var(--color-brand);
        border-bottom: 3px solid var(--color-brand);
      }

      div:hover {
        color: var(--color-brand);
        background: var(--brand-50);
        border-bottom: 3px solid var(--color-brand);
      }
    }
  }
}
.trip-tips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;

}

.trip-tips .left {
  flex: 1;
}

.trip-tips .score {
  font-size: 18px;
  font-weight: bold;
  color: #16a34a;
  margin-right: 12px;
}

.trip-tips .score-num {
  color: #212121;
  margin-right: 12px;
  cursor: pointer;
}

.trip-tips .part-num {
  color: #212121;
}

.trip-tips .tips-address {
  color: #212121;
  font-size: 14px;
}

.trip-tips .right {
  margin-left: 20px;
}

.favorite-btn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}



.favorite-btn.favorited {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #fff;
}



.favorite-btn i {
  margin-right: 8px;
}

/* 登录组件样式 */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.login-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .trip-tips .left>div:first-child {
    margin-bottom: 8px;
  }
}

.fullscreen-map{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: white;
  z-index: 3000;
}

.map-close-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.map-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .trip-mobile-bottombar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  }
  .trip-mobile-bottombar-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .trip-mobile-bottombar-total > * {
    margin-left: 12px;
  }
  .trip-mobile-bottombar-total > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 12px) {
    .trip-mobile-bottombar-total {
      gap: 12px;
    }
    .trip-mobile-bottombar-total > * {
      margin-left: 0;
    }
  }

  .trip-mobile-bottombar-price {
    cursor: pointer;
    flex: 1;
  }

  .trip-mobile-bottombar-amount {
    font-size: 20px;
    color: #212121;
    font-weight: 700;
    line-height: 1.32;
  }

  .trip-mobile-bottombar-tip {
    color: #757575;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
  }

  .trip-mobile-bottombar-actions {
    display: flex;
  }
  .trip-mobile-bottombar-actions > * {
    margin-left: 8px;
  }
  .trip-mobile-bottombar-actions > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 8px) {
    .trip-mobile-bottombar-actions {
      gap: 8px;
    }
    .trip-mobile-bottombar-actions > * {
      margin-left: 0;
    }
  }

  .trip-mobile-bottombar-actions button {
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 12px;
    height: unset;
    border-radius: 8px;
  }
}

.trip-combo-fab {
  display: none;
}

@media (max-width: 768px) {
  .trip-combo-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 16px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: var(--color-brand);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    z-index: 1001;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    transition: opacity .18s ease, transform .18s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .trip-combo-fab.is-hidden {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
  }

  .trip-combo-fab.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}


.not-found-page {
 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.not-found-content {
  text-align: center;
  max-width: 600px;
}

.not-found-image {
  margin-bottom: 32px;
}

.not-found-image-img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.not-found-image i {
  font-size: 250px;
}


.not-found-message {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 600;
  color: #e74c3c;
}

.not-found-description {
  margin-bottom: 32px;
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.not-found-countdown {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-brand);
}

.not-found-countdown span {
  display: inline-block;
  min-width: 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 4px;
}

.not-found-button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #3498db;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.not-found-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.not-found-button:active {
  transform: translateY(0);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .not-found-page {
    min-height: 50vh;
    padding: 30px 16px;
  }

  .not-found-image {
    margin-bottom: 24px;
  }

  .not-found-image-img {
    max-width: 180px;
  }

  .not-found-message {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .not-found-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .not-found-countdown {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .not-found-countdown span {
    font-size: 20px;
    min-width: 20px;
  }

  .not-found-button {
    padding: 10px 24px;
    font-size: 14px;
  }
}


.not-found-content {
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--toastify-color-error);
  line-height: 1;
  margin-bottom: 20px;
}

.not-found-message {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
}

.not-found-description {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 32px;
  line-height: 1.6;
}

.not-found-button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: var(--color-brand);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.not-found-button:hover {
  background-color: var(--brand-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.not-found-button:active {
  transform: translateY(0);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .not-found-page {
    min-height: 50vh;
    padding: 30px 16px;
  }

  .not-found-code {
    font-size: 80px;
    margin-bottom: 16px;
  }

  .not-found-message {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .not-found-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .not-found-button {
    padding: 10px 28px;
    font-size: 14px;
  }
}

/* 
  VideoPage 样式已拆分到各组件目录中，实现了模块化并避免了样式污染：
  - 竖屏短视频 (YouTube Shorts)：components/VerticalShorts/style.css
  - 横屏/普通视频：components/NormalVideo/style.css
  - 视频播放器：components/VideoPlayer/style.css
*/
.normal-video-page .gta-video-icon-button{
  width: auto;
}

.normal-video-page .gta-video-play-button--center{
  width: 96px;
}

.normal-video-page .gta-video-play-button--control{
  width: 36px;
}

.normal-video-page .gta-video-volume-slider input{
  padding: 0;
}

.normal-video-page .gta-video-progress{
  padding: 0;
}


.normal-video-page .gta-video-player{
  background: unset!important;
}
.normal-video-page .gta-hls-player{
  background: unset!important;
}
.normal-video-page .gta-landscape-player{
  background: unset!important;
}

.mobile-comment-drawer-content .comment-add{
  width: 100%;
}
.mobile-comment-drawer-content .gta-comment-list-container{
  width: 100%;
}

.portrait-mobile-video-page .gta-video-preview{
  background: black;
}

.video-main{
  position: relative;
}

.vertical-shorts-nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
  margin-bottom: 40px;
  z-index: 20;
}

.vertical-shorts-nav-btn {
  background: #f1f1f1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #030303;
}

.vertical-shorts-nav-btn:hover:not(:disabled) {
  background-color: var(--color-brand);
  transform: translateY(-2px);
}

.vertical-shorts-nav-btn:hover:not(:disabled) i {
  color: #fff;
}

.vertical-shorts-nav-btn:active:not(:disabled) {
  background-color: var(--color-brand);
}

.vertical-shorts-nav-btn:active:not(:disabled) i {
  color: #fff;
}

.vertical-shorts-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f5f5f5;
}

.vertical-shorts-nav-btn i {
  font-size: 20px;
  line-height: 1;
}

.vertical-shorts-progress {
  font-size: 14px;
  font-weight: 600;
  color: #606060;
  user-select: none;
  background: #f8f8f8;
  padding: 4px 12px;
  border-radius: 12px;
}

@media (max-width: 1200px) {
  .vertical-shorts-nav-buttons {
    margin-left: 16px;
  }
  
  .vertical-shorts-nav-btn {
    width: 40px;
    height: 40px;
  }
}

.gta-comment-list-container {
  padding: 24px 0;
  max-width: 100%;
}

.gta-comment-list-items {
  display: flex;
  flex-direction: column;
}
.gta-comment-list-items > * {
  margin-bottom: 24px;
}
.gta-comment-list-items > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 24px) {
  .gta-comment-list-items {
    gap: 24px;
  }
  .gta-comment-list-items > * {
    margin-bottom: 0;
  }
}

.gta-comment-item {
  padding: 0;
  position: relative;
}

.gta-comment-main{
  padding: 0;
  position: relative;
  display: flex;
}

.gta-comment-reply {
  padding-left: 0;
  display: flex;
}

/* 回复指示器样式 */
.gta-comment-reply-indicator {
  display: flex;
  flex-direction: column;
}

.gta-comment-reply-line-wrapper {
  flex: 1;
  position: relative;
  width: 30px;
}

/* 评论主体容器 */
.gta-comment-body {
  padding-left: 5px;
  flex: 1;
}

/* 头像区域包装器 */
.gta-comment-avatar-wrapper {
  display: flex;
  flex-direction: column;
}

.gta-comment-avatar-container {
  margin-bottom: 4px;
}

.gta-comment-avatar,
.user-avatar-placeholder {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-brand), var(--brand-400));

}

.gta-comment-avatar {
  object-fit: cover;
}

.gta-comment-content {
  flex: 1;
  min-width: 0;
  padding-left: 8px;
}

.gta-comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: 8px;
}
.gta-comment-header > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .gta-comment-header {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .gta-comment-header > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.gta-comment-username {
  font-weight: 600;
  font-size: 13px;
  color: #0f0f0f;
  cursor: pointer;
}

.gta-comment-username:hover {
  color: #065fd4;
}

.gta-comment-time {
  font-size: 12px;
  color: #606060;
}

.gta-comment-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 12px 0;
  color: #0f0f0f;
  word-wrap: break-word;
  font-family: "Roboto", Arial, sans-serif;
}

.gta-comment-mention {
  color: #065fd4;
  font-weight: 500;
}

.gta-comment-actions {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.gta-comment-action-btn {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  font-size: 12px;
  color: #606060;
  font-weight: 500;
  transition: background-color 0.2s;
  font-family: "Roboto", Arial, sans-serif;
}
.gta-comment-action-btn > * {
  margin-left: 6px;
}
.gta-comment-action-btn > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .gta-comment-action-btn {
    gap: 6px;
  }
  .gta-comment-action-btn > * {
    margin-left: 0;
  }
}

.gta-comment-action-btn:hover {
  background-color: #f2f2f2;
}

.gta-comment-action-btn.active .gta-comment-icon{
  color: rgb(255, 217, 25);
}

.gta-comment-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.gta-comment-like-count {
  font-size: 12px;
}

.gta-comment-reply-btn {
  margin-left: 8px;
  padding: 8px 16px;
  background-color: #f2f2f2;
  color: #0f0f0f;
}

.gta-comment-reply-btn:hover {
  background-color: #e5e5e5;
}

.gta-comment-replies {
  display: flex;
  flex-direction: column;
}

/* 收起按钮包装器 */
.gta-comment-collapse-wrapper {
  display: flex;
}

.gta-comment-collapse-line {
  display: flex;
  flex-direction: column;
  width: 30px;
  position: relative;
}

.gta-comment-collapse-btn {
  margin-bottom: 10px;
}

.gta-comment-list-empty {
  text-align: center;
  padding: 40px 0;
  color: #606060;
  font-size: 14px;
}

.gta-comment-line{
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.gta-comment-line>div{
  position: absolute;
  left: 50%;
  width: 20px;
  height: 100%;
  border-left: 1px solid #e5e5e5;
}
.gta-comment-item-line{
  flex: 1;
}

.comment-bottom-border{
  height: 16px;
  border-radius: 0 0 0 16px;
  border-bottom: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
}
.comment-item-line{
  border-left: 1px solid #e5e5e5;
  position: absolute;
  top: 0;
  height: 100%;
  left: 50%;
  width: 20px;
}

.gta-comment-collapse-btn .gta-btn--text{
  color: #525252;
}

.gta-comment-collapse-btn .gta-btn--text:hover{
  color: #525252;
  background: unset;
}

.comment-add .comment-view{
  display: flex;
  margin-top: 20px;
  cursor: pointer;
  align-items: flex-start;
}

.comment-add .comment-view .comment-img{
  margin-right: 10px;
  display: flex;
  border-radius: 50%;
}
.comment-add .comment-view .gta-text-view__character-count{
  display: none;
}
.comment-add .comment-input .gta-text-view__textarea{
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  border: unset;
  border-bottom: 1px solid #e5e5e5;

  padding: 0 12px;
}
.comment-add .comment-btn{
  text-align: right;
  margin-bottom: 20px;
}
.comment-add .comment-btn .gta-btn--text:hover{
  color: #333333;
  background: unset;
}
.comment-add .comment-btn .gta-btn--text{
  color: #333333;
}

.gta-comment-actions button{
  margin-right: 5px;
}
.gta-comment-actions .gta-btn--text{
  color: #333333;
}

.gta-comment-actions .gta-btn--text:hover{
  color: #333333;
  background: unset;
}

.gta-comment-actions .gta-btn--text.delete{
  color: #fd5656;
}

.gta-comment-content .delete{
  opacity: 0;
}
.gta-comment-content:hover .delete{
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .gta-comment-content .delete{
    opacity: 1;
  }
}

/* 加载更多动画 */
.gta-comment-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  color: #606060;
  font-size: 14px;
}
.gta-comment-loading > * {
  margin-left: 12px;
}
.gta-comment-loading > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .gta-comment-loading {
    gap: 12px;
  }
  .gta-comment-loading > * {
    margin-left: 0;
  }
}

.gta-comment-loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e5e5;
  border-top-color: #065fd4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 没有更多数据 */
.gta-comment-no-more {
  text-align: center;
  padding: 20px 0;
  color: #999;
  font-size: 13px;
}

/* 评论列表容器淡入动画 */
.gta-comment-list-container {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 评论项进入动画 */
.gta-comment-item:not(.gta-comment-skeleton) {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gta-text-view {
  width: 100%;
  position: relative;
}

.gta-text-view__textarea {
  width: calc(100% - 40px);
  min-width: 200px;
  min-height: 28px;
  height: 28px;
  padding: 8px 12px;
  font-size: 16px;
  line-height: 28px;
  border: 1px solid #d9d9d9;
  resize: none;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
  box-sizing: border-box;
  overflow-y: hidden;
  display: block;
}

.gta-text-view__character-count {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 12px;
  color: #bfbfbf;
  pointer-events: none;
}

.gta-text-view__textarea::placeholder {
  color: #bfbfbf;
}

/* 禁用状态 */
.gta-text-view__textarea:disabled {
  background-color: #f5f5f5;
  border-color: #d9d9d9;
  cursor: not-allowed;
  opacity: 0.6;
}

/* 骨架屏基础样式 */
.gta-comment-skeleton .skeleton-avatar,
.gta-comment-skeleton .skeleton-text {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.gta-comment-skeleton .skeleton-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.gta-comment-skeleton .skeleton-text {
  height: 14px;
  margin-bottom: 8px;
}

.gta-comment-skeleton .skeleton-username {
  width: 120px;
  height: 16px;
  border-radius: 4px;
}

.gta-comment-skeleton .skeleton-time {
  width: 80px;
  height: 12px;
  border-radius: 4px;
}

.gta-comment-skeleton .skeleton-line-1 {
  width: 100%;
  height: 14px;
}

.gta-comment-skeleton .skeleton-line-2 {
  width: 80%;
  height: 14px;
}

.gta-comment-skeleton .skeleton-action {
  width: 60px;
  height: 32px;
  border-radius: 16px;
  margin-right: 8px;
}

.gta-action-buttons {
  display: flex;
  z-index: 20;
}
.gta-action-buttons > * {
  margin-left: 15px;
}
.gta-action-buttons > *:first-child {
  margin-left: 0;
}
@supports (gap: 15px) {
  .gta-action-buttons {
    gap: 15px;
  }
  .gta-action-buttons > * {
    margin-left: 0;
  }
}

/* 竖向布局 */
.gta-action-buttons.layout-vertical {
  flex-direction: column;
  align-items: center;
}

/* 横向布局 */
.gta-action-buttons.layout-horizontal {
  flex-direction: row;
  align-items: center;
}

.gta-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.gta-action-item > * {
  margin-bottom: 6px;
}
.gta-action-item > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 6px) {
  .gta-action-item {
    gap: 6px;
  }
  .gta-action-item > * {
    margin-bottom: 0;
  }
}

/* 横向布局时，图标和文字可以并排，或者保持上下但整体横向排列。
   这里保持图标在上方，文字在下方，整体横向排列。
   如果需要图标和文字并排，可以取消下面注释 */
/*
.gta-action-buttons.layout-horizontal .gta-action-item {
  flex-direction: row;
  gap: 8px;
}
*/

.gta-icon-circle {
  width: 48px;
  height: 48px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gta-icon-circle.active {
  background-color: var(--color-brand);
}

.gta-icon-circle.active i {
  color: #fff;
}

.gta-icon-circle i {
  font-size: 22px;
  color: #030303;
  position: relative;
}

.mobile-video-container .gta-icon-circle>.gta-icon-home{
  font-size: 26px!important;
}

.gta-action-text {
  font-size: 12px;
  color: #606060;
  font-weight: 400;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .gta-icon-circle {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .gta-icon-circle i {
    color: #fff;
  }
  
  .gta-action-text {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
}
.gta-action-buttons .gta-icon-home{
  font-size: 29px;
}
.gta-action-buttons .gta-icon-dianzan{
  font-size: 26px;
}
.gta-action-buttons .gta-icon-diancai{
  font-size: 26px;
}
.gta-action-buttons .gta-icon-share{
  font-size: 24px;
}

/* VideoInfo 基础样式 */
.gta-about-jump-block{
  width: 100%;
  border-radius: 12px;
  padding: 14px 14px 10px;
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
 
}

.gta-about-title{
  display: block;
 
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
}

.gta-about-title:hover{
  color: var(--color-brand);
}

.gta-about-banner{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}


.gta-video-info-container {
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  
}

.gta-video-info-container.is-side {
 
 
  width: 300px;
  flex-shrink: 0;
  margin-right: 60px;
  animation: fadeInVideoInfo 0.3s ease;
}

.gta-video-info-container.is-overlay {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 60px; 
  z-index: 10;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.gta-video-info-author {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.gta-video-info-author > * {
  margin-left: 12px;
}
.gta-video-info-author > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .gta-video-info-author {
    gap: 12px;
  }
  .gta-video-info-author > * {
    margin-left: 0;
  }
}

.gta-video-info-author-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gta-video-info-time {
  font-size: 13px;
  color: #606060;
  margin-top: 2px;
}

.is-overlay .gta-video-info-time {
  color: rgba(255, 255, 255, 0.8);
}

.is-overlay .gta-video-info-author {
  margin-bottom: 12px;
  pointer-events: auto;
}

.gta-video-info-extra {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}
.gta-video-info-extra > * {
  margin-bottom: 16px;
}
.gta-video-info-extra > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 16px) {
  .gta-video-info-extra {
    gap: 16px;
  }
  .gta-video-info-extra > * {
    margin-bottom: 0;
  }
}


.gta-video-info-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.gta-video-info-meta > * {
  margin-left: 12px;
}
.gta-video-info-meta > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .gta-video-info-meta {
    gap: 12px;
  }
  .gta-video-info-meta > * {
    margin-left: 0;
  }
}

.gta-video-info-tags {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}
.gta-video-info-tags > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .gta-video-info-tags {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .gta-video-info-tags > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.gta-video-info-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 16px;
  font-size: 13px;
  color: var(--color-brand, #168247);
  font-weight: 500;
}

.gta-video-info-duration {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #666;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 16px;
}
.gta-video-info-duration > * {
  margin-left: 6px;
}
.gta-video-info-duration > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .gta-video-info-duration {
    gap: 6px;
  }
  .gta-video-info-duration > * {
    margin-left: 0;
  }
}

.gta-video-info-icon {
  font-style: normal;
  font-size: 14px;
}

.gta-video-info-summary {
  background: #f9f9f9;
  padding: 12px 16px;
  border-radius: 8px;
}

.gta-video-info-summary-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.gta-video-info-summary-content {
  font-size: 14px;
  line-height: 1.6;
  color: #212121;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: justify;
}

.gta-video-info-summary-content.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gta-video-info-summary-toggle {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-brand);
  cursor: pointer;
  user-select: none;
}

.gta-video-info-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #eee;
}

.info-avatar-placeholder {
  width: 48px;
  height: 48px;
  font-size: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.info-avatar-placeholder {
  background: linear-gradient(135deg, #6b5bff, var(--color-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
}

.is-overlay .gta-video-info-avatar {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
}

.gta-video-info-author-name {
  font-weight: 600;
  font-size: 18px;
  color: #030303;
}

.is-overlay .gta-video-info-author-name {
  font-size: 16px;
  color: #fff;
}

.gta-video-info-follow-btn {
  background-color: var(--color-brand);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.is-overlay .gta-video-info-follow-btn {
  background: #fff;
  color: #000;
  padding: 6px 16px;
  border-radius: 18px;
}

.gta-video-info-follow-btn:hover {
  opacity: 0.9;
}

.gta-video-info-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: #030303 !important;
  margin: 0;
}

.is-overlay .gta-video-info-title {
  font-size: 15px;
  font-weight: 400;
  color: #fff !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.layout-portrait {

}


.layout-landscape {
  position: static !important; 
  width: 100% !important;
  margin-top: 16px;
  right: auto !important;
  bottom: auto !important;
}

.layout-landscape.is-side {
  position: static;
  width: 100%;
  animation: none;
}

/* PC端横视频作者信息和收藏按钮水平布局 */
.gta-video-info-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* 内部作者信息容器 */
.gta-video-info-author-inner {
  display: flex;
  align-items: center;
}
.gta-video-info-author-inner > * {
  margin-left: 12px;
}
.gta-video-info-author-inner > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .gta-video-info-author-inner {
    gap: 12px;
  }
  .gta-video-info-author-inner > * {
    margin-left: 0;
  }
}

.gta-video-info-favorite {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.gta-video-info-favorite > * {
  margin-bottom: 6px;
}
.gta-video-info-favorite > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 6px) {
  .gta-video-info-favorite {
    gap: 6px;
  }
  .gta-video-info-favorite > * {
    margin-bottom: 0;
  }
}

.gta-video-info-favorite:hover {
  background-color: #f5f5f5;
}

.gta-video-info-favorite .gta-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}

 

.gta-video-info-favorite .gta-icon {
  font-size: 20px;
  color: #000;
}

.gta-video-info-favorite .gta-action-text {
  font-size: 12px;
  color: #606060;
}

/* PC端横视频作者信息和收藏按钮水平布局 - 重复样式已合并 */
.gta-video-info-favorite {
  background: unset;
}

.gta-video-info-favorite:hover {
  background-color: #f5f5f5;
}

.gta-video-info-favorite .gta-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
}

 

.gta-video-info-favorite .gta-icon {
  font-size: 20px;
  color: #000;
}

.gta-video-info-favorite .gta-action-text {
  font-size: 12px;
  color: #606060;
}

@keyframes fadeInVideoInfo {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 1200px) {
  .is-side {
    display: none; 
  }
}

@media (max-width: 768px) {
  .is-overlay {
    bottom: 40px; 
    right: 70px;
  }
}

.portrait-video-container {
  inset: 0;
  background-color: #fff;
  z-index: 100;
  overflow: hidden;
  position: fixed;
}
.portrait-video-container .container{
  height: 100%;
  position: relative;
}
.portrait-video-container .container .container-shorts-info.animate-out {
  opacity: 0;
}

.portrait-video-container .container .gta-vertical-shorts-actions-wrapper.animate-out {
  opacity: 0;
}

.portrait-video-container .container .container-shorts-info{
  position: absolute;
  bottom: 48px;
  left: 0;
  top: auto;
  opacity: 1;
  transition: opacity 0.5s ease,width 0.5s ease 0.1s;
  z-index: 100;
  overflow: hidden;
  width: 310px;
}

.portrait-video-container .gta-vertical-shorts-actions-wrapper {
  position: absolute;
  /*left: calc(50% + 255px);*/
  bottom: 48px;
  z-index: 1000;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease,transform 0.5s ease 0.1s;
}

.portrait-video-container .gta-vertical-shorts-comment-drawer{
  z-index: 1001;
  top: calc(61px + 24px);
  bottom: 48px;
  right: calc(24px + 60px);
  transition: width 0.5s ease;
}


.portrait-video-container .gta-portrait-default-overlay__icon-button{
  padding: 0;
}
.portrait-video-container .gta-portrait-player{
  box-shadow: unset;
}

.portrait-video-container .gta-video-preview{
  background: unset;
}

.portrait-video-container .gta-portrait-video-item__surface--placeholder{
  box-shadow: unset;
}

.portrait-video-container .gta-vertical-shorts-nav-wrap {
  position: absolute;
  right: 24px;
  top: calc(50% + 61px);
  transform: translateY(-50%);
  z-index: 200;
}

/*弹出评论样式*/
.portrait-video-container.comments-open .gta-vertical-shorts-nav-wrap {
  right: 24px;
}
.portrait-video-container.comments-open .gta-portrait-video-item__surface{
  transform: translateX(-300px);
}
.portrait-video-container.comments-open .container-shorts-info {
  opacity: 0;
  width: 0;
}
.portrait-video-container.comments-open .gta-vertical-shorts-actions-wrapper {
  transform: translateX(-300px);
}

/*视频区域样式*/
.portrait-video-container .portrait-video-main{
  position: absolute;
  left: 0;
  width: 100vw;
}
.portrait-video-container .gta-portrait-video{
  height: 100%;
  width: 100%;
  background: white;
}
.portrait-video-container .gta-portrait-video-item{
  align-items: flex-start;
  /*padding: 0;*/
}
.portrait-video-container .gta-portrait-video-item__surface{
  width: auto;
  height: calc(100% - 28px);
  transform: translateX(0);
  transition: transform 0.5s ease 0.1s;
}
.portrait-video-container .gta-portrait-player{
  /*background: black;*/
}

.portrait-video-container .gta-drawer-body{
  padding: 0 12px;
}


/*全屏效果*/
.portrait-video-container.fullscreen{
  z-index: 2222;
}
.portrait-video-container.fullscreen .portrait-video-main{
  top: 0 !important;
  height: 100vh !important;
  position: fixed;
  z-index: 2223;
}
.portrait-video-container.fullscreen .gta-vertical-shorts-actions-wrapper{
  z-index: 2224;
  left: calc(50% + 305px);
}
.portrait-video-container.fullscreen .container-shorts-info{
  z-index: 2224;
  left: -80px;
}
.portrait-video-container.fullscreen .gta-vertical-shorts-nav-wrap{
  z-index: 2224;
  right: -80px;
}
.portrait-video-container.fullscreen .gta-vertical-shorts-comment-drawer{
  z-index: 2224;
  right: 0;
}
.portrait-video-container.fullscreen .gta-portrait-video-item{
  margin-bottom: -24px;
}

.gta-drawer {
  position: absolute;
  top: 70px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  z-index: 150;
  border-radius: 12px;
  overflow: hidden;
}

.gta-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gta-drawer-title {
  font-size: 18px;
  font-weight: 600;
  color: #030303;
}

.gta-drawer-close-wrapper {
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  background-color: transparent;
}

.gta-drawer-close-wrapper:hover {
  background-color: var(--color-brand);
}

.gta-drawer-close-wrapper:active {
  background-color: var(--color-brand);
}

.gta-drawer-header i.close {
  font-size: 20px;
  color: #606060;
  transition: color 0.2s;
}

.gta-drawer-close-wrapper:hover i.close,
.gta-drawer-close-wrapper:active i.close {
  color: #fff;
}

.gta-drawer-body {
  flex: 1;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .gta-drawer {
    width: 100% !important;
    height: 100% !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    border-radius: 0;
    z-index: 200;
  }
}

.btm-popup-stack {
  position: absolute;
  z-index: 1900;
  pointer-events: none;
  max-width: calc(100vw - 32px);
  width: 0;
  height: 0;
}

.btm-popup-stack--left {
  left: 0;
}

.btm-popup-stack--center {
  left: 50%;
  bottom: 0;
}

.btm-popup-inner--article{
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  min-width: 0;
  max-width: none;
  width: auto;
}

.btm-popup-stack--center .btm-popup.open,
.btm-popup-stack--center .btm-popup-inner--scenic,
.btm-popup-stack--center .btm-popup-inner--article,
.btm-popup-stack--center .btm-popup-inner--trip {
  width: unset;
  overflow: hidden;
}

.btm-popup-inner--default {
  width: 412px;
  overflow: hidden;
}


.btm-popup {
  position: relative;
  display: inline-block;
  vertical-align: top;
  pointer-events: auto;
  opacity: 0;
  left: 0;
  transform: translateY(-100%);
  transition:
    left 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    width 220ms ease,
    height 220ms ease;
  will-change: transform, opacity;
}


.btm-popup.open {
  opacity: 1;
  left: 30px;
}

.open.btm-popup--csr {
  width: 330px;
}

.btm-popup-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  max-width: calc(100vw - 140px);
  box-sizing: border-box;
}
.btm-popup-inner > * {
  margin-left: 14px;
}
.btm-popup-inner > *:first-child {
  margin-left: 0;
}
@supports (gap: 14px) {
  .btm-popup-inner {
    gap: 14px;
  }
  .btm-popup-inner > * {
    margin-left: 0;
  }
}

.btm-popup-inner.clickable {
  cursor: pointer;
}

.btm-popup-inner--csr {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  min-width: 0;
  max-width: none;
}



.btm-popup-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}
.btm-popup-name > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .btm-popup-name {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .btm-popup-name > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}


.btm-popup-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(22, 130, 71, 0.12);
  color: #168247;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}


.btm-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: #374151;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.btm-popup-close:hover {
  transform: scale(1.05);
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.btm-popup-close:focus-visible {
  outline: 2px solid rgba(22, 130, 71, 0.3);
  outline-offset: 2px;
}


.csr-card {
  max-width: calc(100vw - 32px);
}

.btm-popup-stack--mobile .btm-popup {
  --btm-popup-y-offset: 0;
  max-width: calc(100vw - 32px);
}

.btm-popup-stack--mobile .btm-popup-inner {
  min-width: 0;
  max-width: calc(100vw - 32px);
}

.btm-popup-stack--center .open.btm-popup{
  width: auto;
  left: 10px;
  bottom: 10px;
}

.df-template-popup {
  width: 100%;
  box-sizing: border-box;
}
.df-template-popup .btm-popup-close{
  right: 5px;
  top: 5px;
}

.df-template-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.df-template-cover-wrap {
  position: relative;
  padding: 0;
}

.df-template-cover {
  position: relative;
  width: 174px;
  height: 130px;
  overflow: hidden;
}

.df-template-body {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 0 8px;
  overflow: hidden;
  box-sizing: border-box;
  background: radial-gradient(circle at 100% 0%, rgba(34, 164, 93, 0.08) 0%, transparent 50%),
  radial-gradient(circle at 0% 100%, rgba(34, 164, 93, 0.12) 0%, transparent 50%),
  repeating-linear-gradient(45deg,
    rgba(34, 164, 93, 0.02) 0px,
    rgba(34, 164, 93, 0.02) 2px,
    transparent 2px,
    transparent 8px);
}

.df-template-title {
  min-width: 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 12px;
}

.df-template-title-text {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 2px solid var(--color-brand);
  position: relative;
}

.df-template-title-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-brand) 82%, #000);
}

.df-template-summary {
  margin-top: 6px;
  color: #666;
  font-size: 13px;
  line-height: 1.45;
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.df-template-btn {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
  text-align: right;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 32%, rgba(255, 255, 255, 1) 100%);
}

.df-template-btn-text {
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: #212121;
  font-size: 14px;
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
}

.df-template-btn-text:hover {
  background: unset;
  border-color: unset;
  color: #212121;
}

.tr-template-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  display: flex;
  flex-direction: row;
  height: 100%;
}

.tr-template-media {
  position: relative;
  width: 200px;
  height: 165px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f4f6f8;
}

.tr-template-body {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 12px 12px 14px;
  position: relative;
}

.tr-template-title {
  display: block;
  min-height: 20px;
  color: #111;
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 210px;
}

.tr-template-sub-wrapper {
  min-height: 40px;
  margin-bottom: 2px;
}

.tr-template-sub-website {
  font-size: 12px;
  line-height: 1.5;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 36px;
}

.tr-template-sub-placeholder {
  height: 36px;
  background: transparent;
}

.tr-template-rating {
  display: flex;
  align-items: center;
  min-height: 16px;
  margin: 2px 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
  font-size: 12px;
  line-height: 1;
}

.tr-template-star {
  position: relative;
  bottom: 1.5px;
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
}

.tr-template-score {
  color: #333;
  font-weight: 700;
}

.tr-template-rating-muted {
  color: #666;
}

.tr-template-rating-dot {
  color: #666;
}

.tr-template-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-top: auto;
}

.tr-template-price-text {
  display: inline-flex;
  align-items: baseline;
  color: #222;
  border-bottom: 1px solid var(--color-brand);
}

.tr-template-price-sym {
  color: #222;
  font-size: 14px;
  font-weight: 700;
}

.tr-template-price-val {
  color: #222;
  font-size: 16px;
  font-weight: 800;
}

.tr-template-price-from {
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.tr-template-price-inquiry {
  color: #333;
  font-size: 14px;
  font-weight: var(--fw-medium);
}

.ar-template-card {
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  overflow: hidden;
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.88) inset;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ar-template-cover-wrap {
  position: relative;
  background: linear-gradient(180deg, #edf2f7 0%, #dfe7ee 100%);
}

.ar-template-cover {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 169px;
}

.ar-template-body {
  padding: 10px 12px 12px;
}

.ar-template-meta {
  display: flex;
  align-items: flex-end;
  min-width: 0;
  margin-top: -23px;
  position: relative;
  z-index: 1;
}

.ar-template-avatar {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.ar-template-avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ar-template-name {
  min-width: 0;
  color: #1f2937;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: 6px;
}

.ar-template-summary {
  width: 276px;
  margin-top: 8px;
  color: #0f0f0f;
  font-size: 13px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-template-card {
  position: relative;
  height: 180px;
  width: 320px;
  box-sizing: border-box;
  overflow: visible;
}

.sc-template-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.sc-template-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #f4f6f8;
}

.sc-template-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.sc-template-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 12px 10px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 32%, rgba(0, 0, 0, 1) 100%);
}

.sc-template-copy {
  min-width: 0;
  flex: 1;
}

.sc-template-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-template-summary {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-template-action {
  flex: 0 0 auto;
  padding-top: 16px;
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
  white-space: nowrap;
  user-select: none;
}

.csr-card {
  width: 340px;
  max-width: calc(100vw - 32px);
  height: auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(22, 130, 71, 0.16);
}

@media (max-height: 800px) {
  .csr-card {
    width: unset;
  }
}

.csr-card.card-item {
  background: #fff;
}

.csr-card .csr-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  padding: 14px;
}

.csr-card .csr-main-flex {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.csr-card .csr-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.csr-card .csr-avatar-wrap {
  flex: 0 0 auto;
  width: 84px;
  height: 105px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #e9f4ef 0%, #f5faf7 100%);
  border: 1px solid rgba(22, 130, 71, 0.12);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.csr-card .csr-avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.csr-card .csr-info {
  flex: 1;
  min-width: 0;
  padding-top: 8px;
  margin-left: 8px;
}

.csr-card .csr-name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 10px;
  min-width: 0;
}

.csr-card .csr-name-zh {
  color: #1f2937;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.csr-card .csr-name-en {
  color: #8b94a7;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.csr-card .csr-title {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(22, 130, 71, 0.2);
  background: rgba(22, 130, 71, 0.09);
  color: #2c9b57;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.csr-card .csr-subtitle {
  margin-top: 10px;
  color: #97a0b2;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.csr-card .csr-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  min-width: 0;
}

.csr-card .csr-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px 9px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  border: 1px solid rgba(22, 130, 71, 0.16);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  box-sizing: border-box;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.csr-card .csr-contact-item:hover {
  border-color: rgba(22, 130, 71, 0.26);
  box-shadow:
    0 8px 18px rgba(22, 130, 71, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.csr-card .csr-contact-left {
  min-width: 0;
  flex: 1;
}

.csr-card .csr-contact-label {
  margin-bottom: 3px;
  color: #2f9a58;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}

.csr-card .csr-contact-value {
  min-width: 0;
  color: #1f2937;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.csr-card .csr-contact-right {
  flex: 0 0 auto;
}

.csr-card .csr-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a9a53 0%, #2cc85d 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(22, 130, 71, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.csr-card .csr-action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(22, 130, 71, 0.28);
  filter: saturate(1.02);
}

.csr-card .csr-action-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 14px rgba(22, 130, 71, 0.18);
}

.csr-card .csr-action-btn:focus-visible {
  outline: 2px solid rgba(22, 130, 71, 0.28);
  outline-offset: 2px;
}

.csr-card .csr-action-btn--ghost {
  background: #fff;
  color: #178648;
  border: 1.5px solid rgba(22, 130, 71, 0.34);
  box-shadow: none;
}

.csr-card .csr-action-btn--ghost:hover {
  background: rgba(22, 130, 71, 0.05);
  box-shadow: 0 6px 14px rgba(22, 130, 71, 0.12);
}

.mobile-comment-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  height: 100vh;
  height: 100dvh;
}

.mobile-comment-drawer {
  width: 100%;
  background-color: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease;
}

.mobile-comment-drawer-header {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-comment-drawer-header > * {
  margin-bottom: 8px;
}
.mobile-comment-drawer-header > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 8px) {
  .mobile-comment-drawer-header {
    gap: 8px;
  }
  .mobile-comment-drawer-header > * {
    margin-bottom: 0;
  }
}

.mobile-comment-drawer-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
}

.mobile-comment-drawer-handle {
  width: 40px;
  height: 4px;
  background-color: #d1d5db;
  border-radius: 2px;
  margin-top: 4px;
}

.mobile-comment-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

/* 滚动条样式 */
.mobile-comment-drawer-content::-webkit-scrollbar {
  width: 4px;
}

.mobile-comment-drawer-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.mobile-comment-drawer-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 2px;
}

.mobile-comment-drawer-content::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 动画 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.btm-popup-mobile-shell {
  width: 100%;
  box-sizing: border-box;
}

.btm-popup-mobile-shell .btm-popup-inner {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.btm-popup-mobile-shell .ar-template-card {
  width: 100%;
  max-width: 100%;
}

.btm-popup-mobile-shell .csr-card {
  width: 100%;
  max-width: 100%;
}

.btm-popup-mobile-shell .sc-template-card {
  width: 100%;
  max-width: 100%;
}

.btm-popup-mobile-shell .df-template-card {
  width: 100%;
  max-width: 100%;
}

.btm-popup-mobile-shell .tr-template-card {
  width: 100%;
  max-width: 100%;
}

.btm-popup-mobile-shell .btm-popup-cover {
  width: 112px;
  height: 86px;
}

.btm-popup-mobile-shell .btm-popup-name-text {
  font-size: 16px;
}

.btm-popup-mobile-shell .btm-popup-title {
  font-size: 13px;
}

.btm-popup-mobile-drawer .mobile-comment-drawer-content{
  padding: 0;
}
.btm-popup-mobile-drawer .csr-card {
  border-radius: 0;
}
.btm-popup-mobile-drawer .btm-popup-inner--scenic {
  height: auto;
}
.btm-popup-mobile-drawer .btm-popup-close{
  display: none;
}

.btm-popup-mobile-drawer .btm-popup-inner{
  border: unset;
  border-radius: unset;
  box-shadow: unset;
}
.btm-popup-mobile-drawer .mobile-comment-drawer-content{
  background: white;
}


.btm-popup-mobile-shell .tr-template-card{
  display: block;
}

.btm-popup-mobile-shell .tr-template-media{
  height: unset;
  width: unset;
  background:unset;
  margin: 10px 12px;
}

.btm-popup-mobile-shell .tr-template-card{
  border-radius: unset;
}

.btm-popup-mobile-shell .tr-template-title{
  width: auto;
  margin-bottom: 4px;
}
.btm-popup-mobile-shell .tr-template-rating{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 0 8px;
}

.btm-popup-mobile-shell .tr-template-title{
  font-size: 15px;
}

.btm-popup-mobile-shell .tr-template-sub-website{
  font-size: 13px;
  color: #666;
}


.mtr-template-container{
  width: 100%;
  margin:auto;
  background:#fff;
}

/* ======================
   顶部图库
====================== */

.mtr-template-gallery{
  padding:12px;
}
.mtr-template-gallery .three-mode{
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.8fr 1fr;
}

.mtr-template-gallery .three-mode.image-album .image:first-child {
  grid-column: 1 / 3;
}
.mtr-template-gallery .image-album,.mtr-template-gallery  .three-mode.image-album{
  height: 300px!important;
}

/* ======================
   产品信息
====================== */

.mtr-template-product{
  padding:16px;
  border-bottom:8px solid #f5f5f5;
}

.mtr-template-title{
  font-size:18px;
  font-weight:600;
  line-height:1.4;
  color:#2c2c2c;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mtr-template-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
}
.mtr-template-row .mtr-template-price{
  margin-top: 12px;
}
.btn-row{
  margin-top: -12px;
}

.tr-template-price-sym, .tr-template-price-val{
  color:#ff5a00;
  font-size:32px;
  font-weight: 500;
  margin-left: 4px;
}
.mtr-template-price{
  color:#ff5a00;
  font-size:32px;
  line-height: 1;
}
.mtr-template-price .tr-template-price-from{
  color:#ff5a00;
  font-size:16px;
  margin-left: 4px;
}

.mtr-template-score{
  font-size:14px;
  color:#888;
}

.mtr-template-highlights{
  margin-top:8px;
  color:#666;
  font-size:14px;
  line-height:1.6;
  padding: 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mtr-template-highlights span{
  padding: 4px 6px;
  border-radius: 4px;
  color: var(--color-brand);
  background: #f4fff7;
  margin-right: 4px;
}


/* ======================
   行程
====================== */

.mtr-template-itinerary{
  background: #f5f5f5;
}


.tr-line-detail {
  background: #f5f5f5;
}

.tr-line-items {
  font-size: 12px;
  border-left: 1px dashed #ccc;
  padding: 0 15px 20px;
  position: relative;
  word-break: break-all;
}

.tr-line-items:last-child {
  padding-bottom: 0;
}

.tr-line-address .tr-line-address-text {
  line-height: 22px;
}

.tr-line-address .tr-line-arrow {
  margin: 0 8px;
}

.tr-line-address .tr-line-from i,
.tr-line-address .tr-line-to i {
  display: none;
  margin-right: 4px;
}

.tr-line-address .tr-line-from.tr-line-has-gps,
.tr-line-address .tr-line-to.tr-line-has-gps {
  cursor: pointer;
}

.tr-line-address .tr-line-from.tr-line-has-gps i,
.tr-line-address .tr-line-to.tr-line-has-gps i {
  display: inline-block;
}

.tr-line-dining {
  margin-top: 12px;
}

.tr-line-stay {
  margin: 12px 0;
}

.tr-line-item-icon {
  background-color: rgba(26, 97, 4, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  height: 20px;
  left: -10px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 20px;
}

.gta-icon.tr-line-item-icon {
  background: #333;
}

.tr-line-dining-text > span {
  margin-right: 8px;
}

.tr-line-detail .image-album,.tr-line-detail .three-mode.image-album {
  height: 40vw !important;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.tr-line-detail .three-mode.image-album .image:first-child {
  grid-row: 1 / 3;
}

.gta-icon-eat.tr-line-item-icon{
  font-size: 18px;
}
.gta-icon-hotel.tr-line-item-icon{
  font-size: 18px;
}

.tr-line-detail .day{
  position:relative;
  padding-left:28px;
  padding-bottom:32px;
}

.tr-line-detail .day:last-child{
  padding-bottom:0;
}

.tr-line-detail .day-dot{
  position:absolute;
  left:0;
  top:4px;

  width:16px;
  height:16px;

  border-radius:50%;
  background:#22c55e;
  z-index: 1;
}
.tr-line-detail .day-dot-line{
  position:absolute;
  left:7px;
  top:5px;
  height: 100%;
  border-left: 1px dashed lightslategray;
}

.tr-line-detail .day-header{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content: space-between;
}

.tr-line-detail .day-title{
  font-size:18px;
  font-weight:700;
  color:#1f2937;
}

.tr-line-detail .day-city{
  color:black;
  font-size:14px;
}

.tr-line-detail .day-route{
  margin-top:8px;

  color:#555;
  font-size:15px;
  line-height:1.6;
}

/* ======================
   Day图片
====================== */

.tr-line-detail .day-gallery{

  margin-top:12px;

  display:grid;
  grid-template-columns:2fr 1fr;
  gap:4px;

  height:140px;
}

.tr-line-detail .day-main{
  overflow:hidden;
  border-radius:10px;
}

.tr-line-detail .day-main img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.tr-line-detail .day-side{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.tr-line-detail .day-side img{
  width:100%;
  flex:1;
  object-fit:cover;
  border-radius:10px;
}

/* ======================
   酒店信息
====================== */

.tr-line-detail .day-footer{

  margin-top:10px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  font-size:13px;
  color:#999;
}

.tr-line-detail .hotel{
  color:black;
}

.tr-line-detail .meal{
  color:black;
}
.tr-line-detail .header-row{
  margin-top: 12px;
}
.tr-line-detail .header-row>p{
  margin-left: -14px;
  display: inline-block;
}
.tr-line-detail .header-row .item-icon{
  position: relative;
  left: -27px;
}
.tr-line-detail .image-album{
  margin-top: 12px;
}
.tr-line-detail .row-icon{
  margin-right: 8px;
  font-size: 22px;
  vertical-align: middle;
}

.tr-line-detail .row-icon .gta-icon-checkbox-checked{
  color: var(--color-brand);
}

.tr-line-detail .item-icon{
  color: #7d7575;
}

.tr-line-detail .tr-line-row{
  background: white;
  margin-bottom: 8px;
  padding: 18px 16px;
}

.arm-template-card {
  background: #fff;
}

.arm-template-main {
  overflow: hidden;
  word-break: break-all;
  margin: 8px 16px;
  height: 540px;
  position: relative;
}
.arm-template-card::after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255,255,255, 1) 39%, rgba(0, 0, 0, 0) 100%);
  z-index: 10;
}

.arm-template-header {
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-border, #e5e6eb);
  position: relative;
}

.arm-template-title {
  margin: 0;
  color: var(--color-text-strong);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.arm-template-header-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 8px;
}

.arm-template-author {
  display: flex;
  margin-bottom: unset;
  font-style: unset;
  line-height: unset;
}

.arm-template-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 4px;
  flex-shrink: 0;
}

.arm-template-author-nickname {
  font-weight: 600;
  color: #1f2329;
  line-height: 1.8;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--fz-sm);
}

.arm-template-author-time {
  font-size: 12px;
  color: #212121;
  line-height: 1.8;
}

.arm-template-metabar-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-top: auto;
  --ar-icon-size: 32px;
}

.arm-template-metabar-share-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-surface, #fff);
}

.arm-template-metabar-share-btn:hover {
  background: var(--color-surface-2, #f7f8fa);
}

.arm-template-metabar-share-btn:active {
  transform: scale(.97);
}

.arm-template-icon {
  --icon-url: none;
  display: inline-block;
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
  color: inherit;
  background-color: currentColor;
  -webkit-mask-image: var(--icon-url);
  mask-image: var(--icon-url);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
}

.arm-template-icon[data-size="custom"] {
  width: var(--ar-icon-size);
  height: var(--ar-icon-size);
}

.arm-template-icon--color {
  color: initial;
  background-color: transparent;
  -webkit-mask-image: none;
  mask-image: none;
  background-image: var(--icon-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.arm-template-content {
  margin-top: 8px;
  font-size: 1em;
  line-height: 1.8;
}

.arm-template-summary {
  padding-block: 14px;
  padding-inline: 8px 24px;
  font-size: var(--fz-sm);
  line-height: 1.65;
  color: #3b4048;
  background: #fcf6f2;
  border: 1px solid rgba(31, 35, 41, .08);
  border-radius: 8px;
  text-align: justify;
  text-justify: inter-ideograph;
  white-space: pre-line;
}

.arm-template-content-html {
  margin-top: 22px;
  width: 100%;
}

.arm-template-content-html p {
  min-height: 16px;
}

.arm-template-content-html .rich-trip--card {
  margin: 10px 0;
  padding: 16px;
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  align-items: stretch;
  position: relative;
}

@supports (gap: 16px) {
  .arm-template-content-html .rich-trip--card {
    gap: 16px;
  }
  .arm-template-content-html .rich-trip--card > * {
    margin-left: 0;
  }
}

.arm-template-content-html .rich-trip--overlay-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  text-decoration: none;
  border-radius: 14px;
}

.arm-template-content-html .rich-trip--thumb,
.arm-template-content-html .rich-trip--body {
  position: relative;
  z-index: 2;
}

.arm-template-content-html .rich-trip--thumb {
  width: 164px;
  height: 164px;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 10px;
}

.arm-template-content-html .rich-trip--thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.arm-template-content-html .rich-trip--body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@supports (gap: 10px) {
  .arm-template-content-html .rich-trip--body {
    gap: 10px;
  }
  .arm-template-content-html .rich-trip--body > * {
    margin-bottom: 0;
  }
}

.arm-template-content-html .rich-trip--title {
  margin: 0;
  font-size: 1em;
  line-height: 1.3;
  font-weight: 600;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arm-template-content-html .rich-trip--footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@supports (gap: 12px) {
  .arm-template-content-html .rich-trip--footer {
    gap: 12px;
  }
  .arm-template-content-html .rich-trip--footer > * {
    margin-left: 0;
  }
}

.arm-template-content-html .rich-trip--price {
  margin: 0;
  font-size: 1em;
  font-weight: 700;
  color: #111827;
}

.arm-template-content-html .rich-trip--actions {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.arm-template-content-html .rich-video--card {
  margin: 10px 0;
  padding: 16px;
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  align-items: stretch;
  position: relative;
  text-decoration: none;
  color: inherit;
}

@supports (gap: 16px) {
  .arm-template-content-html .rich-video--card {
    gap: 16px;
  }
  .arm-template-content-html .rich-video--card > * {
    margin-left: 0;
  }
}

.arm-template-content-html .rich-video--card:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.arm-template-content-html .rich-video--thumb,
.arm-template-content-html .rich-video--body {
  position: relative;
  z-index: 2;
}

.arm-template-content-html .rich-video--thumb {
  width: 164px;
  height: 164px;
  overflow: hidden;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #f3f4f6;
}

.arm-template-content-html .rich-video--thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.arm-template-content-html .rich-video--play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.arm-template-content-html .rich-video--play-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  position: relative;
}

.arm-template-content-html .rich-video--play-icon::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 0;
  height: 0;
  border-left: 16px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.95;
}

.arm-template-content-html .rich-video--body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.arm-template-content-html .rich-video--body {
  gap: 10px;
}

.arm-template-content-html .rich-video--title {
  margin: 0;
  font-size: 1em;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arm-template-content-html .rich-video--summary {
  margin: 0;
  font-size: 0.75em;
  line-height: 1.5;
  color: #6b7280;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.arm-template-content-html .rich-video--tags {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}

.arm-template-content-html .rich-video--tags {
  gap: 8px;
  margin-right: 0;
  margin-bottom: 0;
}

.arm-template-content-html .rich-video--tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 5px;
  border-radius: 5px;
  font-size: 0.75em;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  user-select: none;
}

.arm-template-content-html .rich-video--footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.arm-template-content-html .rich-video--actions {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

.arm-template-content-html .rich-image--figure {
  position: relative;
  z-index: 2;
}

.arm-template-content-html .rich-image--figure img {
  width: 100%;
}

.arm-template-content-html .rich-image--caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 12px;
  padding-top: calc(8px + var(--cap-grad));
  margin: 0;
  color: #fff;
  font-size: 0.875em;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.arm-template-content-html .rich-image--caption::before {
  content: "";
  position: absolute;
  inset: calc(-1 * var(--cap-grad)) 0 0 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .28), rgba(0, 0, 0, .12) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

.arm-template-btn{
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 11;
  text-align: center;
}
.arm-template-btn .gta-btn--text{
  color: black;
  font-size: 16px;
  padding: 0;
  line-height: unset;
  border-radius: unset;
  border-bottom: 1px solid black;
  height: auto;
}
.arm-template-btn .gta-btn--text:hover{
  color: black;
  background: black;
  border: unset;
}

.mobile-sc-template-card{
  background: #f5f6f8;
}
.mobile-sc-template-card .mobile-sc-template-title{
  font-size: 32px;
  font-weight: 800;
  color: white;
  padding-left: 10px;
}
.mobile-sc-template-card .mobile-sc-template-summary{
  font-size: 15px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.8;
}
.mobile-sc-template-card .mobile-sc-template-cover{
  height: 38vw;
  position: relative;
}
.mobile-sc-template-card .mobile-sc-template-cover img {
  object-fit: cover;
}
.img-template-title{
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.mobile-sc-template-card .template-card-business{
  margin-top: 12px;
}
.mobile-sc-template-card .template-business-title{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-sc-template-card .template-business-title .open .gta-icon-chev{
  transform: rotate(-180deg);
}
.mobile-sc-template-card .title-text{
  font-size: 18px;
  font-weight: 600;
}
.mobile-sc-template-card .gta-icon-chev{
  font-size: 30px;
}

.mobile-sc-template-card .template-card-row{
  margin: auto;
  width: calc(100% - 10px);
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  padding: 24px;
  background: white;
}

.mobile-sc-template-card .w-100{
  width: 100%;
  padding: 12px 8px;
}

.mobile-sc-template-card .template-business-status{
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #0f7a3a;
  margin-bottom: 12px;
}
.mobile-sc-template-card .template-business-hours--hours{
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  line-height: 2;
}
.mobile-sc-template-card .content-header--summary-list-website{
  line-height: 30px;
  padding: 0;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}
.mobile-sc-template-card .content-header--summary-title{
  margin-top: 6px;
  margin-bottom: 0;
  left: unset;
}
.mobile-sc-template-card .content-header--summary-title strong{
  font-size: 16px;
  font-weight: 800;
  margin-top: 8px;
}

.mobile-sc-template-card .content-header--summary-list-website::after{
  content: "...查看更多";
  position: absolute;
  width: 75px;
  height: 30px;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 1;
  color: var(--color-brand);
  text-align: right;
}

.btm-popup-mobile-shell .df-template-cover{
  width: auto;
  height: auto;
}
.btm-popup-mobile-shell .df-template-card{
  display: block;
  border-radius: unset;
}
.btm-popup-mobile-shell .df-template-body{
  background: unset;
  padding: 0;
}
.btm-popup-mobile-shell .df-template-btn{
  text-align: center;
}

.btm-popup-mobile-shell .df-template-name{
  font-size: 18px;
  color: #111;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 12px;
  padding: 0 8px;
}

.btm-popup-mobile-shell .df-template-name-text {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 2px solid var(--color-brand);
  position: relative;
}

.btm-popup-mobile-shell .df-template-name-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-brand) 82%, #000);
}

.btm-popup-mobile-shell .df-template-title{
  font-weight: 300;
  padding: 0 8px;
}

.btm-popup-mobile-shell .df-template-summary{
  padding: 0 8px;
}

.btm-popup-mobile-shell .df-template-btn::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -35px;
  width: calc(100% + 16px);
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.75) 100%);
  height: 35px;
}


.btm-popup-mobile-shell .prt-card-track-website {
  width: 100%;
  min-height: 130px;
  --card-track-item-h: auto;
}

.btm-popup-mobile-shell .prt-city-track{
  padding-bottom: 40px;
}
.btm-popup-mobile-shell .prt-card-grid-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.btm-popup-mobile-shell .prt-card-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: var(--card-track-item-h);
}

.btm-popup-mobile-shell .prt-card-wrap {
  position: relative;
  max-width: 48%;
  margin-bottom: 12px;
}

.btm-popup-mobile-shell .prt-trip-card {
  border-radius: 14px;
  height: 100%;
  border: 1px solid #eef2f7;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.btm-popup-mobile-shell .prt-trip-media {
  position: relative;
  overflow: hidden;
  background: #f4f6f8;
  width: 100%;
  flex-shrink: 0;
}
.btm-popup-mobile-shell .prt-trip-media img{
  height: 37vw;
}

.btm-popup-mobile-shell .prt-trip-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.btm-popup-mobile-shell .prt-trip-title {
  font-size: var(--fz-md);
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  min-height: 20px;
  margin-bottom: 8px;
}

.btm-popup-mobile-shell .prt-trip-sub-wrapper {
  min-height: 40px;
  margin-bottom: 2px;
}

.btm-popup-mobile-shell .prt-trip-sub-website {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 36px;
}

.btm-popup-mobile-shell .prt-trip-rating {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 16px;
  margin: 2px 0;
}

.btm-popup-mobile-shell .prt-trip-rating>span{
  margin-right: 4px;
}

.btm-popup-mobile-shell .prt-trip-star {
  color: #f59e0b;
  font-size: 13px;
  line-height: 1;
  position: relative;
  bottom: 1.5px;
}

.btm-popup-mobile-shell .prt-trip-score {
  font-weight: 700;
  color: #333;
}

.btm-popup-mobile-shell .prt-trip-rating-muted {
  color: #666;
}

.btm-popup-mobile-shell .prt-trip-rating-dot {
  color: #666;
}

.btm-popup-mobile-shell .prt-trip-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-top: auto;
}

.btm-popup-mobile-shell .prt-trip-price-text {
  display: inline-flex;
  align-items: baseline;
  color: #222;
}

.btm-popup-mobile-shell .prt-trip-price-text span{
  margin-right: 4px;
}

.btm-popup-mobile-shell .prt-trip-price-sym {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.btm-popup-mobile-shell .prt-trip-price-val {
  font-size: 16px;
  font-weight: 800;
  color: #222;
}

.btm-popup-mobile-shell .prt-trip-price-from {
  font-size: 12px;
  font-weight: 700;
  color: #666;
}

.btm-popup-mobile-shell .prt-trip-price-inquiry {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: #333;
}

.btm-popup-mobile-shell .prt-website-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

.btm-popup-mobile-shell .prt-website-favorite i {
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

.btm-popup-mobile-shell .prt-city-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 12px;
  min-height: 52px;
}

.btm-popup-mobile-shell .prt-city-section-title {
  display: inline-flex;
  align-items: baseline;
  color: var(--color-fg);
}

.btm-popup-mobile-shell .prt-city-section-title-main {
  font-size: var(--fz-lg);
  font-weight: var(--fw-bold);
  line-height: 1.2;
}

.btm-popup-mobile-shell .prt-city-section-title-sub {
  font-size: var(--fz-lg);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: var(--color-fg);
}

.btm-popup-mobile-shell .prt-city-section-full {
  grid-column: 1 / -1;
  margin-top: var(--sp-6);
  min-height: 130px;
  padding: 0 8px;
  border-top: 8px solid #f5f6f8;
}


.btm-popup-mobile-shell .prt-mobile-card-track {
  overflow: visible;
  width: 100%;
}

.btm-popup-mobile-shell .prt-infinite-scroll-component {
  overflow: hidden !important;
}


.city-template-card {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
}

.btm-popup-mobile-shell .city-template-cover{
  width: auto;
  height: auto;
}
.btm-popup-mobile-shell .city-template-card{
  display: block;
  border-radius: unset;
}
.btm-popup-mobile-shell .city-template-body{
  background: #f5f6f8;
}
.btm-popup-mobile-shell .city-template-btn{
  text-align: center;
}

.btm-popup-mobile-shell .city-template-name{
  font-size: 18px;
  color: #111;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 12px 16px 0;
  background: white;
}

.btm-popup-mobile-shell .city-template-name-text {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 2px solid var(--color-brand);
  position: relative;
}

.btm-popup-mobile-shell .city-template-name-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 1px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-brand) 82%, #000);
}

.btm-popup-mobile-shell .city-template-title{
  background: white;
  min-width: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 12px 16px 0;
  font-weight: 300;
}

.btm-popup-mobile-shell .city-default-card {
  width: calc(100% - 10px);
  margin: auto;
  padding: 26px 26px 22px;
  margin-top: 8px;
  background: white;
}
.btm-popup-mobile-shell .default-card-content {
  width: calc(100% - 10px);
  height: 400px;
  overflow: hidden;
  position: relative;
}
.btm-popup-mobile-shell .default-card-content:after{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  height: 100px;
}
.btm-popup-mobile-shell .city-template-btn{
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 2;
}

.btm-popup-mobile-shell .city-default-card .city-default-head.city-default-head--full {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 0 0 18px;
}

.btm-popup-mobile-shell .city-default-card .city-default-title {
  font-size: 20px;
  font-weight: 500;
  color: #111;
  margin: 0;
}

.btm-popup-mobile-shell .city-default-card .city-default-unit {
  display: inline-flex;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.btm-popup-mobile-shell .city-default-card .city-default-unit-btn {
  border: 0;
  background: #fff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.btm-popup-mobile-shell .city-default-card .city-default-unit-btn.is-active {
  background: #111;
  color: #fff;
}

.btm-popup-mobile-shell .city-default-card .city-default-weather {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.btm-popup-mobile-shell .city-default-card .city-default-weather-item {
  padding-top: 6px;
}

.btm-popup-mobile-shell .city-default-card .city-default-weather-month {
  font-size: 13px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.78);
  margin-bottom: 8px;
}

.btm-popup-mobile-shell .city-default-card .city-default-weather-temp {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.btm-popup-mobile-shell .city-default-card .city-default-weather-high {
  font-size: 28px;
  font-weight: 500;
  color: #111;
}

.btm-popup-mobile-shell .city-default-card .city-default-weather-low {
  font-size: 22px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.4);
}

.btm-popup-mobile-shell .city-default-card .city-default-divider {
  margin: 18px 0 14px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.btm-popup-mobile-shell .city-default-card .city-default-grid {
  display: grid;
  gap: 18px 22px;
  min-height: 140px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.btm-popup-mobile-shell .city-default-card .city-default-grid-item {
  min-width: 0;
}

.btm-popup-mobile-shell .city-default-card .city-default-grid-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.55);
}

.btm-popup-mobile-shell .city-default-card .city-default-grid-value {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btm-popup-mobile-shell .city-default-card .city-default-grid-value.city-default-grid-value--multiline {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.btm-popup-mobile-shell .city-default-card .city-default-bestTimes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btm-popup-mobile-shell .city-default-card .city-default-bestTime-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btm-popup-mobile-shell .city-default-card .city-default-bestTime-month {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.btm-popup-mobile-shell .city-default-card .city-default-bestTime-season {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}


.city-template-popup {
  width: 100%;
  box-sizing: border-box;
}
.city-template-popup .btm-popup-close{
  right: 5px;
  top: 5px;
}


.city-template-cover-wrap {
  position: relative;
  padding: 0;
}

.city-template-cover {
  position: relative;
  width: 174px;
  height: 130px;
  overflow: hidden;
}

.city-template-body {
  display: flex;
  flex: 1;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  background: radial-gradient(circle at 100% 0%, rgba(34, 164, 93, 0.08) 0%, transparent 50%),
  radial-gradient(circle at 0% 100%, rgba(34, 164, 93, 0.12) 0%, transparent 50%),
  repeating-linear-gradient(45deg,
    rgba(34, 164, 93, 0.02) 0px,
    rgba(34, 164, 93, 0.02) 2px,
    transparent 2px,
    transparent 8px);
}

.city-template-summary {
  padding: 6px 16px 12px;
  background: white;
}
.city-template-summary p{
  overflow: hidden;
  line-height: 2;
  white-space: break-spaces;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #666;
  font-size: 13px;
}

.city-template-btn {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
  text-align: right;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 32%, rgba(255, 255, 255, 1) 100%);
}

.city-template-btn-text {
  font-size: 16px;
  background: unset;
  border: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  color: var(--color-brand);
  line-height: 1;
  text-decoration: underline;
  cursor: pointer;
}

.city-template-btn-text:hover {
  background: unset;
  border-color: unset;
  color: #212121;
}

.landscape-video-page {
  display: flex;
  padding: 16px;
  max-width: 1700px;
  margin: 0 auto;
  justify-content: center;
  position: relative;
}
.landscape-video-page > * {
  margin-left: 24px;
}
.landscape-video-page > *:first-child {
  margin-left: 0;
}
@supports (gap: 24px) {
  .landscape-video-page {
    gap: 24px;
  }
  .landscape-video-page > * {
    margin-left: 0;
  }
}
.landscape-video-page figure{
  margin: 0;
  padding: 0;
}
.landscape-video-page .landscape-video-page {
  width: 400px;
  flex-shrink: 0;
}

.landscape-video-page-content {
  flex: 1;
  max-width: 1280px;
}

.landscape-video-page-content > * {
  width: 100% !important;
  box-sizing: border-box;
}

.landscape-video-page-content .landscape-video-play-content{
  position: relative;
}

.landscape-video-page-content .landscape-video-recommend-list{
  position: absolute;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: calc(100% - 45px);
  top: 0;
  left: 0;
  border-radius: 12px;
  overflow: hidden;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.landscape-video-page-content .mark-video-button{
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 200px;
  height: 45px;
  background: rgba(0,0,0,0.2);
  z-index: 2000;
}

.landscape-video-page-content .landscape-recommend-video-item {
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
  background: rgba(0, 0, 0);
  top: 50%;
  position: relative;
  height: 0;
  width: 33%;
}
.landscape-video-page-content .landscape-recommend-video-item:last-child {
  margin-right: 0;
}

.landscape-video-page-content .landscape-recommend-video-item:hover a{
  background: rgb(255 255 255 / 10%);
}

.landscape-video-page-content .landscape-recommend-video-item a{
  display: inline-block;
  margin-top: -50%;
  padding: 8px;
  border-radius: 8px;
}
.landscape-video-page-content .landscape-recommend-video-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.landscape-video-page-content .landscape-recommend-video-item img::before {
  content: "";
  display: block;
  width: 1px;
  margin-left: -1px;
  height: 0;
  padding-bottom: 56.25%;
}
@supports (aspect-ratio: 16/9) {
  .landscape-video-page-content .landscape-recommend-video-item img {
    aspect-ratio: 16/9;
  }
  .landscape-video-page-content .landscape-recommend-video-item img::before {
    display: none;
  }
}

.landscape-video-page-content .recommend-video-item-title {
  margin-top: 8px;
  color: #ffffff;
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.landscape-video-page-content .recommend-video-item-auth {
  margin-top: 8px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  text-align: left;
}
.landscape-video-page-content .recommend-video-item-recency {
  margin-top: 8px;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  text-align: left;
}

.landscape-video-page .gta-video-volume .gta-video-icon-button {
  padding: 0;
}

.gta-video-list-container {
  width: 100%;
}

.gta-video-list-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.gta-video-list-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gta-video-list-item {
  display: flex;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 13px;
  overflow: hidden;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gta-video-list-item:hover {
  background-color: #f9f9f9;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.gta-video-list-thumbnail-wrapper {
  position: relative;
  width: 160px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  height: 90px;
}

.gta-video-list-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  background-color: #f4f6f8;
}

.gta-video-list-thumbnail-wrapper.broken {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  height: 120px;
}

.gta-video-list-thumbnail-wrapper.broken::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.04),
    rgba(0,0,0,0.04) 6px,
    rgba(0,0,0,0.06) 6px,
    rgba(0,0,0,0.06) 12px
  );
}

.gta-video-list-thumbnail-wrapper.broken::after {
  content: "🖼️";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  opacity: 0.65;
  pointer-events: none;
}

.gta-video-list-duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}

.gta-video-list-info {
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
}

.gta-video-list-author-info {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;

}

.gta-video-list-title {
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  margin: 0 0 6px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gta-video-list-auth{
  font-size: var(--fz-xs);
  color: rgba(0,0,0,.7);
}
.gta-video-list-recency{
  font-size: var(--fz-xs);
  color: rgba(0,0,0,.7);
}

.gta-video-list-author-avatar {
  width: 32px;
  height: 32px;
  border: 1px solid #eee;
  border-radius: 50%;
  margin-right: 4px;
  overflow: hidden;
}

.gta-video-list-author {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.portrait-mobile-video-page{
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.portrait-mobile-video-page .mobile-video-info{
  position: absolute;
  bottom: 25px;
  width: calc(100% - 45px);
  z-index: 100;
  padding: 0 16px;
}

.portrait-mobile-video-page .gta-action-buttons{
  position: absolute;
  right: 10px;
  z-index: 100;
  bottom: 60px;
}
.portrait-mobile-video-page .gta-action-buttons{
  opacity: 1;
  transition: opacity 0.2s ease-out;
}
.portrait-mobile-video-page .gta-action-buttons.animate-out{
  opacity: 0;
  transition: none;
}

.portrait-mobile-video-page .mobile-video-info{
  opacity: 1;
  transition: opacity 0.2s ease-out;
}
.portrait-mobile-video-page .mobile-video-info.animate-out{
  opacity: 0;
  transition: none;
}

.mobile-video-container .mobile-video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: 11;
  color: #ffffff;
  padding-left:12px;
  padding-right:24px;
  padding-bottom: 50px;
}

.mobile-video-info .author {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.mobile-video-info .author > * {
  margin-left: 6px;
}
.mobile-video-info .author > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .mobile-video-info .author {
    gap: 6px;
  }
  .mobile-video-info .author > * {
    margin-left: 0;
  }
}

.mobile-video-info .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-video-info .author-avatar-placeholder {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-video-info .author-name {
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.mobile-video-info .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-video-info .tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  margin-right: -4px;
  margin-bottom: -4px;
}
.mobile-video-info .tags > * {
  margin-right: 4px;
  margin-bottom: 4px;
}
@supports (gap: 4px) {
  .mobile-video-info .tags {
    gap: 4px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .mobile-video-info .tags > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.mobile-video-info .tags span {
  padding: 2px 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 13px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .normal-mobile-video-page {
    gap: 24px;
    max-width: 1700px;
    margin: 0 auto;
    justify-content: center;
    padding: 0;
    height: calc(100dvh - 50px);
    overflow: hidden;
    display: block;
    background: #000;
  }
  .normal-mobile-video-page figure{
    margin: 0;
    padding: 0;
  }
  .normal-mobile-video-page .gta-landscape-mobile__progress{
    padding: unset;
  }
  .normal-mobile-video-page .gta-normal-video-sidebar{
    background-color: white;
    padding: 16px;
  }
  .normal-mobile-video-page.mobile .gta-landscape-player{
    border-radius: unset;
  }
  .normal-mobile-video-page.mobile .gta-video-play-button--center{
    width: 48px;
    height: 48px;
  }

  .normal-mobile-video-page .mobile-comment::before{
    left: 0;
    -webkit-clip-path: path("M 0 0 L 0 12 A 12 12 0 0 1 12 0 L 0 0");
    clip-path: path("M 0 0 L 0 12 A 12 12 0 0 1 12 0 L 0 0");
  }
  .normal-mobile-video-page .mobile-comment::after{
    right: 0;
    -webkit-clip-path: path("M 0 0 A 12 12 0 0 1 12 12 L 12 0 L 0 0");
    clip-path: path("M 0 0 A 12 12 0 0 1 12 12 L 12 0 L 0 0");
  }
  .normal-mobile-video-page .mobile-comment{
    background-color: white;
    padding: 16px;
    padding-top: 20px;
  }
  .normal-mobile-video-page .mobile-comment::before,.normal-mobile-video-page .mobile-comment::after{
    content: "";
    position: absolute;
    background: black;
    top: 0;
    z-index: 1;
    width: 12px;
    height: 12px;
  }

  .normal-mobile-video-page .gta-landscape-mobile__center-button{
    width: 40px;
    height: 40px;
  }
  .normal-mobile-video-page .video-mobile-container{
    overflow-y: auto;
    background: white;
    position: relative;
  }

  .fullscreen.normal-mobile-video-page{
    height: 100dvh;
  }
  .fullscreen.normal-mobile-video-page .video-mobile-container{
    display: none;
  }

  .normal-mobile-video-page .video-mobile-loading{
    background-color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
  }
  .normal-mobile-video-page .video-mobile-loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #1890ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
  }
  .normal-mobile-video-page .gta-video-info-title{
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    word-break: break-all;
    margin-bottom: 12px;
  }
  .normal-mobile-video-page .gta-video-info-meta .more{
    display: inline-block;
    background: unset;
    margin: 0;
    padding: 0;
  }
  .normal-mobile-video-page .gta-video-info-meta{
    display: flex;
  }
  .normal-mobile-video-page .gta-video-info-tags{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 80%;
  }
  .normal-mobile-video-page .more{
    text-decoration: underline;
    vertical-align: middle;
  }
  .normal-mobile-video-page .gta-video-info-author-name{
    font-size: 16px;
  }
  .normal-mobile-video-page .gta-video-mobile-component{
    margin-top: 10px;
  }
  .normal-mobile-video-page .gta-video-info-comment{
    background: #f9f9f9;
    padding: 12px 16px;
    border-radius: 8px;
  }
  .normal-mobile-video-page .gta-video-info-comment .video-info_input{
    background: #e1e1e1;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 30px;
    margin-top: 5px;
  }
  .normal-mobile-video-page .gta-landscape-actions-wrapper{
    width: 100%;
    overflow-x: auto;
    display: block;
  }
  .normal-mobile-video-page .gta-landscape-actions-wrapper .gta-action-item{
    flex-direction: row;
    display: flex;
  }
  .normal-mobile-video-page .gta-landscape-actions-wrapper .home,.gta-landscape-actions-wrapper .commont{
    display: none;
  }
  .normal-mobile-video-page .gta-landscape-actions-wrapper .gta-action-item .gta-icon-circle{
    width: 35px;
    height: 35px;
  }
  .normal-mobile-video-page .gta-landscape-actions-wrapper .gta-icon-review{
    font-size: 18px;
  }
  .normal-mobile-video-page .gta-landscape-actions-wrapper .gta-action-text{
    word-break: keep-all;
    font-size: 14px;
    color: #222;
    text-shadow:unset;
  }

  .normal-mobile-video-page .gta-landscape-mobile__player{
    min-height: unset!important;
  }
  .gta-normal-video-main-content {
    flex: 1;
    max-width: 1280px;
  }
  .gta-normal-video-main-content > * {
    width: 100% !important;
    box-sizing: border-box;
  }
  .gta-normal-video-main-content .videoedit-media,
  .gta-normal-video-main-content .videoedit-player,
  .gta-normal-video-main-content .videoedit-player-desktop,
  .gta-normal-video-main-content .gta-desktop,
  .gta-normal-video-main-content .gta-desktop__frame {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .gta-normal-video-main-content .gta-normal-video-sidebar {
    /*flex-shrink: 0;*/
    /*position: relative;*/
    width: 100%;
  }
  .gta-normal-video-main-content .normal-mobile-video-page {
    flex-direction: column;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .mobile-video-comment .comment-add,.mobile-video-comment .gta-comment-list-container{
    width: 100%;
  }
}

.app-container:has(.trip-custom-page) {
  background-color: unset;
}

.trip-custom-page {
  max-width: 100%;
  margin: auto;
  padding-bottom: 200px;

  .trip-custom-page-h-title {
    margin-top: 20px;
    font-size: 28px;
    font-weight: 600;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
  }

  .image-album {
    border-radius: 8px;
  }

  .trip-custom-content {
    margin-top: 48px;

    .trip-custom-title-2 {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 24px;
      line-height: 1.25;
      position: relative;
      padding-left: 20px;

      &:before {
        content: "";
        background-color: var(--color-brand);
        border-radius: 3px;
        width: 4px;
        height: 22px;
        display: block;
        position: absolute;
        top: 3px;
        left: 0;
      }
    }

    h3 {
      font-size: 20px;
      font-weight: 600;
      line-height: 1.3;
      margin: 0;
    }

    h4 {
      color: #212121;
      margin-bottom: 12px;
      font-size: 16px;
    }

    .trip-custom-evaluate {
      margin-bottom: 48px;
    }

    .trip-custom-introduction {
      margin-bottom: 48px;
    }

    .trip-custom-price .trip-custom-fee {
      background-color: #ffffff;
      margin-bottom: 48px;
      padding: 10px 20px;
      line-height: 2;
      font-size: 14px;
      color: #212121;
      border-radius: 8px;
    }

    .trip-custom-faq {
      margin-top: 44px;
    }

    .trip-custom-faq .faq-acc-qtext {
      font-size: 16px;
      font-weight: 500;
      color: #212121;
    }
  }

  .trip-custom-tags {
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
  }

  .trip-custom-tips {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-top: 8px;
    background-color: #fff !important;

    .left {
      display: flex;

      .score {
        background: var(--brand-100);
        padding: 2px 4px;
        border-radius: 2px;
        font-size: 13px;
        font-weight: bold;
      }

      .score-num {
        margin-left: 4px;
        cursor: pointer;
        text-decoration: underline;
      }

      .part-num {
        margin-left: 4px;
      }

      .tips-address {
        margin-left: 16px;
        font-size: 12px;

        span {
          margin-right: 8px;
          vertical-align: middle;
        }
      }
    }

    .gta-icon {
      font-size: 14px;
    }

    .favorite-btn {
      border: unset;
      cursor: pointer;
      padding: 2px 5px;
      border-radius: 5px;
    }
  }
}

@media (max-width: 768px) {
  .trip-custom-page {
    padding: 0 16px;
    padding-bottom: 100px;

    .trip-custom-page-h-title {
      font-size: 24px;
      margin-top: 12px;
    }

    .trip-custom-album-mobile {
      margin-top: 12px;

      .gta-landscape-mobile__player {
        background-color: unset !important;
      }
    }

    .trip-custom-content {
      margin-top: 32px;

      .trip-custom-title-2 {
        font-size: 18px;
        margin-bottom: 16px;

        &:before {
          height: 18px;
          top: 2px;
        }
      }

      h3 {
        font-size: 18px;
      }

      h4 {
        font-size: 14px;
      }

      .trip-custom-combo-detail-mobile {
        margin-bottom: 48px;
      }

      .trip-custom-faq {
        margin-top: 32px;
      }

      .trip-custom-faq .faq-acc-q {
        padding: 16px !important;
      }

      .trip-custom-faq .faq-acc-a {
        padding: 0 16px 0 16px !important;
      }

      .trip-custom-faq .faq-acc-atext {
        padding: unset !important;
      }
    }

    .trip-custom-tips {
      flex-direction: row;
      align-items: flex-end;
      position: relative;

      >* {
        margin-left: 12px;
      }

      >*:first-child {
        margin-left: 0;
      }

      @supports (gap: 12px) {
        gap: 12px;

        >* {
          margin-left: 0;
        }
      }

      .left {
        flex-direction: column;
        white-space: nowrap;

        >* {
          margin-bottom: 8px;
        }

        >*:last-child {
          margin-bottom: 0;
        }

        @supports (gap: 8px) {
          gap: 8px;

          >* {
            margin-bottom: 0;
          }
        }

        .tips-address {
          margin-left: 0;
          line-height: 1;
          white-space: nowrap;
        }
      }

      .right {
        position: absolute;
        right: 10px;
        bottom: 15px;
      }

      .favorite-btn {
        padding: 0;
        font-size: 14px;
        line-height: 1;
        padding: 4px;
        white-space: nowrap;
      }
    }
  }
}
.trip-custom-page{

   .trip-custom-content--combo{
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: flex-start ;
    width: 100%;
    margin-bottom: 24px;
    .combo-left{
      flex: 1;
    }
    .combo-right{
      position: relative;
      top: 20px;
      width: 320px;
      margin-left: 24px;
    }

    .combo-right .sticky{
      position: sticky;
      top: 128px;
      width: 320px;
      background: white;
      z-index: 999;
    }
  }

  .combo-info{
    position: relative;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 24px 20px;
    margin-bottom: 24px;
    .combo-info--title{
      justify-content: space-between;
      align-items: center;
      display: flex;
      margin-bottom: 24px;
      .text-btn{
        cursor: pointer;
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        text-decoration-line: underline;
      }
    }
    .combo-info--date{
      margin-bottom: 12px;
      font-size: 14px;
    }
    .combo-info--type{
      margin-bottom: 12px;
      font-size: 14px;
      .type-list{
        display: flex;
        flex-wrap: wrap;
        .gta-btn--primary{
          background: white;
          color: black;
          font-size: 14px;
          font-weight: 700;
          margin: 0 8px 8px 0;
          a{
            width: 100%;
            height: 100%;
          }
        }
        .gta-btn--primary.active{
          border-color: var(--color-brand);
          background:
            color-mix(in srgb, var(--color-brand) 12%, transparent);
          color: var(--color-brand);
        }
      }
    }
    .combo-info--number{
      margin-bottom: 12px;
      font-size: 14px;
      .number-list{
        .number-item{
          background-color: #fff;
          border-radius: 8px;
          justify-content: space-between;
          align-items: center;
          padding: 10px 20px;
          display: flex;
          margin-bottom: 8px;
          .number-title{
            font-size: 16px;
            font-weight: 700;
          }
          .number-btns{
            .gta-btn{
              width: 32px;
              height: 32px;
              line-height: 32px;
              font-size: 18px;
              background: #f5f5f5;
              color: #333333;
              margin: 8px;
            }
            .number{
              display: inline-block;
              font-size: 18px;
              font-weight: 700;
              min-width: 21px;
              text-align: right;
            }
          }
        }
      }
    }
    .combo-info--total{
      margin-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      .combo-amount{
        font-size: 24px;
        color: #212121;
        font-weight: 700;
        line-height: 1.32;
      }
      .amount-tip{
        color: #757575;
        margin-top: 2px;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
      }
      .combo-order-btns{
        button{
          border: none;
          font-weight: 600;
          font-size: 16px;
          line-height: 22px;
          padding: 12px 20px;
          height: unset;
        }
        button:first-child{
          margin-right:16px;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .trip-custom-page {
    .combo-detail{
      border-radius: 8px;
       background-color: #ffffff !important;
    }
    .trip-custom-content--combo {
      flex-direction: column;
      .combo-right {
        display: block;
        
                width: 100%;
                margin-top: 10px;
                margin-left: 0px;
      }
    }

    .combo-info {
      padding: 16px;
      border-radius: 12px;
      .combo-info--title {
        margin-bottom: 16px;
        .title-3 {
          font-size: 16px;
        }
        .text-btn {
          font-size: 14px;
        }
      }
      
      .combo-info--number {
        .number-list {
          .number-item {
            padding: 8px 12px;
            .number-title {
              font-size: 14px;
            }
            .number-btns {
              .gta-btn {
                width: 28px;
                height: 28px;
                line-height: 28px;
                font-size: 16px;
                margin: 4px;
              }
              .number {
                font-size: 16px;
              }
            }
          }
        }
      }

      .combo-info--total {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        .combo-amount {
          font-size: 20px;
        }
        .combo-order-btns {
          width: 100%;
          margin-top: 16px;
          display: flex;
          button {
            flex: 1;
            padding: 10px;
            font-size: 14px;
          }
          button:first-child {
            margin-right: 8px;
          }
        }
      }
    }
  }
}

.trip-video-player {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-video-player .gta-landscape-player,
.trip-video-player .gta-video-player{
  background: unset!important;
  overflow: unset!important;
}

.trip-video-player:not(.is-fullscreen) {
  width: 100%;
  height: 100%;
}

.trip-video-player.is-fullscreen {
  width: 100%;
  height: 100%;
  z-index: 10;
  border-radius: 8px;
}

.trip-video-player .landscape-video-sdk {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.trip-video-player::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.trip-video-player:hover::after {
  opacity: 1;
}

.trip-video-player.is-fullscreen::after {
  display: none;
}
.trip-album-carousel {
  position: relative;
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f6f8;
}

.trip-carousel-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.trip-carousel-progress {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.trip-carousel-progress-item {
  width: 32px;
  height: 3px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
}

.trip-carousel-progress-item:hover {
  background: rgba(255, 255, 255, 0.6);
}

.trip-carousel-progress-item.is-active {
  background: rgba(255, 255, 255, 0.4);
}

.trip-carousel-progress-item.is-done {
  background: rgba(255, 255, 255, 0.8);
}

.trip-carousel-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

.trip-carousel-progress-item.is-active .trip-carousel-progress-bar {
  transform: scaleX(var(--progress, 0));
}

.trip-carousel-fade {
  position: relative;
  width: 100%;
  height: 100%;
}

.trip-carousel-fade-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.trip-carousel-fade-item.is-front {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.35s ease-in-out;
}

.trip-carousel-fade-item.is-back {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}

.trip-carousel-fade-item.is-back.is-fading {
  opacity: 1;
}

.trip-carousel-video {
  width: 100%;
  height: 100%;
}

.trip-carousel-video .landscape-video-sdk,
.trip-carousel-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-carousel-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.trip-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trip-carousel-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.trip-carousel-image-loader {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.trip-carousel-image-loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trip-carousel-image-loaded {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.trip-carousel-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 14px;
}
.trip-custom-page {
  .trip-custom-header {
    .trip-custom-album {
      margin-top: 24px;
      position: relative;
    }

    .trip-custom-album.has-video {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;

      .trip-custom-album-video {
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 8px;
      }

      .gta-video-play-button--center{
        width: 66px;
        height: 66px;
      }

      .gta-video-play-button--center svg{
        width: 50px;
        height: 50px;
      }

      .trip-custom-album-images {
        aspect-ratio: 16 / 9;
        height: 100%;
      }
    }

    .trip-custom-album.video-fullscreen {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
      border-radius: 8px;
      overflow: hidden;

      .trip-custom-album-video {
        width: 50%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 8px;
        background: #000;
        transition: all 0.3s ease;
      }

      .trip-custom-album-images {
        display: none;
      }
    }
  }

  .header-summary {
    flex: 1;
  }

  .trip-custom-header--summary {
    display: flex;
    margin-top: 24px;

    .trip-custom-summary--text {
      padding: 8px 20px;
      font-size: var(--fz-sm);
      line-height: 1.65;
      color: #3b4048;
      background: #fcf6f2;
      border: 1px solid rgba(31, 35, 41, .08);
      border-radius: 8px;
      text-align: justify;
      white-space: pre-line;
    }
  }

  .trip-custom-combo-tip {
    width: 320px;
    height: 120px;
    margin-left: 24px;
    text-align: center;

    .combo-tip--content {
      border: 1px solid #e6e6e6;
      border-radius: 8px;
      padding: 20px;
      background-color: white;
      .gta-btn--primary {
        width: 100%;
        margin-top: 12px;
        font-size: var(--fz-md);
      }

      .count-price {
        color: #212121;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.32;
        text-align: left;
      }
    }
  }

  .combo-tip--content.sticky {
    position: fixed;
    top: 128px;
    width: 320px;
    background: white;
    z-index: 999;
  }
}

@media (max-width: 768px) {
  .trip-custom-page {
    .trip-custom-header {
      .trip-custom-album {
        margin-top: 16px;
      }

      .trip-custom-album-mobile {
        margin-top: 16px;
      }
    }

    .trip-custom-header--summary {
      flex-direction: column;
      margin-top: 16px;

      .trip-custom-summary--text {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
      }
    }

    .trip-custom-combo-tip {
      width: 100%;
      height: auto;
      margin-left: 0;
      margin-top: 16px;

      .combo-tip--content {
        padding: 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        .count-price {
          font-size: 20px;
        }

        .gta-btn--primary {
          width: auto;
          margin-top: 0;
          padding: 8px 16px;
        }
      }
    }

    .combo-tip--content.sticky {
      position: fixed;
      top: 96px;
      left: 0;
      width: 100%;
      border-radius: 0;
      border-left: none;
      border-right: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
  }
}
.tag-list{
  display: flex;
  flex-wrap: wrap;
}
.tag{
  color: #757575;
  border-color: #F5F5F5;
  background-color: rgba(245, 245, 245, 255);
  border-radius: 2px;
  margin-right: 8px;
  padding: 0 8px;
  font-size: 14px;
  white-space: nowrap;
}
.trip-custom-introduction--detail {

  background-color: #f5f5f5;

  .trip-detail--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 4px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
  }

  .trip-detail--header--left {
    flex: 1;
    min-width: 0;
  }

  .trip-detail--header--right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .trip-detail--header--title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 22px;
    background-color: #fff;
  }

  .trip-detail--box {
    background-color: #fff;
    margin-bottom: 4px;
      padding: 10px 20px;
 
      overflow: hidden;
  }

  .trip-detail--box:last-child {
    border-radius: 0 0 8px 8px;
  }

  .trip-detail--items--inner {
    border-left: 1px dashed #ccc;
    padding-left: 10px;
    /* padding: 0 10px 10px; */
    position: relative;
    word-break: break-all;

  }

  .trip-detail--items--inner:last-child {
    padding-bottom: 0;
  }

  .trip-detail--items--title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .trip-detail--items--switch {
    flex-shrink: 0;
  }

  .trip-detail--items--day-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    margin: 10px 20px 10px 10px;
    text-align: justify;
    flex: 1;
    min-width: 0;
  }

  .trip-detail--items--day-icon {
    background-color: rgba(26, 97, 4, 0.8);
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    left: -13px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    width: 24px;
  }

  .trip-detail--items--body {
    margin-top: 12px;
  }

  .trip-detail--items--row {
    display: flex;
    margin-bottom: 2px;
    position: relative;
  }

  .trip-detail--items--row-intro {
    align-items: flex-start;
  }

  .trip-detail--items--icon {
    align-items: center;
    display: flex;
    height: 24px;
    justify-content: center;
    left: -23px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 26px;
    transform: translateY(-50%);
  }

  .trip-detail--items--body .gta-icon[data-size="custom"] {
    --gta-icon-size: 24px;
  }

  .trip-detail--items--row-text,
  .trip-detail--items--intro-text {
    color: #212121;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    margin: 10px 20px 10px 10px;
    text-align: justify;
    text-justify: inter-word;
    word-break: break-word;
  }

  .trip-detail--items--intro-text {
    white-space: pre-wrap;
  }

  .trip-detail--items--dining {
    display: inline-flex;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-bottom: -16px;
  }

  .trip-detail--items--dining>* {
    margin-right: 16px;
    margin-bottom: 16px;
  }

  @supports (gap: 16px) {
    .trip-detail--items--dining {
      gap: 16px;
      margin-right: 0;
      margin-bottom: 0;
    }

    .trip-detail--items--dining>* {
      margin-right: 0;
      margin-bottom: 0;
    }
  }

  .trip-detail--items--row-key {
    font-weight: 700;
    color: #333;
  }

  .trip-detail--toolbar {
    position: absolute;
    top: -20px;
    right: 0;
    display: none;
    align-items: center;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    backdrop-filter: saturate(160%) blur(6px);
    z-index: 10;
  }

  .trip-detail--items--card:hover>.trip-detail--items--inner>.trip-detail--toolbar,
  .trip-detail--items--card[data-actions="always"]>.trip-detail--items--inner>.trip-detail--toolbar {
    display: inline-flex;
  }

  .trip-detail--toolbar-btn.gta-btn {
    padding: 0 5px;
    color: #fff;
    height: auto;
    line-height: normal;
  }

  .trip-detail--toolbar-btn.gta-btn .gta-icon[data-size="custom"] {
    --gta-icon-size: 18px;
  }


  .trip-detail--items--day-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .trip-detail--items--route {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    max-width: 100%;
  }

  .trip-detail--items--route>* {
    margin-left: 8px;
  }

  .trip-detail--items--route>*:first-child {
    margin-left: 0;
  }

  @supports (gap: 8px) {
    .trip-detail--items--route {
      gap: 8px;
    }

    .trip-detail--items--route>* {
      margin-left: 0;
    }
  }

  .trip-detail--items--route-from,
  .trip-detail--items--route-to {
    display: inline-block;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .trip-detail--items--route-arrow {
    flex: 0 0 auto;
    user-select: none;
    line-height: 1;
  }

  .slide-image {
    width: 100%;
    height: 260px;
    display: block;
    border: 1px solid #eee;
    background: #fafafa;
    overflow: hidden;
    border-radius: 8px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .trip-detail--items--route-from .gta-icon-address,
  .trip-detail--items--route-to .gta-icon-address {
    display: none;
    margin-right: 4px;
  }

  .has-gps .gta-icon-address,
  .has-gps .gta-icon-address {
    display: inline-block;
  }

  .trip-detail--items--route-from.has-gps,
  .trip-detail--items--route-to.has-gps {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .trip-custom-introduction--detail {
    padding: 0;

    .trip-detail--header--right {
      margin-right: unset !important;
    }

    .trip-detail--items--inner {
      padding: 0 0 20px 24px;
      margin-left: 12px;
    }

    .trip-detail--items--day-icon {
      left: -12px;
      width: 24px;
      height: 24px;
      font-size: 12px;
    }

    .trip-detail--items--day-text {
      font-size: 16px;
      margin: 8px 0;

      .trip-detail--items--route-from,
      .trip-detail--items--route-to {
        max-width: 120px;
      }
    }

    .trip-detail--items--row-text,
    .trip-detail--items--intro-text {
      font-size: 14px;
      margin: 4px 0;
      line-height: 1.6;
    }

    .trip-detail--items--icon {
      left: -36px;
      top: 15px;
      width: 20px;
      height: 20px;
      --gta-icon-size: 20px !important;
    }

    .trip-detail--items--dining {
      margin-right: -8px;
      margin-bottom: -8px;
    }

    .trip-detail--items--dining>* {
      margin-right: 8px;
      margin-bottom: 8px;
    }

    @supports (gap: 8px) {
      .trip-detail--items--dining {
        gap: 8px;
        margin-right: 0;
        margin-bottom: 0;
      }

      .trip-detail--items--dining>* {
        margin-right: 0;
        margin-bottom: 0;
      }
    }

    .slide-image {
      height: 180px;
    }
  }
}
.evaluate-section {
  padding-bottom: 24px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
}

/* 总体评分 */
.overall-rating {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.overall-rating > * {
  margin-left: 16px;
}
.overall-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 16px) {
  .overall-rating {
    gap: 16px;
  }
  .overall-rating > * {
    margin-left: 0;
  }
}

.rating-header {
  display: flex;
  align-items: baseline;
}
.rating-header > * {
  margin-left: 4px;
}
.rating-header > *:first-child {
  margin-left: 0;
}
@supports (gap: 4px) {
  .rating-header {
    gap: 4px;
  }
  .rating-header > * {
    margin-left: 0;
  }
}

.rating-header .gta-icon-manyi{
  background-image: var(--icon-url);
  background-size: cover;
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  background-color: unset;
}

.rating-emoji {
  font-size: 40px;
  line-height: 1;
}

.rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.rating-max {
  font-size: 20px;
  color: #999;
  font-weight: 500;
}

.rating-info {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.rating-info > * {
  margin-bottom: 4px;
}
.rating-info > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 4px) {
  .rating-info {
    gap: 4px;
  }
  .rating-info > * {
    margin-bottom: 0;
  }
}

.satisfaction-text {
  font-size: 16px;
  color: var(--color-brand);
  font-weight: 600;
}

.total-reviews {
  font-size: 14px;
  color: #999;
}

/* 细分评分 */
.sub-ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  margin-bottom: 24px;
}
.sub-ratings > * {
  margin-left: 6px;
  margin-bottom: 6px;
}
.sub-ratings > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 12px) {
  .sub-ratings {
    gap: 12px;
  }
  .sub-ratings > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.sub-rating-item {
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.sub-rating-item > * {
  margin-bottom: 8px;
}
.sub-rating-item > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 8px) {
  .sub-rating-item {
    gap: 8px;
  }
  .sub-rating-item > * {
    margin-bottom: 0;
  }
}

.sub-rating-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.sub-rating-value {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

/* 分隔线 */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 24px 0;
}

/* 评价列表 */
.reviews-section {
  display: flex;
  flex-direction: column;
}
.reviews-section > * {
  margin-bottom: 24px;
}
.reviews-section > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 24px) {
  .reviews-section {
    gap: 24px;
  }
  .reviews-section > * {
    margin-bottom: 0;
  }
}
.reviews-section .gta-btn--secondary{
  --color-surface-1: var(--color-surface-2, #f7f8fa);
  --color-surface-2: #fcf6f2;
  color: var(--btn-fg);
}
.reviews-section .page-container-btn{
  text-align: center;
  margin-top: 12px;
}
.reviews-section .page-container-btn .gta-btn{
  margin-right: 8px;
}
.reviews-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* 排序和筛选 */
.sort-section,
.filter-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-bottom: -12px;
}
.sort-section > *,
.filter-section > * {
  margin-right: 12px;
  margin-bottom: 12px;
}
@supports (gap: 12px) {
  .sort-section,
  .filter-section {
    gap: 12px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .sort-section > *,
  .filter-section > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sort-label,
.filter-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.sort-options,
.filter-options {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}
.sort-options > *,
.filter-options > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .sort-options,
  .filter-options {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .sort-options > *,
  .filter-options > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.sort-btn,
.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
}
.sort-btn > *,
.filter-btn > * {
  margin-left: 6px;
}
.sort-btn > *:first-child,
.filter-btn > *:first-child {
  margin-left: 0;
}
@supports (gap: 6px) {
  .sort-btn,
  .filter-btn {
    gap: 6px;
  }
  .sort-btn > *,
  .filter-btn > * {
    margin-left: 0;
  }
}

.sort-btn,
.filter-btn {
  background: #fff;
  border: 1px solid var(--color-brand);
  border-radius: 20px;
  font-size: 14px;
  color: var(--color-brand);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.sort-btn:hover,
.filter-btn:hover {
  background: #fffbe6;
}

.sort-btn.active,
.filter-btn.active {
  background: var(--color-brand);
  color: #fff;
}

.sort-btn svg {
  margin-left: 2px;
}

/* 排序下拉框 */
.sort-dropdown {
  min-width: 180px;
  padding: 8px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* 覆盖 popover 默认样式 */
.sort-section .gta-popover {
  background: transparent;
}

.sort-section .gta-popover-main {
  padding: 0;
  background: transparent;
  box-shadow: none;
  min-width: auto;
}

.sort-section .gta-popover-content {
  padding: 0;
}

.sort-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s;
}

.sort-dropdown-item:hover {
  background: #f5f5f5;
}

.sort-dropdown-item.active {
  background: #fffbe6;
  color: var(--color-brand);
  font-weight: 600;
  position: relative;
}

.sort-dropdown-item.active .ps-status-icon {
  flex-shrink: 0;
  margin-left: 8px;
  font-size: 22px;
  position:absolute;
  right: 20px;
  top: 10px;
  width: 24px;
  height: 24px;
}

/* 评价列表 */
.reviews-list {
  display: flex;
  flex-direction: column;
}
.reviews-list > * {
  margin-bottom: 32px;
}
.reviews-list > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 32px) {
  .reviews-list {
    gap: 32px;
  }
  .reviews-list > * {
    margin-bottom: 0;
  }
}

/* 评价列表空状态 */
.reviews-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  min-height: 180px;
}

.reviews-empty .reviews-empty-icon {
  font-size: 150px;
  margin-bottom: 20px;
  color: #999;
}

.reviews-empty .reviews-empty-text {
  font-size: 16px;
  color: #999;
  margin: 0;
}

.review-item {
  display: flex;
  flex-direction: column;
}
.review-item > * {
  margin-bottom: 12px;
}
.review-item > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 12px) {
  .review-item {
    gap: 12px;
  }
  .review-item > * {
    margin-bottom: 0;
  }
}

/* 评价头部 */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.user-info {
  display: flex;
  align-items: center;
}
.user-info > * {
  margin-left: 12px;
}
.user-info > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .user-info {
    gap: 12px;
  }
  .user-info > * {
    margin-left: 0;
  }
}

.user-avatar,
.user-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-avatar-placeholder {
  background: linear-gradient(135deg, var(--color-brand), var(--brand-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.user-details {
  display: flex;
  flex-direction: column;
}
.user-details > * {
  margin-bottom: 4px;
}
.user-details > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 4px) {
  .user-details {
    gap: 4px;
  }
  .user-details > * {
    margin-bottom: 0;
  }
}

.user-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.review-date {
  font-size: 13px;
  color: #999;
}

.review-rating {
  display: flex;
  align-items: center;
}
.review-rating > * {
  margin-left: 8px;
}
.review-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .review-rating {
    gap: 8px;
  }
  .review-rating > * {
    margin-left: 0;
  }
}

.review-satisfaction {
  font-size: 14px;
  color: #6b5bff;
  font-weight: 500;
}

.rating-badge {
  display: inline-block;
  padding: 2px 8px;
  background: linear-gradient(90deg, var(--color-brand), var(--brand-400));
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

/* 评价内容 */
.review-content {
  font-size: 1em;
  line-height: 1.8;
  color: #333;
}

/* 评价标签 */
.review-tags {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: -8px;
}
.review-tags > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .review-tags {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .review-tags > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.tags-label {
  font-size: 13px;
  color: #999;
  line-height: 24px;
}

.review-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 13px;
  color: #666;
}

/* 翻译提示 */
.translation-notice {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

/* 评价图片 */
.review-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.review-images > * {
  margin-left: 4px;
  margin-bottom: 4px;
}
.review-images > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 8px) {
  .review-images {
    gap: 8px;
  }
  .review-images > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.review-image-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.review-image-thumb:hover {
  transform: scale(1.05);
}

/* 操作按钮 */
.review-actions {
  display: flex;
  padding-top: 8px;
}
.review-actions > * {
  margin-left: 16px;
}
.review-actions > *:first-child {
  margin-left: 0;
}
@supports (gap: 16px) {
  .review-actions {
    gap: 16px;
  }
  .review-actions > * {
    margin-left: 0;
  }
}

.review-actions.liked .action-btn{
  color: var(--color-brand);
}

.action-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: none;
  border: none;
  color: #999;
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}
.action-btn > * {
  margin-left: 6px;
}
.action-btn > *:first-child {
  margin-left: 0;
}
.action-btn i {
  font-size: 18px;
  position: relative;
  top: -1px;
}
@supports (gap: 6px) {
  .action-btn {
    gap: 6px;
  }
  .action-btn > * {
    margin-left: 0;
  }
}

.action-btn:hover {
  color: var(--color-brand);
}

.action-btn svg {
  width: 16px;
  height: 16px;
}

.helpful-count {
  font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .evaluate-section {
    padding-bottom: 16px;
  }

  .overall-rating {
    flex-direction: column;
    align-items: flex-start;
  }

  .rating-header {
    align-items: center;
  }

  .rating-number {
    font-size: 36px;
  }

  .rating-emoji {
    font-size: 32px;
  }

  .rating-max {
    font-size: 18px;
  }

  .satisfaction-text {
    font-size: 14px;
  }

  .total-reviews {
    font-size: 12px;
  }

  .sub-ratings {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-rating-name {
    font-size: 12px;
  }

  .sub-rating-value {
    font-size: 16px;
  }

  .reviews-title {
    font-size: 18px;
  }

  .sort-section,
  .filter-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .sort-section > *,
  .filter-section > * {
    margin-bottom: 8px;
  }
  .sort-section > *:last-child,
  .filter-section > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 8px) {
    .sort-section,
    .filter-section {
      gap: 8px;
    }
    .sort-section > *,
    .filter-section > * {
      margin-bottom: 0;
    }
  }

  .sort-label,
  .filter-label {
    font-size: 12px;
  }

  .sort-btn,
  .filter-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sort-dropdown-item {
    font-size: 12px;
  }

  .user-name {
    font-size: 12px;
  }

  .review-date {
    font-size: 11px;
  }

  .review-satisfaction {
    font-size: 12px;
  }

  .review-content {
    font-size: 0.875em;
  }

  .review-images {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-image-thumb {
    height: 80px;
  }

  .action-btn {
    font-size: 11px;
  }
}
/* 遮罩层 */
.evaluate-dialog-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 对话框容器 */
.evaluate-dialog-content {
  background: #fff;
  border-radius: 16px;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  max-height: 800px;
  display: flex;
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* 左侧：图片预览区域 */
.evaluate-dialog-images-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #000;
  min-width: 0;
}

/* 主图 */
.evaluate-dialog-main-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.evaluate-dialog-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

/* 关闭按钮 */
.evaluate-dialog-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #999;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.evaluate-dialog-close-btn:hover {
  color: #333;
  background: #f5f5f5;
}

/* 右侧：评论信息区域 */
.evaluate-dialog-info-section {
  width: 420px;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  position: relative;
  overflow-y: auto;
  flex-shrink: 0;
}

/* 用户信息 */
.evaluate-dialog-user {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.evaluate-dialog-user > * {
  margin-left: 12px;
}
.evaluate-dialog-user > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .evaluate-dialog-user {
    gap: 12px;
  }
  .evaluate-dialog-user > * {
    margin-left: 0;
  }
}

.evaluate-dialog-avatar,
.evaluate-dialog-avatar-placeholder {
  width: 40px!important;
  height: 40px!important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.evaluate-dialog-avatar-placeholder {
  background: linear-gradient(135deg, #6b5bff, var(--color-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.evaluate-dialog-user-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.evaluate-dialog-user-info > * {
  margin-bottom: 4px;
}
.evaluate-dialog-user-info > *:last-child {
  margin-bottom: 0;
}
@supports (gap: 4px) {
  .evaluate-dialog-user-info {
    gap: 4px;
  }
  .evaluate-dialog-user-info > * {
    margin-bottom: 0;
  }
}

.evaluate-dialog-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.evaluate-dialog-date {
  font-size: 12px;
  color: #999;
}

/* 评分 */
.evaluate-dialog-rating {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.evaluate-dialog-rating > * {
  margin-left: 8px;
}
.evaluate-dialog-rating > *:first-child {
  margin-left: 0;
}
@supports (gap: 8px) {
  .evaluate-dialog-rating {
    gap: 8px;
  }
  .evaluate-dialog-rating > * {
    margin-left: 0;
  }
}

.review-satisfaction {
  font-size: 14px;
  color: var(--color-brand);
  font-weight: 600;
}

.rating-badge {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(90deg, var(--color-brand), var(--brand-400));
  color: #fff;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
}

/* Tags */
.evaluate-dialog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
  margin-right: -8px;
  margin-bottom: -8px;
}
.evaluate-dialog-tags > * {
  margin-right: 8px;
  margin-bottom: 8px;
}
@supports (gap: 8px) {
  .evaluate-dialog-tags {
    gap: 8px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .evaluate-dialog-tags > * {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.tags-label {
  font-size: 13px;
  color: #666;
}

/* 评价内容 */
.evaluate-dialog-review-content {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  flex: 1;
  overflow-y: auto;
}

.evaluate-dialog-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

/* 导航按钮 */
.evaluate-dialog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  color: #fff;
  font-size: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.evaluate-dialog-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.evaluate-dialog-nav-left {
  left: 20px;
}

.evaluate-dialog-nav-right {
  right: 20px;
}

/* 图片计数器 */
.evaluate-dialog-image-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 缩略图 */
.evaluate-dialog-thumbnails {
  display: flex;
  padding: 16px 20px;
  background: #000;
  overflow-x: auto;
  justify-content: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.evaluate-dialog-thumbnails > * {
  margin-left: 12px;
}
.evaluate-dialog-thumbnails > *:first-child {
  margin-left: 0;
}
@supports (gap: 12px) {
  .evaluate-dialog-thumbnails {
    gap: 12px;
  }
  .evaluate-dialog-thumbnails > * {
    margin-left: 0;
  }
}

.evaluate-dialog-thumbnail {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  opacity: 0.6;
}

.evaluate-dialog-thumbnail.active {
  opacity: 1;
  border-color: #6b5bff;
  box-shadow: 0 0 0 2px rgba(107, 91, 255, 0.3);
}

.evaluate-dialog-thumbnail:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.6);
}

.evaluate-dialog-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-img {
  animation-duration: 0.35s;
  animation-fill-mode: both;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .evaluate-dialog-content {
    flex-direction: column;
    width: 95vw;
    max-width: 600px;
    height: 90vh;
    max-height: 90vh;
  }

  .evaluate-dialog-images-section {
    flex: 1;
    min-height: 50vh;
  }

  .evaluate-dialog-info-section {
    width: 100%;
    flex: 1;
    padding: 0;
  }

  .evaluate-dialog-user,
  .evaluate-dialog-rating,
  .evaluate-dialog-tags,
  .evaluate-dialog-review-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .evaluate-dialog-main-image {
    min-height: 300px;
  }
}

.trip-custom-header-menu {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  top: var(--gta-header-h, 60px);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fz-sm);
  font-weight: var(--fw-medium);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform .18s ease, opacity .18s ease;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;

  .content {
    width: 1280px;
    margin: auto;
    padding: 0 40px;
    display: flex;

    div {
      height: 48px;
      line-height: 48px;
      padding: 0 24px;
      font-size: 16px;
      margin-bottom: -2px;
      cursor: pointer;
    }

    .active {
      color: var(--color-brand);
      border-bottom: 2px solid var(--color-brand);
    }

    div:hover {
      color: var(--color-brand);
      background: var(--brand-50);
      border-bottom: 2px solid var(--color-brand);
    }
  }
}

.trip-custom-header-menu.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .trip-custom-header-menu {
    top: var(--gta-header-h, 48px);

    .content {
      width: 100%;
      padding: 0 16px;
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;

      &::-webkit-scrollbar {
        display: none;
      }

      div {
        height: 40px;
        line-height: 40px;
        padding: 0 12px;
        font-size: 14px;
        flex: 0 0 auto;
      }

      .active {
        color: var(--color-brand);
        border-bottom: 3px solid var(--color-brand);
      }

      div:hover {
        color: var(--color-brand);
        background: var(--brand-50);
        border-bottom: 3px solid var(--color-brand);
      }
    }
  }
}
.trip-custom-tips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;

}

.trip-custom-tips .left {
  flex: 1;
}

.trip-custom-tips .score {
  font-size: 18px;
  font-weight: bold;
  color: #16a34a;
  margin-right: 12px;
}

.trip-custom-tips .score-num {
  color: #212121;
  margin-right: 12px;
  cursor: pointer;
}

.trip-custom-tips .part-num {
  color: #212121;
}

.trip-custom-tips .tips-address {
  color: #212121;
  font-size: 14px;
}

.trip-custom-tips .right {
  margin-left: 20px;
}

.favorite-btn {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}



.favorite-btn.favorited {
  background-color: #16a34a;
  border-color: #16a34a;
  color: #fff;
}



.favorite-btn i {
  margin-right: 8px;
}

.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.login-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .trip-custom-tips .left>div:first-child {
    margin-bottom: 8px;
  }
}

.fullscreen-map{
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: white;
  z-index: 3000;
}

.map-close-btn {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3100;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.map-close-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .trip-mobile-bottombar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  }
  .trip-mobile-bottombar-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .trip-mobile-bottombar-total > * {
    margin-left: 12px;
  }
  .trip-mobile-bottombar-total > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 12px) {
    .trip-mobile-bottombar-total {
      gap: 12px;
    }
    .trip-mobile-bottombar-total > * {
      margin-left: 0;
    }
  }

  .trip-mobile-bottombar-price {
    cursor: pointer;
    flex: 1;
  }

  .trip-mobile-bottombar-amount {
    font-size: 20px;
    color: #212121;
    font-weight: 700;
    line-height: 1.32;
  }

  .trip-mobile-bottombar-tip {
    color: #757575;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
  }

  .trip-mobile-bottombar-actions {
    display: flex;
  }
  .trip-mobile-bottombar-actions > * {
    margin-left: 8px;
  }
  .trip-mobile-bottombar-actions > *:first-child {
    margin-left: 0;
  }
  @supports (gap: 8px) {
    .trip-mobile-bottombar-actions {
      gap: 8px;
    }
    .trip-mobile-bottombar-actions > * {
      margin-left: 0;
    }
  }

  .trip-mobile-bottombar-actions button {
    border: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 12px;
    height: unset;
    border-radius: 8px;
  }
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--content,
.mobile-drawer-component .combo-detail--content {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--line {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--line .trip-line--images {
  height: 100px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--price {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--price .combo-fee {
  color: #555;
  line-height: 1.8;
  word-break: break-all;
  white-space: pre-line;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line {
  padding: 12px 10px;
  color: #555;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .show-album-icon {
  right: 8px;
  bottom: 8px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .image-album>* {
  margin: 2px;
}

@supports (gap: 4px) {
  .trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .image-album {
    gap: 4px;
  }

  .trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .image-album>* {
    margin: 0;
  }
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--items {
  font-size: 12px;
  border-left: 1px dashed #ccc;
  padding: 0 15px 20px;
  position: relative;
  word-break: break-all;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--items:last-child {
  padding-bottom: 0;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .address-text {
  line-height: 22px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .arrow {
  margin: 0 8px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .from i,
.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .to i {
  display: none;
  margin-right: 4px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .from.has-gps,
.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .to.has-gps {
  cursor: pointer;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .from.has-gps i,
.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--address .to.has-gps i {
  display: inline-block;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--dining {
  margin-top: 12px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .trip-line--stay {
  margin: 12px 0;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .item-icon {
  background-color: rgba(26, 97, 4, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  height: 20px;
  left: -10px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 20px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .trip-combo-line .gta-icon.item-icon {
  background: #333;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .dining-text>span {
  margin-right: 8px;
}

.trip-custom-page .trip-custom-content .combo-detail,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail,
.mobile-drawer-component .combo-detail {
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 24px;
  max-height: 750px;
  overflow-y: auto;
  font-size: 12px;
  position: relative;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-expand-btn,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-expand-btn,
.mobile-drawer-component .combo-detail .combo-expand-btn {
  font-size: 20px;
  cursor: pointer;
}

.trip-custom-page .trip-custom-content .combo-detail .title,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .title,
.mobile-drawer-component .combo-detail .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trip-custom-page .trip-custom-content .combo-detail .title-3,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .title-3,
.mobile-drawer-component .combo-detail .title-3 {
  margin-bottom: 12px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--tips,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--tips,
.mobile-drawer-component .combo-detail--tips,
.mobile-drawer-component .combo-detail .combo-detail--tips {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--content,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--content,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--content,
.mobile-drawer-component .combo-detail--content,
.mobile-drawer-component .combo-detail .combo-detail--content {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--tip,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--tip,
.mobile-drawer-component .combo-detail--tip,
.mobile-drawer-component .combo-detail .combo-detail--tip {
  color: rgb(117, 117, 117);
  border: 1px solid #757575;
  background-color: rgb(245, 245, 245);
  border-radius: 6px;
  font-size: 12px;
  padding: 2px 4px;
  margin-right: 8px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--line,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--line,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--line,
.mobile-drawer-component .combo-detail--line,
.mobile-drawer-component .combo-detail .combo-detail--line {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--line .trip-line--images,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--line .trip-line--images,
.mobile-drawer-component .combo-detail--line .trip-line--images,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--line .trip-line--images,
.mobile-drawer-component .combo-detail .combo-detail--line .trip-line--images {
  height: 100px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--price,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--price,
.mobile-drawer-component .combo-detail--price,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--price,
.mobile-drawer-component .combo-detail .combo-detail--price {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--price .combo-fee,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--price .combo-fee,
.mobile-drawer-component .combo-detail--price .combo-fee,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--price .combo-fee,
.mobile-drawer-component .combo-detail .combo-detail--price .combo-fee {
  color: #555;
  line-height: 1.8;
  word-break: break-all;
  white-space: pre-line;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--car,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--car,
.mobile-drawer-component .combo-detail--car,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--car,
.mobile-drawer-component .combo-detail .combo-detail--car {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--car .combo-car,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--car .combo-car,
.mobile-drawer-component .combo-detail--car .combo-car,
.mobile-drawer-component .combo-detail .combo-detail--car .combo-car {
  color: #555;
  padding: 0 8px;
}

.trip-custom-page .trip-custom-content .combo-detail .combo-detail--desc,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--desc,
.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--desc,
.mobile-drawer-component .combo-detail--desc,
.mobile-drawer-component .combo-detail .combo-detail--desc {
  margin-bottom: 24px;
}

.trip-custom-page .trip-custom-content .combo-detail--text,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail--text,
.mobile-drawer-component .combo-detail--text {
  p {
    font-size: 12px;
    color: #555;
  }
}

.trip-custom-page .trip-custom-content .trip-combo-line,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line,
.mobile-drawer-component .trip-combo-line {
  padding: 12px 10px;
  color: #555;
}

.trip-custom-page .trip-custom-content .trip-combo-line .show-album-icon,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .show-album-icon,
.mobile-drawer-component .trip-combo-line .show-album-icon {
  right: 8px;
  bottom: 8px;
}

.trip-custom-page .trip-custom-content .trip-combo-line .image-album>*,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .image-album>*,
.mobile-drawer-component .trip-combo-line .image-album>* {
  margin: 2px;
}

@supports (gap: 4px) {

  .trip-custom-page .trip-custom-content .trip-combo-line .image-album,
  .trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .image-album,
  .mobile-drawer-component .trip-combo-line .image-album {
    gap: 4px;
  }

  .trip-custom-page .trip-custom-content .trip-combo-line .image-album>*,
  .trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .image-album>*,
  .mobile-drawer-component .trip-combo-line .image-album>* {
    margin: 0;
  }
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--items,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--items,
.mobile-drawer-component .trip-combo-line .trip-line--items {
  font-size: 12px;
  border-left: 1px dashed #ccc;
  padding: 0 15px 20px;
  position: relative;
  word-break: break-all;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--items:last-child,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--items:last-child,
.mobile-drawer-component .trip-combo-line .trip-line--items:last-child {
  padding-bottom: 0;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .address-text,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .address-text,
.mobile-drawer-component .trip-combo-line .trip-line--address .address-text {
  line-height: 22px;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .arrow,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .arrow,
.mobile-drawer-component .trip-combo-line .trip-line--address .arrow {
  margin: 0 8px;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .from i,
.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .to i,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .from i,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .to i,
.mobile-drawer-component .trip-combo-line .trip-line--address .from i,
.mobile-drawer-component .trip-combo-line .trip-line--address .to i {
  display: none;
  margin-right: 4px;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .from.has-gps,
.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .to.has-gps,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .from.has-gps,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .to.has-gps,
.mobile-drawer-component .trip-combo-line .trip-line--address .from.has-gps,
.mobile-drawer-component .trip-combo-line .trip-line--address .to.has-gps {
  cursor: pointer;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .from.has-gps i,
.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--address .to.has-gps i,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .from.has-gps i,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--address .to.has-gps i,
.mobile-drawer-component .trip-combo-line .trip-line--address .from.has-gps i,
.mobile-drawer-component .trip-combo-line .trip-line--address .to.has-gps i {
  display: inline-block;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--dining,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--dining,
.mobile-drawer-component .trip-combo-line .trip-line--dining {
  margin-top: 12px;
}

.trip-custom-page .trip-custom-content .trip-combo-line .trip-line--stay,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .trip-line--stay,
.mobile-drawer-component .trip-combo-line .trip-line--stay {
  margin: 12px 0;
}

.trip-custom-page .trip-custom-content .trip-combo-line .item-icon,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .item-icon,
.mobile-drawer-component .trip-combo-line .item-icon {
  background-color: rgba(26, 97, 4, 0.8);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  height: 20px;
  left: -10px;
  line-height: 20px;
  position: absolute;
  text-align: center;
  width: 20px;
}

.trip-custom-page .trip-custom-content .trip-combo-line .gta-icon.item-icon,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .trip-combo-line .gta-icon.item-icon,
.mobile-drawer-component .trip-combo-line .gta-icon.item-icon {
  background: #333;
}

.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .dining-text>span,
.combo-detail .dining-text>span,
.mobile-drawer-component .combo-detail .dining-text>span {
  margin-right: 8px;
}

.trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--content,
.trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--content,
.mobile-drawer-component .combo-detail--content {
  max-height: 50vh;
  overflow-y: auto;
  background-color: white;
  /* padding: 20px; */
  border-radius: 8px;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--content {
  background-color: white;
  padding: 20px;
  padding-bottom: 0px;
}

/* .trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--content:last-child{
   margin-bottom: 0 !important;
} */
.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--content .combo-detail--price:last-child .card-expand {
  border: none;
}

.trip-custom-page .trip-custom-contents .trip-custom-combo-detail-mobile .combo-detail--content .combo-detail--price:last-child {
  margin-bottom: 0 !important;
}


@media (max-width: 768px) {

  .trip-custom-page .trip-custom-content .trip-content--combo .combo-detail--content,
  .trip-custom-page .trip-custom-content--combo .combo-right .combo-detail .combo-detail--content,
  .mobile-drawer-component .combo-detail--content:last-child {
    margin-bottom: 0 !important;
  }

  .trip-custom-page .trip-custom-content .trip-combo-detail-mobile .combo-detail--price:last-child {
    margin-bottom: 0 !important;
  }

  .trip-custom-page .trip-custom-content .trip-combo-detail-mobile .combo-detail--price:last-child .card-expand {
    border: none;
  }
}


.form-dialog .card-content,
.mobile-drawer-component .card-content {
  font-size: 14px;
}
.footer {
  background-color: #1f1f1f;
  color: #ccc;
  font-size: var(--fz-xs);
  line-height: 1.9;
  padding: 20px 16px 20px 16px;
  text-align: center;
  box-sizing: border-box;
  margin-top: auto;

}

.footer-top {
  display: flex;
  justify-content: center;
}

.footer-top ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: -24px;
  margin-bottom: -12px;
}

.footer-top li {
  color: inherit;
  margin-right: 24px;
  margin-bottom: 12px;
}

@supports (gap: 12px 24px) {
  .footer-top ul {
    gap: 12px 24px;
    margin-right: 0;
    margin-bottom: 0;
  }

  .footer-top li {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.footer-top a {
  color: #eee;
  font-size: var(--fz-xs);
  text-decoration: none;
}

.footer-top a:hover {
  text-decoration: underline;
}

.footer-divider {
  background-color: hsla(0, 0%, 100%, .1);
  height: 1px;
  margin: 12px 0;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom li {
  color: #eee;
  font-size: var(--fz-xs);
  margin-right: 12px;
}

/* 版权和备案信息区域 */
.footer-bottom .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* 版权、备案号、邓白氏编码 */
.footer-bottom .footer-legal span,
.footer-bottom .footer-legal a {
  color: #eee;
  font-size: var(--fz-xs);
  margin-right: 12px;
}

/* 公司信息区域（原来第二个和第三个 ul） */
.footer-bottom address {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-style: normal;
  /* 覆盖 <address> 默认斜体 */
}

/* 公司信息的每个字段 */
.footer-bottom address span {
  color: #eee;
  font-size: var(--fz-xs);
  margin-right: 12px;
}

/* 超链接样式（备案号） */
.footer-bottom .footer-legal a {
  color: #eee;
  text-decoration: none;
}

.footer-bottom .footer-legal a:hover {
  text-decoration: underline;
}

/* 可选：最后一个元素去掉右边距，避免换行时多余间距 */
.footer-bottom .footer-legal span:last-child,
.footer-bottom .footer-legal a:last-child,
.footer-bottom address span:last-child {
  margin-right: 0;
}

.footer-bottom .footer-entity:last-child {

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-bottom .footer-legal .copyright a {
  text-decoration: underline;
  margin-left: 5px;
}


@media (max-width: 768px) {
  .footer {
    padding: 20px 16px 30px 16px;
    text-align: left;
  }

  .footer-top ul {
    margin-right: -10px;
    margin-bottom: -12px;
  }

  .footer-top li {
    margin-right: 10px;
    margin-bottom: 12px;
  }

  @supports (gap: 12px 10px) {
    .footer-top ul {
      gap: 12px 10px;
      margin-right: 0;
      margin-bottom: 0;
    }

    .footer-top li {
      margin-right: 0;
      margin-bottom: 0;
    }
  }

  .footer-bottom .footer-legal .copyright a {
    margin-left: 5px;
  }

  .footer-bottom address {
    justify-content: flex-start;
  }

  .footer-bottom .footer-entity:last-child {
    align-items: flex-start;
  }

  /* 行程页移动端 Footer 样式 */
  .trip-page-footer {
    padding: 20px 16px 80px 16px;

  }



}
.banner-more-mobile{
  height: calc(100% - 61px);
  display: flex;
  flex-direction: column;
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
}

.banner-more-mobile .banner-more-mobile-content {
  margin-top: var(--container-padding-x);
  margin-bottom: var(--container-padding-x);
  display: flex;
  flex-direction: column;
  
}
.back-to-top {

  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;

  z-index: 900;
  color: #666;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #f5f5f5;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top.is-trip {
  bottom: 90px;
}

.magnifier {
  
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
 
  z-index: 900;
  color: #666;
}

.magnifier.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.magnifier:hover {
  background: #f5f5f5;
  color: #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.magnifier.is-trip {
  bottom: 90px;
}

.magnifier-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.magnifier-img i {
  font-size: 32px;
}
.floating-view-record {
 
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  opacity: 0;
 

  &.show {
    opacity: 1;
    transform: translateY(0);
  }

  &:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }

  .gta-icon {
    font-size: 24px;
    color: #333;
  }
}

.floating-view-record-content {
  padding: 16px;
  min-height: 200px;
}

.floating-view-record-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #999;
  font-size: 14px;
}


.floating-view-record-empty i {
  font-size: 180px;
}
  
html,body{
  overflow: hidden;
}
.app-container {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: auto;       /* 去掉 min-height:100vh，避免高度冲突 */
  background: white;
  overflow: auto;
  padding-top: var(--gta-header-h, 60px);
  padding-bottom: env(safe-area-inset-bottom);
  box-sizing: border-box;
  scroll-padding-top: var(--gta-header-h, 60px);
  /* overscroll-behavior: none; */
  -webkit-overflow-scrolling: touch;
}
@media (max-height: 100vh) {
  /* 隐藏滚动条 */
  ::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 1200px) {
  /* 整体滚动条宽度 */
  .app-container::-webkit-scrollbar {
    display: block;
    width: 8px;
    height: 8px;
  }

  /* 滚动条轨道 */
  .app-container::-webkit-scrollbar-track {
    background: transparent;
  }

  /* 滑块 */
  .app-container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    transition: background 0.3s;
  }

  /* hover 效果 */
  .app-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.45);
  }
}
:root {
  --fz-15:15px
}
:focus-visible{
  outline: none!important;
}

@media (max-width: 768px) {
  .navigation-tabs{
    display: none;
  }
  :root {
    /* 字体粗细 */
    --fw-thin: 100;
    --fw-extralight: 200;
    --fw-light: 300;
    --fw-normal: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;
    --fw-black: 900;

    --fz-xs: 12px;
    --fz-sm: 12px;
    --fz-md: 14px;
    --fz-lg: 16px;
    --fz-xl: 18px;
    --fz-2xl: 20px;
    --fz-3xl: 22px;
    --fz-4xl: 22px;
    --fz-5xl: 22px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, .06);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, .10);
    --control-h-sm: 28px;
    --control-h-md: 36px;
    --control-h-lg: 44px;
    --control-px: 12px;
    --icon-wrap-sm: 24px;
    --icon-wrap-md: 28px;
    --icon-wrap-lg: 32px;
    --icon-size-sm: 16px;
    --icon-size-md: 20px;
    --icon-size-lg: 24px;

  }

}
@media (max-width: 1200px) {
}



/*# sourceMappingURL=website.42bd81da.css.map*/