2025-10-21 16:50:33 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="welcome-page">
|
|
|
|
|
|
<!-- 导航栏 -->
|
|
|
|
|
|
<header class="navbar">
|
|
|
|
|
|
<div class="navbar-content">
|
|
|
|
|
|
<div class="logo">Logo</div>
|
|
|
|
|
|
<nav class="nav-links">
|
2025-10-23 17:50:12 +08:00
|
|
|
|
<a href="#" class="nav-link" @click="scrollToSection('features')">文生视频</a>
|
|
|
|
|
|
<a href="#" class="nav-link" @click="scrollToSection('features')">图生视频</a>
|
|
|
|
|
|
<a href="#" class="nav-link" @click="scrollToSection('features')">分镜视频</a>
|
|
|
|
|
|
<a href="#" class="nav-link" @click="scrollToSection('features')">订阅套餐</a>
|
2025-10-21 16:50:33 +08:00
|
|
|
|
</nav>
|
2025-10-21 17:18:23 +08:00
|
|
|
|
<button class="nav-button" @click="goToLogin">开始体验</button>
|
2025-10-21 16:50:33 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 主要内容 -->
|
|
|
|
|
|
<main class="content">
|
|
|
|
|
|
<h1 class="title">
|
|
|
|
|
|
<span class="title-line">
|
|
|
|
|
|
<span class="bright-text">智创</span><span class="fade-text">无限,</span>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
<span class="title-line">
|
|
|
|
|
|
<span class="bright-text">灵感</span><span class="fade-text">变现。</span>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</h1>
|
2025-10-23 17:50:12 +08:00
|
|
|
|
<p class="subtitle">使用邮箱验证码登录,安全便捷</p>
|
2025-10-21 17:18:23 +08:00
|
|
|
|
<button class="main-button" @click="goToLogin">立即体验</button>
|
2025-10-21 16:50:33 +08:00
|
|
|
|
</main>
|
|
|
|
|
|
|
2025-10-23 17:50:12 +08:00
|
|
|
|
<!-- 功能说明 -->
|
|
|
|
|
|
<section id="features" class="features-section">
|
|
|
|
|
|
<div class="features-container">
|
|
|
|
|
|
<h2 class="features-title">核心功能</h2>
|
|
|
|
|
|
<div class="features-grid">
|
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
|
<h3>文生视频</h3>
|
|
|
|
|
|
<p>输入文字描述,AI自动生成高质量视频内容</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
|
<h3>图生视频</h3>
|
|
|
|
|
|
<p>上传图片,AI智能分析并生成动态视频</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
|
<h3>分镜视频</h3>
|
|
|
|
|
|
<p>专业分镜制作,打造电影级视频效果</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="feature-card">
|
|
|
|
|
|
<h3>订阅套餐</h3>
|
|
|
|
|
|
<p>灵活的价格方案,满足不同创作需求</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<button class="features-button" @click="goToLogin">开始创作</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
2025-10-21 16:50:33 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-10-21 17:18:23 +08:00
|
|
|
|
import { useRouter } from 'vue-router'
|
|
|
|
|
|
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
|
|
|
|
|
|
// 跳转到登录页面
|
|
|
|
|
|
const goToLogin = () => {
|
|
|
|
|
|
router.push('/login')
|
|
|
|
|
|
}
|
2025-10-23 17:50:12 +08:00
|
|
|
|
|
|
|
|
|
|
// 滚动到功能说明部分
|
|
|
|
|
|
const scrollToSection = (sectionId) => {
|
|
|
|
|
|
const element = document.getElementById(sectionId)
|
|
|
|
|
|
if (element) {
|
|
|
|
|
|
element.scrollIntoView({ behavior: 'smooth' })
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-21 16:50:33 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.welcome-page {
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
background: url('/images/backgrounds/welcome.jpg') center/cover no-repeat;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 导航栏 */
|
|
|
|
|
|
.navbar {
|
|
|
|
|
|
position: fixed;
|
|
|
|
|
|
top: 20px;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
width: 95%;
|
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
|
background: rgba(26, 26, 46, 0.8);
|
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
|
height: 60px;
|
|
|
|
|
|
border-radius: 30px;
|
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.navbar-content {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-links {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 30px;
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
margin-right: 15px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-link {
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
transition: color 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-link:hover {
|
|
|
|
|
|
color: #4a9eff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-button {
|
|
|
|
|
|
background: rgba(74, 158, 255, 0.8);
|
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.nav-button:hover {
|
|
|
|
|
|
background: rgba(74, 158, 255, 1);
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 主要内容 */
|
|
|
|
|
|
.content {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
padding-top: 80px;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
z-index: 10;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
|
font-size: 6.5rem;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
line-height: 1.1;
|
|
|
|
|
|
margin-bottom: 60px;
|
|
|
|
|
|
letter-spacing: -0.03em;
|
|
|
|
|
|
text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-23 17:50:12 +08:00
|
|
|
|
.subtitle {
|
|
|
|
|
|
font-size: 1.2rem;
|
|
|
|
|
|
color: rgba(255, 255, 255, 0.8);
|
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-21 16:50:33 +08:00
|
|
|
|
.title-line {
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.bright-text {
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.fade-text {
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.main-button {
|
|
|
|
|
|
background: linear-gradient(90deg, rgba(74, 158, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
padding: 22px 60px;
|
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
|
font-size: 22px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
box-shadow: 0 6px 25px rgba(74, 158, 255, 0.3);
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.main-button:hover {
|
|
|
|
|
|
transform: translateY(-4px);
|
|
|
|
|
|
box-shadow: 0 12px 40px rgba(74, 158, 255, 0.5);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.main-button:active {
|
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 背景光影效果已删除 */
|
|
|
|
|
|
|
|
|
|
|
|
/* 响应式设计 */
|
|
|
|
|
|
@media (max-width: 1024px) {
|
|
|
|
|
|
.title {
|
|
|
|
|
|
font-size: 5.5rem;
|
|
|
|
|
|
margin-bottom: 50px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main-button {
|
|
|
|
|
|
padding: 20px 50px;
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.nav-links {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.title {
|
|
|
|
|
|
font-size: 4rem;
|
|
|
|
|
|
line-height: 1.2;
|
|
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main-button {
|
|
|
|
|
|
padding: 18px 40px;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
|
|
.title {
|
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
|
line-height: 1.3;
|
|
|
|
|
|
}
|
|
|
|
|
|
.main-button {
|
|
|
|
|
|
padding: 16px 35px;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-10-23 17:50:12 +08:00
|
|
|
|
|
|
|
|
|
|
/* 功能说明部分 */
|
|
|
|
|
|
.features-section {
|
|
|
|
|
|
background: rgba(0, 0, 0, 0.8);
|
|
|
|
|
|
padding: 80px 20px;
|
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.features-container {
|
|
|
|
|
|
max-width: 1200px;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.features-title {
|
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
margin-bottom: 60px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.features-grid {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
|
|
|
|
gap: 30px;
|
|
|
|
|
|
margin-bottom: 60px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-card {
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
|
padding: 40px 30px;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-card:hover {
|
|
|
|
|
|
transform: translateY(-10px);
|
|
|
|
|
|
background: rgba(255, 255, 255, 0.15);
|
|
|
|
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-card h3 {
|
|
|
|
|
|
font-size: 1.5rem;
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.feature-card p {
|
|
|
|
|
|
color: rgba(255, 255, 255, 0.8);
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.features-button {
|
|
|
|
|
|
background: linear-gradient(135deg, #4A9EFF 0%, #6B73FF 100%);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
padding: 18px 40px;
|
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
border-radius: 50px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
|
|
box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.features-button:hover {
|
|
|
|
|
|
background: linear-gradient(135deg, #6B73FF 0%, #4A9EFF 100%);
|
|
|
|
|
|
transform: translateY(-3px);
|
|
|
|
|
|
box-shadow: 0 15px 40px rgba(74, 158, 255, 0.4);
|
|
|
|
|
|
}
|
2025-10-21 16:50:33 +08:00
|
|
|
|
</style>
|