130 lines
2.9 KiB
Vue
130 lines
2.9 KiB
Vue
|
|
<template>
|
|||
|
|
<section class="app-promotion">
|
|||
|
|
<div class="section-bg">
|
|||
|
|
<h2 class="section-title">提供专属健康服务和服务方案</h2>
|
|||
|
|
<el-button type="primary" class="consult-btn"> 领取您的AI健康解决方案 </el-button>
|
|||
|
|
</div>
|
|||
|
|
<div class="app-download">
|
|||
|
|
<div class="app-item">
|
|||
|
|
<div class="app-section">
|
|||
|
|
<img src="@/assets/icons/ios.png" alt="iOS" />
|
|||
|
|
<p><span class="_text">iOS</span>客户端</p>
|
|||
|
|
</div>
|
|||
|
|
<span>版本号:1.1.1</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="app-item">
|
|||
|
|
<div class="app-section">
|
|||
|
|
<img src="@/assets/icons/android.png" alt="Android" />
|
|||
|
|
<p><span class="_text">Android</span>客户端</p>
|
|||
|
|
</div>
|
|||
|
|
<span>版本号:1.1.1</span>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<!-- <div class="contact-info">-->
|
|||
|
|
<!-- <p>联系我们:181-4852-2763</p>-->
|
|||
|
|
<!-- <p>合作邮箱:tfhux2023.com</p>-->
|
|||
|
|
<!-- <div class="qrcode-group">-->
|
|||
|
|
<!-- <img src="@/assets/qr-code-1.png" alt="公众号" />-->
|
|||
|
|
<!-- <img src="@/assets/qr-code-2.png" alt="小程序" />-->
|
|||
|
|
<!-- <img src="@/assets/qr-code-3.png" alt="官网" />-->
|
|||
|
|
<!-- </div>-->
|
|||
|
|
<!-- </div>-->
|
|||
|
|
</section>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script setup lang="ts">
|
|||
|
|
import { ElButton } from 'element-plus' // 确保按需导入
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style scoped lang="less">
|
|||
|
|
.app-promotion {
|
|||
|
|
text-align: center;
|
|||
|
|
}
|
|||
|
|
.section-bg {
|
|||
|
|
.pt(36px);
|
|||
|
|
.pb(36px);
|
|||
|
|
background-image: url('https://images.health.ufutx.com/202506/18/e403f857ad7385ea660987cbcbdcf198.png');
|
|||
|
|
}
|
|||
|
|
.section-title {
|
|||
|
|
font-weight: bold;
|
|||
|
|
font-size: 30px;
|
|||
|
|
padding: 10px;
|
|||
|
|
.mb(10px);
|
|||
|
|
}
|
|||
|
|
.consult-btn {
|
|||
|
|
//display: flex;
|
|||
|
|
height: 57px;
|
|||
|
|
padding: 16px 30px;
|
|||
|
|
border-radius: 10px;
|
|||
|
|
background: var(--Style, #1060ff);
|
|||
|
|
font-size: 18px;
|
|||
|
|
color: #fff;
|
|||
|
|
font-weight: bold;
|
|||
|
|
.mt(10px);
|
|||
|
|
}
|
|||
|
|
.app-download {
|
|||
|
|
height: 620px;
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: center;
|
|||
|
|
gap: 40px;
|
|||
|
|
width: 100%;
|
|||
|
|
background-image: url('https://images.health.ufutx.com/202506/18/f27ffc4b59df0dc6f53133bb1115b44a.png');
|
|||
|
|
background-size: cover;
|
|||
|
|
}
|
|||
|
|
.app-item {
|
|||
|
|
text-align: left;
|
|||
|
|
display: flex;
|
|||
|
|
width: 408px;
|
|||
|
|
height: 150px;
|
|||
|
|
padding: 50px 50px 30px 50px;
|
|||
|
|
flex-direction: column;
|
|||
|
|
justify-content: center;
|
|||
|
|
align-items: center;
|
|||
|
|
gap: 10px;
|
|||
|
|
flex-shrink: 0;
|
|||
|
|
border-radius: 30px;
|
|||
|
|
background: var(--ffffff, #fff);
|
|||
|
|
.mt(428px);
|
|||
|
|
.app-section {
|
|||
|
|
.flex-center();
|
|||
|
|
}
|
|||
|
|
._text {
|
|||
|
|
font-weight: bold;
|
|||
|
|
font-size: 20px;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
.app-item img {
|
|||
|
|
width: 26px;
|
|||
|
|
height: 26px;
|
|||
|
|
margin-right: 5px;
|
|||
|
|
}
|
|||
|
|
.app-item p {
|
|||
|
|
font-size: 18px;
|
|||
|
|
font-weight: 400;
|
|||
|
|
.ml(3px);
|
|||
|
|
}
|
|||
|
|
.app-item span {
|
|||
|
|
font-size: 15px;
|
|||
|
|
color: #666;
|
|||
|
|
letter-spacing: 0.9px;
|
|||
|
|
}
|
|||
|
|
.contact-info {
|
|||
|
|
margin-top: 40px;
|
|||
|
|
}
|
|||
|
|
.contact-info p {
|
|||
|
|
font-size: 14px;
|
|||
|
|
color: #666;
|
|||
|
|
margin: 8px 0;
|
|||
|
|
}
|
|||
|
|
.qrcode-group {
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: center;
|
|||
|
|
gap: 20px;
|
|||
|
|
margin-top: 16px;
|
|||
|
|
}
|
|||
|
|
.qrcode-group img {
|
|||
|
|
width: 60px;
|
|||
|
|
height: 60px;
|
|||
|
|
}
|
|||
|
|
</style>
|