34 lines
660 B
Vue
34 lines
660 B
Vue
<script lang="ts" setup>
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:style="{ backgroundImage: `url('/img/index/strength_bg.png')` , }"
|
|
class="bg-cover bg-no-repeat bg-center w-full ">
|
|
|
|
|
|
<TitleSection
|
|
subtitle="PRODUCT INTRODUCTION"
|
|
title="产品介绍"
|
|
/>
|
|
|
|
<div class="relative w-full max-w-5xl mx-auto aspect-video md:aspect-[16/9]">
|
|
<video
|
|
|
|
class="w-full h-full object-cover rounded-lg shadow-lg"
|
|
controls
|
|
loop
|
|
muted
|
|
poster="/img/index/banner.png"
|
|
src="https://www.caasbee.com/image/cpjs.mp4"
|
|
/>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |