.search-popup-overlay {
  margin-top: 10px;
}

/* Header搜索弹窗特定样式 */
.header-search-popup {
 
}

.search-popup {
  border-radius: 8px;
  background: white;
  max-height: 50vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: min(690px, 100%);
}

.search-popup-section {
  padding: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.search-popup-section:last-child {
  border-bottom: none;
}

.search-popup-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.search-popup-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding: 12px 12px 0 12px;
  position: relative;
  z-index: 2;
}

.search-popup-clear-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
}

.search-popup-history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-popup-history-tag {
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 16px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.search-popup-history-tag:hover {
  background: #e0e0e0;
}

.search-popup-activities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-popup-activity-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
}

.search-popup-activity-item:hover {
  background: #f0f0f0;
}

.search-popup-activity-image {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.search-popup-activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-popup-activity-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.search-popup-activity-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.search-popup-activity-location {
  font-size: 12px;
  color: #666;
}

.search-popup-activity-price {
  font-size: 14px;
  font-weight: 600;
  color: #ff6b6b;
}

.search-popup-destinations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-popup-destination-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 8px;
  cursor: pointer;
}

.search-popup-destination-item:hover {
  background: #f0f0f0;
}

.search-popup-destination-image {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.search-popup-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-popup-destination-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.search-popup-destination-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.search-popup-destination-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.search-popup-destination-tag {
  padding: 2px 6px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 12px;
  color: #666;
}

.search-popup-cities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-popup-province {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-popup-province-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.search-popup-city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-popup-city-tag {
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 16px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.search-popup-city-tag:hover {
  background: #e0e0e0;
}

/* PC端布局 */
.search-popup-pc-layout {
  display: flex;
  gap: 24px;
}

.search-popup-pc-column {
  flex: 1;
  position: relative;
  border: 1px solid #f0f0f0;
 border-radius: 8px;
}

/* 顶部渐变效果 */
.search-popup-pc-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(200,240,200,0.9), rgba(255,255,255,0));
  pointer-events: none;
  z-index: 1;
  border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.search-popup-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-popup-list-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.search-popup-list-item:hover {
  background: #f9f9f9;
}

.search-popup-list-item-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.search-popup-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-popup-list-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-popup-list-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

/* 移动端布局 */
.search-popup-mobile-sections {
  margin-top: 16px;
  padding: 0 16px;
}

.search-popup-mobile-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.search-popup-mobile-tab {
  padding: 8px 16px;
  background: none;
  border: none;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.search-popup-mobile-tab.active {
  color: #333;
  font-weight: 600;
  border-bottom-color: var(--color-brand);
}

.search-popup-mobile-content {
  overflow: hidden;
}

.search-popup-mobile-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.search-popup-mobile-item {
  max-width: 100px;
  flex: 0 0 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.search-popup-mobile-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}

.search-popup-mobile-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-popup-mobile-item-name {
  font-size: 14px;
  color: #333;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 滚动条样式 */
.search-popup::-webkit-scrollbar {
  width: 6px;
}

.search-popup::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.search-popup::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.search-popup::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* 移动端滚动条隐藏 */
.search-popup-mobile-tabs::-webkit-scrollbar,
.search-popup-mobile-scroll::-webkit-scrollbar {
  display: none;
}

.search-popup-mobile-tabs,
.search-popup-mobile-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slide-track.website-slide-track {
  position: relative;
  width: 100%;
}

.slide-track.website-slide-track .slide-track-viewport {
  overflow: hidden;
  width: 100%;
}

.slide-track.website-slide-track .slide-track-rail {
  display: flex;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  padding: 2px 0px 2px 0px;
}

.slide-track.website-slide-track .slide-track-item {
  box-sizing: border-box;
  padding-left: 2.5px;
  padding-right: 2.5px;
  min-width: 0;
}

.slide-track.website-slide-track .slide-track-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  width: 48px;
  height: 48px;

  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.78);
  color: #111;
  cursor: pointer;

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

  overflow: hidden;
  opacity: 0;
  pointer-events: none;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);

  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.slide-track.website-slide-track .slide-track-arrow::before {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border-radius: 9999px;
  background: transparent;
  pointer-events: none;
}

.slide-track.website-slide-track .slide-track-arrow i {
  display: block;
  line-height: 1;
  color: inherit;
}

.slide-track.website-slide-track:hover .slide-track-arrow,
.slide-track.website-slide-track:focus-within .slide-track-arrow {
  opacity: 1;
  pointer-events: auto;
}

.slide-track.website-slide-track .slide-track-arrow:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.slide-track.website-slide-track .slide-track-arrow:active {
  transform: translateY(-50%) scale(0.96);
  transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.slide-track.website-slide-track .slide-track-arrow-left {
  left: 12px;
}

.slide-track.website-slide-track .slide-track-arrow-right {
  right: 12px;
}

.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-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;
  gap: 6px;
  pointer-events: none;
}

.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-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;
  gap: 6px;
  flex: 1;
}

.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;
  gap: 6px;
  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-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;
  gap: 4px;
  color: #222;
}

