fix contacts 375
This commit is contained in:
parent
850a3169c2
commit
6abcba798f
@ -1,73 +1,162 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
|
import { NCarousel, NDivider, NMarquee, NPopselect } from "naive-ui";
|
||||||
import { onUnmounted, ref, watch, onMounted, computed } from "vue";
|
import { onUnmounted, ref, watch, onMounted, computed } from "vue";
|
||||||
|
|
||||||
function copyEmail() {
|
function copyEmail() {
|
||||||
navigator.clipboard.writeText("fiee@dlkadvisory.com");
|
navigator.clipboard.writeText("fiee@dlkadvisory.com");
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<main
|
<div class="contact-container">
|
||||||
ref="main"
|
<!-- Title Section -->
|
||||||
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="title-section">
|
||||||
>
|
<div class="title-decoration"></div>
|
||||||
<div class="w-full flex flex-col items-center gap-4 px-2">
|
<div class="contact-title">Investor Contacts</div>
|
||||||
<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>
|
||||||
<div
|
|
||||||
class="text-base text-#ff7bac animate-fade-in-down animate-delay-400"
|
<!-- Card Section -->
|
||||||
>
|
<div class="contact-card">
|
||||||
Investor Relations
|
<img
|
||||||
</div>
|
class="card-overlay"
|
||||||
<div
|
src="@/assets/image/375/contacts-bg.png"
|
||||||
class="text-sm text-gray-600 flex items-center gap-1 animate-fade-in-down animate-delay-600"
|
alt=""
|
||||||
>
|
/>
|
||||||
|
<div class="logo-text">FiEE Inc.</div>
|
||||||
|
<div class="relation-text">Investor Relations</div>
|
||||||
|
<div class="email-section">
|
||||||
<span>Email:</span>
|
<span>Email:</span>
|
||||||
<span
|
<span class="email-address" @click="copyEmail"
|
||||||
class="transition-colors duration-300 cursor-pointer text-#00baff hover:text-primary active:text-secondary select-all"
|
|
||||||
@click="copyEmail"
|
|
||||||
>fiee@dlkadvisory.com</span
|
>fiee@dlkadvisory.com</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss">
|
<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 {
|
@keyframes fade-in-down {
|
||||||
0% {
|
0% {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(-20px);
|
transform: translateY(-20 * 5.12px);
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
transform: translateY(0);
|
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>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user