123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883 |
- <!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 style="color: black;">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>
|