fix contacts 375

This commit is contained in:
yuanshan 2025-10-14 10:38:28 +08:00
parent 850a3169c2
commit 6abcba798f

View File

@ -1,73 +1,162 @@
<script setup>
import { NCarousel, NDivider, NMarquee, NPopselect } from "naive-ui";
import { onUnmounted, ref, watch, onMounted, computed } from "vue";
function copyEmail() {
navigator.clipboard.writeText("fiee@dlkadvisory.com");
}
</script>
<template>
<main
ref="main"
class="flex flex-col items-center from-primary to-accent w-[100vw] mt-8 animate-fade-in px-4 py-8 pt-500px"
>
<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-#ff7bac 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"
>
<div class="contact-container">
<!-- Title Section -->
<div class="title-section">
<div class="title-decoration"></div>
<div class="contact-title">Investor Contacts</div>
</div>
<!-- Card Section -->
<div class="contact-card">
<img
class="card-overlay"
src="@/assets/image/375/contacts-bg.png"
alt=""
/>
<div class="logo-text">FiEE Inc.</div>
<div class="relation-text">Investor Relations</div>
<div class="email-section">
<span>Email:</span>
<span
class="transition-colors duration-300 cursor-pointer text-#00baff hover:text-primary active:text-secondary select-all"
@click="copyEmail"
<span class="email-address" @click="copyEmail"
>fiee@dlkadvisory.com</span
>
</div>
</div>
</main>
</div>
</template>
<style scoped lang="scss">
.contact-container {
width: 343 * 5.12px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}
.title-section {
width: 100%;
display: flex;
flex-direction: column;
gap: 16 * 5.12px;
padding: 0 16 * 5.12px;
margin-top: 43 * 5.12px;
margin-bottom: 32 * 5.12px;
}
.title-decoration {
width: 58 * 5.12px;
height: 7 * 5.12px;
background: #ff7bac;
margin: auto 0;
}
.contact-title {
font-family: "PingFang SC", sans-serif;
font-weight: 500;
font-size: 24 * 5.12px;
line-height: normal;
letter-spacing: 0 * 5.12px;
color: #000000;
}
.contact-card {
display: flex;
width: 100%;
height: 524 * 5.12px;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4 * 5.12px;
background-color: white;
border-radius: 16 * 5.12px;
box-shadow: 0 * 5.12px 3 * 5.12px 14 * 5.12px 0 * 5.12px rgba(0, 0, 0, 0.16);
position: relative;
margin: 0 16 * 5.12px;
animation: fade-in 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.logo-text {
width: 100%;
text-align: center;
font-feature-settings: "liga" off, "clig" off;
font-family: "PingFang SC";
font-size: 64 * 5.12px;
font-style: normal;
font-weight: 600;
line-height: normal;
letter-spacing: 0.48 * 5.12px;
background: linear-gradient(90deg, #ff7bac 0%, #0ff 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
animation: fade-in-down 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
animation-delay: 0.2s;
}
.relation-text {
font-family: "PingFang SC", sans-serif;
font-size: 20 * 5.12px;
color: #000000;
font-weight: 600;
animation: fade-in-down 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
animation-delay: 0.4s;
}
.email-section {
font-size: 16 * 5.12px;
color: #455363;
display: flex;
align-items: center;
gap: 8 * 5.12px;
letter-spacing: 1.2 * 5.12px;
animation: fade-in-down 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
animation-delay: 0.6s;
margin-top: 0 * 5.12px;
}
.email-address {
color: #ff7bac;
cursor: pointer;
}
.card-overlay {
position: absolute;
left: 43 * 5.12px;
top: 174 * 5.12px;
width: 258 * 5.12px;
height: 176 * 5.12px;
pointer-events: none;
user-select: none;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-20px);
transform: translateY(-20 * 5.12px);
}
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>