page-platform.html 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  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/font-awesome/6.4.0/css/all.min.css">
  8. <link href="https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&family=Noto+Serif+SC:wght@400;700&display=swap" rel="stylesheet">
  9. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
  10. <script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
  11. <style>
  12. :root {
  13. --primary-blue: #2F7DAD; /* 天青瓷 */
  14. --primary-green: #5B8C5A; /* 香樟绿 */
  15. --primary-gold: #D4B16A; /* 庐金 */
  16. --accent: #c53d43; /* 井冈山鹃红 */
  17. --dark: #2c3e50;
  18. --light: #f8f9fa;
  19. --ink-dark: #0d1b2a;
  20. --ink-light: #415a77;
  21. --water-color: #e0f7fa;
  22. --mountain-color: #a5d6a7;
  23. --red-culture: #b71c1c;
  24. --heritage: #5d4037;
  25. --animation-speed: 0.4s;
  26. }
  27. * {
  28. margin: 0;
  29. padding: 0;
  30. box-sizing: border-box;
  31. }
  32. body {
  33. font-family: 'Noto Serif SC', serif;
  34. background: linear-gradient(to bottom, #e0f7fa, #f5f5f5);
  35. color: var(--ink-dark);
  36. min-height: 100vh;
  37. position: relative;
  38. overflow-x: hidden;
  39. display: flex;
  40. flex-direction: column;
  41. will-change: transform;
  42. }
  43. body::before {
  44. content: "";
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. right: 0;
  49. bottom: 0;
  50. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,50 Q25,30 50,50 T100,50" fill="none" stroke="%23a5d6a7" stroke-width="0.5" opacity="0.08"/></svg>');
  51. opacity: 0.1;
  52. z-index: -1;
  53. background-attachment: fixed;
  54. }
  55. .container {
  56. max-width: 1400px;
  57. margin: 0 auto;
  58. padding: 20px;
  59. flex: 1;
  60. }
  61. /* 头部样式 - 更新为蓝绿渐变 */
  62. header {
  63. background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
  64. color: white;
  65. padding: 15px 0;
  66. position: relative;
  67. border-bottom: 3px solid var(--primary-gold);
  68. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  69. z-index: 100;
  70. will-change: transform;
  71. }
  72. .header-content {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. padding: 0 20px;
  77. }
  78. .logo {
  79. display: flex;
  80. align-items: center;
  81. gap: 15px;
  82. }
  83. .logo-icon {
  84. font-size: 2.5rem;
  85. color: var(--primary-gold);
  86. }
  87. .logo-text {
  88. font-family: 'Ma Shan Zheng', cursive;
  89. font-size: 2.2rem;
  90. letter-spacing: 2px;
  91. position: relative;
  92. }
  93. .logo-text::after {
  94. content: "";
  95. position: absolute;
  96. bottom: -5px;
  97. left: 0;
  98. width: 100%;
  99. height: 2px;
  100. background: var(--primary-gold);
  101. transform: scaleX(0);
  102. transform-origin: left;
  103. transition: transform var(--animation-speed) ease;
  104. }
  105. .logo:hover .logo-text::after {
  106. transform: scaleX(1);
  107. }
  108. .nav-main ul {
  109. display: flex;
  110. list-style: none;
  111. gap: 30px;
  112. }
  113. .nav-main a {
  114. color: white;
  115. text-decoration: none;
  116. font-size: 1.1rem;
  117. padding: 8px 15px;
  118. border-radius: 4px;
  119. transition: all var(--animation-speed) ease;
  120. position: relative;
  121. will-change: transform;
  122. }
  123. .nav-main a::after {
  124. content: "";
  125. position: absolute;
  126. bottom: -5px;
  127. left: 0;
  128. width: 0;
  129. height: 2px;
  130. background: var(--primary-gold);
  131. transition: width var(--animation-speed) ease;
  132. }
  133. .nav-main a:hover::after {
  134. width: 100%;
  135. }
  136. .nav-main a.active {
  137. background: rgba(255, 255, 255, 0.15);
  138. }
  139. /* 主内容区 */
  140. .main-content {
  141. display: flex;
  142. gap: 25px;
  143. margin-top: 30px;
  144. min-height: 0; /* 防止flex溢出 */
  145. }
  146. /* 侧边导航 */
  147. .sidebar {
  148. width: 280px;
  149. background: rgba(255, 255, 255, 0.92);
  150. border-radius: 12px;
  151. box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  152. padding: 20px;
  153. backdrop-filter: blur(10px);
  154. border: 1px solid rgba(255, 255, 255, 0.5);
  155. height: fit-content;
  156. flex-shrink: 0;
  157. will-change: transform;
  158. }
  159. .sidebar-title {
  160. font-family: 'Ma Shan Zheng', cursive;
  161. font-size: 1.8rem;
  162. color: var(--primary-blue);
  163. text-align: center;
  164. margin-bottom: 20px;
  165. padding-bottom: 10px;
  166. border-bottom: 2px dashed var(--primary-gold);
  167. }
  168. .module-nav {
  169. list-style: none;
  170. }
  171. .module-nav li {
  172. margin-bottom: 8px;
  173. }
  174. .module-nav a {
  175. display: block;
  176. padding: 12px 15px;
  177. background: rgba(47, 125, 173, 0.1);
  178. border-radius: 8px;
  179. color: var(--dark);
  180. text-decoration: none;
  181. transition: all var(--animation-speed) ease;
  182. position: relative;
  183. overflow: hidden;
  184. font-weight: 500;
  185. will-change: transform;
  186. }
  187. .module-nav a::before {
  188. content: "";
  189. position: absolute;
  190. top: 0;
  191. left: -100%;
  192. width: 100%;
  193. height: 100%;
  194. background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.15), transparent);
  195. transition: left var(--animation-speed) ease;
  196. }
  197. .module-nav a:hover {
  198. background: rgba(47, 125, 173, 0.2);
  199. transform: translateX(5px);
  200. }
  201. .module-nav a:hover::before {
  202. left: 100%;
  203. }
  204. .module-nav a.active {
  205. background: var(--primary-blue);
  206. color: white;
  207. box-shadow: 0 4px 12px rgba(47, 125, 173, 0.3);
  208. }
  209. .module-nav a i {
  210. margin-right: 10px;
  211. width: 20px;
  212. text-align: center;
  213. }
  214. .sub-nav {
  215. list-style: none;
  216. padding-left: 30px;
  217. margin-top: 5px;
  218. }
  219. .sub-nav li {
  220. margin-bottom: 5px;
  221. }
  222. .sub-nav a {
  223. padding: 8px 15px;
  224. background: rgba(212, 175, 55, 0.05);
  225. border-left: 3px solid var(--primary-gold);
  226. }
  227. /* 内容区域 */
  228. .content-area {
  229. flex: 1;
  230. background: rgba(255, 255, 255, 0.92);
  231. border-radius: 12px;
  232. box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  233. padding: 30px;
  234. backdrop-filter: blur(10px);
  235. border: 1px solid rgba(255, 255, 255, 0.5);
  236. min-height: 700px;
  237. display: flex;
  238. flex-direction: column;
  239. overflow: hidden;
  240. will-change: transform;
  241. }
  242. .content-header {
  243. display: flex;
  244. justify-content: space-between;
  245. align-items: center;
  246. margin-bottom: 30px;
  247. padding-bottom: 15px;
  248. border-bottom: 2px solid var(--water-color);
  249. flex-wrap: wrap;
  250. gap: 20px;
  251. }
  252. .content-title {
  253. font-family: 'Ma Shan Zheng', cursive;
  254. font-size: 2.2rem;
  255. color: var(--primary-blue);
  256. display: flex;
  257. align-items: center;
  258. gap: 15px;
  259. }
  260. .content-title-icon {
  261. color: var(--primary-gold);
  262. font-size: 1.8rem;
  263. }
  264. .stats-container {
  265. display: flex;
  266. gap: 15px;
  267. flex-wrap: wrap;
  268. }
  269. .stat-card {
  270. background: linear-gradient(to right, var(--primary-blue), #2a5b8c);
  271. color: white;
  272. padding: 12px 20px;
  273. border-radius: 8px;
  274. min-width: 150px;
  275. box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  276. flex: 1;
  277. min-width: 140px;
  278. }
  279. .stat-card h3 {
  280. font-size: 0.9rem;
  281. font-weight: 400;
  282. margin-bottom: 5px;
  283. opacity: 0.9;
  284. }
  285. .stat-card p {
  286. font-size: 1.5rem;
  287. font-weight: 700;
  288. }
  289. .stat-card:nth-child(2) {
  290. background: linear-gradient(to right, var(--accent), #b33939);
  291. }
  292. .stat-card:nth-child(3) {
  293. background: linear-gradient(to right, var(--primary-gold), #b8860b);
  294. }
  295. /* 功能模块展示 */
  296. .module-grid {
  297. display: grid;
  298. grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  299. gap: 25px;
  300. margin-top: 25px;
  301. flex: 1;
  302. overflow-y: auto;
  303. padding-bottom: 20px;
  304. }
  305. .module-card {
  306. background: white;
  307. border-radius: 12px;
  308. overflow: hidden;
  309. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  310. transition: all var(--animation-speed) ease;
  311. border: 1px solid rgba(0, 0, 0, 0.05);
  312. position: relative;
  313. will-change: transform;
  314. }
  315. .module-card:hover {
  316. transform: translateY(-5px);
  317. box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  318. }
  319. .card-header {
  320. padding: 20px;
  321. background: var(--primary-blue);
  322. color: white;
  323. position: relative;
  324. }
  325. .card-header::after {
  326. content: "";
  327. position: absolute;
  328. bottom: -15px;
  329. left: 20px;
  330. width: 30px;
  331. height: 30px;
  332. background: var(--primary-blue);
  333. transform: rotate(45deg);
  334. z-index: 1;
  335. }
  336. .card-icon {
  337. position: absolute;
  338. top: 20px;
  339. right: 20px;
  340. font-size: 2rem;
  341. opacity: 0.2;
  342. }
  343. .card-title {
  344. font-size: 1.4rem;
  345. margin-bottom: 5px;
  346. position: relative;
  347. z-index: 2;
  348. }
  349. .card-subtitle {
  350. font-size: 0.9rem;
  351. opacity: 0.8;
  352. position: relative;
  353. z-index: 2;
  354. }
  355. .card-body {
  356. padding: 30px 20px 20px;
  357. position: relative;
  358. z-index: 2;
  359. }
  360. .card-features {
  361. list-style: none;
  362. margin-bottom: 20px;
  363. }
  364. .card-features li {
  365. padding: 8px 0;
  366. border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  367. display: flex;
  368. align-items: center;
  369. }
  370. .card-features li:last-child {
  371. border-bottom: none;
  372. }
  373. .card-features li i {
  374. color: var(--primary-gold);
  375. margin-right: 10px;
  376. min-width: 20px;
  377. text-align: center;
  378. }
  379. .card-actions {
  380. display: flex;
  381. gap: 10px;
  382. flex-wrap: wrap;
  383. }
  384. .btn {
  385. padding: 10px 20px;
  386. border-radius: 6px;
  387. border: none;
  388. cursor: pointer;
  389. font-family: inherit;
  390. font-weight: 500;
  391. transition: all var(--animation-speed) ease;
  392. display: inline-flex;
  393. align-items: center;
  394. gap: 8px;
  395. will-change: transform;
  396. }
  397. .btn:active {
  398. transform: scale(0.98);
  399. }
  400. .btn-primary {
  401. background: var(--primary-blue);
  402. color: white;
  403. }
  404. .btn-primary:hover {
  405. background: #1a6aa2;
  406. box-shadow: 0 4px 12px rgba(47, 125, 173, 0.3);
  407. }
  408. .btn-outline {
  409. background: transparent;
  410. border: 1px solid var(--primary-blue);
  411. color: var(--primary-blue);
  412. }
  413. .btn-outline:hover {
  414. background: rgba(47, 125, 173, 0.1);
  415. }
  416. /* 水墨山水装饰元素 */
  417. .ink-mountain {
  418. position: absolute;
  419. bottom: 0;
  420. left: 0;
  421. width: 300px;
  422. height: 150px;
  423. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><path d="M0,400 Q200,250 400,300 T800,400 L800,500 L0,500 Z" fill="%232c3e50" opacity="0.05"/></svg>');
  424. background-size: contain;
  425. background-repeat: no-repeat;
  426. z-index: -1;
  427. will-change: transform;
  428. }
  429. .ink-water {
  430. position: absolute;
  431. bottom: 0;
  432. right: 0;
  433. width: 250px;
  434. height: 120px;
  435. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><path d="M0,200 Q100,150 200,180 T400,160 T600,190 T800,150 L800,300 L0,300 Z" fill="%231a6aa2" opacity="0.05"/></svg>');
  436. background-size: contain;
  437. background-repeat: no-repeat;
  438. z-index: -1;
  439. will-change: transform;
  440. }
  441. /* 轮播图 */
  442. .swiper-container {
  443. width: 100%;
  444. height: 300px;
  445. border-radius: 12px;
  446. overflow: hidden;
  447. margin-top: 20px;
  448. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  449. will-change: transform;
  450. }
  451. .swiper-slide {
  452. background-size: cover;
  453. background-position: center;
  454. display: flex;
  455. align-items: flex-end;
  456. padding: 30px;
  457. position: relative;
  458. }
  459. .swiper-slide::before {
  460. content: "";
  461. position: absolute;
  462. top: 0;
  463. left: 0;
  464. right: 0;
  465. bottom: 0;
  466. background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  467. }
  468. .slide-content {
  469. position: relative;
  470. z-index: 2;
  471. color: white;
  472. max-width: 70%;
  473. }
  474. .slide-title {
  475. font-size: 1.8rem;
  476. margin-bottom: 10px;
  477. font-weight: 700;
  478. }
  479. /* 页脚 */
  480. footer {
  481. margin-top: 50px;
  482. padding: 30px 0;
  483. text-align: center;
  484. color: var(--ink-light);
  485. border-top: 1px solid rgba(0, 0, 0, 0.1);
  486. background: rgba(255, 255, 255, 0.9);
  487. backdrop-filter: blur(5px);
  488. will-change: transform;
  489. }
  490. .footer-content {
  491. display: flex;
  492. justify-content: space-between;
  493. max-width: 1200px;
  494. margin: 0 auto;
  495. padding: 0 20px;
  496. flex-wrap: wrap;
  497. }
  498. .footer-section {
  499. flex: 1;
  500. text-align: left;
  501. min-width: 250px;
  502. margin-bottom: 20px;
  503. }
  504. .footer-section h3 {
  505. margin-bottom: 15px;
  506. color: var(--primary-blue);
  507. font-size: 1.2rem;
  508. }
  509. .footer-section ul {
  510. list-style: none;
  511. }
  512. .footer-section li {
  513. margin-bottom: 8px;
  514. display: flex;
  515. align-items: center;
  516. gap: 10px;
  517. }
  518. .footer-section a {
  519. color: var(--ink-light);
  520. text-decoration: none;
  521. transition: color var(--animation-speed) ease;
  522. }
  523. .footer-section a:hover {
  524. color: var(--primary-blue);
  525. }
  526. .copyright {
  527. margin-top: 30px;
  528. padding-top: 20px;
  529. border-top: 1px dashed rgba(0, 0, 0, 0.1);
  530. font-size: 0.9rem;
  531. }
  532. /* 缩放比例优化 */
  533. @media screen and (min-width: 1600px) {
  534. .container {
  535. max-width: 1600px;
  536. }
  537. .sidebar {
  538. width: 320px;
  539. }
  540. .module-grid {
  541. grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  542. }
  543. }
  544. /* 响应式调整 */
  545. @media (max-width: 1200px) {
  546. .main-content {
  547. gap: 20px;
  548. }
  549. .sidebar {
  550. width: 260px;
  551. }
  552. }
  553. @media (max-width: 992px) {
  554. .main-content {
  555. flex-direction: column;
  556. }
  557. .sidebar {
  558. width: 100%;
  559. }
  560. .module-grid {
  561. grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  562. }
  563. }
  564. @media (max-width: 768px) {
  565. .header-content {
  566. flex-direction: column;
  567. gap: 15px;
  568. }
  569. .nav-main ul {
  570. flex-wrap: wrap;
  571. justify-content: center;
  572. gap: 10px;
  573. }
  574. .nav-main a {
  575. padding: 6px 12px;
  576. font-size: 1rem;
  577. }
  578. .stats-container {
  579. width: 100%;
  580. }
  581. .stat-card {
  582. min-width: 120px;
  583. padding: 10px 15px;
  584. }
  585. .stat-card p {
  586. font-size: 1.3rem;
  587. }
  588. .content-header {
  589. flex-direction: column;
  590. align-items: flex-start;
  591. }
  592. .content-title {
  593. font-size: 1.8rem;
  594. }
  595. .footer-content {
  596. flex-direction: column;
  597. gap: 30px;
  598. }
  599. }
  600. @media (max-width: 480px) {
  601. .logo-text {
  602. font-size: 1.8rem;
  603. }
  604. .module-grid {
  605. grid-template-columns: 1fr;
  606. }
  607. .swiper-container {
  608. height: 250px;
  609. }
  610. .slide-content {
  611. max-width: 90%;
  612. }
  613. .slide-title {
  614. font-size: 1.5rem;
  615. }
  616. }
  617. /* 防止动画闪烁 */
  618. .no-flash {
  619. -webkit-backface-visibility: hidden;
  620. backface-visibility: hidden;
  621. -webkit-perspective: 1000;
  622. perspective: 1000;
  623. transform: translate3d(0,0,0);
  624. }
  625. </style>
  626. </head>
  627. <body>
  628. <!-- 水墨装饰元素 -->
  629. <div class="ink-mountain no-flash"></div>
  630. <div class="ink-water no-flash"></div>
  631. <header class="no-flash">
  632. <div class="header-content">
  633. <div class="logo">
  634. <div class="logo-icon">
  635. <i class="fas fa-mountain"></i>
  636. </div>
  637. <div class="logo-text">赣鄱文链</div>
  638. </div>
  639. <nav class="nav-main">
  640. <ul>
  641. <li><a href="#">首页</a></li>
  642. <li><a href="#" class="active">数智共创平台</a></li>
  643. <li><a href="#">文化地图</a></li>
  644. <li><a href="#">文旅活动</a></li>
  645. <li><a href="#">文创商城</a></li>
  646. <li><a href="#">关于我们</a></li>
  647. </ul>
  648. </nav>
  649. </div>
  650. </header>
  651. <div class="container">
  652. <div class="main-content">
  653. <!-- 侧边导航 -->
  654. <aside class="sidebar no-flash">
  655. <h2 class="sidebar-title">数智共创平台</h2>
  656. <ul class="module-nav">
  657. <li>
  658. <a href="#" class="active"><i class="fas fa-database"></i> 文化资源库</a>
  659. <ul class="sub-nav">
  660. <li><a href="#"><i class="fas fa-microphone-alt"></i> 多模态采集中心</a></li>
  661. <li><a href="#"><i class="fas fa-sitemap"></i> 分类知识图谱</a></li>
  662. </ul>
  663. </li>
  664. <li>
  665. <a href="#"><i class="fas fa-brain"></i> 智慧应用中心</a>
  666. <ul class="sub-nav">
  667. <li><a href="#"><i class="fas fa-paint-brush"></i> 数字文创工坊</a></li>
  668. <li><a href="#"><i class="fas fa-map-marked-alt"></i> 智慧文旅系统</a></li>
  669. <li><a href="#"><i class="fas fa-egg"></i> IP孵化平台</a></li>
  670. </ul>
  671. </li>
  672. <li>
  673. <a href="#"><i class="fas fa-users"></i> 共创社区</a>
  674. <ul class="sub-nav">
  675. <li><a href="#"><i class="fas fa-graduation-cap"></i> 高校联盟</a></li>
  676. <li><a href="#"><i class="fas fa-landmark"></i> 政府协作</a></li>
  677. <li><a href="#"><i class="fas fa-edit"></i> 全民创作</a></li>
  678. </ul>
  679. </li>
  680. </ul>
  681. </aside>
  682. <!-- 主内容区 -->
  683. <main class="content-area no-flash">
  684. <div class="content-header">
  685. <h1 class="content-title">
  686. <i class="fas fa-database content-title-icon"></i>
  687. 文化资源库
  688. </h1>
  689. <div class="stats-container">
  690. <div class="stat-card">
  691. <h3>资源总数</h3>
  692. <p>24,685</p>
  693. </div>
  694. <div class="stat-card">
  695. <h3>本月新增</h3>
  696. <p>1,243</p>
  697. </div>
  698. <div class="stat-card">
  699. <h3>活跃用户</h3>
  700. <p>3,842</p>
  701. </div>
  702. </div>
  703. </div>
  704. <!-- 轮播图 -->
  705. <div class="swiper-container no-flash">
  706. <div class="swiper-wrapper">
  707. <div class="swiper-slide" style="background-image: url('https://images.unsplash.com/photo-1602660786404-7f0d6e5e1d15?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');">
  708. <div class="slide-content">
  709. <h3 class="slide-title">红色文化数字馆</h3>
  710. <p>探索江西丰富的革命历史资源,数字化保存红色记忆</p>
  711. </div>
  712. </div>
  713. <div class="swiper-slide" style="background-image: url('https://images.unsplash.com/photo-1560841683-0b0b7c0f1d1a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');">
  714. <div class="slide-content">
  715. <h3 class="slide-title">非遗传承数据库</h3>
  716. <p>记录与保护江西非物质文化遗产,传承千年技艺</p>
  717. </div>
  718. </div>
  719. <div class="swiper-slide" style="background-image: url('https://images.unsplash.com/photo-1547981609-4b6bf67a16c9?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');">
  720. <div class="slide-content">
  721. <h3 class="slide-title">水文化研究中心</h3>
  722. <p>聚焦鄱阳湖流域水文化研究,展现江西水韵之美</p>
  723. </div>
  724. </div>
  725. </div>
  726. <div class="swiper-pagination"></div>
  727. <div class="swiper-button-next"></div>
  728. <div class="swiper-button-prev"></div>
  729. </div>
  730. <!-- 功能模块网格 -->
  731. <div class="module-grid">
  732. <!-- 多模态采集中心 -->
  733. <div class="module-card no-flash">
  734. <div class="card-header">
  735. <i class="fas fa-microphone-alt card-icon"></i>
  736. <h3 class="card-title">多模态采集中心</h3>
  737. <p class="card-subtitle">全方位采集文化资源数据</p>
  738. </div>
  739. <div class="card-body">
  740. <ul class="card-features">
  741. <li><i class="fas fa-comments"></i> AI访谈工具(语伴科技)</li>
  742. <li><i class="fas fa-cube"></i> 3D扫描建模</li>
  743. <li><i class="fas fa-cloud-upload-alt"></i> MCP融合上传</li>
  744. <li><i class="fas fa-vr-cardboard"></i> 沉浸式数据采集</li>
  745. </ul>
  746. <div class="card-actions">
  747. <button class="btn btn-primary"><i class="fas fa-play"></i> 开始采集</button>
  748. <button class="btn btn-outline"><i class="fas fa-info-circle"></i> 了解更多</button>
  749. </div>
  750. </div>
  751. </div>
  752. <!-- 分类知识图谱 -->
  753. <div class="module-card no-flash">
  754. <div class="card-header" style="background: var(--red-culture);">
  755. <i class="fas fa-sitemap card-icon"></i>
  756. <h3 class="card-title">分类知识图谱</h3>
  757. <p class="card-subtitle">构建江西文化知识体系</p>
  758. </div>
  759. <div class="card-body">
  760. <ul class="card-features">
  761. <li><i class="fas fa-landmark"></i> 红色文化数字馆</li>
  762. <li><i class="fas fa-tint"></i> 水文化研究中心</li>
  763. <li><i class="fas fa-dragon"></i> 非遗传承数据库</li>
  764. <li><i class="fas fa-graduation-cap"></i> 水利水电大学专区</li>
  765. </ul>
  766. <div class="card-actions">
  767. <button class="btn btn-primary" style="background: var(--red-culture);"><i class="fas fa-project-diagram"></i> 探索图谱</button>
  768. <button class="btn btn-outline" style="border-color: var(--red-culture); color: var(--red-culture);"><i class="fas fa-book"></i> 文化百科</button>
  769. </div>
  770. </div>
  771. </div>
  772. <!-- 数字文创工坊 -->
  773. <div class="module-card no-flash">
  774. <div class="card-header" style="background: var(--primary-gold);">
  775. <i class="fas fa-paint-brush card-icon"></i>
  776. <h3 class="card-title">数字文创工坊</h3>
  777. <p class="card-subtitle">创新文化内容生产平台</p>
  778. </div>
  779. <div class="card-body">
  780. <ul class="card-features">
  781. <li><i class="fas fa-robot"></i> AIGC内容生成</li>
  782. <li><i class="fas fa-building"></i> BIM建筑建模</li>
  783. <li><i class="fas fa-hands"></i> 非遗技艺孪生</li>
  784. <li><i class="fas fa-palette"></i> 赣鄱风格设计</li>
  785. </ul>
  786. <div class="card-actions">
  787. <button class="btn btn-primary" style="background: var(--primary-gold);"><i class="fas fa-magic"></i> 开始创作</button>
  788. <button class="btn btn-outline" style="border-color: var(--primary-gold); color: var(--primary-gold);"><i class="fas fa-gift"></i> 作品展示</button>
  789. </div>
  790. </div>
  791. </div>
  792. <!-- 智慧文旅系统 -->
  793. <div class="module-card no-flash">
  794. <div class="card-header" style="background: var(--heritage);">
  795. <i class="fas fa-map-marked-alt card-icon"></i>
  796. <h3 class="card-title">智慧文旅系统</h3>
  797. <p class="card-subtitle">科技赋能文旅体验</p>
  798. </div>
  799. <div class="card-body">
  800. <ul class="card-features">
  801. <li><i class="fas fa-vr-cardboard"></i> XR场景重现</li>
  802. <li><i class="fas fa-mobile-alt"></i> AR智能导览</li>
  803. <li><i class="fas fa-route"></i> 旅游动线策划器</li>
  804. <li><i class="fas fa-tree"></i> 生态旅游规划</li>
  805. </ul>
  806. <div class="card-actions">
  807. <button class="btn btn-primary" style="background: var(--heritage);"><i class="fas fa-play-circle"></i> 体验导览</button>
  808. <button class="btn btn-outline" style="border-color: var(--heritage); color: var(--heritage);"><i class="fas fa-compass"></i> 探索路线</button>
  809. </div>
  810. </div>
  811. </div>
  812. </div>
  813. </main>
  814. </div>
  815. </div>
  816. <footer class="no-flash">
  817. <div class="footer-content">
  818. <div class="footer-section">
  819. <h3>平台导航</h3>
  820. <ul>
  821. <li><a href="#">首页</a></li>
  822. <li><a href="#">数智共创平台</a></li>
  823. <li><a href="#">文化地图</a></li>
  824. <li><a href="#">文创商城</a></li>
  825. <li><a href="#">活动日历</a></li>
  826. </ul>
  827. </div>
  828. <div class="footer-section">
  829. <h3>合作伙伴</h3>
  830. <ul>
  831. <li><a href="#">江西省文化和旅游厅</a></li>
  832. <li><a href="#">南昌水利水电大学</a></li>
  833. <li><a href="#">江西师范大学</a></li>
  834. <li><a href="#">景德镇陶瓷大学</a></li>
  835. <li><a href="#">语伴科技</a></li>
  836. </ul>
  837. </div>
  838. <div class="footer-section">
  839. <h3>联系我们</h3>
  840. <ul>
  841. <li><i class="fas fa-map-marker-alt"></i> 江西省南昌市红谷滩区</li>
  842. <li><i class="fas fa-phone"></i> 0791-88888888</li>
  843. <li><i class="fas fa-envelope"></i> contact@ganpowl.com</li>
  844. <li><i class="fas fa-weixin"></i> 赣鄱文链官方公众号</li>
  845. </ul>
  846. </div>
  847. </div>
  848. <div class="copyright">
  849. &copy; 2023 赣鄱文链数字文旅平台 - 传承江西文化,智创文旅未来
  850. </div>
  851. </footer>
  852. <script>
  853. // 初始化轮播图
  854. document.addEventListener('DOMContentLoaded', function() {
  855. const swiper = new Swiper('.swiper-container', {
  856. loop: true,
  857. autoplay: {
  858. delay: 5000,
  859. disableOnInteraction: false,
  860. },
  861. pagination: {
  862. el: '.swiper-pagination',
  863. clickable: true,
  864. },
  865. navigation: {
  866. nextEl: '.swiper-button-next',
  867. prevEl: '.swiper-button-prev',
  868. },
  869. speed: 600,
  870. effect: 'fade',
  871. fadeEffect: {
  872. crossFade: true
  873. },
  874. preloadImages: true,
  875. updateOnImagesReady: true
  876. });
  877. // 优化模块卡片悬停效果
  878. const cards = document.querySelectorAll('.module-card');
  879. cards.forEach(card => {
  880. card.addEventListener('mouseenter', () => {
  881. card.style.transform = 'translateY(-5px)';
  882. card.style.boxShadow = '0 12px 25px rgba(0, 0, 0, 0.15)';
  883. });
  884. card.addEventListener('mouseleave', () => {
  885. card.style.transform = 'translateY(0)';
  886. card.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.08)';
  887. });
  888. });
  889. // 导航链接交互效果
  890. const navLinks = document.querySelectorAll('.nav-main a, .module-nav a');
  891. navLinks.forEach(link => {
  892. link.addEventListener('click', function(e) {
  893. navLinks.forEach(l => l.classList.remove('active'));
  894. this.classList.add('active');
  895. });
  896. });
  897. // 防止快速缩放时的闪烁
  898. let resizeTimer;
  899. window.addEventListener('resize', () => {
  900. document.body.classList.add('resize-animation-stopper');
  901. clearTimeout(resizeTimer);
  902. resizeTimer = setTimeout(() => {
  903. document.body.classList.remove('resize-animation-stopper');
  904. }, 400);
  905. });
  906. });
  907. </script>
  908. </body>
  909. </html>