Files
ebiz-sunful-eco-h5/src/views/nextPage/ecologicalConstruction/index.vue
陈昱达 2915bdeda4 refactor(views): 优化页面内容和代码结构
- 修改 aboutSunful 页面的 headerText 内容,调整格式和标点- 更新 ecologicalConstruction 页面的文案,提高语言准确性
- 在 vue.config.js 中添加文件名哈希,优化静态资源管理
2025-07-17 12:28:44 +08:00

162 lines
4.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template>
<div id="ecological-construction-container" class="ecological-construction-container">
<next-page-header :headerImg="headerImg"></next-page-header>
<div class="header-text">
<div class="text-1">ECOLOGICAL CONSTRUCTION</div>
<div class="text-2">生态建设</div>
<p>
互联网+时代幸福人寿本着以客户为中心的理念顺应数字化趋势以科技领先拥抱变化为改革发展之道充分利
用股东优势积极推动市场化专业化科技化差异化集约化发展致力于打造金融+科技+生态的发展战略格局
</p>
</div>
<div class="label-layout">匠心臻选只为满足您的每一个需求期待</div>
<!-- 2025客户权益重磅升级-->
<div class="flex-container">
<h3>2025客户权益重磅升级</h3>
<p class="mt5">致力于打造金融+科技+生态的发展战略格局</p>
<img src="../../../assets/images/h5/ecologicalConstruction/img.png" alt="" class="mt15" />
<p class="text mt15">
全力运用金融科技驱动亚务创新重构以客户为中心的业务体系和运营体系推动销售变革形成高效管理在不断改善客户体验的同时与合作伙伴一起形成相互赋能的新型生态
</p>
</div>
<!-- 幸福生态圈-->
<div class="flex-container bgF5F7FA">
<h3>幸福生态圈</h3>
<p class="mt5">打造五位一体的生态布局</p>
<img src="../../../assets/images/h5/ecologicalConstruction/quan.png" alt="" class="mt35" />
<p class="text mt35">
2025幸福人寿即将迎来自己18岁的生日成人之者将责成人礼焉18岁的幸福人寿将砺霜成器勇担重任重新整合生态体系重磅升级客户权益体系围绕健康无忧颐养天年成长护航财富臻享生活优享打造五位一体的生态布局覆盖客户生活的方方面面响应客户的日常需求
</p>
</div>
</div>
</template>
<script>
import headerImg from '@/assets/images/h5/ecologicalConstruction/eco-header-img.png'
export default {
name: 'ecological-construction',
data() {
return {
headerImg,
}
},
}
</script>
<style scoped lang="scss">
#ecological-construction-container {
background: #f5f7fa;
& .header-text {
position: absolute;
top: 51px;
left: 20px;
& .text-1 {
font-family: HarmonyOS_Sans_Medium;
font-size: 19px;
color: #ffffff;
line-height: 24px;
text-align: left;
font-style: normal;
text-transform: uppercase;
opacity: 0.3;
}
& .text-2 {
font-family: PingFangSC, PingFang SC;
font-weight: 800;
font-size: 23px;
color: #ffffff;
line-height: 32px;
text-align: left;
font-style: normal;
margin-top: -15px;
position: relative;
padding-bottom: 18px;
&:after {
content: '';
position: absolute;
width: 34px;
height: 3px;
background: #c81d2d;
left: 0;
bottom: 0;
}
}
p {
margin-top: 20px;
width: 270px;
height: 97px;
font-family: AlibabaPuHuiTi_2_55_Regular;
font-size: 13px;
color: #ffffff;
line-height: 17px;
text-align: left;
font-style: normal;
text-transform: none;
}
}
& .label-layout {
width: 100%;
margin-top: -42px;
height: 42px;
display: block;
background: #c81d2d;
position: relative;
z-index: 1;
text-align: center;
line-height: 42px;
font-size: 15px;
font-weight: 700;
color: #fff;
}
.bgF5F7FA {
background: #f5f7fa !important;
}
& .flex-container {
padding: 30px 15px 40px 15px;
background: #fff;
text-align: center;
& h3 {
font-family: AlibabaPuHuiTi_2_75_SemiBold;
font-size: 16px;
color: #000000;
line-height: 26px;
font-style: normal;
text-transform: none;
}
& p {
font-family: AlibabaPuHuiTi_2_45_Light;
font-size: 10px;
color: #666666;
font-style: normal;
text-transform: none;
}
& img {
width: 100%;
display: block;
}
& .text {
font-family: AlibabaPuHuiTi_2_55_Regular;
font-size: 12px;
color: #646465;
line-height: 16px;
text-align: left;
font-style: normal;
text-transform: none;
padding: 0 20px 15px 20px;
position: relative;
&:after {
width: 27px;
height: 3px;
background: #c81d2d;
content: '';
position: absolute;
left: 20px;
bottom: 0;
}
}
}
}
</style>