123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239 |
- <template>
- <div>
- <div class="w-full h-[88px] md:h-[0]"></div>
- <!-- 轮播图 -->
- <section class="max-w-full mb-12 md:mb-32 xl:px-8 lg:px-6 md:px-4 px-4">
- <Swiper
- :modules="[Pagination, Autoplay, EffectCreative]"
- :slides-per-view="1"
- :space-between="30"
- :loop="true"
- :pagination="{ el: '.swiper-pagination-1', clickable: true }"
- :autoplay="{
- delay: 5000,
- disableOnInteraction: false,
- pauseOnMouseEnter: true,
- waitForTransition: true,
- }"
- effect="creative"
- :creativeEffect="{
- prev: {
- shadow: true,
- translate: ['-120%', 0, -500],
- rotate: [0, 0, -90],
- opacity: 0,
- },
- next: {
- shadow: true,
- translate: ['120%', 0, -500],
- rotate: [0, 0, 90],
- opacity: 0,
- },
- }"
- :speed="1000"
- :grabCursor="true"
- :parallax="true"
- class="h-[320px] sm:h-[320px] md:h-[768px] lg:h-[900px] swiper-container-1"
- >
- <SwiperSlide>
- <div
- class="max-w-screen-2xl mx-auto h-full relative"
- :style="{
- backgroundImage: `url(${homeA1Webp})`,
- backgroundSize: 'cover',
- backgroundPosition: 'center',
- backgroundRepeat: 'no-repeat',
- }"
- >
- <div
- class="w-full h-full flex-col justify-center flex gap-2 select-none relative z-10"
- >
- <div
- class="rounded border border-white w-12 h-8 bg-white/10 backdrop-blur-md leading-none justify-center flex items-center text-white text-sm font-normal"
- >
- SSD
- </div>
- <div class="justify-center flex flex-col gap-2">
- <span class="text-white md:text-6xl text-1xl sm:text-2xl font-normal">{{
- t("home.carousel.one.title")
- }}</span>
- <span class="text-white md:text-6xl text-1xl sm:text-2xl font-normal">{{
- t("home.carousel.one.description")
- }}</span>
- <span class="text-white md:text-6xl text-1xl sm:text-2xl font-normal">{{
- t("home.carousel.one.description2")
- }}</span>
- <span class="text-cyan-400 md:text-6xl text-1xl sm:text-2xl font-normal">{{
- t("home.carousel.one.description3")
- }}</span>
- </div>
- <div class="md:flex hidden flex-col gap-2 mt-4">
- <div
- class="flex items-center gap-2 text-stone-50 text-xl font-normal"
- >
- <div class="w-2 h-2 bg-white rounded-full"></div>
- {{ t("home.carousel.one.description4") }}
- </div>
- <div
- class="flex items-center gap-2 text-stone-50 text-xl font-normal"
- >
- <div class="w-2 h-2 bg-white rounded-full"></div>
- {{ t("home.carousel.one.description5") }}
- </div>
- </div>
- <div
- class="md:w-36 w-28 md:h-14 h-10 md:mt-12 mt-2 flex items-center justify-center bg-[#35F1FF] rounded-lg hover:bg-[#35F1FF]/80 transition-colors duration-300"
- >
- <nuxt-link
- :to="`${homepagePath}/products/HE80-2TNLHS`"
- class="w-full h-full !flex items-center justify-center text-zinc-900"
- >
- {{ t("products.view_details") }}
- </nuxt-link>
- </div>
- </div>
- </div>
- </SwiperSlide>
- <SwiperSlide v-if="!isMobile">
- <div class="max-w-screen-2xl mx-auto h-full relative">
- <video
- :src="homeA3Webp"
- autoplay
- muted
- loop
- class="w-full h-full object-cover"
- ></video>
- <div
- class="w-full h-full flex-col justify-center hidden md:flex absolute top-0 left-0 z-10"
- >
- <div class="justify-center">
- <span class="text-white text-6xl font-normal leading-[78px]">{{
- t("home.carousel.three.title")
- }}</span>
- <span class="text-white text-6xl font-normal leading-[78px]">{{
- t("home.carousel.three.description")
- }}</span>
- <br />
- <span class="text-white text-6xl font-normal leading-[78px]">{{
- t("home.carousel.three.description2")
- }}</span
- ><br />
- <span
- class="text-cyan-400 text-6xl font-normal leading-[78px]"
- >{{ t("home.carousel.three.description3") }}</span
- >
- </div>
- <div class="flex flex-col gap-2 mt-4">
- <div
- class="flex items-center gap-2 text-stone-50 text-xl font-normal"
- >
- <div class="w-2 h-2 bg-white rounded-full"></div>
- {{ t("home.carousel.three.description4") }}
- </div>
- <div
- class="flex items-center gap-2 text-stone-50 text-xl font-normal"
- >
- <div class="w-2 h-2 bg-white rounded-full"></div>
- {{ t("home.carousel.three.description5") }}
- </div>
- </div>
- <div
- class="w-36 h-14 mt-12 flex items-center justify-center bg-[#35F1FF] rounded-lg hover:bg-[#35F1FF]/80 transition-colors duration-300"
- >
- <nuxt-link
- :to="`${homepagePath}/about`"
- class="w-full h-full !flex items-center justify-center text-zinc-900"
- >
- {{ t("products.view_details") }}
- </nuxt-link>
- </div>
- </div>
- </div>
- </SwiperSlide>
- <div class="max-w-screen-2xl mx-auto relative">
- <div
- class="swiper-pagination swiper-pagination-1 text-left bottom-1 top-0"
- ></div>
- </div>
- </Swiper>
- </section>
-
- <!-- 按分类栏目展示 -->
- <section class="max-w-full mb-12 md:mb-32 xl:px-8 lg:px-6 md:px-4 px-4">
- <div class="max-w-screen-2xl mx-auto relative">
- <div
- class="justify-center text-cyan-400 text-base font-normal leading-tight mb-4"
- >
- {{ t("home.useCategoryTitle") }}
- </div>
- <div
- class="justify-center text-white font-normal mb-8 md:mb-16 text-xl sm:text-2xl md:text-4xl lg:text-6xl"
- >
- {{ t("home.useCategoryDescription") }}
- </div>
- </div>
- <div class="max-w-screen-2xl mx-auto relative">
- <!-- 企业产品 -->
- <div
- class="flex w-full relative mb-10 xl:mb-40 gap-10 flex-col xl:flex-row"
- >
- <div
- class="select-none relative w-full xl:w-[65%] h-[280px] md:h-[320px] xl:h-[520px] animate-gradient-bg [background:linear-gradient(180deg,#444B55_0%,#98A3B4_95%)] from-zinc-900 to-zinc-800"
- >
- <img
- src="@/assets/images/business.webp"
- alt="business"
- class="max-h-full pl-0 md:pl-4 pt-0 md:pt-4 relative z-10"
- />
- <span
- class="text-transparent bg-clip-text bg-gradient-to-r from-[rgba(255,255,255,0.05)] to-[rgba(255,255,255,0.08)] absolute hidden xl:block z-0 top-[35%] left-[62%] translate-y-[-50%] translate-x-[-50%] text-[170px] font-bold select-none"
- >Business</span
- >
-
- <div
- class="w-full absolute xl:hidden top-0 left-0 right-0 bottom-0 z-10 flex flex-col justify-center items-end p-4 md:p-8"
- >
- <div
- class="text-white text-4xl md:text-7xl font-bold mb-2 select-none"
- >
- {{ t("home.business.title") }}
- </div>
- <div class="justify-center text-white text-xl font-normal mb-8">
- {{ t("home.business.description") }}
- </div>
- <nuxt-link
- :to="`${homepagePath}/products?audiences=1`"
- class="h-14 px-8 py-3.5 bg-white/10 hover:bg-white/15 rounded-[10px] outline outline-1 outline-white/20 backdrop-blur-md inline-flex flex-col justify-start items-start gap-3.5"
- >
- <div class="inline-flex justify-start items-center gap-2.5">
- {{ t("home.business.view_details") }}
- <i class="icon-arrow-right text-xs ml-2"></i>
- </div>
- </nuxt-link>
- </div>
- </div>
- <div class="relative hidden xl:flex flex-1 flex-col gap-10">
- <div class="w-full">
- <div class="text-white text-6xl mb-4 mt-4 select-none">
- {{ t("home.business.title") }}
- </div>
- <div class="justify-center text-white text-xl font-normal mb-8">
- {{ t("home.business.description") }}
- </div>
- <nuxt-link
- :to="`${homepagePath}/products?audiences=1`"
- class="h-14 px-8 py-3.5 bg-white/10 hover:bg-white/15 rounded-[10px] outline outline-1 outline-white/20 backdrop-blur-md inline-flex flex-col justify-start items-start gap-3.5"
- >
- <div class="inline-flex justify-start items-center gap-2.5">
- {{ t("home.business.view_details") }}
- <i class="icon-arrow-right text-xs ml-2"></i>
- </div>
- </nuxt-link>
- </div>
- </div>
-
- <div
- class="bg-zinc-900/60 backdrop-blur-[120px] right-0 bottom-[-30%] static xl:absolute"
- >
- <div class="w-full h-full grid grid-cols-2">
- <nuxt-link
- v-for="category in categoryList"
- :key="category.id"
- class="flex flex-col gap-4 items-center p-4 md:p-12 hover:bg-zinc-900/50 hover:scale-95 transition-all duration-300"
- v-show="category.audiences === 1"
- :to="`${category.link}`"
- >
- <img
- class="w-[200px] h-[200px] object-contain"
- :src="category.image"
- />
- <div
- class="text-center flex justify-center text-white text-base font-bold"
- >
- {{ category.title }}
- </div>
- <div
- class="text-center text-white/50 text-sm max-w-[280px] line-clamp-2"
- >
- {{ category.description }}
- </div>
- </nuxt-link>
- </div>
- </div>
- </div>
-
- <!-- 个人产品 -->
- <div
- class="flex w-full gap-8 relative mb-0 xl:mb-60 flex-col xl:flex-row"
- >
- <div
- class="flex-1 hidden xl:flex flex-col gap-10 relative top-[-80px]"
- >
- <div class="w-full">
- <div
- class="justify-center text-white text-6xl whitespace-nowrap mb-4 mt-20 select-none"
- >
- {{ t("home.personal.title") }}
- </div>
- <div class="justify-center text-white text-xl font-normal mb-8">
- {{ t("home.personal.description") }}
- </div>
- <nuxt-link
- :to="`${homepagePath}/products?audiences=0`"
- class="h-14 px-8 py-3.5 bg-white/10 hover:bg-white/15 rounded-[10px] outline outline-1 outline-white/20 backdrop-blur-md inline-flex flex-col justify-start items-start gap-3.5"
- >
- <div class="inline-flex justify-start items-center gap-2.5">
- {{ t("home.personal.view_details") }}
- <i class="icon-arrow-right text-xs ml-2"></i>
- </div>
- </nuxt-link>
- </div>
- </div>
-
- <div
- class="w-full xl:w-[75%] h-[280px] md:h-[320px] xl:h-[480px] select-none relative z-0 flex justify-end items-end animate-gradient-bg [background:linear-gradient(180deg,#0086f4_0%,#88d5fa_80%)]"
- >
- <img
- src="@/assets/images/personal.webp"
- alt="personal"
- class="pt-0 md:pt-20 max-h-full relative z-10"
- />
- <span
- class="absolute text-transparent bg-clip-text bg-gradient-to-r from-[rgba(255,255,255,0.08)] to-[rgba(255,255,255,0.05)] hidden xl:block z-0 top-[25%] left-[35%] translate-y-[-50%] translate-x-[-50%] text-[160px] font-bold select-none"
- >Personal</span
- >
-
- <div
- class="flex xl:hidden flex-col gap-10 absolute top-0 left-0 right-0 bottom-0 z-10 justify-center p-4 md:p-8"
- >
- <div class="w-full">
- <div
- class="justify-center text-white text-4xl md:text-7xl font-bold mb-2 select-none"
- >
- {{ t("home.personal.title") }}
- </div>
- <div class="justify-center text-white text-xl font-normal mb-8">
- {{ t("home.personal.description") }}
- </div>
- <nuxt-link
- :to="`${homepagePath}/products?audiences=0`"
- class="h-14 px-8 py-3.5 bg-white/10 hover:bg-white/15 rounded-[10px] outline outline-1 outline-white/20 backdrop-blur-md inline-flex flex-col justify-start items-start gap-3.5"
- >
- <div class="inline-flex justify-start items-center gap-2.5">
- {{ t("home.personal.view_details") }}
- <i class="icon-arrow-right text-xs ml-2"></i>
- </div>
- </nuxt-link>
- </div>
- </div>
- </div>
-
- <div
- class="bg-zinc-900/60 backdrop-blur-[120px] static left-0 bottom-[-32%] xl:absolute z-2"
- >
- <div class="w-full h-full grid grid-cols-2 lg:grid-cols-3">
- <nuxt-link
- v-for="category in categoryList"
- :key="category.id"
- class="flex flex-col gap-4 items-center py-4 px-4 md:py-12 md:px-6 hover:bg-zinc-900/50 hover:scale-95 transition-all duration-300"
- v-show="category.audiences === 0"
- :to="`${category.link}`"
- >
- <img
- class="w-[200px] h-[200px] object-contain"
- :src="category.image"
- />
- <div
- class="text-center flex justify-center text-white text-base font-bold"
- >
- {{ category.title }}
- </div>
- <div
- class="text-center text-white/50 text-sm max-w-[280px] line-clamp-2"
- >
- {{ category.description }}
- </div>
- </nuxt-link>
- </div>
- </div>
- </div>
- </div>
- </section>
-
- <!-- 按用途产品展示 -->
- <section
- v-if="false"
- class="max-w-full mb-12 md:mb-32 xl:px-8 lg:px-6 md:px-4 px-4"
- >
- <div class="max-w-screen-2xl mx-auto relative">
- <div
- class="justify-center text-cyan-400 text-base font-normal leading-tight mb-4"
- >
- {{ t("products.usage") }}
- </div>
- <div
- class="justify-center text-white font-normal mb-8 md:mb-16 text-xl sm:text-2xl md:text-4xl lg:text-6xl"
- >
- {{ t("products.usage_title") }}
- </div>
- </div>
- <div class="max-w-screen-2xl mx-auto">
- <div class="w-full mb-8">
- <div class="flex flex-wrap items-center gap-2">
- <div
- v-for="(usage, index) in typedUsageList"
- :key="usage.id"
- class="cursor-pointer select-none px-4 sm:px-7 py-2 sm:py-3 rounded-full border border-zinc-700 text-white transition-all duration-300 relative group"
- :class="{
- 'bg-cyan-400 border-zinc-900 pointer-events-none text-zinc-900':
- activeIndex === index,
- 'hover:border-zinc-600': activeIndex !== index,
- }"
- @click="handleUsageClick(usage.id)"
- >
- <div
- class="usage-name text-center text-xs sm:text-sm font-normal leading-tight md:text-base transition-colors duration-300 relative z-10"
- >
- {{ usage.name }}
- <!-- 用途名称 -->
- </div>
- <div
- class="absolute inset-0 rounded-full bg-cyan-400/20 scale-0 transition-transform duration-300 group-hover:scale-100"
- ></div>
- </div>
- <div class="flex items-center justify-center gap-4 ml-auto">
- <div
- class="swiper-button-prev-2 bg-zinc-700 w-8 h-8 sm:w-10 sm:h-10 rounded-full flex items-center justify-center cursor-pointer hover:bg-zinc-600 transition-colors duration-200"
- >
- <i
- class="icon-arrow-left text-zinc-300 text-xs sm:text-sm font-normal"
- ></i>
- </div>
- <div
- class="swiper-button-next-2 bg-zinc-700 w-8 h-8 sm:w-10 sm:h-10 rounded-full flex items-center justify-center cursor-pointer hover:bg-zinc-600 transition-colors duration-200"
- >
- <i
- class="icon-arrow-right text-zinc-300 text-xs sm:text-sm font-normal"
- ></i>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="max-w-screen-2xl mx-auto">
- <div
- class="w-full h-[420px] sm:h-[300px] md:h-[350px] lg:h-[360px] xl:h-[380px] 2xl:h-[460px] relative"
- >
- <TransitionGroup name="slide-fade" tag="div" class="relative h-full">
- <div :key="activeUsageId" class="w-full h-full">
- <Swiper
- :modules="[Navigation]"
- :spaceBetween="30"
- :slidesPerView="4"
- :breakpoints="{
- 320: { slidesPerView: 1, spaceBetween: 10 },
- 448: { slidesPerView: 2, spaceBetween: 10 },
- 640: { slidesPerView: 3, spaceBetween: 20 },
- 1024: { slidesPerView: 4, spaceBetween: 20 },
- 1280: { slidesPerView: 4, spaceBetween: 30 },
- 1536: { slidesPerView: 4, spaceBetween: 30 },
- }"
- :navigation="{
- prevEl: '.swiper-button-prev-2',
- nextEl: '.swiper-button-next-2',
- }"
- class="h-full"
- >
- <SwiperSlide
- v-for="product in activeProducts"
- :key="product.id"
- class="w-full sm:w-1/2 md:w-1/3 lg:w-1/4"
- >
- <div class="w-full h-full p-2">
- <nuxt-link :to="product.link" class="block w-full h-full">
- <div
- class="w-full h-full bg-zinc-900 rounded-2xl p-4 flex flex-col items-center justify-start relative overflow-hidden group hover:bg-zinc-800 transition-all duration-300 hover:shadow-lg hover:shadow-cyan-400/10"
- >
- <!-- 图片加载占位 -->
- <div
- v-if="!isImageLoaded[product.id]"
- class="absolute inset-0 bg-gradient-to-br from-zinc-800 via-zinc-700 to-zinc-800 animate-gradient"
- >
- <div
- class="absolute inset-0 flex items-center justify-center"
- >
- <div
- class="w-8 h-8 border-4 border-cyan-400/20 border-t-cyan-400 rounded-full animate-spin"
- ></div>
- </div>
- </div>
- <!-- 图片容器 -->
- <div
- class="w-full aspect-square relative transition-all duration-300 overflow-hidden rounded-lg"
- :class="{ 'opacity-0': !isImageLoaded[product.id] }"
- >
- <img
- :src="product.image"
- :alt="product.title"
- class="w-full h-full object-cover transition-all duration-500 group-hover:scale-110"
- @load="handleImageLoad(product.id)"
- @error="handleImageError(product.id)"
- loading="lazy"
- />
- <div
- class="absolute inset-0 bg-gradient-to-t from-black/60 via-black/20 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300"
- ></div>
- <!-- 添加查看详情按钮 -->
- <div
- class="absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-all duration-300 transform translate-y-4 group-hover:translate-y-0"
- >
- <div
- class="px-4 py-2 bg-cyan-400/20 backdrop-blur-sm rounded-full text-white text-sm font-medium border border-cyan-400/30 transform transition-transform duration-300 group-hover:scale-105"
- >
- {{ t("products.view_details") }}
- </div>
- </div>
- </div>
- <!-- 文字内容 -->
- <div
- class="w-full mt-4 min-h-[80px] transition-all duration-300 transform"
- :class="{
- 'opacity-0 translate-y-4':
- !isImageLoaded[product.id],
- 'opacity-100 translate-y-0':
- isImageLoaded[product.id],
- }"
- >
- <div
- class="text-center text-white text-base font-bold leading-tight mb-2 line-clamp-2 group-hover:text-cyan-400 transition-colors duration-300"
- >
- {{ product.title }}
- </div>
- <div
- class="text-center text-zinc-400 text-sm font-normal leading-tight line-clamp-2 group-hover:text-zinc-300 transition-colors duration-300"
- >
- {{ product.description }}
- </div>
- </div>
- </div>
- </nuxt-link>
- </div>
- </SwiperSlide>
- </Swiper>
- </div>
- </TransitionGroup>
- </div>
- </div>
- </section>
-
- <!-- 核心展示 -->
- <section class="max-w-full mb-12 md:mb-32 xl:px-8 lg:px-6 md:px-4 px-4">
- <div
- class="max-w-screen-2xl mx-auto grid grid-cols-1 lg:grid-cols-3 md:grid-cols-2 sm:grid-cols-2 gap-4"
- >
- <div class="inline-flex justify-start items-center gap-5">
- <div
- class="w-12 h-12 md:w-16 md:h-16 relative bg-gradient-to-b from-neutral-600 to-slate-400 rounded-xl border-b-[1.50px] border-neutral-700 overflow-hidden"
- >
- <div class="w-full h-full flex items-center justify-center">
- <i class="icon-h1 text-white text-5xl"></i>
- </div>
- </div>
- <div class="inline-flex flex-col justify-center items-start flex-1">
- <div
- class="justify-start text-white font-medium text-1xl md:text-lg"
- >
- {{ t("products.support") }}
- </div>
- <div
- class="justify-start text-zinc-300 text-xs font-normal md:text-sm"
- >
- {{ t("products.support_description") }}
- </div>
- </div>
- </div>
- <div class="inline-flex justify-start items-center gap-5">
- <div
- class="w-12 h-12 md:w-16 md:h-16 relative bg-gradient-to-b from-neutral-600 to-slate-400 rounded-xl border-b-[1.50px] border-neutral-700 overflow-hidden"
- >
- <div class="w-full h-full flex items-center justify-center">
- <i class="icon-h2 text-white text-5xl"></i>
- </div>
- </div>
- <div class="inline-flex flex-col justify-center items-start flex-1">
- <div
- class="justify-start text-white font-medium text-1xl md:text-lg"
- >
- {{ t("products.development") }}
- </div>
- <div
- class="justify-start text-zinc-300 text-xs font-normal md:text-sm"
- >
- {{ t("products.development_description") }}
- </div>
- </div>
- </div>
- <div class="inline-flex justify-start items-center gap-5">
- <div
- class="w-12 h-12 md:w-16 md:h-16 relative bg-gradient-to-b from-neutral-600 to-slate-400 rounded-xl border-b-[1.50px] border-neutral-700 overflow-hidden"
- >
- <div class="w-full h-full flex items-center justify-center">
- <i class="icon-h3 text-white text-5xl"></i>
- </div>
- </div>
- <div class="inline-flex flex-col justify-center items-start flex-1">
- <div
- class="justify-start text-white font-medium text-1xl md:text-lg"
- >
- {{ t("products.develop") }}
- </div>
- <div
- class="justify-start text-zinc-300 text-xs font-normal md:text-sm"
- >
- {{ t("products.develop_description") }}
- </div>
- </div>
- </div>
- </div>
- </section>
-
- <!-- 关于我们 -->
- <section class="max-w-full mb-12 md:mb-32 xl:px-8 lg:px-6 md:px-4 px-4">
- <div class="max-w-screen-2xl mx-auto relative">
- <div
- class="justify-center text-cyan-400 text-base font-normal leading-tight mb-4"
- >
- {{ t("products.strong_point") }}
- </div>
- <div
- class="justify-center text-white font-normal mb-8 md:mb-16 text-xl sm:text-2xl md:text-4xl lg:text-6xl"
- >
- {{ t("products.strong_point_title") }}
- </div>
- <div
- class="absolute right-0 top-1/2 -translate-y-1/2 z-10 lg:block hidden"
- >
- <div class="flex items-center justify-center gap-4">
- <div
- class="swiper-button-prev-3 bg-zinc-700 w-10 h-10 rounded-full flex items-center justify-center cursor-pointer hover:bg-zinc-600 transition-colors duration-200"
- >
- <i class="icon-arrow-left text-zinc-300 text-sm font-normal"></i>
- </div>
- <div
- class="swiper-button-next-3 bg-zinc-700 w-10 h-10 rounded-full flex items-center justify-center cursor-pointer hover:bg-zinc-600 transition-colors duration-200"
- >
- <i class="icon-arrow-right text-zinc-300 text-sm font-normal"></i>
- </div>
- </div>
- </div>
- </div>
- <div class="max-w-screen-2xl mx-auto">
- <div class="w-full relative max-w-full">
- <Swiper
- :modules="[Navigation, Pagination]"
- slides-per-view="auto"
- :space-between="30"
- :pagination="{ el: '.swiper-pagination-3', clickable: true }"
- :navigation="{
- prevEl: '.swiper-button-prev-3',
- nextEl: '.swiper-button-next-3',
- }"
- class="h-auto sm:h-[360px] md:h-[480px] lg:h-[720px] max-w-full"
- >
- <SwiperSlide class="!max-w-screen-2xl !w-full">
- <div
- class="w-full h-full flex items-center px-0 md:px-20"
- :style="{
- backgroundImage: `url(${homeC1Webp})`,
- backgroundSize: 'cover',
- backgroundPosition: 'center',
- backgroundRepeat: 'no-repeat',
- }"
- >
- <div
- class="w-[100%] md:w-[60%] h-[100%] md:h-auto bg-white/5 rounded-0 md:rounded-2xl backdrop-blur-[50px] px-4 py-8 md:py-12 md:px-8 flex flex-col gap-8 border border-white/10"
- >
- <div
- class="opacity-90 justify-start text-white text-2xl font-normal md:text-4xl"
- >
- {{ t("about.companyInfo.name") }}
- </div>
- <div
- class="opacity-70 justify-start text-white text-base md:text-lg font-normal leading-relaxed whitespace-pre-wrap"
- >
- {{ t("about.companyInfo.description") }}
- </div>
- </div>
- </div>
- </SwiperSlide>
- </Swiper>
- </div>
- <div class="max-w-screen-2xl mx-auto relative">
- <div class="swiper-pagination swiper-pagination-3"></div>
- </div>
- </div>
- </section>
-
- <!-- 产品咨询 -->
- <section class="max-w-full h-[240px] md:h-[480px] bg-black/80 md:block">
- <div class="h-full relative">
- <div
- class="absolute top-0 left-0 w-full h-full flex flex-col gap-6 items-center justify-center z-10"
- >
- <h1
- class="text-center justify-start text-white font-normal text-xl sm:text-xl md:text-3xl px-4 sm:px-2"
- >
- {{ t("products.consultation") }}
- </h1>
- <nuxt-link
- :to="`${homepagePath}/contact`"
- class="w-32 h-10 md:w-40 md:h-11 bg-zinc-300/10 rounded-lg outline outline-1 flex items-center justify-center gap-2 outline-white/20 backdrop-blur-[10px] cursor-pointer hover:bg-zinc-300/20 transition-colors duration-200"
- >
- <span class="text-base font-normal">{{
- t("products.consultation_button")
- }}</span>
- <i class="icon-arrow-right text-sm font-normal"></i>
- </nuxt-link>
- </div>
- <img
- v-if="isMobile"
- :src="videoWebp"
- alt="video"
- class="w-full h-full object-cover opacity-20"
- />
- <video
- v-else
- :src="videoSrc"
- autoplay
- muted
- loop
- :poster="videoWebp"
- class="w-full h-full object-cover opacity-20"
- ></video>
- </div>
- </section>
- </div>
- </template>
-
- <script setup lang="ts">
- import { Swiper, SwiperSlide } from "swiper/vue";
- import {
- Navigation,
- Pagination,
- Autoplay,
- EffectCreative,
- } from "swiper/modules";
- import "swiper/css";
- import "swiper/css/navigation";
- import "swiper/css/pagination";
-
- import { useBreakpoints, breakpointsTailwind } from "@vueuse/core";
- import { useI18n, useRoute, useAsyncData, queryCollection } from "#imports";
- import video from "@/assets/videos/video.mp4";
- import videoWebp from "@/assets/videos/video.webp";
- import homeA1Webp from "@/assets/images/home-a-1.webp";
- import homeA2Webp from "@/assets/images/home-a-2.webp";
- import homeA3Webp from "@/assets/videos/banner03.mp4";
- import homeC1Webp from "@/assets/images/home-c-1.webp";
-
- // 数据类型定义
- interface Product {
- id: number;
- title: string;
- image: string;
- link: string;
- description?: string;
- name?: string;
- }
-
- interface Usage {
- id: number;
- name: string;
- category?: string;
- products: Product[];
- }
-
- interface Category {
- id: number;
- title: string;
- description: string;
- capacities: string[];
- summary: string;
- sort: number;
- image: string;
- link: string;
- audiences: number;
- }
-
- // 使用i18n
- const { t, locale } = useI18n();
- // 默认语言
- const defaultLocale = "zh";
- // 获取路由
- const route = useRoute();
- // 断点
- const breakpoints = useBreakpoints(breakpointsTailwind);
- // 是否移动端
- const isMobile = breakpoints.smaller("md");
-
- const videoSrc = ref(video);
-
- /**
- * 使用计算属性获取当前语言的数据文件URL
- */
- const usageDataUrl = computed(() => {
- return `/data/usages-${locale.value}.json`;
- });
-
- const categoryDataUrl = computed(() => {
- return `/data/categories-${locale.value}.json`;
- });
-
- const productsDataUrl = computed(() => {
- return `/data/products-${locale.value}.json`;
- });
-
- const homepagePath = computed(() => {
- return locale.value === "zh" ? "" : `/${locale.value}`;
- });
-
- // 获取按用途产品数据
- const usageList = ref<Usage[]>([]);
- const isLoadingUsage = ref(true);
- const activeUsageId = ref(1);
-
- // 获取按分类栏目数据
- const categoryList = ref<Category[]>([]);
- const isLoadingCategory = ref(true);
-
- // 加载用途数据
- const loadUsageData = async () => {
- try {
- isLoadingUsage.value = true;
- // 使用fetch获取数据
- if (process.client) {
- const response = await fetch(usageDataUrl.value);
- if (!response.ok) {
- throw new Error(`加载用途数据失败: ${response.status}`);
- }
- const usageData = await response.json();
- // 加载对应的产品数据
- const productsResponse = await fetch(productsDataUrl.value);
- if (!productsResponse.ok) {
- throw new Error(`加载产品数据失败: ${productsResponse.status}`);
- }
-
- const productsData = await productsResponse.json();
- // 处理数据
- usageList.value = usageData
- .map((usage: any) => {
- // 为每种用途找到对应的产品
- const usageProducts = [];
-
- // 按照正确的设计模式:使用用途的title与产品的usage数组进行匹配
- // 找出所有usage属性包含当前用途title的产品
- const matchedProducts = productsData.filter(
- (product: any) =>
- product.usage &&
- Array.isArray(product.usage) &&
- product.usage.includes(usage.title)
- );
-
- // 将匹配的产品添加到列表
- if (matchedProducts.length > 0) {
- matchedProducts.forEach((product: any) => {
- usageProducts.push({
- id: product.id,
- title: product.title,
- image: product.image,
- link: `${homepagePath.value}/products/${product.name}`,
- description: product.summary,
- });
- });
- } else {
- // 如果没有找到匹配的产品,添加一个占位产品
-
- usageProducts.push({
- id: `placeholder-${usage.id}`,
- title: usage.title,
- image: ``,
- link: `${homepagePath.value}/products?usage=${encodeURIComponent(
- usage.title
- )}`,
- description: "",
- });
- }
-
- return {
- id: parseInt(usage.id) || 0,
- name: usage.title,
- category: usage.category || "",
- products: usageProducts,
- };
- })
- .sort((a: any, b: any) => a.id - b.id);
-
- // 设置默认选中的用途
- if (usageList.value.length > 0) {
- activeUsageId.value = usageList.value[0].id;
- }
- }
- } catch (error) {
- console.error("Error loading usage data:", error);
- } finally {
- isLoadingUsage.value = false;
- }
- };
-
- // 加载分类数据
- const loadCategoryData = async () => {
- try {
- isLoadingCategory.value = true;
- // 使用fetch获取数据
- if (process.client) {
- const response = await fetch(categoryDataUrl.value);
- if (!response.ok) {
- throw new Error(`加载分类数据失败: ${response.status}`);
- }
-
- const data = await response.json();
-
- // 处理数据
- categoryList.value = data
- .map((category: any) => {
- return {
- id: parseInt(category.id) || 0,
- title: category.title || "",
- description: category.description || "",
- image: category.image || "",
- link: `${homepagePath.value}/products?category=${encodeURIComponent(
- category.title
- )}&audiences=${category.audiences}`,
- capacities: category.capacities || [],
- summary: category.summary || "",
- sort: category.sort || 0,
- audiences: category.audiences,
- };
- })
- .sort((a: any, b: any) => a.id - b.id);
- }
- } catch (error) {
- console.error("Error loading category data:", error);
- } finally {
- isLoadingCategory.value = false;
- }
- };
-
- // 当页面加载或语言改变时加载数据
- onMounted(() => {
- loadUsageData();
- loadCategoryData();
- });
-
- watch(locale, () => {
- loadUsageData();
- loadCategoryData();
- });
-
- // 计算当前用途列表
- const typedUsageList = computed(() => {
- return usageList.value as Usage[];
- });
-
- // 计算当前激活的索引
- const activeIndex = computed(() => {
- return typedUsageList.value.findIndex(
- (item) => item.id === activeUsageId.value
- );
- });
-
- const activeProducts = computed(() => {
- const currentUsage = typedUsageList.value.find(
- (item: Usage) => item.id === activeUsageId.value
- );
- return currentUsage?.products || [];
- });
-
- // 图片加载状态
- const isImageLoaded = ref<Record<number, boolean>>({});
- const imageErrors = ref<Record<number, boolean>>({});
-
- // 监听图片加载状态
- watch(
- activeProducts,
- (newProducts: Product[]) => {
- if (process.client) {
- newProducts.forEach((product: Product) => {
- if (product.image) {
- const img = new window.Image();
- img.onload = () => handleImageLoad(product.id);
- img.onerror = () => handleImageError(product.id);
- img.src = product.image;
- }
- });
- }
- },
- { immediate: true }
- );
-
- // 处理图片加载
- const handleImageLoad = (id: number) => {
- if (process.client) {
- isImageLoaded.value[id] = true;
- imageErrors.value[id] = false;
- }
- };
-
- // 处理图片加载错误
- const handleImageError = (id: number) => {
- if (process.client) {
- console.error(`Failed to load image for product ${id}`);
- isImageLoaded.value[id] = true;
- imageErrors.value[id] = true;
- }
- };
-
- // 处理用途点击
- const handleUsageClick = (id: number) => {
- if (process.client) {
- // 重置图片加载状态
- isImageLoaded.value = {};
- imageErrors.value = {};
- activeUsageId.value = id;
- }
- };
-
- // 计算当前分类列表
- const typedCategoryList = computed(() => {
- return categoryList.value as Category[];
- });
-
- // SEO优化
- useHead({
- title: t("home.title") + " - Hanye",
- meta: [
- {
- name: "description",
- content: t("home.description"),
- },
- {
- name: "keywords",
- content: t("home.keywords"),
- },
- ],
- });
- </script>
-
- <style lang="scss" scoped>
- :deep(.swiper-pagination-3) {
- margin: auto;
- position: static;
- padding: 1rem 0;
- }
- :deep(.swiper-pagination-bullet) {
- background-color: var(--color-bg); /* Example color */
- border: 2px solid var(--color-text);
- }
- :deep(.swiper-pagination-bullet-active) {
- background-color: var(--color-text); /* Example color */
- }
-
- .use-business {
- background-image: url("@/assets/images/business.webp");
- background-size: auto 548px;
- background-position: left top;
- background-repeat: no-repeat;
- }
-
- .use-personal {
- background-image: url("@/assets/images/personal.webp");
- background-size: auto 480px;
- background-position: right bottom;
- background-repeat: no-repeat;
- }
-
- // 优化过渡动画
- .slide-fade-enter-active,
- .slide-fade-leave-active {
- transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
- position: absolute;
- width: 100%;
- height: 300px;
- }
-
- @media (min-width: 640px) {
- .slide-fade-enter-active,
- .slide-fade-leave-active {
- height: 350px;
- }
- }
-
- @media (min-width: 768px) {
- .slide-fade-enter-active,
- .slide-fade-leave-active {
- height: 400px;
- }
- }
-
- @media (min-width: 1024px) {
- .slide-fade-enter-active,
- .slide-fade-leave-active {
- height: 450px;
- }
- }
-
- .slide-fade-enter-from {
- opacity: 0;
- transform: translateX(30px);
- }
-
- .slide-fade-leave-to {
- opacity: 0;
- transform: translateX(-30px);
- }
-
- // 添加响应式优化
- @media (max-width: 640px) {
- .slide-fade-enter-from,
- .slide-fade-leave-to {
- transform: translateX(15px);
- }
- }
-
- // 优化图片加载动画
- @keyframes gradient {
- 0% {
- background-position: 0% 50%;
- }
- 50% {
- background-position: 100% 50%;
- }
- 100% {
- background-position: 0% 50%;
- }
- }
-
- .animate-gradient {
- background-size: 200% 200%;
- animation: gradient 3s ease infinite;
- }
-
- // 移除 pagination 相关样式
- :deep(.swiper-pagination-2) {
- display: none;
- }
-
- // 添加导航按钮禁用样式
- :deep(.swiper-button-disabled) {
- opacity: 0.35;
- cursor: not-allowed;
- pointer-events: none;
- }
-
- // 优化轮播图样式
- :deep(.swiper-container-1) {
- .swiper-slide {
- transition: all 0.5s ease;
- transform-origin: center center;
- backface-visibility: hidden;
- perspective: 1000px;
- }
-
- .swiper-pagination-bullet {
- width: 12px;
- height: 12px;
- background: transparent;
- border: 2px solid rgba(255, 255, 255, 0.5);
- opacity: 1;
- transition: all 0.3s ease;
- margin: 0 8px !important;
-
- &-active {
- background: #fff;
- border-color: #fff;
- transform: scale(1.2);
- }
- }
-
- .swiper-pagination {
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 20px 0;
- }
- }
-
- // 优化图片加载动画
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: scale(1.1);
- }
- to {
- opacity: 1;
- transform: scale(1);
- }
- }
-
- .swiper-slide-active {
- img {
- animation: fadeIn 0.8s ease-out forwards;
- }
- }
-
- // 优化产品卡片动画和交互
- .swiper-slide {
- a {
- text-decoration: none;
- display: block;
- height: 100%;
-
- &:hover {
- text-decoration: none;
- }
-
- > div {
- position: relative;
- z-index: 1;
- cursor: pointer;
- transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
-
- &:hover {
- transform: translateY(-2px);
- box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
- }
- }
- }
- }
-
- // 移除卡片抖动动画
- @keyframes cardHover {
- 0% {
- transform: translateY(0);
- }
- 100% {
- transform: translateY(-2px);
- }
- }
-
- // 添加渐变背景动画
- @keyframes gradient-bg {
- 0% {
- background-position: 0% 50%;
- opacity: 1;
- }
- 50% {
- background-position: 100% 50%;
- opacity: 0.85;
- }
- 100% {
- background-position: 0% 50%;
- opacity: 1;
- }
- }
-
- .animate-gradient-bg {
- background-size: 200% 200%;
- animation: gradient-bg 15s ease infinite;
- }
- </style>
|