2025-09-29 20:12:57 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=yes, viewport-fit=cover">
|
|
|
|
|
|
<title>2024长三角国际新能源汽车与智能交通产业博览会</title>
|
2025-10-09 10:35:45 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- Base URL for relative paths -->
|
|
|
|
|
|
<base href="/order-class/wenlu/">
|
|
|
|
|
|
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<!-- 预加载关键资源 -->
|
|
|
|
|
|
<link rel="preload" href="css/styles.css" as="style">
|
|
|
|
|
|
<link rel="preload" href="css/animations.css" as="style">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<!-- 样式表 -->
|
|
|
|
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
|
|
|
|
<link rel="stylesheet" href="css/animations.css">
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Tailwind CSS -->
|
|
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 字体 -->
|
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@300;400;500;700;900&family=Orbitron:wght@400;700;900&display=swap" rel="stylesheet">
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 错误处理(需要最早加载) -->
|
|
|
|
|
|
<script src="js/error-handler.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 订单班处理器(需要早加载) -->
|
|
|
|
|
|
<script src="js/order-class-handler.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 页面加载动画(需要尽早加载) -->
|
|
|
|
|
|
<script src="js/page-loader.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 移动端优化 -->
|
|
|
|
|
|
<script src="js/mobile-optimize.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 性能优化 -->
|
|
|
|
|
|
<script src="js/performance-optimizer.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Font Awesome 图标 -->
|
|
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
|
|
<style>
|
|
|
|
|
|
* {
|
|
|
|
|
|
font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.hero-gradient {
|
|
|
|
|
|
background: linear-gradient(135deg,
|
|
|
|
|
|
rgba(16, 185, 129, 0.1) 0%,
|
|
|
|
|
|
rgba(59, 130, 246, 0.1) 50%,
|
|
|
|
|
|
rgba(139, 92, 246, 0.1) 100%);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.image-shine {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.image-shine::before {
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: -50%;
|
|
|
|
|
|
left: -50%;
|
|
|
|
|
|
width: 200%;
|
|
|
|
|
|
height: 200%;
|
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
|
45deg,
|
|
|
|
|
|
transparent 30%,
|
|
|
|
|
|
rgba(255, 255, 255, 0.3) 50%,
|
|
|
|
|
|
transparent 70%
|
|
|
|
|
|
);
|
|
|
|
|
|
transform: rotate(45deg);
|
|
|
|
|
|
transition: all 0.6s;
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.image-shine:hover::before {
|
|
|
|
|
|
animation: shine 0.6s ease-in-out;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes shine {
|
|
|
|
|
|
0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
|
|
|
|
|
|
50% { opacity: 1; }
|
|
|
|
|
|
100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.floating {
|
|
|
|
|
|
animation: floating 3s ease-in-out infinite;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes floating {
|
|
|
|
|
|
0%, 100% { transform: translateY(0px); }
|
|
|
|
|
|
50% { transform: translateY(-20px); }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 确保页面加载时body不能滚动 */
|
|
|
|
|
|
body.loading {
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 图片加载优化 */
|
|
|
|
|
|
img {
|
|
|
|
|
|
background-color: #f3f4f6;
|
|
|
|
|
|
transition: opacity 0.3s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
img.image-loaded {
|
|
|
|
|
|
opacity: 1;
|
|
|
|
|
|
animation: fadeIn 0.5s ease;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
img.image-error {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
filter: grayscale(100%);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
|
from { opacity: 0; }
|
|
|
|
|
|
to { opacity: 1; }
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body class="bg-gray-50 loading">
|
|
|
|
|
|
<!-- 页面加载器将由page-loader.js动态创建 -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Navigation -->
|
|
|
|
|
|
<nav class="fixed top-0 w-full glass-morphism shadow-md z-50 transition-all duration-300" id="navbar">
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<div class="nav-container container mx-auto px-6 py-4">
|
|
|
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
|
|
<!-- Logo -->
|
|
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
|
|
<a href="/order-class/wenlu" class="flex items-center space-x-3">
|
|
|
|
|
|
<i class="fas fa-car text-2xl text-purple-600"></i>
|
|
|
|
|
|
<span class="text-xl font-bold text-gray-800">文旅订单班</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Navigation Links -->
|
|
|
|
|
|
<div class="hidden md:flex items-center space-x-8">
|
|
|
|
|
|
<a href="index.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">首页</a>
|
|
|
|
|
|
<a href="overview.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">项目概览</a>
|
|
|
|
|
|
<a href="exhibition.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">展会设计</a>
|
|
|
|
|
|
<a href="marketing.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">市场营销</a>
|
|
|
|
|
|
<a href="operation.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">运营管理</a>
|
|
|
|
|
|
<a href="budget.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">财务预算</a>
|
|
|
|
|
|
<a href="risk.html" class="text-gray-700 hover:text-purple-600 font-medium transition-colors">风险控制</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Back Button -->
|
|
|
|
|
|
<div class="flex items-center space-x-4">
|
|
|
|
|
|
<a href="/" class="bg-purple-600 text-white px-4 py-2 rounded-lg hover:bg-purple-700 transition-colors">
|
|
|
|
|
|
<i class="fas fa-arrow-left mr-2"></i>返回首页
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2025-09-29 20:12:57 +08:00
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Hero Section -->
|
|
|
|
|
|
<section class="relative min-h-screen flex items-center justify-center overflow-hidden hero-gradient py-32">
|
|
|
|
|
|
<!-- 背景图片 -->
|
|
|
|
|
|
<div class="absolute inset-0 z-0">
|
|
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-br from-purple-100 via-blue-50 to-emerald-50"></div>
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<div class="absolute inset-0 opacity-10" style="background-image: url('data/订单班文档资料/文旅/notion文稿/image/博览会.jpg'); background-size: cover; background-position: center;"></div>
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-white/60 to-white/90"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 浮动装饰元素 -->
|
|
|
|
|
|
<div class="absolute top-20 left-10 w-20 h-20 bg-emerald-400 rounded-full opacity-20 floating"></div>
|
|
|
|
|
|
<div class="absolute bottom-20 right-10 w-32 h-32 bg-blue-400 rounded-full opacity-20 floating" style="animation-delay: 1s;"></div>
|
|
|
|
|
|
<div class="absolute top-1/2 left-20 w-16 h-16 bg-purple-400 rounded-full opacity-20 floating" style="animation-delay: 2s;"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="relative z-10 container mx-auto px-6 text-center py-12">
|
|
|
|
|
|
<div class="fade-in-up">
|
|
|
|
|
|
<!-- 标签 -->
|
|
|
|
|
|
<div class="inline-flex items-center px-4 py-2 bg-white/80 backdrop-blur-sm rounded-full mb-6 shadow-lg">
|
|
|
|
|
|
<span class="animate-pulse w-2 h-2 bg-emerald-500 rounded-full mr-2"></span>
|
|
|
|
|
|
<span class="text-sm font-semibold text-gray-700">2024年6月15-17日 · 苏州国际博览中心</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<h1 class="text-5xl md:text-7xl font-black mb-6">
|
|
|
|
|
|
<span class="block text-gradient-animate" data-order-title>2024长三角国际新能源汽车与智能交通产业博览会</span>
|
|
|
|
|
|
<span class="block text-4xl md:text-5xl text-gray-600 mt-2" data-order-subtitle>新能源汽车产业博览会</span>
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<p class="text-xl md:text-2xl text-gray-600 mb-8 max-w-3xl mx-auto">
|
|
|
|
|
|
<i class="fas fa-quote-left text-emerald-500 mr-2"></i>
|
|
|
|
|
|
引领绿色出行新时代 · 共创智能交通新未来
|
|
|
|
|
|
<i class="fas fa-quote-right text-emerald-500 ml-2"></i>
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<!-- 核心信息展示 -->
|
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12 max-w-5xl mx-auto">
|
|
|
|
|
|
<div class="bg-white/95 backdrop-blur-md rounded-2xl p-6 border-2 border-purple-200 hover:border-purple-400 transition-all duration-300 transform hover:scale-105 animate-fadeInUp animation-delay-200 shadow-2xl">
|
|
|
|
|
|
<div class="flex flex-col items-center">
|
|
|
|
|
|
<div class="w-16 h-16 bg-gradient-to-br from-purple-500 to-purple-600 rounded-full flex items-center justify-center mb-3 shadow-lg">
|
|
|
|
|
|
<i class="fas fa-calendar-alt text-3xl text-white"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p class="text-gray-600 text-sm font-medium mb-2">展会时间</p>
|
|
|
|
|
|
<p class="text-gray-900 font-bold text-2xl text-center">2024年9月</p>
|
|
|
|
|
|
<p class="text-gray-800 font-bold text-xl">12-15日</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="bg-white/95 backdrop-blur-md rounded-2xl p-6 border-2 border-blue-200 hover:border-blue-400 transition-all duration-300 transform hover:scale-105 animate-fadeInUp animation-delay-400 shadow-2xl">
|
|
|
|
|
|
<div class="flex flex-col items-center">
|
|
|
|
|
|
<div class="w-16 h-16 bg-gradient-to-br from-blue-500 to-blue-600 rounded-full flex items-center justify-center mb-3 shadow-lg">
|
|
|
|
|
|
<i class="fas fa-map-marked-alt text-3xl text-white"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p class="text-gray-600 text-sm font-medium mb-2">展会地点</p>
|
|
|
|
|
|
<p class="text-gray-900 font-bold text-2xl text-center">国家会展中心</p>
|
|
|
|
|
|
<p class="text-gray-800 font-bold text-xl">上海</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="bg-white/95 backdrop-blur-md rounded-2xl p-6 border-2 border-green-200 hover:border-green-400 transition-all duration-300 transform hover:scale-105 animate-fadeInUp animation-delay-600 shadow-2xl">
|
|
|
|
|
|
<div class="flex flex-col items-center">
|
|
|
|
|
|
<div class="w-16 h-16 bg-gradient-to-br from-green-500 to-green-600 rounded-full flex items-center justify-center mb-3 shadow-lg">
|
|
|
|
|
|
<i class="fas fa-expand-arrows-alt text-3xl text-white"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p class="text-gray-600 text-sm font-medium mb-2">展览规模</p>
|
|
|
|
|
|
<p class="text-gray-900 font-bold text-3xl">50,000</p>
|
|
|
|
|
|
<p class="text-gray-800 font-bold text-lg">平方米</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- CTA按钮组 -->
|
|
|
|
|
|
<div class="flex flex-col md:flex-row gap-6 justify-center items-center animate-fadeInUp animation-delay-800">
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<a href="overview.html" class="group relative overflow-hidden bg-white text-purple-700 px-12 py-5 rounded-full font-bold text-xl shadow-2xl hover:shadow-white/30 transition-all duration-300 transform hover:scale-110">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<span class="absolute inset-0 bg-gradient-to-r from-purple-600 to-pink-600 opacity-0 group-hover:opacity-100 transition-opacity duration-300"></span>
|
|
|
|
|
|
<span class="relative z-10 flex items-center group-hover:text-white">
|
|
|
|
|
|
<i class="fas fa-sparkles mr-3 text-2xl animate-pulse"></i>
|
|
|
|
|
|
了解详情
|
|
|
|
|
|
<i class="fas fa-arrow-right ml-3 group-hover:translate-x-2 transition-transform"></i>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="#highlights" class="group relative overflow-hidden bg-gradient-to-r from-purple-600 to-pink-600 text-white px-12 py-5 rounded-full font-bold text-xl hover:from-purple-700 hover:to-pink-700 transition-all duration-300 transform hover:scale-110 shadow-2xl">
|
|
|
|
|
|
<span class="relative z-10 flex items-center">
|
|
|
|
|
|
<i class="fas fa-star mr-3 text-2xl text-yellow-300"></i>
|
|
|
|
|
|
展会亮点
|
|
|
|
|
|
<i class="fas fa-chevron-down ml-3 animate-bounce"></i>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Key Stats Section -->
|
|
|
|
|
|
<section class="py-20 -mt-20 relative z-20 bg-gradient-to-br from-white via-gray-50 to-white">
|
|
|
|
|
|
<!-- 背景装饰 -->
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<div class="absolute inset-0 opacity-5" style="background-image: url('data/订单班文档资料/文旅/notion文稿/image/Whisk_9e8c1f44ac.jpg'); background-size: cover; background-position: center;"></div>
|
2025-09-29 20:12:57 +08:00
|
|
|
|
|
|
|
|
|
|
<div class="container mx-auto px-6 relative z-10" title="核心数据展示区">
|
|
|
|
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 md:gap-12">
|
|
|
|
|
|
<div class="text-center group animate-fadeInUp animation-delay-200 transform hover:scale-105 transition-all duration-300">
|
|
|
|
|
|
<div class="w-24 h-24 mx-auto mb-4 bg-white rounded-2xl flex items-center justify-center shadow-lg group-hover:shadow-xl border-2 border-purple-200 group-hover:border-purple-400 group-hover:rotate-3 transition-all">
|
|
|
|
|
|
<i class="fas fa-building text-4xl text-purple-600"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-5xl font-bold text-gray-800 mb-2">
|
|
|
|
|
|
<span class="counter" data-target="350">0</span>+
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-gray-700 font-semibold text-lg">参展企业</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-center group animate-fadeInUp animation-delay-400 transform hover:scale-105 transition-all duration-300">
|
|
|
|
|
|
<div class="w-24 h-24 mx-auto mb-4 bg-white rounded-2xl flex items-center justify-center shadow-lg group-hover:shadow-xl border-2 border-blue-200 group-hover:border-blue-400 group-hover:-rotate-3 transition-all">
|
|
|
|
|
|
<i class="fas fa-users text-4xl text-blue-600"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-5xl font-bold text-gray-800 mb-2">
|
|
|
|
|
|
<span class="counter" data-target="50000">0</span>+
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-gray-700 font-semibold text-lg">预计观众</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-center group animate-fadeInUp animation-delay-600 transform hover:scale-105 transition-all duration-300">
|
|
|
|
|
|
<div class="w-24 h-24 mx-auto mb-4 bg-white rounded-2xl flex items-center justify-center shadow-lg group-hover:shadow-xl border-2 border-green-200 group-hover:border-green-400 group-hover:rotate-3 transition-all">
|
|
|
|
|
|
<i class="fas fa-hand-holding-usd text-4xl text-green-600"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-5xl font-bold text-gray-800 mb-2">
|
|
|
|
|
|
<span class="counter" data-target="10">0</span>亿+
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-gray-700 font-semibold text-lg">预计成交额</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-center group animate-fadeInUp animation-delay-800 transform hover:scale-105 transition-all duration-300">
|
|
|
|
|
|
<div class="w-24 h-24 mx-auto mb-4 bg-white rounded-2xl flex items-center justify-center shadow-lg group-hover:shadow-xl border-2 border-orange-200 group-hover:border-orange-400 group-hover:-rotate-3 transition-all">
|
|
|
|
|
|
<i class="fas fa-microphone-alt text-4xl text-orange-600"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-5xl font-bold text-gray-800 mb-2">
|
|
|
|
|
|
<span class="counter" data-target="20">0</span>+
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="text-gray-700 font-semibold text-lg">专业论坛</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Highlights Section -->
|
|
|
|
|
|
<section id="highlights" class="py-20 relative overflow-hidden">
|
|
|
|
|
|
<!-- 背景图片层 - 降低透明度 -->
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<div class="absolute inset-0 opacity-20" style="background-image: url('data/订单班文档资料/文旅/notion文稿/image/Whisk_27184afa6e.jpg'); background-size: cover; background-position: center; background-attachment: fixed;"></div>
|
2025-09-29 20:12:57 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 强化遮罩层 - 确保主体内容清晰 -->
|
|
|
|
|
|
<div class="absolute inset-0 bg-white/85"></div>
|
|
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-br from-gray-50/95 to-purple-50/95"></div>
|
|
|
|
|
|
<div class="absolute inset-0 opacity-10">
|
|
|
|
|
|
<div class="absolute top-20 left-20 w-72 h-72 bg-purple-300 rounded-full mix-blend-multiply filter blur-xl animate-blob"></div>
|
|
|
|
|
|
<div class="absolute top-40 right-20 w-72 h-72 bg-yellow-300 rounded-full mix-blend-multiply filter blur-xl animate-blob animation-delay-2000"></div>
|
|
|
|
|
|
<div class="absolute -bottom-8 left-40 w-72 h-72 bg-pink-300 rounded-full mix-blend-multiply filter blur-xl animate-blob animation-delay-4000"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="container mx-auto px-6 relative z-10" title="展会亮点展示区">
|
|
|
|
|
|
<h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-12 animate-fadeInUp">展会亮点</h2>
|
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
|
|
|
|
|
|
<!-- Card 1 -->
|
|
|
|
|
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-2xl animate-fadeInUp animation-delay-200">
|
|
|
|
|
|
<div class="h-48 relative overflow-hidden">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/3.小米汽车.jpg" alt="小米汽车" class="w-full h-full object-cover">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute top-4 left-4">
|
|
|
|
|
|
<div class="bg-blue-500 text-white px-3 py-1 rounded-full text-xs font-semibold">热门展区</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="p-6">
|
|
|
|
|
|
<h3 class="text-xl font-bold mb-3 text-gray-800">全产业链展示</h3>
|
|
|
|
|
|
<p class="text-gray-600 mb-4">
|
|
|
|
|
|
涵盖整车制造、核心零部件、充电设施、智能网联等全产业链环节,打造一站式采购平台。
|
|
|
|
|
|
</p>
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<a href="exhibition.html" class="text-purple-600 font-semibold hover:text-purple-800 flex items-center group">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
了解更多 <i class="fas fa-arrow-right ml-2 transform transition-transform group-hover:translate-x-2"></i>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Card 2 -->
|
|
|
|
|
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-2xl animate-fadeInUp animation-delay-400">
|
|
|
|
|
|
<div class="h-48 relative overflow-hidden">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/2.试驾小景.jpg" alt="试驾体验" class="w-full h-full object-cover">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute top-4 left-4">
|
|
|
|
|
|
<div class="bg-emerald-500 text-white px-3 py-1 rounded-full text-xs font-semibold">互动体验</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="p-6">
|
|
|
|
|
|
<h3 class="text-xl font-bold mb-3 text-gray-800">创新技术体验</h3>
|
|
|
|
|
|
<p class="text-gray-600 mb-4">
|
|
|
|
|
|
设置自动驾驶体验区、智能交通演示区,让观众亲身体验最新科技成果。
|
|
|
|
|
|
</p>
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<a href="operation.html" class="text-emerald-600 font-semibold hover:text-emerald-800 flex items-center group">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
了解更多 <i class="fas fa-arrow-right ml-2 transform transition-transform group-hover:translate-x-2"></i>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Card 3 -->
|
|
|
|
|
|
<div class="bg-white rounded-xl shadow-lg overflow-hidden transform transition-all duration-300 hover:scale-105 hover:shadow-2xl animate-fadeInUp animation-delay-600">
|
|
|
|
|
|
<div class="h-48 relative overflow-hidden">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/展会内部参观.jpg" alt="论坛峰会" class="w-full h-full object-cover">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute top-4 left-4">
|
|
|
|
|
|
<div class="bg-purple-500 text-white px-3 py-1 rounded-full text-xs font-semibold">主题论坛</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="p-6">
|
|
|
|
|
|
<h3 class="text-xl font-bold mb-3 text-gray-800">高端论坛峰会</h3>
|
|
|
|
|
|
<p class="text-gray-600 mb-4">
|
|
|
|
|
|
汇聚行业领袖、专家学者,探讨产业发展趋势,发布权威研究报告。
|
|
|
|
|
|
</p>
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<a href="marketing.html" class="text-purple-600 font-semibold hover:text-purple-800 flex items-center group">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
了解更多 <i class="fas fa-arrow-right ml-2 transform transition-transform group-hover:translate-x-2"></i>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Exhibition Areas -->
|
|
|
|
|
|
<section class="py-20 bg-gradient-to-br from-white via-indigo-50 to-purple-50">
|
|
|
|
|
|
<div class="container mx-auto px-6">
|
|
|
|
|
|
<h2 class="text-3xl md:text-4xl font-bold text-center text-gray-800 mb-4 animate-fadeInUp">展区规划</h2>
|
|
|
|
|
|
<p class="text-center text-gray-600 mb-12 animate-fadeInUp animation-delay-200">50,000平方米超大展览空间,打造沉浸式体验</p>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6">
|
|
|
|
|
|
<div class="group text-center p-6 bg-white/80 backdrop-blur border-2 border-purple-200 rounded-2xl hover:border-purple-500 hover:shadow-2xl transform transition-all duration-300 hover:-translate-y-2 animate-fadeInUp animation-delay-300">
|
|
|
|
|
|
<div class="w-20 h-20 bg-gradient-to-br from-blue-400 to-purple-600 rounded-2xl flex items-center justify-center mx-auto mb-4 group-hover:rotate-6 transition-transform duration-300">
|
|
|
|
|
|
<i class="fas fa-car text-white text-2xl"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h3 class="text-lg font-bold mb-2 text-gray-800">整车展示区</h3>
|
|
|
|
|
|
<p class="text-purple-600 font-bold text-xl mb-1">20,000m²</p>
|
|
|
|
|
|
<p class="text-gray-500 text-sm">100+品牌车型</p>
|
|
|
|
|
|
<div class="mt-3 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
|
|
|
|
<span class="inline-block bg-purple-100 text-purple-700 px-3 py-1 rounded-full text-xs">核心展区</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="group text-center p-6 bg-white/80 backdrop-blur border-2 border-emerald-200 rounded-2xl hover:border-emerald-500 hover:shadow-2xl transform transition-all duration-300 hover:-translate-y-2 animate-fadeInUp animation-delay-400">
|
|
|
|
|
|
<div class="w-20 h-20 bg-gradient-to-br from-emerald-400 to-teal-600 rounded-2xl flex items-center justify-center mx-auto mb-4 group-hover:rotate-6 transition-transform duration-300">
|
|
|
|
|
|
<i class="fas fa-microchip text-white text-2xl"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h3 class="text-lg font-bold mb-2 text-gray-800">核心零部件区</h3>
|
|
|
|
|
|
<p class="text-emerald-600 font-bold text-xl mb-1">15,000m²</p>
|
|
|
|
|
|
<p class="text-gray-500 text-sm">500+供应商</p>
|
|
|
|
|
|
<div class="mt-3 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
|
|
|
|
<span class="inline-block bg-emerald-100 text-emerald-700 px-3 py-1 rounded-full text-xs">技术展示</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="group text-center p-6 bg-white/80 backdrop-blur border-2 border-indigo-200 rounded-2xl hover:border-indigo-500 hover:shadow-2xl transform transition-all duration-300 hover:-translate-y-2 animate-fadeInUp animation-delay-500">
|
|
|
|
|
|
<div class="w-20 h-20 bg-gradient-to-br from-indigo-400 to-blue-600 rounded-2xl flex items-center justify-center mx-auto mb-4 group-hover:rotate-6 transition-transform duration-300">
|
|
|
|
|
|
<i class="fas fa-network-wired text-white text-2xl"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h3 class="text-lg font-bold mb-2 text-gray-800">智能交通区</h3>
|
|
|
|
|
|
<p class="text-indigo-600 font-bold text-xl mb-1">10,000m²</p>
|
|
|
|
|
|
<p class="text-gray-500 text-sm">50+解决方案</p>
|
|
|
|
|
|
<div class="mt-3 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
|
|
|
|
<span class="inline-block bg-indigo-100 text-indigo-700 px-3 py-1 rounded-full text-xs">创新科技</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="group text-center p-6 bg-white/80 backdrop-blur border-2 border-pink-200 rounded-2xl hover:border-pink-500 hover:shadow-2xl transform transition-all duration-300 hover:-translate-y-2 animate-fadeInUp animation-delay-600">
|
|
|
|
|
|
<div class="w-20 h-20 bg-gradient-to-br from-pink-400 to-rose-600 rounded-2xl flex items-center justify-center mx-auto mb-4 group-hover:rotate-6 transition-transform duration-300">
|
|
|
|
|
|
<i class="fas fa-gamepad text-white text-2xl"></i>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<h3 class="text-lg font-bold mb-2 text-gray-800">体验互动区</h3>
|
|
|
|
|
|
<p class="text-pink-600 font-bold text-xl mb-1">5,000m²</p>
|
|
|
|
|
|
<p class="text-gray-500 text-sm">20+互动项目</p>
|
|
|
|
|
|
<div class="mt-3 opacity-0 group-hover:opacity-100 transition-opacity duration-300">
|
|
|
|
|
|
<span class="inline-block bg-pink-100 text-pink-700 px-3 py-1 rounded-full text-xs">沉浸体验</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 展馆布置图 -->
|
|
|
|
|
|
<div class="mt-12 animate-fadeInUp animation-delay-700">
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="bg-white/90 backdrop-blur rounded-2xl shadow-xl overflow-hidden cursor-pointer group" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/展馆布置图.jpeg')">
|
|
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/展馆布置图.jpeg" alt="展馆布置图" class="w-full max-h-[600px] object-contain group-hover:scale-105 transition-transform duration-700">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="p-4 bg-gradient-to-r from-purple-600 to-indigo-600 text-white">
|
|
|
|
|
|
<p class="text-center font-semibold"><i class="fas fa-map-marked-alt mr-2"></i>展馆3D全景布置图 - 点击查看详情</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Gallery Section -->
|
|
|
|
|
|
<section class="py-20 bg-gradient-to-br from-gray-900 to-purple-900 relative overflow-hidden">
|
|
|
|
|
|
<div class="absolute inset-0 opacity-10">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<div class="absolute top-0 left-0 w-full h-full bg-[url('data/订单班文档资料/文旅/notion文稿/image/展会内部参观.jpg')] bg-cover bg-center bg-fixed"></div>
|
2025-09-29 20:12:57 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
<div class="container mx-auto px-6 relative z-10" title="精彩瞬间展示区">
|
|
|
|
|
|
<h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12 animate-fadeInUp">精彩瞬间</h2>
|
|
|
|
|
|
<div class="grid md:grid-cols-3 gap-6 mb-8">
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-2xl shadow-2xl animate-fadeInUp animation-delay-200 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/展会内部参观.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/展会内部参观.jpg" alt="展会内部" class="w-full h-64 object-cover transform transition-transform duration-700 group-hover:scale-110">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-6 text-white transform translate-y-20 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h3 class="text-xl font-bold mb-2">展馆内部参观</h3>
|
|
|
|
|
|
<p class="text-sm">宽敞明亮的展示空间,科技感十足</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-2xl shadow-2xl animate-fadeInUp animation-delay-400 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/签到.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/签到.jpg" alt="签到处" class="w-full h-64 object-cover transform transition-transform duration-700 group-hover:scale-110">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-6 text-white transform translate-y-20 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h3 class="text-xl font-bold mb-2">智能签到系统</h3>
|
|
|
|
|
|
<p class="text-sm">快速便捷的入场体验</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-2xl shadow-2xl animate-fadeInUp animation-delay-600 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/3.小米汽车.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/3.小米汽车.jpg" alt="展品展示" class="w-full h-64 object-cover transform transition-transform duration-700 group-hover:scale-110">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-6 text-white transform translate-y-20 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h3 class="text-xl font-bold mb-2">明星展品</h3>
|
|
|
|
|
|
<p class="text-sm">最新款新能源汽车亮相</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 更多图片展示 -->
|
|
|
|
|
|
<div class="grid md:grid-cols-4 gap-4">
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-xl shadow-xl animate-fadeInUp animation-delay-800 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/Whisk_03282ab7e5.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/Whisk_03282ab7e5.jpg" alt="展品1" class="w-full h-48 object-cover transform transition-all duration-500 group-hover:scale-110 group-hover:rotate-1">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-purple-600/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-4 text-white transform translate-y-10 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h4 class="text-sm font-bold">智能驾驶展示</h4>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-xl shadow-xl animate-fadeInUp animation-delay-900 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/Whisk_15f65339bb.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/Whisk_15f65339bb.jpg" alt="展品2" class="w-full h-48 object-cover transform transition-all duration-500 group-hover:scale-110 group-hover:rotate-1">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-indigo-600/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-4 text-white transform translate-y-10 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h4 class="text-sm font-bold">充电技术革新</h4>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-xl shadow-xl animate-fadeInUp animation-delay-1000 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/Whisk_192cdc54bc.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/Whisk_192cdc54bc.jpg" alt="展品3" class="w-full h-48 object-cover transform transition-all duration-500 group-hover:scale-110 group-hover:rotate-1">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-blue-600/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-4 text-white transform translate-y-10 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h4 class="text-sm font-bold">电池技术展览</h4>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<div class="group relative overflow-hidden rounded-xl shadow-xl animate-fadeInUp animation-delay-1100 cursor-pointer" onclick="openImageModal('data/订单班文档资料/文旅/notion文稿/image/Whisk_1c05424f7f.jpg')">
|
2025-10-09 10:35:45 +08:00
|
|
|
|
<img src="data/订单班文档资料/文旅/notion文稿/image/Whisk_1c05424f7f.jpg" alt="展品4" class="w-full h-48 object-cover transform transition-all duration-500 group-hover:scale-110 group-hover:rotate-1">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<div class="absolute inset-0 bg-gradient-to-t from-cyan-600/70 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-300 flex items-end">
|
|
|
|
|
|
<div class="p-4 text-white transform translate-y-10 group-hover:translate-y-0 transition-transform duration-300">
|
|
|
|
|
|
<h4 class="text-sm font-bold">智慧交通系统</h4>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- Footer -->
|
|
|
|
|
|
<footer class="bg-gradient-to-b from-gray-900 to-black text-white py-16 relative overflow-hidden">
|
|
|
|
|
|
<!-- 背景装饰 -->
|
|
|
|
|
|
<div class="absolute inset-0 opacity-10">
|
|
|
|
|
|
<div class="absolute bottom-0 left-0 w-96 h-96 bg-purple-500 rounded-full filter blur-3xl"></div>
|
|
|
|
|
|
<div class="absolute top-0 right-0 w-96 h-96 bg-blue-500 rounded-full filter blur-3xl"></div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="container mx-auto px-6 relative z-10" title="页脚信息区">
|
|
|
|
|
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
|
|
|
|
|
|
<div class="animate-fadeInUp">
|
|
|
|
|
|
<div class="flex items-center mb-4">
|
|
|
|
|
|
<i class="fas fa-car-side text-2xl text-purple-400 mr-2"></i>
|
|
|
|
|
|
<h3 class="text-lg font-semibold">关于展会</h3>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<p class="text-gray-400 text-sm leading-relaxed">
|
|
|
|
|
|
长三角地区最具影响力的新能源汽车与智能交通产业盛会,汇聚全球顶尖企业与技术
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<div class="mt-4 flex space-x-3">
|
|
|
|
|
|
<a href="#" class="w-8 h-8 bg-gray-800 rounded-full flex items-center justify-center hover:bg-purple-600 transition">
|
|
|
|
|
|
<i class="fab fa-weixin text-sm"></i>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="#" class="w-8 h-8 bg-gray-800 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
|
|
|
|
|
|
<i class="fab fa-weibo text-sm"></i>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="#" class="w-8 h-8 bg-gray-800 rounded-full flex items-center justify-center hover:bg-red-600 transition">
|
|
|
|
|
|
<i class="fab fa-linkedin text-sm"></i>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="animate-fadeInUp animation-delay-200">
|
|
|
|
|
|
<h3 class="text-lg font-semibold mb-4">
|
|
|
|
|
|
<i class="fas fa-link text-purple-400 mr-2"></i>快速链接
|
|
|
|
|
|
</h3>
|
|
|
|
|
|
<ul class="space-y-2 text-sm text-gray-400">
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<li><a href="overview.html" class="hover:text-purple-400 transition">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<i class="fas fa-chevron-right text-xs mr-1"></i>策划概述
|
|
|
|
|
|
</a></li>
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<li><a href="exhibition.html" class="hover:text-purple-400 transition">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<i class="fas fa-chevron-right text-xs mr-1"></i>展会介绍
|
|
|
|
|
|
</a></li>
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<li><a href="marketing.html" class="hover:text-purple-400 transition">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<i class="fas fa-chevron-right text-xs mr-1"></i>营销方案
|
|
|
|
|
|
</a></li>
|
2025-09-29 21:32:28 +08:00
|
|
|
|
<li><a href="operation.html" class="hover:text-purple-400 transition">
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<i class="fas fa-chevron-right text-xs mr-1"></i>现场运营
|
|
|
|
|
|
</a></li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="animate-fadeInUp animation-delay-400">
|
|
|
|
|
|
<h3 class="text-lg font-semibold mb-4">
|
|
|
|
|
|
<i class="fas fa-phone-alt text-purple-400 mr-2"></i>联系方式
|
|
|
|
|
|
</h3>
|
|
|
|
|
|
<ul class="space-y-2 text-sm text-gray-400">
|
|
|
|
|
|
<li><i class="fas fa-map-marker-alt text-purple-400 mr-2"></i>上海市青浦区崧泽大道333号</li>
|
|
|
|
|
|
<li><i class="fas fa-phone text-purple-400 mr-2"></i>021-12345678</li>
|
|
|
|
|
|
<li><i class="fas fa-envelope text-purple-400 mr-2"></i>info@greenmobility2024.com</li>
|
|
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="animate-fadeInUp animation-delay-600">
|
|
|
|
|
|
<h3 class="text-lg font-semibold mb-4">
|
|
|
|
|
|
<i class="fas fa-qrcode text-purple-400 mr-2"></i>关注我们
|
|
|
|
|
|
</h3>
|
|
|
|
|
|
<div class="flex space-x-4">
|
|
|
|
|
|
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700">
|
|
|
|
|
|
<span>微信</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700">
|
|
|
|
|
|
<span>微博</span>
|
|
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-sm text-gray-400">
|
|
|
|
|
|
<p>© 2024 长三角国际新能源汽车与智能交通产业博览会. All rights reserved.</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
|
fix: 修复文旅订单班资源路径和交互功能
详细说明:
- 修复app.js路由,支持/order-class/wenlu/*.html格式访问
- 修复所有子页面的资源路径(js/css/data从../改为相对路径)
- 为index.html添加图片点击放大查看功能
- 为精彩瞬间Gallery区域所有图片添加点击放大功能
- 优化展馆布置图尺寸,限制最大高度为600px
- 修复文件: budget.html, exhibition.html, marketing.html, operation.html, overview.html, risk.html, index.html
- 影响模块: 文旅订单班展示系统,路由系统,图片交互
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-09 12:00:43 +08:00
|
|
|
|
<!-- 图片放大查看模态框 -->
|
|
|
|
|
|
<div id="imageModal" class="fixed inset-0 bg-black bg-opacity-90 z-50 hidden flex items-center justify-center p-4" onclick="closeImageModal()">
|
|
|
|
|
|
<div class="relative max-w-7xl max-h-screen">
|
|
|
|
|
|
<button onclick="closeImageModal()" class="absolute -top-12 right-0 text-white hover:text-gray-300 transition-colors">
|
|
|
|
|
|
<i class="fas fa-times text-3xl"></i>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<img id="modalImage" src="" alt="放大查看" class="max-w-full max-h-[90vh] object-contain rounded-lg shadow-2xl">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
// 图片模态框功能
|
|
|
|
|
|
function openImageModal(imageSrc) {
|
|
|
|
|
|
const modal = document.getElementById('imageModal');
|
|
|
|
|
|
const modalImage = document.getElementById('modalImage');
|
|
|
|
|
|
modalImage.src = imageSrc;
|
|
|
|
|
|
modal.classList.remove('hidden');
|
|
|
|
|
|
document.body.style.overflow = 'hidden';
|
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function closeImageModal() {
|
|
|
|
|
|
const modal = document.getElementById('imageModal');
|
|
|
|
|
|
modal.classList.add('hidden');
|
|
|
|
|
|
document.body.style.overflow = 'auto';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ESC键关闭模态框
|
|
|
|
|
|
document.addEventListener('keydown', function(event) {
|
|
|
|
|
|
if (event.key === 'Escape') {
|
|
|
|
|
|
closeImageModal();
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2025-09-29 20:12:57 +08:00
|
|
|
|
<script src="js/nav-component.js"></script>
|
|
|
|
|
|
<script src="js/back-to-top.js"></script>
|
|
|
|
|
|
<script src="js/main.js"></script>
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|