/* ========== 作用域：.day-tour-page ========== */

.day-tour-page {
    --orange: #ff6b00;
    --orange-dark: #df5900;
    --title: #111;
    --body: #6a6a6a;
    --warm: #fbf7f4;
    --container: 1320px;
    --font: "Roboto", "Inter", sans-serif;
    --title-font: "Urbanist", "Roboto", sans-serif;

    box-sizing: border-box;           /* 原 * 中的一部分，放在根上 */
    color: var(--body);
    font: 17px/1.6 var(--font);
    background: #fff;
}

.day-tour-page * {
    box-sizing: border-box;
}

.day-tour-page h1,
.day-tour-page h2,
.day-tour-page h3,
.day-tour-page p {
    margin: 0;
}

.day-tour-page h1,
.day-tour-page h2,
.day-tour-page h3 {
    font-family: var(--title-font);
    color: var(--title);
    line-height: 1.25;
}

.day-tour-page a {
    text-decoration: none;
    color: inherit;
}

.day-tour-page button {
    font: inherit;
}

/* ---------- 布局组件 ---------- */

.day-tour-page .container {
    width: min(var(--container), calc(100% - 30px));
    margin: auto;
}

.day-tour-page .hero {
    height: 500px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
}

.day-tour-page .hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08);
}

.day-tour-page .hero-shade {
    position: absolute;
    inset: 0;
    background: #0009;
}

.day-tour-page .hero-brand {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    min-width: 315px;
    padding: 12px 30px;
    background: var(--orange);
    font: 700 21px var(--title-font);
    letter-spacing: .14em;
}

.day-tour-page .hero-brand span {
    font-weight: 400;
}

.day-tour-page .hero-content {
    position: relative;
    z-index: 1;
    max-width: 770px;
    padding: 70px 15px 20px;
}

.day-tour-page .eyebrow {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.day-tour-page .eyebrow.orange {
    color: var(--orange);
}

.day-tour-page h1 {
    font-size: 37px;
    color: #fff;
    margin-bottom: 15px;
}

.day-tour-page .hero-content > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.7;
    color: #fffc;
}

.day-tour-page .hero-link {
    display: inline-flex;
    gap: 12px;
    margin-top: 26px;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 5px;
}

.day-tour-page .hero-link span {
    color: var(--orange);
}

.day-tour-page .section {
    padding: 72px 0;
}

.day-tour-page .section-heading {
    text-align: center;
    max-width: 790px;
    margin: 0 auto 36px;
}

.day-tour-page .section-heading h2 {
    font-size: 29px;
    margin-bottom: 15px;
}

.day-tour-page .section-heading > p:last-child {
    color: #333;
}

/* ---------- 旅游卡片网格 ---------- */

.day-tour-page .tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 30px;
}

.day-tour-page .tour-card__link {
    display: block;
}

.day-tour-page .tour-card__media {
    position: relative;
    aspect-ratio: 287/190;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
    background: var(--warm);
    isolation: isolate;
}

.day-tour-page .tour-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #00000008 29%, #000000a8 100%);
    pointer-events: none;
}

.day-tour-page .tour-card__media img,
.day-tour-page .featured-card img,
.day-tour-page .trust-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-tour-page .tour-card__link:hover img,
.day-tour-page .featured-card:hover img {
    transform: scale(1.035);
}

.day-tour-page .tour-card img,
.day-tour-page .featured-card img {
    transition: transform .3s;
}

.day-tour-page .tour-card__image-label {
    position: absolute;
    z-index: 1;
    left: 12px;
    right: 12px;
    bottom: 11px;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-shadow: 0 1px 8px #0008;
}

.day-tour-page .tour-card__image-label strong {
    font: 700 16px/1.25 var(--title-font);
    letter-spacing: -.01em;
}

.day-tour-page .tour-card__image-label small {
    margin-top: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
}

.day-tour-page .tour-card__image-promise {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 5px 8px;
    background: #fff;
    color: #27211d;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .055em;
    text-transform: uppercase;
    box-shadow: 0 2px 9px #0002;
}

.day-tour-page .tour-card__header {
    height: 136px;
}

