ufutx-pc-website/src/views/Home/sections/GlobalService.vue

51 lines
1.0 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>
<section class="global-service">
<div class="container">
<h3 class="section-title">我们全球服务覆盖范围</h3>
<p class="section-desc">覆盖国家/地区6+ · 客户产业覆盖范围15+</p>
<!-- 替换为实际地图路径 -->
<img
src="https://images.health.ufutx.com/202506/12/2acedc9535b108d6cd079b34bb01e78e.jpeg"
alt="世界地图"
class="world-map"
/>
</div>
</section>
</template>
<script setup lang="ts">
// 暂无逻辑,纯展示
</script>
<style scoped lang="less">
.global-service {
padding: 80px 0;
background-color: #fff;
.container {
max-width: 1200px;
margin: 0 auto;
text-align: center;
.section-title {
font-size: 28px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}
.section-desc {
font-size: 16px;
color: #666;
margin-bottom: 40px;
}
.world-map {
max-width: 1000px;
width: 100%;
height: auto;
}
}
}
</style>