141 lines
2.9 KiB
Vue
141 lines
2.9 KiB
Vue
<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>
|
|
<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">
|
|
<div class="logo-text">FiEE Inc.</div>
|
|
<div class="relation-text">Investor Relations</div>
|
|
<div class="email-section">
|
|
<span>Email:</span>
|
|
<span class="email-address" @click="copyEmail"
|
|
>fiee@dlkadvisory.com</span
|
|
>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
.contact-container {
|
|
width: 932px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.title-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
padding: 0 16px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.title-decoration {
|
|
width: 58px;
|
|
height: 7px;
|
|
background: #ff7bac;
|
|
margin: auto 0;
|
|
margin-top: 43px;
|
|
}
|
|
|
|
.contact-title {
|
|
font-family: "PingFang SC", sans-serif;
|
|
font-weight: 500;
|
|
font-size: 40px;
|
|
line-height: 1.4em;
|
|
color: #000000;
|
|
}
|
|
|
|
.contact-card {
|
|
display: flex;
|
|
width: 932px;
|
|
height: 580px;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 4px;
|
|
background-color: white;
|
|
border-radius: 1rem;
|
|
background-image: url("@/assets/image/1920/contacts-bg.png");
|
|
background-size: 64% auto;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
|
|
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: 128px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: normal;
|
|
letter-spacing: 0.48px;
|
|
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-size: 1.5rem;
|
|
color: black;
|
|
font-weight: bold;
|
|
animation: fade-in-down 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
|
|
animation-delay: 0.4s;
|
|
}
|
|
|
|
.email-section {
|
|
font-size: 1.25rem;
|
|
color: #4a5568;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
animation: fade-in-down 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
|
|
animation-delay: 0.6s;
|
|
}
|
|
|
|
.email-address {
|
|
color: #ff7bac;
|
|
}
|
|
|
|
@keyframes fade-in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes fade-in-down {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateY(-30px);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
</style>
|