fiee-official-website/src/views/BusinessServices/size1440/index.vue

266 lines
5.8 KiB
Vue
Raw Normal View History

2025-05-26 02:38:31 +00:00
<template>
<div class="home-page">
<div class="business-page">
<!-- 渐变背景标题区 - 增加层次感 -->
<section class="hero-section">
<div class="container">
2025-05-26 07:38:24 +00:00
<h1 class="hero-title">
2025-05-26 07:14:44 +00:00
{{ $t("BusinessiIntroduction.CONTAIN.TITLEONE.TITLE") }}
2025-05-26 07:38:24 +00:00
</h1>
2025-05-26 07:14:44 +00:00
<div style="font-size: 18px" class="hero-description">
2025-05-26 02:38:31 +00:00
{{ $t("BusinessiIntroduction.CONTAIN.TITLEONE.CONTENT") }}
</div>
</div>
</section>
<!-- 业务核心解决方案 -->
2025-05-26 07:14:44 +00:00
<main style="margin-top: 40px" class="container">
2025-05-26 02:38:31 +00:00
<section>
2025-05-26 07:38:24 +00:00
<h1 class="hero-title">
2025-05-26 02:38:31 +00:00
{{ $t("BusinessiIntroduction.CONTAIN.TITLEONE.CONTENTTWO") }}
2025-05-26 07:38:24 +00:00
</h1>
2025-05-26 02:38:31 +00:00
</section>
<div class="solution-grid">
2025-05-26 07:14:44 +00:00
<!-- 统一使用弹性列布局通过媒体查询控制排列方式 -->
<div
v-for="(solution, sIndex) in solutions"
:key="sIndex"
class="featured-solution"
>
<div
class="solution-card"
:style="{ '--delay': `${sIndex * 0.2}s` }"
>
<div class="card-header">
<div class="decorative-line"></div>
<h2 class="card-title">{{ solution.title }}</h2>
2025-05-26 02:38:31 +00:00
</div>
2025-05-26 07:14:44 +00:00
<ul class="card-content">
<li
v-for="(point, pIndex) in solution.points"
:key="pIndex"
class="content-point"
>
<div class="point-icon"></div>
2025-05-26 07:38:24 +00:00
<div style="font-size: 18px" class="point-text">
{{ point }}
</div>
2025-05-26 07:14:44 +00:00
</li>
</ul>
2025-05-26 02:38:31 +00:00
</div>
</div>
</div>
</main>
</div>
</div>
</template>
<script setup>
import { useI18n } from "vue-i18n";
import { computed } from "vue";
const { t } = useI18n();
const solutions = computed(() => [
{
title: t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.ONE.TITLE"),
points: [
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.ONE.CONTENT"),
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.ONE.CONTENTTWO"),
],
},
{
title: t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.TWO.TITLE"),
points: [
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.TWO.CONTENT"),
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.TWO.CONTENTTWO"),
],
},
{
title: t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.THREE.TITLE"),
points: [
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.THREE.CONTENT"),
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.THREE.CONTENTTWO"),
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.THREE.CONTENTTHREE"),
],
},
{
title: t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.FOUR.TITLE"),
points: [
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.FOUR.CONTENT"),
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.FOUR.CONTENTTWO"),
t("BusinessiIntroduction.CONTAIN.TITLEONE.paragraph.FOUR.CONTENTTHREE"),
],
},
]);
</script>
<style scoped>
/* 基础样式 */
.hero-title {
font-size: 40px;
2025-05-26 07:14:44 +00:00
color: black;
2025-05-26 02:38:31 +00:00
margin-bottom: 2rem;
animation: slideIn 1s ease;
}
.hero-description {
margin: 0 auto;
font-size: 1.1rem;
line-height: 1.8;
2025-05-26 07:14:44 +00:00
color: black;
2025-05-26 02:38:31 +00:00
}
:root {
--primary-color: #895bff;
--primary-light: #a07cff;
--primary-dark: #6a11cb;
--primary-gradient: linear-gradient(
135deg,
var(--primary-light) 0%,
var(--primary-color) 100%
);
}
.home-page {
background-image: url("@/assets/image/bg.png");
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
}
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem;
}
/* 标题区 - 紫色渐变 */
.hero-section {
background: var(--primary-gradient);
2025-05-26 07:14:44 +00:00
padding: 5rem 0 0rem;
2025-05-26 02:38:31 +00:00
position: relative;
overflow: hidden;
color: white;
}
.title-decoration {
position: absolute;
bottom: -15px;
left: 0;
width: 80%;
height: 4px;
background: rgba(255, 255, 255, 0.5);
border-radius: 2px;
}
.solution-group {
display: flex;
flex-direction: column;
gap: 3rem;
margin-bottom: 4rem;
}
/* 桌面端布局(>=768px */
@media (min-width: 768px) {
.solution-group {
flex-direction: row;
gap: 4rem;
}
.featured-solution {
flex: 1;
2025-05-26 07:14:44 +00:00
margin-top: 20px;
2025-05-26 02:38:31 +00:00
}
}
/* 移动端布局(<768px */
@media (max-width: 767px) {
.home-page {
background-image: url("@/assets/image/bg-mobile.png");
}
.hero-title {
font-size: 1.8rem;
}
.solution-group {
flex-direction: column;
gap: 2rem;
}
.featured-solution {
width: 100% !important; /* 强制占满容器 */
margin-bottom: 2rem;
}
.solution-card {
padding: 2rem;
height: auto;
}
.content-point {
padding: 1rem 0;
}
}
/* 卡片公共样式 */
.solution-card {
border-radius: 16px;
padding: 2.5rem;
transform: translateY(20px);
opacity: 0;
animation: cardEnter 0.6s ease forwards;
border: 1px solid rgba(137, 91, 255, 0.2);
background: linear-gradient(135deg, #f9f6ff 0%, #f0e9ff 100%);
}
.card-header {
margin-bottom: 2rem;
}
.decorative-line {
width: 50px;
height: 3px;
background: var(--primary-gradient);
margin-bottom: 1rem;
border-radius: 3px;
}
.solution-card:hover .decorative-line {
width: 80px;
}
.card-title {
font-size: 1.3rem;
color: #2c0850;
font-weight: 600;
}
.content-point {
display: flex;
gap: 1rem;
padding: 1rem 0;
border-bottom: 1px solid rgba(137, 91, 255, 0.1);
}
.point-icon {
2025-05-26 07:14:44 +00:00
color: #4a3a6b;
2025-05-26 02:38:31 +00:00
font-size: 1.2rem;
flex-shrink: 0;
}
.point-text {
color: #4a3a6b;
line-height: 1.6;
2025-05-26 07:38:24 +00:00
font-size: 18px;
2025-05-26 02:38:31 +00:00
}
@keyframes cardEnter {
to {
opacity: 1;
transform: translateY(0);
}
}
</style>