ppt.html 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>赣智云旅 - 江西文旅数智创享平台</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/reveal.min.css">
  8. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/theme/serif.min.css">
  9. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/plugin/highlight/monokai.min.css">
  10. <link href="https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;700&display=swap" rel="stylesheet">
  11. <script src="https://cdn.jsdelivr.net/npm/mermaid@10.6.1/dist/mermaid.min.js"></script>
  12. <script>mermaid.initialize({startOnLoad:true, theme: 'forest'});</script>
  13. <style>
  14. :root {
  15. --primary-color: #2a5caa;
  16. --secondary-color: #d4b15f;
  17. --accent-color: #e53935;
  18. --dark-color: #1a3a6b;
  19. --light-color: #f5f5f5;
  20. }
  21. * {
  22. margin: 0;
  23. padding: 0;
  24. box-sizing: border-box;
  25. }
  26. body {
  27. font-family: 'Noto Serif SC', serif;
  28. background: linear-gradient(135deg, #1a3a6b 0%, #0d1c33 100%);
  29. color: #333;
  30. overflow: hidden;
  31. }
  32. .reveal {
  33. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M40,80 Q100,20 160,80 Q100,140 40,80Z" fill="none" stroke="%232a5caa" stroke-width="0.5" opacity="0.1"/></svg>');
  34. background-size: 300px;
  35. }
  36. .reveal .slides {
  37. text-align: left;
  38. }
  39. .slide-background {
  40. background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
  41. }
  42. .slide-content {
  43. max-width: 1200px;
  44. margin: 0 auto;
  45. padding: 40px;
  46. height: 100%;
  47. display: flex;
  48. flex-direction: column;
  49. justify-content: center;
  50. }
  51. h1, h2, h3, h4 {
  52. font-family: 'Ma Shan Zheng', cursive;
  53. color: var(--dark-color);
  54. margin-bottom: 1rem;
  55. }
  56. h1 {
  57. font-size: 4rem;
  58. text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
  59. color: var(--primary-color);
  60. margin-bottom: 0.5rem;
  61. }
  62. h2 {
  63. font-size: 2.8rem;
  64. color: var(--accent-color);
  65. border-bottom: 3px solid var(--secondary-color);
  66. padding-bottom: 0.5rem;
  67. margin-bottom: 1.5rem;
  68. }
  69. h3 {
  70. font-size: 2rem;
  71. color: var(--dark-color);
  72. }
  73. p {
  74. font-size: 1.4rem;
  75. line-height: 1.8;
  76. margin-bottom: 1.5rem;
  77. }
  78. .slogan {
  79. font-size: 2.2rem;
  80. text-align: center;
  81. color: var(--secondary-color);
  82. background: var(--dark-color);
  83. padding: 15px 30px;
  84. border-radius: 50px;
  85. display: inline-block;
  86. margin: 20px auto;
  87. box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  88. }
  89. /* 封面页样式 */
  90. .cover-page {
  91. background: linear-gradient(135deg, #0d2b5b 0%, #1a478a 100%);
  92. text-align: center;
  93. color: white;
  94. }
  95. .cover-page .slide-content {
  96. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><path d="M100,200 Q200,50 300,200 Q200,350 100,200Z" fill="none" stroke="%23d4b15f" stroke-width="2" opacity="0.3"/></svg>');
  97. background-size: 80%;
  98. background-position: center;
  99. background-repeat: no-repeat;
  100. }
  101. .cover-page h1 {
  102. color: white;
  103. font-size: 4.5rem;
  104. text-shadow: 0 0 20px rgba(212, 177, 95, 0.8);
  105. margin-top: -2rem;
  106. }
  107. .cover-page h2 {
  108. color: var(--secondary-color);
  109. border: none;
  110. font-size: 2.5rem;
  111. margin-top: 1rem;
  112. }
  113. .cover-logo {
  114. width: 220px;
  115. height: 220px;
  116. background: radial-gradient(circle, #d4b15f 0%, #2a5caa 70%);
  117. border-radius: 50%;
  118. margin: 30px auto;
  119. position: relative;
  120. box-shadow: 0 0 40px rgba(212, 177, 95, 0.6);
  121. border: 5px solid rgba(255,255,255,0.2);
  122. }
  123. .cover-logo::before {
  124. content: "赣";
  125. position: absolute;
  126. top: 50%;
  127. left: 50%;
  128. transform: translate(-50%, -50%);
  129. font-family: 'Ma Shan Zheng', cursive;
  130. font-size: 8rem;
  131. color: white;
  132. }
  133. .cover-logo::after {
  134. content: "";
  135. position: absolute;
  136. top: 0;
  137. left: 0;
  138. width: 100%;
  139. height: 100%;
  140. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50 Q50,80 20,50Z" fill="none" stroke="white" stroke-width="0.8" opacity="0.5"/></svg>');
  141. border-radius: 50%;
  142. animation: rotate 30s linear infinite;
  143. }
  144. @keyframes rotate {
  145. 0% { transform: rotate(0deg); }
  146. 100% { transform: rotate(360deg); }
  147. }
  148. /* 目录页样式 */
  149. .toc-page .mermaid {
  150. height: 500px;
  151. margin-top: 20px;
  152. }
  153. .toc-icons {
  154. display: flex;
  155. justify-content: space-around;
  156. margin-top: 30px;
  157. }
  158. .toc-icon {
  159. width: 120px;
  160. text-align: center;
  161. }
  162. .icon-circle {
  163. width: 100px;
  164. height: 100px;
  165. border-radius: 50%;
  166. margin: 0 auto 15px;
  167. display: flex;
  168. align-items: center;
  169. justify-content: center;
  170. font-size: 2.5rem;
  171. box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  172. }
  173. .icon-1 { background: linear-gradient(135deg, #e53935, #c62828); }
  174. .icon-2 { background: linear-gradient(135deg, #2a5caa, #1a3a6b); }
  175. .icon-3 { background: linear-gradient(135deg, #43a047, #2e7d32); }
  176. .icon-4 { background: linear-gradient(135deg, #d4b15f, #b8860b); }
  177. /* 痛点页样式 */
  178. .pain-points table {
  179. width: 100%;
  180. border-collapse: collapse;
  181. margin: 30px 0;
  182. font-size: 1.3rem;
  183. box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  184. }
  185. .pain-points th {
  186. background: var(--dark-color);
  187. color: white;
  188. padding: 15px;
  189. text-align: center;
  190. }
  191. .pain-points td {
  192. padding: 15px;
  193. text-align: center;
  194. border-bottom: 1px solid #ddd;
  195. }
  196. .pain-points tr:nth-child(even) {
  197. background-color: #f2f2f2;
  198. }
  199. .pain-points .highlight {
  200. color: var(--accent-color);
  201. font-weight: bold;
  202. }
  203. .heatmap {
  204. display: flex;
  205. justify-content: space-between;
  206. margin-top: 40px;
  207. }
  208. .heatmap-bar {
  209. width: 60px;
  210. background: linear-gradient(to top, var(--primary-color), #1a3a6b);
  211. border-radius: 5px 5px 0 0;
  212. position: relative;
  213. }
  214. .heatmap-bar::after {
  215. content: attr(data-label);
  216. position: absolute;
  217. bottom: -30px;
  218. left: 50%;
  219. transform: translateX(-50%);
  220. font-size: 1.1rem;
  221. white-space: nowrap;
  222. }
  223. /* 黄金定位页样式 */
  224. .pyramid-container {
  225. display: flex;
  226. justify-content: center;
  227. margin-top: 50px;
  228. }
  229. .pyramid {
  230. position: relative;
  231. width: 400px;
  232. height: 300px;
  233. }
  234. .pyramid-layer {
  235. position: absolute;
  236. width: 0;
  237. height: 0;
  238. border-left: 150px solid transparent;
  239. border-right: 150px solid transparent;
  240. border-bottom: 100px solid var(--secondary-color);
  241. opacity: 0.8;
  242. }
  243. .layer-1 {
  244. top: 0;
  245. border-bottom-color: #d4b15f;
  246. }
  247. .layer-2 {
  248. top: 70px;
  249. border-bottom-width: 90px;
  250. border-left-width: 130px;
  251. border-right-width: 130px;
  252. border-bottom-color: #2a5caa;
  253. }
  254. .layer-3 {
  255. top: 140px;
  256. border-bottom-width: 80px;
  257. border-left-width: 110px;
  258. border-right-width: 110px;
  259. border-bottom-color: #e53935;
  260. }
  261. .pyramid-label {
  262. position: absolute;
  263. left: 50%;
  264. transform: translateX(-50%);
  265. color: white;
  266. font-weight: bold;
  267. font-size: 1.4rem;
  268. text-align: center;
  269. width: 200px;
  270. }
  271. .label-1 { top: 35px; }
  272. .label-2 { top: 105px; }
  273. .label-3 { top: 180px; }
  274. /* 功能页样式 */
  275. .features-grid {
  276. display: grid;
  277. grid-template-columns: repeat(3, 1fr);
  278. gap: 30px;
  279. margin-top: 30px;
  280. }
  281. .feature-card {
  282. background: white;
  283. border-radius: 10px;
  284. padding: 25px;
  285. box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  286. transition: transform 0.3s ease;
  287. border-top: 5px solid var(--secondary-color);
  288. }
  289. .feature-card:hover {
  290. transform: translateY(-10px);
  291. box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  292. }
  293. .feature-card h3 {
  294. color: var(--primary-color);
  295. margin-bottom: 15px;
  296. display: flex;
  297. align-items: center;
  298. }
  299. .feature-card h3 i {
  300. margin-right: 10px;
  301. font-size: 1.8rem;
  302. }
  303. .feature-detail {
  304. margin: 15px 0;
  305. padding-left: 10px;
  306. border-left: 3px solid var(--secondary-color);
  307. }
  308. /* 技术架构页样式 */
  309. .architecture {
  310. display: flex;
  311. justify-content: center;
  312. margin-top: 40px;
  313. }
  314. .tech-column {
  315. width: 250px;
  316. margin: 0 20px;
  317. text-align: center;
  318. }
  319. .tech-icon {
  320. width: 120px;
  321. height: 120px;
  322. background: white;
  323. border-radius: 50%;
  324. margin: 0 auto 20px;
  325. display: flex;
  326. align-items: center;
  327. justify-content: center;
  328. font-size: 3rem;
  329. color: var(--primary-color);
  330. box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  331. border: 5px solid var(--light-color);
  332. }
  333. .dna-container {
  334. height: 150px;
  335. margin: 20px 0;
  336. position: relative;
  337. overflow: hidden;
  338. }
  339. .dna-strand {
  340. position: absolute;
  341. left: 50%;
  342. width: 5px;
  343. height: 100%;
  344. background: var(--secondary-color);
  345. transform: translateX(-50%);
  346. }
  347. .dna-node {
  348. position: absolute;
  349. width: 20px;
  350. height: 20px;
  351. background: var(--primary-color);
  352. border-radius: 50%;
  353. left: 50%;
  354. transform: translateX(-50%);
  355. }
  356. /* 商业模式页样式 */
  357. .quadrant-chart {
  358. width: 600px;
  359. height: 600px;
  360. margin: 30px auto;
  361. position: relative;
  362. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23d4b15f" stroke-width="0.5" opacity="0.2"/></svg>');
  363. background-size: 100%;
  364. }
  365. .axis {
  366. position: absolute;
  367. background: var(--dark-color);
  368. }
  369. .x-axis {
  370. width: 100%;
  371. height: 2px;
  372. top: 50%;
  373. left: 0;
  374. }
  375. .y-axis {
  376. width: 2px;
  377. height: 100%;
  378. top: 0;
  379. left: 50%;
  380. }
  381. .quadrant {
  382. position: absolute;
  383. width: 50%;
  384. height: 50%;
  385. display: flex;
  386. align-items: center;
  387. justify-content: center;
  388. text-align: center;
  389. padding: 20px;
  390. font-weight: bold;
  391. font-size: 1.4rem;
  392. }
  393. .quadrant-1 { top: 0; left: 50%; background: rgba(42, 92, 170, 0.1); }
  394. .quadrant-2 { top: 0; left: 0; background: rgba(212, 177, 95, 0.1); }
  395. .quadrant-3 { top: 50%; left: 0; background: rgba(229, 57, 53, 0.1); }
  396. .quadrant-4 { top: 50%; left: 50%; background: rgba(67, 160, 71, 0.1); }
  397. .chart-point {
  398. position: absolute;
  399. width: 20px;
  400. height: 20px;
  401. background: var(--accent-color);
  402. border-radius: 50%;
  403. transform: translate(-50%, -50%);
  404. box-shadow: 0 0 10px rgba(229, 57, 53, 0.5);
  405. }
  406. .point-label {
  407. position: absolute;
  408. font-size: 1.1rem;
  409. white-space: nowrap;
  410. }
  411. /* 未来愿景页样式 */
  412. .future-vision {
  413. text-align: center;
  414. }
  415. .vision-container {
  416. display: flex;
  417. justify-content: space-around;
  418. margin-top: 50px;
  419. }
  420. .vision-item {
  421. width: 30%;
  422. perspective: 1000px;
  423. }
  424. .vision-card {
  425. height: 250px;
  426. position: relative;
  427. transform-style: preserve-3d;
  428. transition: transform 1s;
  429. }
  430. .vision-item:hover .vision-card {
  431. transform: rotateY(180deg);
  432. }
  433. .vision-front, .vision-back {
  434. position: absolute;
  435. width: 100%;
  436. height: 100%;
  437. backface-visibility: hidden;
  438. border-radius: 15px;
  439. display: flex;
  440. align-items: center;
  441. justify-content: center;
  442. padding: 20px;
  443. box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  444. }
  445. .vision-front {
  446. background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  447. color: white;
  448. font-size: 2rem;
  449. }
  450. .vision-back {
  451. background: white;
  452. transform: rotateY(180deg);
  453. font-size: 1.2rem;
  454. color: var(--dark-color);
  455. text-align: center;
  456. }
  457. /* 封底页样式 */
  458. .end-page {
  459. background: linear-gradient(135deg, #1a3a6b 0%, #0d1c33 100%);
  460. text-align: center;
  461. color: white;
  462. }
  463. .end-page h2 {
  464. color: var(--secondary-color);
  465. border: none;
  466. font-size: 3rem;
  467. margin-top: 2rem;
  468. }
  469. .cta-buttons {
  470. display: flex;
  471. justify-content: center;
  472. gap: 50px;
  473. margin: 50px 0;
  474. }
  475. .cta-button {
  476. padding: 20px 40px;
  477. font-size: 1.5rem;
  478. border-radius: 10px;
  479. cursor: pointer;
  480. transition: all 0.3s ease;
  481. font-weight: bold;
  482. border: none;
  483. box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  484. }
  485. .gov-button {
  486. background: linear-gradient(135deg, #d4b15f, #b8860b);
  487. color: var(--dark-color);
  488. }
  489. .public-button {
  490. background: linear-gradient(135deg, #2a5caa, #1a478a);
  491. color: white;
  492. }
  493. .cta-button:hover {
  494. transform: translateY(-5px);
  495. box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  496. }
  497. .crane-icon {
  498. font-size: 5rem;
  499. margin: 30px 0;
  500. color: var(--secondary-color);
  501. animation: float 3s ease-in-out infinite;
  502. }
  503. @keyframes float {
  504. 0% { transform: translateY(0px); }
  505. 50% { transform: translateY(-20px); }
  506. 100% { transform: translateY(0px); }
  507. }
  508. .footer-note {
  509. position: absolute;
  510. bottom: 20px;
  511. right: 20px;
  512. font-size: 1.1rem;
  513. color: rgba(255,255,255,0.7);
  514. }
  515. </style>
  516. </head>
  517. <body>
  518. <div class="reveal">
  519. <div class="slides">
  520. <!-- 封面页 -->
  521. <section class="cover-page" data-background-color="#1a3a6b">
  522. <div class="slide-content">
  523. <div class="cover-logo"></div>
  524. <h1>赣智云旅</h1>
  525. <h2>千年文脉的数字化新生</h2>
  526. <h3>用AI重构江西文旅新生态</h3>
  527. <div class="slogan">智汇江西,云览千年文旅新境</div>
  528. </div>
  529. </section>
  530. <!-- 目录页 -->
  531. <section>
  532. <div class="slide-content">
  533. <h2>平台架构全景图</h2>
  534. <div class="mermaid">
  535. graph TD
  536. A[痛点撕裂] --> B[破局之道]
  537. B --> C[技术重器]
  538. C --> D[未来图景]
  539. </div>
  540. <div class="toc-icons">
  541. <div class="toc-icon">
  542. <div class="icon-circle icon-1">💔</div>
  543. <div>痛点</div>
  544. </div>
  545. <div class="toc-icon">
  546. <div class="icon-circle icon-2">🕊️</div>
  547. <div>破局</div>
  548. </div>
  549. <div class="toc-icon">
  550. <div class="icon-circle icon-3">⚙️</div>
  551. <div>技术</div>
  552. </div>
  553. <div class="toc-icon">
  554. <div class="icon-circle icon-4">🔮</div>
  555. <div>未来</div>
  556. </div>
  557. </div>
  558. </div>
  559. </section>
  560. <!-- 痛点页 -->
  561. <section class="pain-points">
  562. <div class="slide-content">
  563. <h2>江西文旅发展痛点分析</h2>
  564. <table>
  565. <tr>
  566. <th>痛点维度</th>
  567. <th>传统模式</th>
  568. <th>赣智云旅</th>
  569. <th>差距值</th>
  570. </tr>
  571. <tr>
  572. <td>资源利用率</td>
  573. <td>31%</td>
  574. <td>89%</td>
  575. <td class="highlight">+187%</td>
  576. </tr>
  577. <tr>
  578. <td>游客停留时长</td>
  579. <td>2.1小时</td>
  580. <td>4.8小时</td>
  581. <td class="highlight">+129%</td>
  582. </tr>
  583. <tr>
  584. <td>非遗传承效率</td>
  585. <td>1项/年</td>
  586. <td>5项/年</td>
  587. <td class="highlight">+400%</td>
  588. </tr>
  589. <tr>
  590. <td>文化传播广度</td>
  591. <td>省内为主</td>
  592. <td>全球覆盖</td>
  593. <td class="highlight">+300%</td>
  594. </tr>
  595. </table>
  596. <div class="heatmap">
  597. <div class="heatmap-bar" style="height: 100px;" data-label="南昌"></div>
  598. <div class="heatmap-bar" style="height: 180px;" data-label="九江"></div>
  599. <div class="heatmap-bar" style="height: 150px;" data-label="景德镇"></div>
  600. <div class="heatmap-bar" style="height: 70px;" data-label="萍乡"></div>
  601. <div class="heatmap-bar" style="height: 60px;" data-label="新余"></div>
  602. <div class="heatmap-bar" style="height: 120px;" data-label="鹰潭"></div>
  603. <div class="heatmap-bar" style="height: 80px;" data-label="赣州"></div>
  604. <div class="heatmap-bar" style="height: 50px;" data-label="吉安"></div>
  605. <div class="heatmap-bar" style="height: 90px;" data-label="宜春"></div>
  606. <div class="heatmap-bar" style="height: 40px;" data-label="抚州"></div>
  607. <div class="heatmap-bar" style="height: 110px;" data-label="上饶"></div>
  608. </div>
  609. </div>
  610. </section>
  611. <!-- 黄金定位页 -->
  612. <section>
  613. <div class="slide-content">
  614. <h2>价值定位金字塔</h2>
  615. <div class="pyramid-container">
  616. <div class="pyramid">
  617. <div class="pyramid-layer layer-1"></div>
  618. <div class="pyramid-layer layer-2"></div>
  619. <div class="pyramid-layer layer-3"></div>
  620. <div class="pyramid-label label-1">"千年"文化新生</div>
  621. <div class="pyramid-label label-2">"云览"沉浸体验</div>
  622. <div class="pyramid-label label-3">"智汇"技术底座</div>
  623. </div>
  624. </div>
  625. <div style="text-align: center; margin-top: 50px;">
  626. <p>以数字科技为基座,打造沉浸式文化体验,实现赣鄱千年文脉的数字化新生</p>
  627. </div>
  628. </div>
  629. </section>
  630. <!-- 功能页 -->
  631. <section>
  632. <div class="slide-content">
  633. <h2>三大核心功能驱动</h2>
  634. <div class="features-grid">
  635. <div class="feature-card">
  636. <h3><i>📍</i> 革命足迹AR</h3>
  637. <div class="feature-detail">
  638. <strong>优势:</strong> 时空叠加技术
  639. </div>
  640. <div class="feature-detail">
  641. <strong>效益:</strong> 红色教育增效300%
  642. </div>
  643. <div class="feature-detail">
  644. <strong>验证:</strong> 井冈山试点数据
  645. </div>
  646. </div>
  647. <div class="feature-card">
  648. <h3><i>🏺</i> 非遗云工坊</h3>
  649. <div class="feature-detail">
  650. <strong>优势:</strong> 3D肌理扫描
  651. </div>
  652. <div class="feature-detail">
  653. <strong>效益:</strong> 工艺复原精度0.1mm
  654. </div>
  655. <div class="feature-detail">
  656. <strong>验证:</strong> 央视报道画面
  657. </div>
  658. </div>
  659. <div class="feature-card">
  660. <h3><i>📜</i> 诗词全息镜</h3>
  661. <div class="feature-detail">
  662. <strong>优势:</strong> 古人数字孪生
  663. </div>
  664. <div class="feature-detail">
  665. <strong>效益:</strong> 研学转化率+65%
  666. </div>
  667. <div class="feature-detail">
  668. <strong>验证:</strong> 滕王阁实景视频
  669. </div>
  670. </div>
  671. </div>
  672. </div>
  673. </section>
  674. <!-- 技术架构页 -->
  675. <section>
  676. <div class="slide-content">
  677. <h2>技术架构神经中枢</h2>
  678. <div class="architecture">
  679. <div class="tech-column">
  680. <div class="tech-icon">🧠</div>
  681. <h3>AI决策脑</h3>
  682. <p>智能内容生成、游客行为分析、资源优化配置</p>
  683. <div class="dna-container">
  684. <div class="dna-strand"></div>
  685. <div class="dna-node" style="top: 20px;"></div>
  686. <div class="dna-node" style="top: 50px;"></div>
  687. <div class="dna-node" style="top: 80px;"></div>
  688. <div class="dna-node" style="top: 110px;"></div>
  689. <div class="dna-node" style="top: 140px;"></div>
  690. </div>
  691. </div>
  692. <div class="tech-column">
  693. <div class="tech-icon">⛓️</div>
  694. <h3>区块链脊柱</h3>
  695. <p>数字版权保护、文旅资产确权、交易透明可信</p>
  696. <div class="dna-container">
  697. <div class="dna-strand"></div>
  698. <div class="dna-node" style="top: 30px;"></div>
  699. <div class="dna-node" style="top: 60px;"></div>
  700. <div class="dna-node" style="top: 90px;"></div>
  701. <div class="dna-node" style="top: 120px;"></div>
  702. </div>
  703. </div>
  704. <div class="tech-column">
  705. <div class="tech-icon">👓</div>
  706. <h3>XR神经网</h3>
  707. <p>混合现实体验、沉浸式交互、云端渲染</p>
  708. <div class="dna-container">
  709. <div class="dna-strand"></div>
  710. <div class="dna-node" style="top: 40px;"></div>
  711. <div class="dna-node" style="top: 70px;"></div>
  712. <div class="dna-node" style="top: 100px;"></div>
  713. <div class="dna-node" style="top: 130px;"></div>
  714. </div>
  715. </div>
  716. </div>
  717. <div style="text-align: center; margin-top: 30px;">
  718. <p>文化基因库:红色DNA | 非遗DNA | 山水DNA</p>
  719. </div>
  720. </div>
  721. </section>
  722. <!-- 商业模式页 -->
  723. <section>
  724. <div class="slide-content">
  725. <h2>四维商业价值矩阵</h2>
  726. <div class="quadrant-chart">
  727. <div class="axis x-axis"></div>
  728. <div class="axis y-axis"></div>
  729. <div class="quadrant quadrant-1">数字藏品</div>
  730. <div class="quadrant quadrant-2">智慧景区</div>
  731. <div class="quadrant quadrant-3">IP授权</div>
  732. <div class="quadrant quadrant-4">数据银行</div>
  733. <div class="chart-point" style="top: 30%; left: 70%;"></div>
  734. <div class="point-label" style="top: 30%; left: 75%;">AR导览分成</div>
  735. <div class="chart-point" style="top: 20%; left: 20%;"></div>
  736. <div class="point-label" style="top: 20%; left: 10%;">非遗数字授权</div>
  737. <div class="chart-point" style="top: 70%; left: 30%;"></div>
  738. <div class="point-label" style="top: 70%; left: 35%;">文旅数据服务</div>
  739. </div>
  740. </div>
  741. </section>
  742. <!-- 未来愿景页 -->
  743. <section class="future-vision">
  744. <div class="slide-content">
  745. <h2>2030数字文旅愿景</h2>
  746. <div class="vision-container">
  747. <div class="vision-item">
  748. <div class="vision-card">
  749. <div class="vision-front">
  750. <div>景德镇瓷器<br>云端重组</div>
  751. </div>
  752. <div class="vision-back">
  753. 全球艺术家协同创作,数字陶瓷艺术品交易平台
  754. </div>
  755. </div>
  756. </div>
  757. <div class="vision-item">
  758. <div class="vision-card">
  759. <div class="vision-front">
  760. <div>鄱阳湖候鸟<br>数据迁徙</div>
  761. </div>
  762. <div class="vision-back">
  763. 生态大数据可视化,候鸟迁徙全球直播
  764. </div>
  765. </div>
  766. </div>
  767. <div class="vision-item">
  768. <div class="vision-card">
  769. <div class="vision-front">
  770. <div>井冈山火炬<br>点燃元宇宙</div>
  771. </div>
  772. <div class="vision-back">
  773. 红色教育元宇宙,革命精神全球传播
  774. </div>
  775. </div>
  776. </div>
  777. </div>
  778. <div style="margin-top: 50px; font-size: 2rem; color: var(--primary-color); font-weight: bold;">
  779. 文化永生,赣鄱永续
  780. </div>
  781. </div>
  782. </section>
  783. <!-- 封底页 -->
  784. <section class="end-page" data-background-color="#0d1c33">
  785. <div class="slide-content">
  786. <div class="crane-icon">🕊️</div>
  787. <h2>智汇江西,云览千年</h2>
  788. <div class="cta-buttons">
  789. <button class="cta-button gov-button">战略合作</button>
  790. <button class="cta-button public-button">云游江西</button>
  791. </div>
  792. <div class="footer-note">
  793. 文化数字化战略工程 · 江西文旅厅重点项目
  794. </div>
  795. </div>
  796. </section>
  797. </div>
  798. </div>
  799. <script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/reveal.min.js"></script>
  800. <script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/plugin/markdown/markdown.min.js"></script>
  801. <script src="https://cdnjs.cloudflare.com/ajax/libs/reveal.js/4.5.0/plugin/highlight/highlight.min.js"></script>
  802. <script>
  803. Reveal.initialize({
  804. controls: true,
  805. progress: true,
  806. center: true,
  807. hash: true,
  808. transition: 'convex',
  809. plugins: [ RevealMarkdown, RevealHighlight ],
  810. width: 1200,
  811. height: 700,
  812. margin: 0.1,
  813. minScale: 0.2,
  814. maxScale: 2.0
  815. });
  816. // 动态更新DNA节点位置
  817. setInterval(() => {
  818. document.querySelectorAll('.dna-node').forEach(node => {
  819. const currentTop = parseInt(node.style.top);
  820. const newTop = (currentTop + 10) % 150;
  821. node.style.top = `${newTop}px`;
  822. });
  823. }, 500);
  824. </script>
  825. </body>
  826. </html>