175 行
5.6 KiB
Vue
175 行
5.6 KiB
Vue
<template>
|
||
<div class="page-winter">
|
||
<LayoutPageHero
|
||
:title="seo.h1"
|
||
:subtitle="heroes?.['products-winter'] || '独立成团不拼团 · 一单一车 · 随走随停 · 不错过每处风景'"
|
||
:breadcrumbs="[{ text: '产品线', to: '/products' }, { text: '嗨冰雪' }]"
|
||
background-image="/images/seasons/winter-hero.jpg"
|
||
/>
|
||
|
||
<!-- TL;DR -->
|
||
<section class="page-tldr" aria-label="冬季产品摘要">
|
||
<div class="container">
|
||
<div class="page-tldr-inner">
|
||
<p>嗨冰雪V3系列:呼伦贝尔冬季定制游,5-7天南北两线可选。独立成团不拼团,一单一车随走随停。冰雪越野、雪地策马、冬季那达慕。</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 品牌理念 -->
|
||
<ProductsProductOverview v-if="winterData" :narrative="winterData.narrative" class="reveal" />
|
||
|
||
<!-- 产品卡片 -->
|
||
<section v-if="winterData" class="section reveal">
|
||
<div class="container">
|
||
<CommonSectionTitle :title="st('productsWinter.versions', '嗨冰雪V3系列')" :subtitle="st('productsWinter.versions', '5-7天南北两线,专属私家团', 'subtitle')" />
|
||
<div class="products-grid">
|
||
<WinterProductCard v-for="p in winterData.versions" :key="p.id" :product="p" />
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 选行程指南 -->
|
||
<CommonSectionCTA
|
||
title="不确定选南线还是北线?"
|
||
description="告诉定制师您的假期和偏好,一分钟帮您选对行程"
|
||
:links="[{ to: '/contact', text: '联系定制师选行程' }]"
|
||
/>
|
||
|
||
<!-- 共同亮点 -->
|
||
<section v-if="winterData" class="section reveal">
|
||
<div class="container">
|
||
<CommonSectionTitle :title="st('productsWinter.highlights', '冬季行程亮点')" :subtitle="st('productsWinter.highlights', '每一条线路都会体验到', 'subtitle')" />
|
||
<div class="highlights-grid">
|
||
<div v-for="(h, i) in winterData.highlights" :key="i" class="highlight-card">
|
||
<h3 class="highlight-title">{{ h.title }}</h3>
|
||
<p class="highlight-desc">{{ h.description }}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 南线特色 -->
|
||
<section v-if="winterData" class="section section--warm reveal">
|
||
<div class="container">
|
||
<CommonSectionTitle :title="st('productsWinter.south', '南线特色 · 呼伦贝尔+阿尔山')" :subtitle="st('productsWinter.south', '大雪原与童话小城的碰撞', 'subtitle')" />
|
||
<div class="highlights-grid">
|
||
<div v-for="(h, i) in winterData.southHighlights" :key="i" class="highlight-card">
|
||
<h3 class="highlight-title">{{ h.title }}</h3>
|
||
<p class="highlight-desc">{{ h.description }}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 北线特色 -->
|
||
<section v-if="winterData" class="section reveal">
|
||
<div class="container">
|
||
<CommonSectionTitle :title="st('productsWinter.north', '北线特色 · 呼伦贝尔+大兴安岭')" :subtitle="st('productsWinter.north', '边境风情与驯鹿部落的秘境', 'subtitle')" />
|
||
<div class="highlights-grid">
|
||
<div v-for="(h, i) in winterData.northHighlights" :key="i" class="highlight-card">
|
||
<h3 class="highlight-title">{{ h.title }}</h3>
|
||
<p class="highlight-desc">{{ h.description }}</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 内链 -->
|
||
<CommonSectionCTA
|
||
title="听听冬季旅行的家庭怎么说"
|
||
description="看看真实客户的冬季旅行评价"
|
||
:links="[{ to: '/reviews', text: '查看客户评价' }, { to: '/contact', text: '咨询冬季行程' }]"
|
||
/>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
import { useBreadcrumbSchema } from '~/composables/useJsonLd'
|
||
|
||
const { data: winterData } = await usePublicApi('winter-products')
|
||
const { data: heroes } = await usePublicApi('heroes')
|
||
const st = await useSectionTitles()
|
||
|
||
const seo = useSEO('products-winter', {
|
||
title: '嗨冰雪 - 呼伦贝尔冬季定制游 · 南北两线5-7天 - 呼籁旅行',
|
||
description: '呼籁旅行冬季定制游产品「嗨冰雪V3」,南线呼伦贝尔+阿尔山5-6天,北线呼伦贝尔+大兴安岭7天。冰雪那达慕、雪地狼群、白狼峰日出、呼伦湖蓝冰、驯鹿部落。一单一车专属私家团。',
|
||
h1: '嗨冰雪 · 呼伦贝尔冬季定制游',
|
||
})
|
||
useScrollReveal()
|
||
useBreadcrumbSchema([
|
||
{ text: '首页', to: '/' },
|
||
{ text: '产品线', to: '/products' },
|
||
{ text: '嗨冰雪' },
|
||
])
|
||
</script>
|
||
|
||
<style lang="less" scoped>
|
||
.products-grid {
|
||
display: grid;
|
||
grid-template-columns: 1fr;
|
||
gap: @space-xl;
|
||
|
||
.respond-md({
|
||
grid-template-columns: repeat(2, 1fr);
|
||
});
|
||
|
||
.respond-lg({
|
||
grid-template-columns: repeat(3, 1fr);
|
||
});
|
||
|
||
> * {
|
||
display: flex;
|
||
}
|
||
}
|
||
|
||
.highlights-grid {
|
||
display: grid;
|
||
grid-template-columns: 1fr;
|
||
gap: @space-lg;
|
||
|
||
.respond-md({
|
||
grid-template-columns: repeat(2, 1fr);
|
||
});
|
||
|
||
.respond-lg({
|
||
grid-template-columns: repeat(3, 1fr);
|
||
});
|
||
}
|
||
|
||
.highlight-card {
|
||
background: @color-bg-white;
|
||
border: 1px solid @color-border;
|
||
border-radius: @border-radius-lg;
|
||
padding: @space-xl;
|
||
transition: box-shadow @transition-base, transform @transition-base;
|
||
|
||
&:hover {
|
||
box-shadow: @shadow-md;
|
||
transform: translateY(-2px);
|
||
}
|
||
}
|
||
|
||
.highlight-title {
|
||
font-size: @font-size-lg;
|
||
font-weight: @font-weight-bold;
|
||
color: @color-text-primary;
|
||
margin-bottom: @space-sm;
|
||
|
||
&::before {
|
||
content: '❄ ';
|
||
color: #3B82F6;
|
||
}
|
||
}
|
||
|
||
.highlight-desc {
|
||
font-size: @font-size-sm;
|
||
color: @color-text-secondary;
|
||
line-height: @line-height-base;
|
||
}
|
||
|
||
.section--warm {
|
||
background: @color-bg-warm;
|
||
}
|
||
</style>
|