@charset "UTF-8";
:root {
  --tour-color-text: #111;
  --tour-color-muted: #636363;
  --tour-color-border: #e5e5e5;
  --tour-color-page: #f7f7f7;
  --tour-color-cream: #fff7e6;
  --tour-color-tab: #fffffff7;
  --tour-color-accent: #ffbe18;
  --tour-color-table-head: #ffe79c;
  --color-red: #c91414;
  --tour-container: 880px;
  --tour-radius-sm: 10px;
  --tour-radius-pill: 999px;
  --tour-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--tour-color-text);
  font-family: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, sans-serif;
  background: var(--tour-color-page);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.tour-page {
  min-height: 100vh;
}

.tour-hero {
  position: relative;
  display: grid;
  height: 25vw;
  overflow: hidden;
  background: #ffe79c;
  isolation: isolate;
}
@media (max-width: 576.98px) {
  .tour-hero {
    height: 35vw;
  }
}
.tour-hero__media, .tour-hero__image, .tour-hero__overlay, .tour-hero__content {
  grid-area: 1/1;
}
.tour-hero__media {
  width: 100%;
  height: 100%;
}
.tour-hero__image {
  width: 100%;
  height: 25vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  opacity: 0.9;
  transform: scale(1.001);
  transition: transform 700ms ease, opacity 700ms ease;
}
@media (max-width: 576.98px) {
  .tour-hero__image {
    height: 35vw;
  }
}
.tour-hero__overlay {
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .tour-hero__overlay {
    background: linear-gradient(180deg, rgba(237, 237, 234, 0.2), rgba(253, 255, 255, 0.6));
  }
}
.tour-hero__content {
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  text-align: center;
}
.tour-hero__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-red);
}
.tour-hero:hover .tour-hero__image {
  transform: scale(1.035);
  opacity: 0.7;
}

.tour-browser {
  background: var(--tour-color-page);
}

.tour-region-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--tour-color-accent);
  border-bottom: 1px solid #eee6d2;
  overflow-x: auto;
  scrollbar-width: thin;
}
.tour-region-tabs__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: #ffbe18;
  color: var(--tour-color-text);
  min-width: 104px;
  padding: 17px 22px;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.tour-region-tabs__button:hover {
  background: #fff7e6;
}
.tour-region-tabs__button:focus-visible, .tour-region-tabs__button.is-active {
  color: #f7f7f7;
  background: var(--color-red);
  transform: translateY(-5px);
  box-shadow: var(--tour-shadow-soft);
  outline: none;
}

.tour-browser__inner {
  width: min(100% - 32px, var(--tour-container));
  margin-inline: auto;
  padding: 44px 0 40px;
  min-height: 50vh;
}

.tour-package-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}
.tour-package-tabs__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: var(--tour-radius-pill);
  border: 2px solid #ffe79c;
  background: var(--tour-color-cream);
  color: var(--tour-color-text);
  padding: 8px 14px 7px;
  font-size: clamp(0.92rem, 1.45vw, 1.08rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}
.tour-package-tabs__button[hidden] {
  display: none;
}
.tour-package-tabs__button:hover {
  background: #ffe79c;
  border: 2px solid var(--tour-color-accent);
}
.tour-package-tabs__button:focus-visible, .tour-package-tabs__button.is-active {
  background: var(--tour-color-accent);
  transform: translateY(-1px);
  outline: none;
}

.tour-list {
  --tour-date-width: clamp(96px, 13vw, 140px);
  --tour-price-width: clamp(118px, 14vw, 170px);
  --tour-column-gap: 16px;
}
.tour-list__header {
  display: flex;
  align-items: center;
  gap: var(--tour-column-gap);
  padding: 16px 22px;
  border-radius: 10px 10px 0 0;
  background: var(--tour-color-table-head);
  letter-spacing: 1px;
}
@media (max-width: 767.98px) {
  .tour-list__header {
    border-radius: 10px;
  }
}
.tour-list__heading {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
}
.tour-list__heading--date {
  flex: 0.8 1 120px;
  min-width: 88px;
}
.tour-list__heading--name {
  flex: 16 1 480px;
  min-width: 0;
  text-align: center;
}
.tour-list__heading--price {
  flex: 1.2 1 148px;
  min-width: 110px;
  text-align: center;
}
.tour-list__items {
  background: var(--tour-color-page);
}

.tour-card {
  border-bottom: 1px solid var(--tour-color-border);
}
.tour-card__link {
  display: flex;
  align-items: center;
  gap: var(--tour-column-gap);
  min-height: 88px;
  padding: 12px 22px;
  color: inherit;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}
.tour-card__link:hover, .tour-card__link:focus-visible {
  background: white;
  outline: none;
}
.tour-card__date {
  flex: 0.5 1 120px;
  min-width: 90px;
  display: grid;
  gap: 2px;
  font-style: normal;
  line-height: 1.08;
}
.tour-card__date .tour-card__year {
  font-size: 0.96rem;
  color: var(--tour-color-text);
}
.tour-card__date .tour-card__day {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 1px;
}
.tour-card__date .tour-card__day small {
  font-size: 0.5em;
  font-weight: 500;
  padding-left: 4px;
}
.tour-card__name {
  flex: 3 1 480px;
  min-width: 0;
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.45;
}
.tour-card__price {
  flex: 1.2 1 148px;
  min-width: 110px;
  margin: 0;
  text-align: right;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: brown;
}
.tour-card__price::after {
  content: "起/人";
  color: var(--tour-color-muted);
  font-size: 14px;
  margin-left: 8px;
  font-weight: 500;
}
@media (min-width: 701px) {
  .tour-card__price-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .tour-card {
    margin-bottom: 12px;
    border: 1px solid var(--tour-color-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  }
  .tour-card__link {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-areas: "date name" "date price";
    gap: 8px 14px;
    min-height: auto;
    padding: 16px;
  }
  .tour-card__date, .tour-card__name, .tour-card__price {
    flex: initial;
    min-width: 0;
  }
  .tour-card__date {
    grid-area: date;
    align-self: start;
    padding-top: 2px;
  }
  .tour-card__name {
    grid-area: name;
    font-size: 1rem;
  }
  .tour-card__price {
    grid-area: price;
    display: flex;
    align-items: baseline;
    justify-content: end;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px dashed var(--tour-color-border);
    font-size: 1.35rem;
    text-align: left;
    font-weight: bold;
  }
  .tour-card__price::after {
    margin-left: 0;
  }
  .tour-card__price-label {
    color: var(--tour-color-muted);
    font-size: 0.88rem;
    font-weight: 600;
  }
}/*# sourceMappingURL=china-tours.css.map */