.day-tour-page .tour-card__tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.day-tour-page .tour-card__tags span {
    border: 1px solid #ffd0a8;
    border-radius: 3px;
    color: var(--orange-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 2px 7px;
}

.day-tour-page .tour-card__tags span + span {
    border-color: #ddd;
    color: #555;
}

.day-tour-page .tour-card__content_body {
    display: flex;
}

.day-tour-page .tour-card__title {
    font: 500 17px/1.42 var(--font);
    color: var(--title);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 7px;
    height: 49px;
}

.day-tour-page .tour-card__summary {
    font-size: 15px;
    line-height: 1.48;
    color: var(--body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.day-tour-page .tour-card__meta {
    font-size: 15px;
    color: #333;
    font-weight: 700;
    margin-bottom: 4px;
}

.day-tour-page .tour-card__highlights {
    font-size: 15px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.day-tour-page .tour-card__price {
    font-size: 15px;
    line-height: 1.45;
}

.day-tour-page .tour-card__from {
    color: #333;
}

.day-tour-page .tour-card__amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--orange);
    margin: 0 4px;
}

.day-tour-page .tour-card__per {
    font-size: 15px;
    color: var(--body);
}

/* ---------- 目的地板块 ---------- */

.day-tour-page .destinations-section {
    background: var(--warm);
}

.day-tour-page .destination-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.day-tour-page .destination-tabs button {
    border: 0;
    background: #fff;
    padding: 8px 16px;
    border-radius: 5px;
    color: var(--title);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.day-tour-page .destination-tabs button.is-active {
    background: var(--orange);
    color: white;
}

.day-tour-page .destination-panel {
    display: grid;
    grid-template-columns: .85fr 2fr;
    gap: 36px;
    align-items: center;
    grid-auto-rows: 254px;
}

.day-tour-page .destination-intro {
    height: 100%;
}

.day-tour-page .destination-intro h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.day-tour-page .destination-intro p {
    font-size: 17px;
    color: #333;
}

.day-tour-page .destination-intro__tags {
    font-size: 15px;
    color: var(--orange);
    font-weight: 600;
    margin-top: 14px;
}

.day-tour-page .destination-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.day-tour-page .destination-tour {
    display: flex;
    gap: 14px;
}

.day-tour-page .destination-tour img {
    min-width: 145px;
    width: 145px;
    height: 116px;
    object-fit: cover;
    border-radius: 8px;
}

.day-tour-page .destination-tour h4 {
    font: 700 17px/1.35 var(--font);
    color: var(--title);
    margin: 2px 0 5px;
}

.day-tour-page .destination-tour p {
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 7px;
    color: #333;
}

.day-tour-page .destination-tour strong {
    font-size: 17px;
    color: var(--orange);
}

/* ---------- Quick Finder ---------- */

.day-tour-page .quick-finder {
    background: #fcfbf9;
    color: var(--title);
}

.day-tour-page .quick-finder .section-heading {
    max-width: 670px;
    margin-bottom: 34px;
}

.day-tour-page .quick-finder .section-heading h2 {
    font-size: 36px;
    letter-spacing: -.035em;
}

.day-tour-page .day-finder {
    max-width: 1240px;
    margin: auto;
}

.day-tour-page .day-finder__steps {
    display: flex;
    margin-bottom: 17px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e4dfd9;
    color: #aaa29b;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.day-tour-page .day-finder__steps span {
    flex: 1;
}

.day-tour-page .day-finder__steps .is-active {
    color: var(--orange-dark);
}

.day-tour-page .quick-finder__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.day-tour-page .quick-finder__card {
    display: grid;
    grid-template-columns: 46% 1fr;
    height: 250px;
    overflow: hidden;
    border: 1px solid #e5ddd5;
    border-radius: 8px;
    background: #fff;
    text-align: left;
    color: var(--title);
    padding: 0;
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

.day-tour-page .quick-finder__image {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: block;
    background: #e9e0d6;
}

.day-tour-page .quick-finder__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #00000005 45%, #00000026);
}

.day-tour-page .quick-finder__card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s;
}

.day-tour-page .quick-finder__card[data-experience="future"] img {
    object-position: center 22%;
}

.day-tour-page .quick-finder__content {
    padding: 21px 20px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.day-tour-page .quick-finder__number {
    font: 600 11px var(--title-font);
    color: #b8aca0;
    margin-bottom: 14px;
}

.day-tour-page .quick-finder__eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 7px;
}

.day-tour-page .quick-finder__card h3 {
    font: 700 23px/1.12 var(--title-font);
    letter-spacing: -.025em;
    color: #1c1a18;
    margin-bottom: 8px;
}

.day-tour-page .quick-finder__desc {
    font-size: 13px;
    line-height: 1.5;
    color: #716963;
}

.day-tour-page .quick-finder__count {
    margin-top: auto;
    padding-top: 13px;
    font-size: 12px;
    font-weight: 700;
    color: #25211f;
}

.day-tour-page .quick-finder__count b {
    font-size: 17px;
    color: var(--orange);
    margin-left: 5px;
}

.day-tour-page .quick-finder__card:hover,
.day-tour-page .quick-finder__card:focus-visible {
    border-color: var(--orange);
    box-shadow: 0 14px 28px #5d32141c;
    transform: translateY(-3px);
    outline: 0;
}

.day-tour-page .quick-finder__card:hover img,
.day-tour-page .quick-finder__card:focus-visible img {
    transform: scale(1.045);
}

.day-tour-page .day-finder__results {
    border-top: 1px solid #e9e0d8;
    padding-top: 28px;
}

.day-tour-page .day-finder__result-head {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 23px;
}

.day-tour-page .day-finder__selected,
.day-tour-page .day-finder__tour-city {
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--orange-dark) !important;
    margin: 0 0 7px !important;
}

.day-tour-page .day-finder__result-head h3 {
    font: 700 29px/1.15 var(--title-font);
    color: #1d1b19;
    margin-bottom: 7px;
}

.day-tour-page .day-finder__restart {
    border: 1px solid #d7cbc0;
    border-radius: 2px;
    padding: 9px 12px;
    background: transparent;
    color: #25211f;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.day-tour-page .day-finder__match-list {
    display: grid;
    gap: 12px;
}

.day-tour-page .day-finder__tour {
    display: grid;
    grid-template-columns: 178px 1fr auto;
    align-items: center;
    gap: 22px;
    border-top: 1px solid #e9e0d8;
    padding: 12px 0;
    color: #211e1b;
}

.day-tour-page .day-finder__tour:last-child {
    border-bottom: 1px solid #e9e0d8;
}

.day-tour-page .day-finder__tour img {
    width: 178px;
    height: 112px;
    object-fit: cover;
}

.day-tour-page .day-finder__tour h4 {
    font: 600 18px/1.3 var(--font);
    color: #211e1b;
    margin-bottom: 5px;
}

.day-tour-page .day-finder__tour p {
    font-size: 14px;
    line-height: 1.45;
    color: #716963;
}

.day-tour-page .day-finder__tour-highlights {
    margin-top: 5px;
    color: #45403b !important;
}

.day-tour-page .day-finder__tour-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
    white-space: nowrap;
}