.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 {
    gap: 4px;
  }
}

.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-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 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.35;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


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

.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;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

/* 移动端优化 */
 

@media (max-width: 1400px) {
   .card-track-website .card-item.video-card {
    border: 1px solid #eef2f7 !important;
  }

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

  .card-track-website .video-row {
    align-items: flex-end;
  }
}

.card-track-website .city-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  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: 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;
}

.card-track-website .scenicSpot-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  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: 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);
  }

}
.photo-wall-track {
  width: 100%;
}

.photo-wall-page {
  display: flex;
  gap: 16px;
  width: 100%;
}

.photo-wall-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-wall-item {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
  width: 100%;
}

.photo-wall-item:hover {
  transform: translateY(-4px);
}

.photo-wall-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.photo-wall-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.photo-wall-item {
  position: relative;
}

.photo-wall-item::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;
  z-index: 1;
}

.photo-wall-empty {
  padding: 60px 40px;
  text-align: center;
  color: #999;
  background-color: #f9f9f9;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .photo-wall-page {
    gap: 8px;
  }
  
  .photo-wall-column {
    gap: 8px;
  }
  
  /* 移动端优化：减小内边距和圆角 */
  .photo-wall-item {
    border-radius: 6px;
  }
  
  /* 可选：移动端降低悬停效果 */
  .photo-wall-item:hover {
    transform: translateY(-2px);
  }
}

/* 小屏幕手机适配 */
@media (max-width: 480px) {
  .photo-wall-page {
    gap: 6px;
  }
  
  .photo-wall-column {
    gap: 6px;
  }
}
.consultant-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(22, 130, 71, 0.15);
  min-height: 360px;
  height: auto;
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.1),
    0 8px 24px -6px rgba(22, 130, 71, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.consultant-card:hover {
  box-shadow:
    0 30px 60px -12px rgba(22, 130, 71, 0.25),
    0 12px 32px -8px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(22, 130, 71, 0.3);
}


.consultant-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 130, 71, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(22, 130, 71, 0.12) 0%, transparent 50%),
    repeating-linear-gradient(45deg,
      rgba(22, 130, 71, 0.02) 0px,
      rgba(22, 130, 71, 0.02) 2px,
      transparent 2px,
      transparent 8px);
  z-index: 0;
  border-radius: inherit;
}

.consultant-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.consultant-card:hover::after {
  opacity: 1;
}

.consultant-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}


.consultant-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
  mix-blend-mode: soft-light;
}

.consultant-glow--top {
  top: -30px;
  left: 10px;
  width: 200px;
  height: 100px;
  background: rgba(22, 130, 71, 0.2);
  border-radius: 999px;
  animation: floatGlow 8s infinite ease-in-out;
}

.consultant-glow--bottom {
  right: 20px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  background: rgba(34, 197, 94, 0.18);
  border-radius: 999px;
  animation: floatGlow 6s infinite ease-in-out reverse;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-5px, -5px) scale(1.05);
  }
}


.consultant-main {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}


.consultant-info {
  flex: 1;
  min-width: 0;
}


.consultant-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.consultant-name-zh {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.consultant-name-en {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}


.consultant-title {
  display: inline-block;
  white-space: nowrap;
  margin: 8px 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #168247;
  background: linear-gradient(135deg, rgba(22, 130, 71, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  padding: 4px 12px;
  border-radius: 30px;
  border: 1px solid rgba(22, 130, 71, 0.2);
  backdrop-filter: blur(4px);
  letter-spacing: -0.3px;
}

.consultant-subtitle {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  opacity: 0.8;
  font-weight: 400;
  letter-spacing: 0.2px;
}


.consultant-avatar-wrap {
  width: 100px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #eef2f6 100%);
  box-shadow:
    0 15px 30px -10px rgba(22, 130, 71, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(255, 255, 255, 0.5);
  /* transform: rotate(2deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.consultant-card:hover .consultant-avatar-wrap {
  transform: rotate(0deg);
  box-shadow: 0 20px 30px -8px rgba(22, 130, 71, 0.25);
}

.consultant-avatar {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.consultant-card:hover .consultant-avatar {
  transform: scale(1.08);
}


.consultant-contact-list {
  position: relative;
  z-index: 1;
  margin-top: auto;
  display: grid;
  gap: 12px;
}


.consultant-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(22, 130, 71, 0.15);
  border-radius: 20px;
  padding: 14px 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.consultant-contact-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.consultant-contact-item:hover::before {
  transform: translateX(100%);
}

.consultant-contact-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(22, 130, 71, 0.3);
  box-shadow: 0 8px 20px -8px rgba(22, 130, 71, 0.2);
}


.consultant-contact-left {
  min-width: 0;
  flex: 1;
}

.consultant-contact-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #168247;
  margin-bottom: 4px;
  opacity: 0.8;
}

.consultant-contact-value {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-feature-settings: "tnum";
}


.consultant-contact-right {
  flex-shrink: 0;
}

.consultant-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, #168247 0%, #22c55e 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(22, 130, 71, 0.25);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.consultant-action-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transition: left 0.6s ease;
}

.consultant-action-btn:hover::before {
  left: 100%;
}

.consultant-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 130, 71, 0.35);
  background: linear-gradient(135deg, #1a9c55 0%, #2ed573 100%);
}

.consultant-action-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(22, 130, 71, 0.2);
}


.consultant-action-btn--ghost {
  background: transparent;
  color: #168247;
  border: 1.5px solid rgba(22, 130, 71, 0.3);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.consultant-action-btn--ghost::before {
  background: linear-gradient(90deg, transparent, rgba(22, 130, 71, 0.1), transparent);
}

.consultant-action-btn--ghost:hover {
  background: rgba(22, 130, 71, 0.05);
  color: #0f5f35;
  border-color: #168247;
  box-shadow: 0 4px 12px rgba(22, 130, 71, 0.15);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .consultant-card {
    border-radius: 20px;
    min-height: auto;
    height: auto;
  }

  .consultant-card-inner {
    padding: 24px;
  }

  .mesInfoCard-content .slide-track-rail {
    display: block;
    margin: unset;
    padding: 2px;
  }

  .mesInfoCard-content .slide-track-item {
    margin-bottom: 8px;
  }

  .consultant-main-flex{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    gap: 20px;
  }

  .consultant-main {
    width: 100% !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px !important;
    margin-bottom: 0px !important;
  }


  .consultant-info {
    flex: 1;
    min-width: 0;
  }


  .consultant-name {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
  }

  .consultant-name-zh {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
  }

  .consultant-name-en {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
  }


  .consultant-title {
    display: inline-block;
    margin: 8px 0 6px;
    font-size: 12px !important;
    font-weight: 700;
    color: #168247;
    background: linear-gradient(135deg, rgba(22, 130, 71, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid rgba(22, 130, 71, 0.2);
    backdrop-filter: blur(4px);
    letter-spacing: -0.3px;
  }

  .consultant-subtitle {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
    opacity: 0.8;
    font-weight: 400;
    letter-spacing: 0.2px;
  }


  .consultant-avatar-wrap {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px !important;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2f6 100%);
    box-shadow:
      0 15px 30px -10px rgba(22, 130, 71, 0.15),
      inset 0 2px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* transform: rotate(2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
  }

  .consultant-avatar {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
  }


  .consultant-contact-list {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: grid;
    gap: 12px;
  }
  .consultant-contact-item-btn {
    width: 100%;
    height: 36px;
    text-align: center;
    line-height: 36px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #168247 0%, #22c55e 100%);
    border-radius: 40px;
    border: 0;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
  }


  .consultant-contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(22, 130, 71, 0.15);
    border-radius: 20px;
    padding: 8px 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .consultant-contact-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .consultant-contact-item:hover::before {
    transform: translateX(100%);
  }

  .consultant-contact-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(22, 130, 71, 0.3);
    box-shadow: 0 8px 20px -8px rgba(22, 130, 71, 0.2);
  }


  .consultant-contact-left {
    min-width: 0;
    flex: 1;
  }

  .consultant-contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #168247;
    margin-bottom: 4px;
    opacity: 0.8;
  }

  .consultant-contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-feature-settings: "tnum";
  }


  .consultant-contact-right {
    flex-shrink: 0;
  }

  .consultant-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, #168247 0%, #22c55e 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(22, 130, 71, 0.25);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
  }

  .consultant-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
    transition: left 0.6s ease;
  }

  .consultant-action-btn:hover::before {
    left: 100%;
  }

  .consultant-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 130, 71, 0.35);
    background: linear-gradient(135deg, #1a9c55 0%, #2ed573 100%);
  }

  .consultant-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(22, 130, 71, 0.2);
  }


  .consultant-action-btn--ghost {
    background: transparent;
    color: #168247;
    border: 1.5px solid rgba(22, 130, 71, 0.3);
    box-shadow: none;
    backdrop-filter: blur(4px);
  }

  .consultant-action-btn--ghost::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(22, 130, 71, 0.1),
        transparent);
  }

  .consultant-action-btn--ghost:hover {
    background: rgba(22, 130, 71, 0.05);
    color: #0f5f35;
    border-color: #168247;
    box-shadow: 0 4px 12px rgba(22, 130, 71, 0.15);
    transform: translateY(-2px);
  }

  /* .consultant-card:hover .consultant-avatar-wrap {
    transform: rotate(0deg);
    box-shadow: 0 20px 30px -8px rgba(22, 130, 71, 0.25);
  } */

  .consultant-card:hover .consultant-avatar {
    transform: scale(1.08);
  }
}

/* 抽屉内容样式 */
.consultant-drawer-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consultant-drawer-content .consultant-contact-item {
  margin-bottom: 0;
}




@media (min-width: 769px) and (max-width: 1024px) {
  .consultant-card {
    min-height: 340px;
  }

  .consultant-card-inner {
    padding: 0px;
  }

  .consultant-name-zh {
    font-size: 22px;
  }

  .consultant-name-en {
    font-size: 13px;
  }

  .consultant-avatar-wrap {
    width: 90px;
    height: 120px;
  }

  .consultant-contact-value {
    font-size: 13px;
  }
}

.card-track-website .province-card {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  min-height: clamp(160px, 10vw, 350px);
}

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

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

.card-track-website .province-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 100%;
  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: clamp(160px, 18vw, 220px);
}

.card-track-website .province-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;
}

 .search-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

 .search-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

 .search-cover-wrap {
  position: relative;
 
}

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

 .search-cover.broken {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

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

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

 .search-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

 .search-card:hover .search-img {
  transform: scale(1.05);
}

 .search-type-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

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

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

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

 .search-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;
  color: #333;
}

 .search-body {
  padding: 12px;
  padding-top: 6px;
}

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

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

 .search-summary-placeholder {
  min-height: 36px;
  width: 100%;
}

 .search-favorite-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: white;
}

 .search-favorite-btn:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

 .search-favorite-btn.favorited {
  background: #4CAF50;
  color: white;
}

 .search-favorite-btn.favorited i {
  color: white;
}

 .search-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 24px;
}

 .search-tag.ellipsis-tag {
  background: transparent;
  border: none;
  color: #666;
  padding: 2px 4px;
}

 .search-tag {
  padding: 2px 8px;
  background: white;
  border: 1px solid var(--color-brand);
  font-size: 12px;
  color: var(--color-brand);
  white-space: nowrap;
  text-align: center;
}

 .search-type-tag {
  background: var(--color-brand);
  color: white;
  position: absolute;
  top: 8px;
  left: 8px;
  border-radius: 8px;
}

 .search-tags-placeholder {
  height: 24px;
  width: 100%;
}

 .search-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-height: 16px;
  margin-top: 8px;
}

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

 .search-score {
  font-weight: 700;
  color: #333;
}

 .search-rating-muted {
  color: #666;
}

 .search-rating-dot {
  color: #666;
}

