2025-10-22 18:02:38 +08:00
|
|
|
|
<script setup>
|
|
|
|
|
|
import SmartApiaryCard from "~/components/landing/SmartApiaryCard.vue";
|
2025-10-22 17:43:13 +08:00
|
|
|
|
|
2025-10-22 18:02:38 +08:00
|
|
|
|
defineProps({
|
|
|
|
|
|
title: {
|
|
|
|
|
|
type: String,
|
|
|
|
|
|
default: '智慧蜂场建设'
|
|
|
|
|
|
},
|
|
|
|
|
|
description: {
|
|
|
|
|
|
type: String,
|
|
|
|
|
|
default: '提供蜂群、蜂箱、蜂场环境等信息远程实时自动获取、统计分析和监测预警'
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-10-22 17:43:13 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<!-- 外层容器设置为全屏 -->
|
|
|
|
|
|
<div class="hero-fullscreen">
|
|
|
|
|
|
<UPageHero
|
|
|
|
|
|
|
|
|
|
|
|
:ui="{
|
|
|
|
|
|
title: 'text-white text-2xl font-bold',
|
|
|
|
|
|
headline: 'text-white/90 text-sm uppercase tracking-widest',
|
|
|
|
|
|
description: 'text-white/80 text-base leading-relaxed'
|
|
|
|
|
|
}"
|
|
|
|
|
|
description="以提升蜂产业标准化和自动化水平为目标,综合应用物联网、视频巡航、深度学习、3S技术、无人机、无线通讯等信息技术手段,开展蜂业
|
|
|
|
|
|
生产安全产业链智能管控技术研究,研制了智能蜂场、蜂产品质量追溯、智能蜂箱、蜂业知识服务、蜂产业大数据等系列软硬产品,携手共建智能化、生态化、无人化的现代蜂业经营管理模式。"
|
|
|
|
|
|
headline="SERVICE INTRODUCTION"
|
|
|
|
|
|
title="服务简介"
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
<!-- 图片作为背景(非内容) -->
|
|
|
|
|
|
</UPageHero>
|
2025-10-22 18:02:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<SmartApiaryCard
|
|
|
|
|
|
:description="description"
|
|
|
|
|
|
:title="title"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
2025-10-22 17:43:13 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
/* 深度选择器确保样式穿透 */
|
|
|
|
|
|
:deep(.u-page-hero .title),
|
|
|
|
|
|
:deep(.u-page-hero .headline),
|
|
|
|
|
|
:deep(.u-page-hero .description) {
|
|
|
|
|
|
color: white !important;
|
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* 可选:增加文字阴影提升可读性 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 关键CSS */
|
|
|
|
|
|
.hero-fullscreen {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
height: 100vh;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero-fullscreen::before {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 0;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
background-image: url('/img/index/service.png');
|
|
|
|
|
|
background-size: cover;
|
|
|
|
|
|
background-position: center;
|
|
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
z-index: -1; /* 确保内容在前景 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 适配UPageHero内部样式 */
|
|
|
|
|
|
.hero-fullscreen :deep(.u-page-hero) {
|
|
|
|
|
|
background-color: transparent; /* 移除组件默认背景 */
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|