50 lines
1.8 KiB
Vue
50 lines
1.8 KiB
Vue
|
<script setup>
|
||
|
import { onUnmounted, ref, watch, onMounted, computed } from "vue";
|
||
|
function copyEmail() {
|
||
|
navigator.clipboard.writeText('fiee@dlkadvisory.com');
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<header class="header-mobile">
|
||
|
<!-- 可根据需要添加移动端头部内容 -->
|
||
|
</header>
|
||
|
<main ref="main" class="flex flex-col items-center from-white/80 to-white/40 backdrop-blur-md rounded-xl shadow-lg border border-gradient-to-br from-primary to-accent w-[100vw] mt-8 animate-fade-in px-4 py-8 bg-[url('@/assets/image/background.png')]">
|
||
|
<div class="w-full flex flex-col items-center gap-4 px-2">
|
||
|
<h1 class="text-2xl font-bold text-primary animate-fade-in-down animate-delay-0">Investor Contacts</h1>
|
||
|
<div class="text-lg font-semibold text-gray-800 animate-fade-in-down animate-delay-200">FiEE Inc.</div>
|
||
|
<div class="text-base text-secondary animate-fade-in-down animate-delay-400">Investor Relations</div>
|
||
|
<div class="text-sm text-gray-600 flex items-center gap-1 animate-fade-in-down animate-delay-600">
|
||
|
<span>Email:</span>
|
||
|
<span class="transition-colors duration-300 cursor-pointer text-accent hover:text-primary active:text-secondary select-all" @click="copyEmail">fiee@dlkadvisory.com</span>
|
||
|
</div>
|
||
|
</div>
|
||
|
</main>
|
||
|
<footer class="footer-mobile">
|
||
|
<!-- 可根据需要添加移动端底部内容 -->
|
||
|
</footer>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
@keyframes fade-in-down {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
transform: translateY(-20px);
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 1;
|
||
|
transform: translateY(0);
|
||
|
}
|
||
|
}
|
||
|
.animate-fade-in-down {
|
||
|
animation: fade-in-down 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
|
||
|
}
|
||
|
.animate-delay-0 { animation-delay: 0s; }
|
||
|
.animate-delay-200 { animation-delay: 0.2s; }
|
||
|
.animate-delay-400 { animation-delay: 0.4s; }
|
||
|
.animate-delay-600 { animation-delay: 0.6s; }
|
||
|
|
||
|
.max-w-343px { max-width: 343px; }
|
||
|
</style>
|
||
|
|