.coupon-card {
 
  padding: 0 4px;
  box-sizing: border-box;
}

.coupon-cover {
  position: relative;
  width: 100%;
  padding-top: 42.75%; /* 171/400 = 0.4275 */
  overflow: hidden;
  border-radius: 8px;

}

.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);
}
.view-record-card{
  width: 100%;
  height: 200px;
  display: inline-block;
}

.card-track-website {
  width: 100%;
  --card-track-item-h: auto;
}

.card-grid-page {
  display: grid;
  gap: 14px;
  align-items: stretch;
  grid-auto-rows: auto;
}

.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;
  aspect-ratio: 16/9;
  min-height: 120px;
}

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

.card-body {
  padding: 12px;
  min-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;
}


.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;
  will-change: transform;
}

.swipe-item {
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease, z-index 0.3s ease;
  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;
  transition: all 0.3s ease;
  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;
}

.navigation-mobile {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.navigation-mobile .navigation-mobile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.navigation-mobile .navigation-tab {
  flex-shrink: 0;
}

.navigation-mobile .navigation-city-list {
  flex: 1;
  overflow-y: auto;
  margin-top: var(--sp-4);
  padding: 0 var(--sp-3);
  padding-bottom: 44px;
}

.navigation-mobile .navigation-city-list p {
  word-break: break-all;
}

.navigation-mobile .tab-scenic-tips {
  margin-top: 15px;
  text-align: center;
}

.navigation-mobile .tab-scenic-tips>span {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 16px;
  margin: 0 8px;
  font-size: var(--fz-xs);
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  flex: none;
  align-items: center;
  height: 36px;
  display: inline-block;
}

.navigation-mobile .tab-scenic-tips .active {
  background-color: var(--brand-100);
  border: 1px solid var(--brand-500);
  color: var(--brand-500);
}

.navigation-mobile ul {
  margin-top: var(--sp-5);
}

.navigation-mobile li {
  list-style: none;
}

.navigation-mobile .navigation-city-list::-webkit-scrollbar {
  display: none;
  /* 对于WebKit和Blink */
}

.navigation-mobile .navigation-city-list .city-title {
  color: #212121;
  padding: 0 20px;
  font-size: var(--fz-md);
  line-height: 33px;
  margin-bottom: var(--sp-2);
}

.navigation-mobile .navigation-city-list .city-item {
  margin-bottom: var(--sp-4);
  display: flex;
  padding: 0 20px;
  height: 60px;
  align-items: center;
}

.navigation-mobile .navigation-city-list .city-item span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}



.navigation-mobile .navigation-city-list .city-item img {
  border-radius: 50%;
}

.navigation-mobile .navigation-city-list .city-item p {
  margin: 0;
  padding: 0;
  margin-left: var(--sp-2);
  font-size: var(--fz-xs);
}

.navigation-mobile .navigation-city-list .city-item .city-item-text1 {
  color: #a8a8a8;
  line-height: 20px;
}

.navigation-mobile .navigation-city-list .city-item .city-item-text2 {
  line-height: 22px;
  font-size: var(--fz-sm);
}

.navigation-mobile .mobile-header-quick-nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 36px;
}

.navigation-mobile .mobile-header-quick-nav a {
  margin-bottom: 22px;
}

.navigation-mobile-tabs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-mobile-tabs-item {
  margin: 0 16px;
  padding: 6px;
  padding: 6px 10px;
  border-radius: 12px;
    background-color: #f5f5f5;
}

.nav-mobile-tabs-item.active {
  background-color: var(--brand-100);
  border: 1px solid var(--brand-500);
  color: var(--brand-500);
}


/*# sourceMappingURL=684.256ea58a.css.map*/