.day-tour-page .day-finder__tour strong {
    color: var(--orange-dark);
    font-size: 18px;
}

.day-tour-page .day-finder__tour-action > span {
    font-size: 13px;
    font-weight: 700;
    color: #25211f;
}

/* ---------- 响应式 ---------- */

@media (max-width: 1000px) {
    .day-tour-page .tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .day-tour-page .quick-finder__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .day-tour-page .destination-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .day-tour-page {
        font-size: 16px;
    }

    .day-tour-page .hero {
        height: 410px;
    }

    .day-tour-page .hero-brand {
        font-size: 16px;
        min-width: 240px;
    }

    .day-tour-page h1 {
        font-size: 32px;
    }

    .day-tour-page .section {
        padding: 55px 0;
    }

    .day-tour-page .tour-grid,
    .day-tour-page .quick-finder__grid {
        grid-template-columns: 1fr;
    }

    .day-tour-page .destination-list {
        grid-template-columns: 1fr;
    }

    .day-tour-page .destination-tour img {
        min-width: 130px;
        width: 130px;
    }

    .day-tour-page .quick-finder__grid {
        grid-auto-rows: 220px;
        gap: 12px;
    }

    .day-tour-page .quick-finder__card {
        grid-template-columns: 36% 1fr;
        height: 220px;
    }

    .day-tour-page .quick-finder__image {
        height: 220px;
    }

    .day-tour-page .quick-finder__content {
        padding: 14px;
    }

    .day-tour-page .quick-finder__number {
        margin-bottom: 6px;
    }

    .day-tour-page .quick-finder__card h3 {
        font-size: 19px;
        margin-bottom: 5px;
    }

    .day-tour-page .quick-finder__desc {
        font-size: 12px;
    }

    .day-tour-page .day-finder__result-head {
        display: block;
    }

    .day-tour-page .day-finder__restart {
        margin-top: 16px;
    }

    .day-tour-page .day-finder__tour {
        grid-template-columns: 92px 1fr;
        gap: 12px;
    }

    .day-tour-page .day-finder__tour img {
        width: 92px;
        height: 104px;
    }

    .day-tour-page .day-finder__tour-action {
        grid-column: 2;
        align-items: flex-start;
        flex-direction: row;
    }

    .day-tour-page .day-finder__tour-highlights {
        display: none;
    }

    .day-tour-page .tour-card__header,
    .day-tour-page .tour-card__title {
        height: 100%;
    }

    .day-tour-page .destination-panel {
        grid-auto-rows: unset;
    }
}