380 lines
9.2 KiB
Vue
380 lines
9.2 KiB
Vue
|
<template>
|
||
|
<div class="home-page">
|
||
|
<div class="board-page">
|
||
|
<!-- 紫色渐变标题区 -->
|
||
|
<section class="hero-board">
|
||
|
<div class="hero-content">
|
||
|
<h1 class="hero-title">Board of Directors</h1>
|
||
|
<div class="hero-subtitle">Leadership Driving Innovation</div>
|
||
|
</div>
|
||
|
<div class="hero-wave"></div>
|
||
|
</section>
|
||
|
|
||
|
<!-- 董事会成员展示 -->
|
||
|
<main class="board-container">
|
||
|
<div class="directors-grid">
|
||
|
<!-- CEO卡片 - 特殊强调 -->
|
||
|
<div class="director-card ceo-card">
|
||
|
<div class="card-inner">
|
||
|
<div class="card-front">
|
||
|
<div class="avatar-placeholder"></div>
|
||
|
<h2 class="director-name">Li Wai Chung</h2>
|
||
|
<div class="director-title">
|
||
|
Chief Executive Officer and President
|
||
|
</div>
|
||
|
<div class="card-flip-hint">▲ View Profile</div>
|
||
|
</div>
|
||
|
<div class="card-back">
|
||
|
<div class="profile-content">
|
||
|
<h3>Executive Profile</h3>
|
||
|
<div class="divider"></div>
|
||
|
<p>
|
||
|
Extensive experience in leadership roles with a proven track
|
||
|
record of driving growth and operational excellence
|
||
|
</p>
|
||
|
<div class="accent-line"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="card-glow"></div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 其他董事成员 -->
|
||
|
<div
|
||
|
class="director-card"
|
||
|
v-for="(director, index) in otherDirectors"
|
||
|
:key="index"
|
||
|
>
|
||
|
<div class="card-inner">
|
||
|
<div class="card-front">
|
||
|
<div
|
||
|
class="avatar-placeholder"
|
||
|
:style="{ '--delay': index * 0.1 + 's' }"
|
||
|
></div>
|
||
|
<h2 class="director-name">{{ director.name }}</h2>
|
||
|
<div class="director-title">{{ director.title }}</div>
|
||
|
</div>
|
||
|
<div class="card-back">
|
||
|
<div class="profile-content">
|
||
|
<h3>Director Profile</h3>
|
||
|
<div class="divider"></div>
|
||
|
<p>
|
||
|
Extensive experience in corporate governance and strategic
|
||
|
leadership
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</main>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
const otherDirectors = [
|
||
|
{
|
||
|
name: "Cao Yu",
|
||
|
title: "Chief Financial Officer, Secretary, Treasurer and Director",
|
||
|
},
|
||
|
{ name: "David Lazar", title: "Director" },
|
||
|
{ name: "Hu Bin", title: "Director" },
|
||
|
{ name: "David Natan", title: "Director" },
|
||
|
{ name: "Chan Oi Fat", title: "Director" },
|
||
|
];
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.home-page {
|
||
|
background-image: url("@/assets/image/bg.png");
|
||
|
background-size: 100% 100%;
|
||
|
background-position: center;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
/* 紫色主题变量 */
|
||
|
:root {
|
||
|
--primary: #895bff;
|
||
|
--primary-light: #a07cff;
|
||
|
--primary-dark: #6a11cb;
|
||
|
--primary-gradient: linear-gradient(
|
||
|
135deg,
|
||
|
var(--primary-light) 0%,
|
||
|
var(--primary) 100%
|
||
|
);
|
||
|
--primary-transparent: rgba(137, 91, 255, 0.1);
|
||
|
}
|
||
|
|
||
|
/* 标题区设计 */
|
||
|
.hero-board {
|
||
|
background: var(--primary-gradient);
|
||
|
padding: 8rem 2rem 6rem;
|
||
|
position: relative;
|
||
|
text-align: center;
|
||
|
color: #895bff;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.hero-board::before {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle fill="rgba(255,255,255,0.05)" cx="20" cy="20" r="15"/><circle fill="rgba(255,255,255,0.05)" cx="80" cy="40" r="20"/><circle fill="rgba(255,255,255,0.05)" cx="50" cy="80" r="10"/></svg>');
|
||
|
opacity: 0.3;
|
||
|
}
|
||
|
|
||
|
.hero-title {
|
||
|
font-size: 3.5rem;
|
||
|
margin-bottom: 1rem;
|
||
|
font-weight: 600;
|
||
|
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||
|
animation: fadeInDown 1s ease;
|
||
|
}
|
||
|
|
||
|
.hero-subtitle {
|
||
|
font-size: 1.2rem;
|
||
|
letter-spacing: 0.1em;
|
||
|
opacity: 0.9;
|
||
|
animation: fadeIn 1.5s ease;
|
||
|
}
|
||
|
|
||
|
.hero-wave {
|
||
|
position: absolute;
|
||
|
bottom: -1px;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100px;
|
||
|
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23faf9ff" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23faf9ff" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23faf9ff"/></svg>');
|
||
|
background-size: cover;
|
||
|
}
|
||
|
|
||
|
/* 董事会成员网格 */
|
||
|
.board-container {
|
||
|
max-width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
padding: 4rem 2rem;
|
||
|
}
|
||
|
|
||
|
.directors-grid {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
|
gap: 2rem;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* 董事卡片设计 */
|
||
|
.director-card {
|
||
|
perspective: 1000px;
|
||
|
height: 380px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.director-card .card-inner {
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
transition: transform 0.8s;
|
||
|
transform-style: preserve-3d;
|
||
|
border-radius: 16px;
|
||
|
box-shadow: 0 10px 30px rgba(137, 91, 255, 0.1);
|
||
|
}
|
||
|
|
||
|
.director-card:hover .card-inner {
|
||
|
transform: rotateY(180deg);
|
||
|
}
|
||
|
|
||
|
.card-front,
|
||
|
.card-back {
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
backface-visibility: hidden;
|
||
|
border-radius: 16px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.card-front {
|
||
|
background: white;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
padding: 2rem;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.card-back {
|
||
|
background: linear-gradient(135deg, #f9f6ff 0%, #f0e9ff 100%);
|
||
|
transform: rotateY(180deg);
|
||
|
padding: 2rem;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
/* CEO特殊卡片 */
|
||
|
.ceo-card .card-front {
|
||
|
border: 2px solid var(--primary);
|
||
|
}
|
||
|
|
||
|
.ceo-card .card-back {
|
||
|
background: linear-gradient(135deg, #f3eeff 0%, #e8ddff 100%);
|
||
|
}
|
||
|
|
||
|
.ceo-card::after {
|
||
|
content: "CEO";
|
||
|
position: absolute;
|
||
|
top: 20px;
|
||
|
right: 20px;
|
||
|
background: var(--primary-gradient);
|
||
|
color: white;
|
||
|
padding: 0.3rem 1rem;
|
||
|
border-radius: 20px;
|
||
|
font-weight: 600;
|
||
|
z-index: 3;
|
||
|
}
|
||
|
|
||
|
.card-glow {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-radius: 16px;
|
||
|
box-shadow: 0 0 30px rgba(137, 91, 255, 0.3);
|
||
|
opacity: 0;
|
||
|
transition: opacity 0.3s ease;
|
||
|
}
|
||
|
|
||
|
.ceo-card:hover .card-glow {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
/* 卡片内容样式 */
|
||
|
.avatar-placeholder {
|
||
|
width: 120px;
|
||
|
height: 120px;
|
||
|
border-radius: 50%;
|
||
|
background: var(--primary-transparent);
|
||
|
margin-bottom: 1.5rem;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
animation: fadeIn 0.5s ease var(--delay, 0s) forwards;
|
||
|
opacity: 0;
|
||
|
}
|
||
|
|
||
|
.avatar-placeholder::before {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
width: 60px;
|
||
|
height: 60px;
|
||
|
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23895bff"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z"/></svg>')
|
||
|
no-repeat center/contain;
|
||
|
opacity: 0.3;
|
||
|
}
|
||
|
|
||
|
.director-name {
|
||
|
font-size: 1.5rem;
|
||
|
color: #2c0850;
|
||
|
margin-bottom: 0.5rem;
|
||
|
font-weight: 600;
|
||
|
}
|
||
|
|
||
|
.director-title {
|
||
|
color: var(--primary);
|
||
|
font-size: 0.95rem;
|
||
|
line-height: 1.6;
|
||
|
max-width: 80%;
|
||
|
}
|
||
|
|
||
|
.card-flip-hint {
|
||
|
position: absolute;
|
||
|
bottom: 20px;
|
||
|
color: var(--primary);
|
||
|
font-size: 0.8rem;
|
||
|
opacity: 0.7;
|
||
|
animation: pulse 2s infinite;
|
||
|
}
|
||
|
|
||
|
.profile-content {
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.profile-content h3 {
|
||
|
color: var(--primary-dark);
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
.divider {
|
||
|
width: 40px;
|
||
|
height: 2px;
|
||
|
background: var(--primary-gradient);
|
||
|
margin: 1rem 0;
|
||
|
}
|
||
|
|
||
|
.accent-line {
|
||
|
width: 100%;
|
||
|
height: 1px;
|
||
|
background: linear-gradient(
|
||
|
90deg,
|
||
|
transparent,
|
||
|
var(--primary-transparent),
|
||
|
transparent
|
||
|
);
|
||
|
margin: 1.5rem 0;
|
||
|
}
|
||
|
|
||
|
/* 动画效果 */
|
||
|
@keyframes fadeIn {
|
||
|
from {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
to {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes fadeInDown {
|
||
|
from {
|
||
|
opacity: 0;
|
||
|
transform: translateY(-20px);
|
||
|
}
|
||
|
to {
|
||
|
opacity: 1;
|
||
|
transform: translateY(0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@keyframes pulse {
|
||
|
0% {
|
||
|
transform: translateY(0);
|
||
|
}
|
||
|
50% {
|
||
|
transform: translateY(-5px);
|
||
|
}
|
||
|
100% {
|
||
|
transform: translateY(0);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* 响应式设计 */
|
||
|
@media (max-width: 768px) {
|
||
|
.hero-title {
|
||
|
font-size: 2.5rem;
|
||
|
}
|
||
|
|
||
|
.directors-grid {
|
||
|
grid-template-columns: 1fr;
|
||
|
}
|
||
|
|
||
|
.director-card {
|
||
|
height: 350px;
|
||
|
}
|
||
|
}
|
||
|
</style>
|