.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-thumb-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.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-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.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;
 }
.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;
}
.video-main li{
  list-style: none;
}

.video-main .more{
  border: unset;
}

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


/* stylelint-disable */
html,
body {
  width: 100%;
  height: 100%;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}
[tabindex='-1']:focus {
  outline: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
}
address {
  margin-bottom: 1em;
  font-style: normal;
  line-height: inherit;
}
input[type='text'],
input[type='password'],
input[type='number'],
textarea {
  -webkit-appearance: none;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1em;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 500;
}
dd {
  margin-bottom: 0.5em;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1em;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
pre,
code,
kbd,
samp {
  font-size: 1em;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
}
pre {
  margin-top: 0;
  margin-bottom: 1em;
  overflow: auto;
}
figure {
  margin: 0 0 1em;
}
img {
  vertical-align: middle;
  border-style: none;
}
a,
area,
button,
[role='button'],
input:not([type='range']),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75em;
  padding-bottom: 0.3em;
  text-align: left;
  caption-side: bottom;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type='radio'],
input[type='checkbox'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5em;
  padding: 0;
  color: inherit;
  font-size: 1.5em;
  line-height: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}


/*# sourceMappingURL=website.d61a73f1.css.map*/