|
@@ -1,14 +1,882 @@
|
|
|
|
|
|
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="zh-CN">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>2023年全国旅游创新大赛 - 报名页面</title>
|
|
|
+ <!-- 引入第三方库 -->
|
|
|
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css">
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.js"></script>
|
|
|
+ <script src="https://cdn.jsdelivr.net/npm/echarts@5.4.3/dist/echarts.min.js"></script>
|
|
|
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/css/font-awesome.min.css">
|
|
|
+ <!-- 引入国内CDN资源 -->
|
|
|
+ <link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
|
|
+ <link href="https://cdn.bootcdn.net/ajax/libs/animate.css/4.1.1/animate.min.css" rel="stylesheet">
|
|
|
+ <script src="https://cdn.bootcdn.net/ajax/libs/echarts/5.4.2/echarts.min.js"></script>
|
|
|
+ <script src="https://cdn.bootcdn.net/ajax/libs/Swiper/8.4.5/swiper-bundle.min.js"></script>
|
|
|
+ <link href="https://cdn.bootcdn.net/ajax/libs/Swiper/8.4.5/swiper-bundle.min.css" rel="stylesheet">
|
|
|
+ <style>
|
|
|
+
|
|
|
+ :root {
|
|
|
+ --primary-color: #3498db;
|
|
|
+ --secondary-color: #2ecc71;
|
|
|
+ --accent-color: #e74c3c;
|
|
|
+ --dark-color: #2c3e50;
|
|
|
+ --light-color: #ecf0f1;
|
|
|
+ --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
|
+ --transition: all 0.3s ease;
|
|
|
+ }
|
|
|
+
|
|
|
+ * {
|
|
|
+ margin: 0;
|
|
|
+ padding: 0;
|
|
|
+ box-sizing: border-box;
|
|
|
+ font-family: 'Microsoft YaHei', sans-serif;
|
|
|
+ }
|
|
|
+
|
|
|
+ body {
|
|
|
+ background-color: #f5f7fa;
|
|
|
+ color: #333;
|
|
|
+ line-height: 1.6;
|
|
|
+ }
|
|
|
+
|
|
|
+ .container {
|
|
|
+ max-width: 1200px;
|
|
|
+ margin: 0 auto;
|
|
|
+ padding: 0 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 头部样式 */
|
|
|
+ header {
|
|
|
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
|
|
|
+ color: white;
|
|
|
+ padding: 20px 0;
|
|
|
+ box-shadow: var(--shadow);
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+
|
|
|
+ .header-content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ text-align: center;
|
|
|
+ padding: 20px 0;
|
|
|
+ position: relative;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .header-content::before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background: url('https://via.placeholder.com/1200x400') center/cover;
|
|
|
+ opacity: 0.2;
|
|
|
+ z-index: -1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo {
|
|
|
+ width: 120px;
|
|
|
+ height: 120px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 50%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ box-shadow: var(--shadow);
|
|
|
+ }
|
|
|
+
|
|
|
+ .logo img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ object-fit: contain;
|
|
|
+ }
|
|
|
+
|
|
|
+ h1 {
|
|
|
+ font-size: 2.5rem;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
|
|
+ }
|
|
|
+
|
|
|
+ .subtitle {
|
|
|
+ font-size: 1.2rem;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ font-weight: 300;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 导航栏 */
|
|
|
+ nav {
|
|
|
+ background-color: var(--dark-color);
|
|
|
+ position: sticky;
|
|
|
+ top: 0;
|
|
|
+ z-index: 100;
|
|
|
+ box-shadow: var(--shadow);
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-container {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ padding: 10px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-links {
|
|
|
+ display: flex;
|
|
|
+ list-style: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-links li {
|
|
|
+ margin-left: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-links a {
|
|
|
+ color: white;
|
|
|
+ text-decoration: none;
|
|
|
+ font-weight: 500;
|
|
|
+ padding: 5px 10px;
|
|
|
+ border-radius: 4px;
|
|
|
+ transition: var(--transition);
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-links a:hover {
|
|
|
+ background-color: var(--primary-color);
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 主要内容 */
|
|
|
+ main {
|
|
|
+ padding: 40px 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section {
|
|
|
+ margin-bottom: 50px;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 8px;
|
|
|
+ padding: 30px;
|
|
|
+ box-shadow: var(--shadow);
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-title {
|
|
|
+ color: var(--primary-color);
|
|
|
+ margin-bottom: 20px;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ border-bottom: 2px solid var(--light-color);
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .section-title i {
|
|
|
+ margin-right: 10px;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ .swiper-slide {
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+
|
|
|
+ .swiper-slide img {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ object-fit: cover;
|
|
|
+ }
|
|
|
+
|
|
|
+ .swiper-slide-content {
|
|
|
+ position: absolute;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
|
|
|
+ color: white;
|
|
|
+ padding: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .swiper-button-next, .swiper-button-prev {
|
|
|
+ color: white !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ .swiper-pagination-bullet-active {
|
|
|
+ background: white !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 大赛介绍 */
|
|
|
+ .intro-grid {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ gap: 20px;
|
|
|
+ margin-top: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro-card {
|
|
|
+ flex: 1 1 300px;
|
|
|
+ background-color: var(--light-color);
|
|
|
+ border-radius: 8px;
|
|
|
+ padding: 20px;
|
|
|
+ transition: var(--transition);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro-card:hover {
|
|
|
+ transform: translateY(-5px);
|
|
|
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro-card i {
|
|
|
+ font-size: 2.5rem;
|
|
|
+ color: var(--primary-color);
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .intro-card h3 {
|
|
|
+ color: var(--dark-color);
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 数据可视化 */
|
|
|
+ .chart-container {
|
|
|
+ width: 100%;
|
|
|
+ height: 400px;
|
|
|
+ margin-top: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 报名表单 */
|
|
|
+ .form-group {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ label {
|
|
|
+ display: block;
|
|
|
+ margin-bottom: 8px;
|
|
|
+ font-weight: 500;
|
|
|
+ color: var(--dark-color);
|
|
|
+ }
|
|
|
+
|
|
|
+ input, select, textarea {
|
|
|
+ width: 100%;
|
|
|
+ padding: 12px;
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ border-radius: 4px;
|
|
|
+ font-size: 16px;
|
|
|
+ transition: var(--transition);
|
|
|
+ }
|
|
|
+
|
|
|
+ input:focus, select:focus, textarea:focus {
|
|
|
+ border-color: var(--primary-color);
|
|
|
+ outline: none;
|
|
|
+ box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
|
|
|
+ }
|
|
|
+
|
|
|
+ textarea {
|
|
|
+ min-height: 120px;
|
|
|
+ resize: vertical;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-row {
|
|
|
+ display: flex;
|
|
|
+ gap: 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-row .form-group {
|
|
|
+ flex: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn {
|
|
|
+ display: inline-block;
|
|
|
+ background-color: var(--primary-color);
|
|
|
+ color: white;
|
|
|
+ padding: 12px 24px;
|
|
|
+ border: none;
|
|
|
+ border-radius: 4px;
|
|
|
+ cursor: pointer;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 500;
|
|
|
+ transition: var(--transition);
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn:hover {
|
|
|
+ background-color: #2980b9;
|
|
|
+ transform: translateY(-2px);
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-block {
|
|
|
+ display: block;
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-accent {
|
|
|
+ background-color: var(--accent-color);
|
|
|
+ }
|
|
|
+
|
|
|
+ .btn-accent:hover {
|
|
|
+ background-color: #c0392b;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 时间轴 */
|
|
|
+ .timeline {
|
|
|
+ position: relative;
|
|
|
+ max-width: 1200px;
|
|
|
+ margin: 30px auto;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ width: 6px;
|
|
|
+ background-color: var(--light-color);
|
|
|
+ top: 0;
|
|
|
+ bottom: 0;
|
|
|
+ left: 50%;
|
|
|
+ margin-left: -3px;
|
|
|
+ border-radius: 3px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline-item {
|
|
|
+ padding: 10px 40px;
|
|
|
+ position: relative;
|
|
|
+ width: 50%;
|
|
|
+ box-sizing: border-box;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline-item::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ background-color: white;
|
|
|
+ border: 4px solid var(--primary-color);
|
|
|
+ border-radius: 50%;
|
|
|
+ top: 15px;
|
|
|
+ z-index: 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .left {
|
|
|
+ left: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ left: 50%;
|
|
|
+ }
|
|
|
+
|
|
|
+ .left::after {
|
|
|
+ right: -10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right::after {
|
|
|
+ left: -10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline-content {
|
|
|
+ padding: 20px;
|
|
|
+ background-color: white;
|
|
|
+ border-radius: 8px;
|
|
|
+ box-shadow: var(--shadow);
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline-date {
|
|
|
+ font-weight: bold;
|
|
|
+ color: var(--primary-color);
|
|
|
+ margin-bottom: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 页脚 */
|
|
|
+ footer {
|
|
|
+ background-color: var(--dark-color);
|
|
|
+ color: black;
|
|
|
+ padding: 40px 0 20px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-content {
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ justify-content: space-between;
|
|
|
+ margin-bottom: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-column {
|
|
|
+ flex: 1 1 250px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ padding: 0 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-column h3 {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ font-size: 1.2rem;
|
|
|
+ position: relative;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-column h3::after {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ width: 50px;
|
|
|
+ height: 2px;
|
|
|
+ background-color: var(--primary-color);
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-links {
|
|
|
+ list-style: none;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-links li {
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-links a {
|
|
|
+ color: #bbb;
|
|
|
+ text-decoration: none;
|
|
|
+ transition: var(--transition);
|
|
|
+ }
|
|
|
+
|
|
|
+ .footer-links a:hover {
|
|
|
+ color: white;
|
|
|
+ padding-left: 5px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-links {
|
|
|
+ display: flex;
|
|
|
+ gap: 15px;
|
|
|
+ margin-top: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-links a {
|
|
|
+ color: white;
|
|
|
+ background-color: rgba(255, 255, 255, 0.1);
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ border-radius: 50%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ transition: var(--transition);
|
|
|
+ }
|
|
|
+
|
|
|
+ .social-links a:hover {
|
|
|
+ background-color: var(--primary-color);
|
|
|
+ transform: translateY(-3px);
|
|
|
+ }
|
|
|
+
|
|
|
+ .copyright {
|
|
|
+ text-align: center;
|
|
|
+ padding-top: 20px;
|
|
|
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
+ font-size: 0.9rem;
|
|
|
+ color: #bbb;
|
|
|
+ }
|
|
|
+
|
|
|
+ /* 响应式设计 */
|
|
|
+ @media (max-width: 768px) {
|
|
|
+ .nav-container {
|
|
|
+ flex-direction: column;
|
|
|
+ }
|
|
|
+
|
|
|
+ .nav-links {
|
|
|
+ margin-top: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline::after {
|
|
|
+ left: 31px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline-item {
|
|
|
+ width: 100%;
|
|
|
+ padding-left: 70px;
|
|
|
+ padding-right: 25px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .timeline-item::after {
|
|
|
+ left: 21px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .left::after, .right::after {
|
|
|
+ left: 21px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .right {
|
|
|
+ left: 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ .form-row {
|
|
|
+ flex-direction: column;
|
|
|
+ gap: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <!-- 头部 -->
|
|
|
+ <header>
|
|
|
+ <div class="container header-content">
|
|
|
+ <div class="logo">
|
|
|
+ <img src="https://p9-dreamina-sign.byteimg.com/tos-cn-i-tb4s082cfz/1a34b801570743e98dcc46a36d4202cc~tplv-tb4s082cfz-aigc_resize:1080:1080.webp?lk3s=43402efa&x-expires=1753488000&x-signature=exUdM5NSa3%2FkbEifiXOKT7vPiPo%3D&format=.webp" alt="大赛Logo">
|
|
|
+ </div>
|
|
|
+ <h1>2023年全国旅游创新大赛</h1>
|
|
|
+ <p class="subtitle">创新引领未来 · 旅游改变生活</p>
|
|
|
+ </div>
|
|
|
+ </header>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 主要内容 -->
|
|
|
+ <main class="container">
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 大赛介绍 -->
|
|
|
+ <section id="about" class="section">
|
|
|
+ <h2 class="section-title"><i class="fa fa-info-circle"></i>大赛介绍</h2>
|
|
|
+ <p>2023年全国旅游创新大赛是由国家旅游局指导,中国旅游协会主办,面向全国旅游从业者、创业者和高校学生的创新竞赛。大赛旨在发掘旅游行业创新人才,推动旅游产业转型升级,促进旅游与文化、科技等领域的深度融合。</p>
|
|
|
+
|
|
|
+ <div class="intro-grid">
|
|
|
+ <div class="intro-card">
|
|
|
+ <i class="fa fa-lightbulb-o"></i>
|
|
|
+ <h3>创新主题</h3>
|
|
|
+ <p>围绕"智慧旅游"、"文旅融合"、"乡村振兴"等主题,探索旅游行业创新发展新路径。</p>
|
|
|
+ </div>
|
|
|
+ <div class="intro-card">
|
|
|
+ <i class="fa fa-users"></i>
|
|
|
+ <h3>参赛对象</h3>
|
|
|
+ <p>旅游企业、创业团队、高校学生及个人均可报名参赛,团队人数不超过5人。</p>
|
|
|
+ </div>
|
|
|
+ <div class="intro-card">
|
|
|
+ <i class="fa fa-trophy"></i>
|
|
|
+ <h3>赛事价值</h3>
|
|
|
+ <p>优胜者将获得奖金、投资机会、媒体曝光及与行业龙头企业合作机会。</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+
|
|
|
+ <!-- 赛程安排 -->
|
|
|
+ <section id="schedule" class="section">
|
|
|
+ <h2 class="section-title"><i class="fa fa-calendar"></i>赛程安排</h2>
|
|
|
+ <div class="timeline">
|
|
|
+ <div class="timeline-item left">
|
|
|
+ <div class="timeline-content">
|
|
|
+ <div class="timeline-date">2023年9月1日-10月15日</div>
|
|
|
+ <p>报名阶段:在线提交报名表及项目简介</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="timeline-item right">
|
|
|
+ <div class="timeline-content">
|
|
|
+ <div class="timeline-date">2023年10月16日-11月15日</div>
|
|
|
+ <p>初赛评审:专家评审团对报名项目进行线上评审</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="timeline-item left">
|
|
|
+ <div class="timeline-content">
|
|
|
+ <div class="timeline-date">2023年11月20日</div>
|
|
|
+ <p>公布复赛名单:公布进入复赛的100强项目</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="timeline-item right">
|
|
|
+ <div class="timeline-content">
|
|
|
+ <div class="timeline-date">2023年12月1日-12月15日</div>
|
|
|
+ <p>复赛阶段:线上路演与答辩</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="timeline-item left">
|
|
|
+ <div class="timeline-content">
|
|
|
+ <div class="timeline-date">2023年12月20日</div>
|
|
|
+ <p>公布决赛名单:公布进入决赛的20强项目</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="timeline-item right">
|
|
|
+ <div class="timeline-content">
|
|
|
+ <div class="timeline-date">2024年1月10日-1月12日</div>
|
|
|
+ <p>决赛暨颁奖典礼:现场路演与颁奖</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+
|
|
|
+ <!-- 奖项设置 -->
|
|
|
+ <section id="awards" class="section">
|
|
|
+ <h2 class="section-title"><i class="fa fa-gift"></i>奖项设置</h2>
|
|
|
+ <div class="intro-grid">
|
|
|
+ <div class="intro-card" style="background-color: #fff8e1;">
|
|
|
+ <i class="fa fa-star" style="color: #ffc107;"></i>
|
|
|
+ <h3>金奖(1名)</h3>
|
|
|
+ <p>奖金30万元<br>投资对接机会<br>行业媒体专访</p>
|
|
|
+ </div>
|
|
|
+ <div class="intro-card" style="background-color: #e8f5e9;">
|
|
|
+ <i class="fa fa-star" style="color: #4caf50;"></i>
|
|
|
+ <h3>银奖(3名)</h3>
|
|
|
+ <p>奖金各10万元<br>创业孵化支持<br>企业合作机会</p>
|
|
|
+ </div>
|
|
|
+ <div class="intro-card" style="background-color: #e3f2fd;">
|
|
|
+ <i class="fa fa-star" style="color: #2196f3;"></i>
|
|
|
+ <h3>铜奖(6名)</h3>
|
|
|
+ <p>奖金各5万元<br>专业培训课程<br>行业资源对接</p>
|
|
|
+ </div>
|
|
|
+ <div class="intro-card" style="background-color: #f3e5f5;">
|
|
|
+ <i class="fa fa-star" style="color: #9c27b0;"></i>
|
|
|
+ <h3>创新潜力奖(10名)</h3>
|
|
|
+ <p>奖金各1万元<br>创业导师指导<br>参赛证书</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </section>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 报名表单 -->
|
|
|
+ <section id="register" class="section">
|
|
|
+ <h2 class="section-title"><i class="fa fa-edit"></i>报名表</h2>
|
|
|
+ <form id="registrationForm">
|
|
|
+ <div class="form-row">
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="name">姓名/团队名称 <span class="required">*</span></label>
|
|
|
+ <input type="text" id="name" name="name" required>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="contact">联系电话 <span class="required">*</span></label>
|
|
|
+ <input type="tel" id="contact" name="contact" required>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-row">
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="email">电子邮箱 <span class="required">*</span></label>
|
|
|
+ <input type="email" id="email" name="email" required>
|
|
|
+ </div>
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="category">参赛类别 <span class="required">*</span></label>
|
|
|
+ <select id="category" name="category" required>
|
|
|
+ <option value="">请选择参赛类别</option>
|
|
|
+ <option value="tech">智慧旅游技术创新</option>
|
|
|
+ <option value="culture">文旅融合产品设计</option>
|
|
|
+ <option value="rural">乡村旅游开发</option>
|
|
|
+ <option value="marketing">旅游营销创新</option>
|
|
|
+ <option value="other">其他创新方向</option>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="members">团队成员(如为团队参赛,请填写所有成员姓名及职务)</label>
|
|
|
+ <textarea id="members" name="members" placeholder="例:张三 - 项目经理,李四 - 技术负责人,王五 - 市场总监"></textarea>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="project">项目简介 <span class="required">*</span></label>
|
|
|
+ <textarea id="project" name="project" required placeholder="请简要描述您的项目(不超过500字)"></textarea>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="innovation">创新点说明 <span class="required">*</span></label>
|
|
|
+ <textarea id="innovation" name="innovation" required placeholder="请说明您的项目在哪些方面具有创新性(不超过300字)"></textarea>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label for="attachment">项目计划书或相关资料(PDF格式)</label>
|
|
|
+ <input type="file" id="attachment" name="attachment" accept=".pdf">
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="form-group">
|
|
|
+ <label>
|
|
|
+ <input type="checkbox" name="agreement" required> 我已阅读并同意<a href="#">《参赛协议》</a>和<a href="#">《隐私政策》</a>
|
|
|
+ </label>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <button type="submit" class="btn btn-block btn-accent">提交报名</button>
|
|
|
+ </form>
|
|
|
+ </section>
|
|
|
+ </main>
|
|
|
+
|
|
|
+ <!-- 页脚 -->
|
|
|
+ <footer>
|
|
|
+ <div class="container">
|
|
|
+ <div class="footer-content">
|
|
|
+ <div class="footer-column">
|
|
|
+ <h3>关于大赛</h3>
|
|
|
+ <p>2023年全国旅游创新大赛是由国家旅游局指导,中国旅游协会主办的全国性旅游行业创新竞赛,旨在推动旅游产业创新发展。</p>
|
|
|
+ <div class="social-links">
|
|
|
+ <a href="#"><i class="fa fa-weibo"></i></a>
|
|
|
+ <a href="#"><i class="fa fa-weixin"></i></a>
|
|
|
+ <a href="#"><i class="fa fa-qq"></i></a>
|
|
|
+ <a href="#"><i class="fa fa-rss"></i></a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="footer-column">
|
|
|
+ <h3>快速链接</h3>
|
|
|
+ <ul class="footer-links">
|
|
|
+ <li><a href="#about">大赛介绍</a></li>
|
|
|
+ <li><a href="#schedule">赛程安排</a></li>
|
|
|
+ <li><a href="#awards">奖项设置</a></li>
|
|
|
+ <li><a href="#register">在线报名</a></li>
|
|
|
+ <li><a href="#">参赛指南</a></li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="footer-column">
|
|
|
+ <h3>联系我们</h3>
|
|
|
+ <ul class="footer-links">
|
|
|
+
|
|
|
+ <li><i class="fa fa-phone"></i> 010-12345678</li>
|
|
|
+ <li><i class="fa fa-map-marker"></i> 北京市朝阳区旅游大厦A座1001室</li>
|
|
|
+ <li><i class="fa fa-clock-o"></i> 工作日 9:00-18:00</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div class="footer-column">
|
|
|
+ <h3>主办单位</h3>
|
|
|
+ <p>中国旅游协会</p>
|
|
|
+ <p>国家旅游局创新中心</p>
|
|
|
+ <h3 style="margin-top: 20px;">协办单位</h3>
|
|
|
+ <p>各省市旅游协会</p>
|
|
|
+ <p>知名旅游企业</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="copyright">
|
|
|
+ <p>© 2023 全国旅游创新大赛组委会 版权所有 | 京ICP备12345678号</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </footer>
|
|
|
+
|
|
|
+ <script>
|
|
|
+ // 初始化轮播图
|
|
|
+ const swiper = new Swiper('.swiper', {
|
|
|
+ loop: true,
|
|
|
+ autoplay: {
|
|
|
+ delay: 5000,
|
|
|
+ disableOnInteraction: false,
|
|
|
+ },
|
|
|
+ pagination: {
|
|
|
+ el: '.swiper-pagination',
|
|
|
+ clickable: true,
|
|
|
+ },
|
|
|
+ navigation: {
|
|
|
+ nextEl: '.swiper-button-next',
|
|
|
+ prevEl: '.swiper-button-prev',
|
|
|
+ },
|
|
|
+ });
|
|
|
+
|
|
|
+ // 初始化数据图表
|
|
|
+ const chartDom = document.getElementById('statsChart');
|
|
|
+ const myChart = echarts.init(chartDom);
|
|
|
+
|
|
|
+ const option = {
|
|
|
+ tooltip: {
|
|
|
+ trigger: 'axis',
|
|
|
+ axisPointer: {
|
|
|
+ type: 'shadow'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ legend: {
|
|
|
+ data: ['2020年', '2021年', '2022年']
|
|
|
+ },
|
|
|
+ grid: {
|
|
|
+ left: '3%',
|
|
|
+ right: '4%',
|
|
|
+ bottom: '3%',
|
|
|
+ containLabel: true
|
|
|
+ },
|
|
|
+ xAxis: {
|
|
|
+ type: 'value'
|
|
|
+ },
|
|
|
+ yAxis: {
|
|
|
+ type: 'category',
|
|
|
+ data: ['报名人数', '参赛项目', '入围复赛', '获奖项目']
|
|
|
+ },
|
|
|
+ series: [
|
|
|
+ {
|
|
|
+ name: '2020年',
|
|
|
+ type: 'bar',
|
|
|
+ stack: 'total',
|
|
|
+ label: {
|
|
|
+ show: true
|
|
|
+ },
|
|
|
+ emphasis: {
|
|
|
+ focus: 'series'
|
|
|
+ },
|
|
|
+ data: [1256, 892, 120, 20],
|
|
|
+ itemStyle: {
|
|
|
+ color: '#3498db'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '2021年',
|
|
|
+ type: 'bar',
|
|
|
+ stack: 'total',
|
|
|
+ label: {
|
|
|
+ show: true
|
|
|
+ },
|
|
|
+ emphasis: {
|
|
|
+ focus: 'series'
|
|
|
+ },
|
|
|
+ data: [1873, 1345, 150, 20],
|
|
|
+ itemStyle: {
|
|
|
+ color: '#2ecc71'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '2022年',
|
|
|
+ type: 'bar',
|
|
|
+ stack: 'total',
|
|
|
+ label: {
|
|
|
+ show: true
|
|
|
+ },
|
|
|
+ emphasis: {
|
|
|
+ focus: 'series'
|
|
|
+ },
|
|
|
+ data: [2432, 1789, 180, 20],
|
|
|
+ itemStyle: {
|
|
|
+ color: '#e74c3c'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ };
|
|
|
+
|
|
|
+ myChart.setOption(option);
|
|
|
+
|
|
|
+ // 表单提交处理
|
|
|
+ document.getElementById('registrationForm').addEventListener('submit', function(e) {
|
|
|
+ e.preventDefault();
|
|
|
+
|
|
|
+ // 这里可以添加表单验证逻辑
|
|
|
+ const name = document.getElementById('name').value;
|
|
|
+ const email = document.getElementById('email').value;
|
|
|
+
|
|
|
+ if (!name || !email) {
|
|
|
+ alert('请填写必填字段');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ // 模拟表单提交
|
|
|
+ alert('报名表提交成功!我们将在3个工作日内与您联系。');
|
|
|
+ this.reset();
|
|
|
+
|
|
|
+ 实际应用中这里应该是AJAX请求
|
|
|
+ fetch('/api/register', {
|
|
|
+ method: 'POST',
|
|
|
+ body: new FormData(this)
|
|
|
+ })
|
|
|
+ .then(response => response.json())
|
|
|
+ .then(data => {
|
|
|
+ alert('报名成功!');
|
|
|
+ this.reset();
|
|
|
+ })
|
|
|
+ .catch(error => {
|
|
|
+ console.error('Error:', error);
|
|
|
+ alert('提交失败,请稍后再试');
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ // 响应式调整图表大小
|
|
|
+ window.addEventListener('resize', function() {
|
|
|
+ myChart.resize();
|
|
|
+ });
|
|
|
+ </script>
|
|
|
+</body>
|
|
|
+</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-<section class="under-home-news">
|
|
|
- <div class="container">
|
|
|
- <button (click)="goBack()" class="back-link">返回</button>
|
|
|
- </div>
|
|
|
-</section>
|