协会业务.html 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198
  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. <!-- 引入ECharts数据可视化库 -->
  8. <script src="https://cdn.jsdelivr.net/npm/echarts@5.4.3/dist/echarts.min.js"></script>
  9. <!-- 引入Font Awesome图标 -->
  10. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  11. <style>
  12. :root {
  13. --wood-primary: #8B4513; /* 木质主色 */
  14. --wood-secondary: #A0522D; /* 木质辅色 */
  15. --wood-light: #DEB887; /* 木质亮色 */
  16. --brick-color: #7D5A50; /* 青砖色 */
  17. --porcelain-blue: #2a5daa; /* 青花蓝 */
  18. --gold-yellow: #e8c34d; /* 稻穗金 */
  19. --mountain-green: #4a6b3d; /* 山林绿 */
  20. --river-blue: #4a86e8; /* 赣江蓝 */
  21. }
  22. * {
  23. margin: 0;
  24. padding: 0;
  25. box-sizing: border-box;
  26. }
  27. body {
  28. font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
  29. background-color: #f5f2e9;
  30. color: #333;
  31. line-height: 1.6;
  32. overflow-x: hidden;
  33. background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f5f2e9"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23e8e0d022" stroke-width="1"/></svg>');
  34. }
  35. /* 顶部导航 - 书院风格 */
  36. .header {
  37. background: linear-gradient(135deg, var(--wood-primary) 0%, var(--wood-secondary) 100%);
  38. box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  39. position: sticky;
  40. top: 0;
  41. z-index: 1000;
  42. padding: 0.8rem 5%;
  43. border-bottom: 3px solid var(--wood-light);
  44. }
  45. .nav-container {
  46. display: flex;
  47. justify-content: space-between;
  48. align-items: center;
  49. }
  50. .logo {
  51. display: flex;
  52. align-items: center;
  53. }
  54. .logo-icon {
  55. width: 50px;
  56. height: 50px;
  57. background: var(--wood-light);
  58. border-radius: 50%;
  59. position: relative;
  60. margin-right: 12px;
  61. display: flex;
  62. justify-content: center;
  63. align-items: center;
  64. color: var(--wood-primary);
  65. font-size: 24px;
  66. border: 2px solid var(--wood-secondary);
  67. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  68. }
  69. .logo-text {
  70. font-size: 1.8rem;
  71. font-weight: bold;
  72. color: var(--wood-light);
  73. letter-spacing: 1px;
  74. text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  75. }
  76. .logo-subtext {
  77. font-size: 0.9rem;
  78. color: #f0e6d2;
  79. margin-top: -4px;
  80. letter-spacing: 3px;
  81. }
  82. .nav-links {
  83. display: flex;
  84. gap: 2rem;
  85. }
  86. .nav-links a {
  87. text-decoration: none;
  88. color: #f0e6d2;
  89. font-weight: 500;
  90. position: relative;
  91. padding: 0.5rem 0;
  92. transition: all 0.3s ease;
  93. font-size: 1.1rem;
  94. }
  95. .nav-links a:hover {
  96. color: var(--gold-yellow);
  97. }
  98. .nav-links a::after {
  99. content: '';
  100. position: absolute;
  101. bottom: 0;
  102. left: 0;
  103. width: 0;
  104. height: 2px;
  105. background: var(--gold-yellow);
  106. transition: width 0.3s ease;
  107. }
  108. .nav-links a:hover::after {
  109. width: 100%;
  110. }
  111. /* 页面标题 */
  112. .page-header {
  113. background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
  114. url('https://images.unsplash.com/photo-1606193431680-8f5a06d61c9b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
  115. height: 300px;
  116. display: flex;
  117. flex-direction: column;
  118. justify-content: center;
  119. align-items: center;
  120. color: white;
  121. text-align: center;
  122. position: relative;
  123. }
  124. .page-title {
  125. font-size: 3.5rem;
  126. font-weight: bold;
  127. margin-bottom: 1rem;
  128. text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  129. }
  130. .page-subtitle {
  131. font-size: 1.5rem;
  132. max-width: 800px;
  133. }
  134. /* 内容区域 */
  135. .content-section {
  136. padding: 4rem 5%;
  137. background-color: #fcfaf5;
  138. position: relative;
  139. }
  140. .content-section::before {
  141. content: '';
  142. position: absolute;
  143. top: 0;
  144. left: 0;
  145. right: 0;
  146. height: 10px;
  147. background: linear-gradient(90deg, var(--wood-primary), var(--wood-secondary));
  148. }
  149. .section-header {
  150. display: flex;
  151. align-items: center;
  152. margin-bottom: 3rem;
  153. position: relative;
  154. }
  155. .section-title {
  156. font-size: 2.2rem;
  157. color: var(--wood-primary);
  158. position: relative;
  159. padding-left: 1.5rem;
  160. z-index: 2;
  161. background: linear-gradient(90deg, var(--wood-light), transparent 80%);
  162. padding: 0.5rem 1.5rem;
  163. border-radius: 0 30px 30px 0;
  164. }
  165. .section-title::before {
  166. content: '';
  167. position: absolute;
  168. left: 0;
  169. top: 50%;
  170. transform: translateY(-50%);
  171. width: 8px;
  172. height: 40px;
  173. background: var(--wood-primary);
  174. border-radius: 4px;
  175. }
  176. .section-content {
  177. display: flex;
  178. flex-wrap: wrap;
  179. gap: 2rem;
  180. margin-top: 2rem;
  181. }
  182. /* 走进协会 */
  183. .org-chart-container {
  184. flex: 1;
  185. min-width: 300px;
  186. background: white;
  187. border-radius: 12px;
  188. overflow: hidden;
  189. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  190. border: 2px solid var(--wood-light);
  191. position: relative;
  192. }
  193. .org-header {
  194. padding: 1.2rem;
  195. background: linear-gradient(90deg, var(--wood-primary), var(--wood-secondary));
  196. color: white;
  197. display: flex;
  198. align-items: center;
  199. }
  200. .org-body {
  201. padding: 1.5rem;
  202. height: 500px;
  203. }
  204. .leaders-container {
  205. flex: 1;
  206. min-width: 300px;
  207. display: flex;
  208. flex-direction: column;
  209. gap: 1.5rem;
  210. }
  211. .leader-card {
  212. background: white;
  213. border-radius: 12px;
  214. overflow: hidden;
  215. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  216. display: flex;
  217. border: 2px solid var(--wood-light);
  218. transition: all 0.3s ease;
  219. }
  220. .leader-card:hover {
  221. transform: translateY(-5px);
  222. box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  223. }
  224. .leader-img {
  225. width: 150px;
  226. height: 180px;
  227. background: #ddd;
  228. position: relative;
  229. overflow: hidden;
  230. }
  231. .leader-img::after {
  232. content: '';
  233. position: absolute;
  234. top: 0;
  235. left: 0;
  236. width: 100%;
  237. height: 100%;
  238. background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.7));
  239. border: 5px solid var(--wood-light);
  240. border-radius: 50%;
  241. box-sizing: border-box;
  242. }
  243. .leader-info {
  244. flex: 1;
  245. padding: 1.5rem;
  246. position: relative;
  247. }
  248. .leader-info::before {
  249. content: '';
  250. position: absolute;
  251. top: 0;
  252. left: 0;
  253. width: 4px;
  254. height: 100%;
  255. background: var(--wood-primary);
  256. }
  257. .leader-name {
  258. font-size: 1.5rem;
  259. color: var(--wood-primary);
  260. margin-bottom: 0.5rem;
  261. }
  262. .leader-title {
  263. color: var(--wood-secondary);
  264. margin-bottom: 1rem;
  265. }
  266. .leader-desc {
  267. color: #666;
  268. font-size: 0.95rem;
  269. }
  270. .ar-tag {
  271. position: absolute;
  272. top: 1rem;
  273. right: 1rem;
  274. background: var(--porcelain-blue);
  275. color: white;
  276. padding: 0.3rem 0.8rem;
  277. border-radius: 30px;
  278. font-size: 0.8rem;
  279. }
  280. /* 协会章程 */
  281. .constitution-container {
  282. margin-top: 3rem;
  283. background: white;
  284. border-radius: 12px;
  285. overflow: hidden;
  286. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  287. border: 2px solid var(--wood-light);
  288. position: relative;
  289. }
  290. .search-box {
  291. padding: 1.5rem;
  292. background: linear-gradient(135deg, #4a86e8 0%, #2a5daa 100%);
  293. display: flex;
  294. align-items: center;
  295. position: relative;
  296. overflow: hidden;
  297. }
  298. .search-box::before {
  299. content: '';
  300. position: absolute;
  301. top: -50px;
  302. right: -50px;
  303. width: 150px;
  304. height: 150px;
  305. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q40,20 60,50 T100,50" fill="none" stroke="white" stroke-width="1" opacity="0.2"/></svg>');
  306. background-size: contain;
  307. transform: rotate(20deg);
  308. }
  309. .search-input {
  310. flex: 1;
  311. padding: 1rem 1.5rem;
  312. border: none;
  313. border-radius: 50px;
  314. font-size: 1.1rem;
  315. box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  316. }
  317. .search-btn {
  318. background: var(--gold-yellow);
  319. color: var(--wood-primary);
  320. border: none;
  321. padding: 1rem 2rem;
  322. border-radius: 50px;
  323. margin-left: 1rem;
  324. font-weight: bold;
  325. cursor: pointer;
  326. transition: all 0.3s ease;
  327. box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  328. }
  329. .search-btn:hover {
  330. background: #d9b347;
  331. transform: translateY(-2px);
  332. }
  333. .constitution-content {
  334. padding: 2rem;
  335. max-height: 400px;
  336. overflow-y: auto;
  337. background: #f9f6f0;
  338. font-family: 'SimSun', serif;
  339. line-height: 2;
  340. position: relative;
  341. }
  342. .constitution-content::before {
  343. content: '';
  344. position: absolute;
  345. top: 0;
  346. left: 0;
  347. width: 100%;
  348. height: 100%;
  349. 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="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="%23e8e0d0" stroke-width="1"/></svg>');
  350. opacity: 0.3;
  351. pointer-events: none;
  352. }
  353. .highlight {
  354. background-color: rgba(232, 195, 77, 0.3);
  355. padding: 0 2px;
  356. border-radius: 2px;
  357. font-weight: bold;
  358. }
  359. /* 学术体系 */
  360. .academic-calendar {
  361. flex: 1;
  362. min-width: 300px;
  363. background: white;
  364. border-radius: 12px;
  365. overflow: hidden;
  366. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  367. border: 2px solid var(--wood-light);
  368. }
  369. .calendar-header {
  370. padding: 1.2rem;
  371. background: linear-gradient(90deg, var(--mountain-green), #5d8c5a);
  372. color: white;
  373. display: flex;
  374. align-items: center;
  375. }
  376. .calendar-body {
  377. padding: 1.5rem;
  378. height: 400px;
  379. }
  380. .standards-container {
  381. flex: 1;
  382. min-width: 300px;
  383. background: white;
  384. border-radius: 12px;
  385. overflow: hidden;
  386. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  387. border: 2px solid var(--wood-light);
  388. }
  389. .standards-header {
  390. padding: 1.2rem;
  391. background: linear-gradient(90deg, var(--wood-primary), var(--wood-secondary));
  392. color: white;
  393. display: flex;
  394. align-items: center;
  395. }
  396. .standards-body {
  397. padding: 1.5rem;
  398. }
  399. .versions {
  400. display: flex;
  401. gap: 1.5rem;
  402. margin-top: 1rem;
  403. }
  404. .version-card {
  405. flex: 1;
  406. background: #f9f6f0;
  407. border-radius: 8px;
  408. padding: 1.5rem;
  409. position: relative;
  410. border: 1px solid var(--wood-light);
  411. }
  412. .version-title {
  413. font-size: 1.2rem;
  414. color: var(--wood-primary);
  415. margin-bottom: 1rem;
  416. padding-bottom: 0.5rem;
  417. border-bottom: 2px solid var(--wood-light);
  418. }
  419. .version-content {
  420. line-height: 1.8;
  421. }
  422. .diff-highlight {
  423. background-color: rgba(255, 0, 0, 0.1);
  424. text-decoration: line-through;
  425. }
  426. .new-highlight {
  427. background-color: rgba(0, 128, 0, 0.1);
  428. font-weight: bold;
  429. }
  430. /* 人才培养 */
  431. .training-container {
  432. display: flex;
  433. flex-wrap: wrap;
  434. gap: 2rem;
  435. margin-top: 2rem;
  436. }
  437. .training-card {
  438. flex: 1;
  439. min-width: 300px;
  440. background: white;
  441. border-radius: 12px;
  442. overflow: hidden;
  443. box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  444. border: 2px solid var(--wood-light);
  445. }
  446. .training-header {
  447. padding: 1.2rem;
  448. background: linear-gradient(90deg, var(--porcelain-blue), #3a7de8);
  449. color: white;
  450. display: flex;
  451. align-items: center;
  452. }
  453. .training-body {
  454. padding: 1.5rem;
  455. }
  456. .progress-track {
  457. height: 40px;
  458. background: #f0e6d2;
  459. border-radius: 20px;
  460. overflow: hidden;
  461. margin: 1.5rem 0;
  462. position: relative;
  463. box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
  464. border: 2px solid var(--wood-light);
  465. }
  466. .progress-bar {
  467. height: 100%;
  468. background: linear-gradient(90deg, var(--gold-yellow), #d9b347);
  469. width: 65%;
  470. border-radius: 20px;
  471. position: relative;
  472. display: flex;
  473. align-items: center;
  474. padding-left: 20px;
  475. color: var(--wood-primary);
  476. font-weight: bold;
  477. box-shadow: 0 0 10px rgba(232, 195, 77, 0.5);
  478. }
  479. .progress-bar::after {
  480. content: '';
  481. position: absolute;
  482. right: 0;
  483. top: 0;
  484. width: 50px;
  485. height: 100%;
  486. background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,50 L40,20 L40,80 Z" fill="%238B4513"/></svg>') right center no-repeat;
  487. background-size: 30px;
  488. }
  489. .courses {
  490. display: grid;
  491. grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  492. gap: 1.5rem;
  493. margin-top: 1rem;
  494. }
  495. .course-card {
  496. background: #f9f6f0;
  497. border-radius: 8px;
  498. overflow: hidden;
  499. box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  500. border: 1px solid var(--wood-light);
  501. position: relative;
  502. transition: all 0.3s ease;
  503. }
  504. .course-card:hover {
  505. transform: translateY(-5px);
  506. box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  507. }
  508. .course-img {
  509. height: 160px;
  510. background: #ddd;
  511. position: relative;
  512. overflow: hidden;
  513. }
  514. .course-img::before {
  515. content: '';
  516. position: absolute;
  517. top: 0;
  518. left: 0;
  519. width: 100%;
  520. height: 100%;
  521. background: linear-gradient(transparent 60%, rgba(0,0,0,0.6));
  522. }
  523. .course-content {
  524. padding: 1.2rem;
  525. }
  526. .course-title {
  527. font-size: 1.2rem;
  528. color: var(--wood-primary);
  529. margin-bottom: 0.5rem;
  530. }
  531. .course-meta {
  532. display: flex;
  533. justify-content: space-between;
  534. color: var(--wood-secondary);
  535. font-size: 0.9rem;
  536. margin-top: 1rem;
  537. }
  538. /* 页脚 */
  539. .footer {
  540. background: var(--wood-primary);
  541. color: #f0e6d2;
  542. padding: 3rem 5% 2rem;
  543. margin-top: 3rem;
  544. }
  545. .footer-content {
  546. display: flex;
  547. flex-wrap: wrap;
  548. gap: 3rem;
  549. margin-bottom: 2rem;
  550. }
  551. .footer-column {
  552. flex: 1;
  553. min-width: 200px;
  554. }
  555. .footer-column h3 {
  556. color: var(--gold-yellow);
  557. margin-bottom: 1.5rem;
  558. position: relative;
  559. padding-bottom: 0.5rem;
  560. }
  561. .footer-column h3::after {
  562. content: '';
  563. position: absolute;
  564. bottom: 0;
  565. left: 0;
  566. width: 40px;
  567. height: 2px;
  568. background: var(--gold-yellow);
  569. }
  570. .footer-column ul {
  571. list-style: none;
  572. }
  573. .footer-column ul li {
  574. margin-bottom: 0.8rem;
  575. }
  576. .footer-column a {
  577. color: #f0e6d2;
  578. text-decoration: none;
  579. transition: color 0.3s ease;
  580. }
  581. .footer-column a:hover {
  582. color: var(--gold-yellow);
  583. }
  584. .copyright {
  585. text-align: center;
  586. padding-top: 2rem;
  587. border-top: 1px solid rgba(240, 230, 210, 0.3);
  588. color: #d9c7a7;
  589. font-size: 0.9rem;
  590. }
  591. /* 动画效果 */
  592. @keyframes float {
  593. 0% { transform: translateY(0px); }
  594. 50% { transform: translateY(-10px); }
  595. 100% { transform: translateY(0px); }
  596. }
  597. .floating {
  598. animation: float 3s ease-in-out infinite;
  599. }
  600. /* 响应式设计 */
  601. @media (max-width: 768px) {
  602. .nav-links {
  603. display: none;
  604. }
  605. .section-content, .versions, .training-container {
  606. flex-direction: column;
  607. }
  608. .leader-card {
  609. flex-direction: column;
  610. }
  611. .leader-img {
  612. width: 100%;
  613. height: 200px;
  614. }
  615. }
  616. </style>
  617. </head>
  618. <body>
  619. <!-- 顶部导航 -->
  620. <header class="header">
  621. <div class="nav-container">
  622. <div class="logo">
  623. <div class="logo-icon">
  624. <i class="fas fa-landmark"></i>
  625. </div>
  626. <div>
  627. <div class="logo-text">赣鄱文化协会</div>
  628. <div class="logo-subtext">JIANGXI CULTURAL ASSOCIATION</div>
  629. </div>
  630. </div>
  631. <nav class="nav-links">
  632. <a href="D:\文旅创意\江西省数智创享平台\首页.html">首页</a>
  633. <a href="D:\文旅创意\江西省数智创享平台\数智共创.html">数智共创</a>
  634. <a href="" class="active">协会业务</a>
  635. <a href="D:\文旅创意\江西省数智创享平台\会员服务.html">会员服务</a>
  636. <a href="#">支撑系统</a>
  637. <a href="#">关于我们</a>
  638. </nav>
  639. </div>
  640. </header>
  641. <!-- 页面标题 -->
  642. <div class="page-header">
  643. <h1 class="page-title">协会核心业务</h1>
  644. <p class="page-subtitle">传承赣鄱文化,创新数字未来 - 融合传统与现代的智慧平台</p>
  645. </div>
  646. <!-- 走进协会 -->
  647. <section class="content-section">
  648. <div class="section-header">
  649. <h2 class="section-title">走进协会</h2>
  650. </div>
  651. <div class="section-content">
  652. <div class="org-chart-container">
  653. <div class="org-header">
  654. <i class="fas fa-sitemap"></i>
  655. <h3>组织架构</h3>
  656. </div>
  657. <div class="org-body" id="orgChart"></div>
  658. </div>
  659. <div class="leaders-container">
  660. <div class="leader-card">
  661. <div class="leader-img"></div>
  662. <div class="leader-info">
  663. <div class="ar-tag">AR名片</div>
  664. <h3 class="leader-name">张明远</h3>
  665. <p class="leader-title">协会主席 · 江西文化研究专家</p>
  666. <p class="leader-desc">负责协会全面工作,主管学术研究、对外交流。曾主持国家级文化研究项目5项,出版专著8部。</p>
  667. </div>
  668. </div>
  669. <div class="leader-card">
  670. <div class="leader-img"></div>
  671. <div class="leader-info">
  672. <div class="ar-tag">AR名片</div>
  673. <h3 class="leader-name">李红梅</h3>
  674. <p class="leader-title">常务副主席 · 非遗保护专家</p>
  675. <p class="leader-desc">分管会员服务、人才培养工作。致力于江西非物质文化遗产保护与数字化传承20余年。</p>
  676. </div>
  677. </div>
  678. <div class="leader-card">
  679. <div class="leader-img"></div>
  680. <div class="leader-info">
  681. <div class="ar-tag">AR名片</div>
  682. <h3 class="leader-name">王建国</h3>
  683. <p class="leader-title">秘书长 · 数字技术专家</p>
  684. <p class="leader-desc">分管技术研发、平台建设工作。主持开发多个省级文化数字化平台,获国家专利3项。</p>
  685. </div>
  686. </div>
  687. </div>
  688. </div>
  689. <div class="constitution-container">
  690. <div class="search-box">
  691. <input type="text" class="search-input" placeholder="输入关键词检索协会章程 (如:红色文化、会员权利...)">
  692. <button class="search-btn"><i class="fas fa-search"></i> 智能检索</button>
  693. </div>
  694. <div class="constitution-content">
  695. <h3>江西省数字文化发展协会章程</h3>
  696. <p>(2023年6月修订)</p>
  697. <h4>第一章 总则</h4>
  698. <p>第一条 本协会名称为江西省数字文化发展协会(英文译名:Jiangxi Digital Culture Development Association,缩写:JDCDA)。</p>
  699. <p>第二条 本协会是由江西省内从事数字文化创作、研究、开发、生产、销售、服务的企业、机构和个人自愿组成的全省性、行业性、非营利性社会组织。</p>
  700. <p>第三条 本协会的宗旨:遵守宪法、法律、法规和国家政策,践行社会主义核心价值观,遵守社会道德风尚。团结和组织全省数字文化工作者,促进数字文化产业的繁荣发展,推动数字技术与江西传统文化的融合创新,为江西文化强省建设贡献力量。</p>
  701. <h4>第二章 业务范围</h4>
  702. <p>第四条 本协会的业务范围:</p>
  703. <p>(一)开展数字文化产业发展研究,为政府决策提供参考;</p>
  704. <p>(二)组织行业交流与合作,促进资源整合共享;</p>
  705. <p>(三)制定行业标准和规范,加强行业自律;</p>
  706. <p>(四)开展人才培养和技术培训,提升行业整体水平;</p>
  707. <p>(五)举办展览、比赛、论坛等活动,推广优秀数字文化作品;</p>
  708. <p>(六)加强<span class="highlight">红色文化</span>数字化保护和传承,推动江西特色文化资源数字化开发;</p>
  709. <p>(七)开展国内外交流合作,提升江西数字文化影响力。</p>
  710. <h4>第三章 会员</h4>
  711. <p>第五条 本协会会员包括单位会员和个人会员。</p>
  712. <p>第六条 申请加入本协会的会员,必须具备下列条件:</p>
  713. <p>(一)拥护本协会章程;</p>
  714. <p>(二)有加入本协会的意愿;</p>
  715. <p>(三)在数字文化领域内具有一定影响力或专业能力。</p>
  716. <h4>第四章 组织机构</h4>
  717. <p>第十条 本协会的最高权力机构是会员代表大会。会员代表大会的职权是:</p>
  718. <p>(一)制定和修改章程;</p>
  719. <p>(二)选举和罢免理事;</p>
  720. <p>(三)审议理事会的工作报告和财务报告;</p>
  721. <p>(四)决定终止事宜;</p>
  722. <p>(五)决定其他重大事宜。</p>
  723. </div>
  724. </div>
  725. </section>
  726. <!-- 学术体系 -->
  727. <section class="content-section" style="background-color: #f5f2e9;">
  728. <div class="section-header">
  729. <h2 class="section-title">学术体系</h2>
  730. </div>
  731. <div class="section-content">
  732. <div class="academic-calendar">
  733. <div class="calendar-header">
  734. <i class="fas fa-calendar-alt"></i>
  735. <h3>学术日历</h3>
  736. </div>
  737. <div class="calendar-body" id="academicCalendar"></div>
  738. </div>
  739. <div class="standards-container">
  740. <div class="standards-header">
  741. <i class="fas fa-file-alt"></i>
  742. <h3>标准规范库</h3>
  743. </div>
  744. <div class="standards-body">
  745. <h4>数字文化资源采集规范</h4>
  746. <p>版本对比:2023版 vs 2021版</p>
  747. <div class="versions">
  748. <div class="version-card">
  749. <h5 class="version-title">2021版</h5>
  750. <div class="version-content">
  751. <p>1. 数字资源采集应遵循真实性原则,确保<span class="diff-highlight">内容准确</span>。</p>
  752. <p>2. 图像采集分辨率不低于<span class="diff-highlight">300dpi</span>。</p>
  753. <p>3. 音频采集采样率不低于<span class="diff-highlight">44.1kHz</span>。</p>
  754. <p>4. 视频采集分辨率不低于<span class="diff-highlight">1080p</span>。</p>
  755. <p>5. 三维模型采集精度不低于<span class="diff-highlight">0.5mm</span>。</p>
  756. </div>
  757. </div>
  758. <div class="version-card">
  759. <h5 class="version-title">2023版</h5>
  760. <div class="version-content">
  761. <p>1. 数字资源采集应遵循真实性、完整性原则,确保<span class="new-highlight">内容准确且完整呈现文化背景</span>。</p>
  762. <p>2. 图像采集分辨率不低于<span class="new-highlight">600dpi,重要文物需达1200dpi</span>。</p>
  763. <p>3. 音频采集采样率不低于<span class="new-highlight">48kHz,推荐使用96kHz</span>。</p>
  764. <p>4. 视频采集分辨率不低于<span class="new-highlight">4K,重要场景需8K</span>。</p>
  765. <p>5. 三维模型采集精度不低于<span class="new-highlight">0.1mm,重要结构需达0.01mm</span>。</p>
  766. </div>
  767. </div>
  768. </div>
  769. </div>
  770. </div>
  771. </div>
  772. </section>
  773. <!-- 人才培养 -->
  774. <section class="content-section">
  775. <div class="section-header">
  776. <h2 class="section-title">人才培养</h2>
  777. </div>
  778. <div class="training-container">
  779. <div class="training-card">
  780. <div class="training-header">
  781. <i class="fas fa-trophy"></i>
  782. <h3>竞赛平台</h3>
  783. </div>
  784. <div class="training-body">
  785. <h4>江西红色文化数字创意大赛</h4>
  786. <p>参赛进度</p>
  787. <div class="progress-track">
  788. <div class="progress-bar">65% 作品完善中</div>
  789. </div>
  790. <div class="progress-info">
  791. <p><i class="fas fa-flag-checkered"></i> 截止日期:2023年10月15日</p>
  792. <p><i class="fas fa-award"></i> 奖项设置:金奖1名(奖金50,000元),银奖3名,铜奖10名</p>
  793. </div>
  794. </div>
  795. </div>
  796. <div class="training-card">
  797. <div class="training-header">
  798. <i class="fas fa-graduation-cap"></i>
  799. <h3>微专业中心</h3>
  800. </div>
  801. <div class="training-body">
  802. <h4>AI+文旅专业课程</h4>
  803. <p>已上线课程</p>
  804. <div class="courses">
  805. <div class="course-card">
  806. <div class="course-img"></div>
  807. <div class="course-content">
  808. <h5 class="course-title">江西古建筑数字化保护</h5>
  809. <p>学习古建筑三维扫描、数字建模与修复技术</p>
  810. <div class="course-meta">
  811. <span><i class="fas fa-clock"></i> 32课时</span>
  812. <span><i class="fas fa-user-graduate"></i> 已报名 1,245人</span>
  813. </div>
  814. </div>
  815. </div>
  816. <div class="course-card">
  817. <div class="course-img"></div>
  818. <div class="course-content">
  819. <h5 class="course-title">非遗技艺数字化传承</h5>
  820. <p>探索传统技艺的数字化记录与创新应用</p>
  821. <div class="course-meta">
  822. <span><i class="fas fa-clock"></i> 24课时</span>
  823. <span><i class="fas fa-user-graduate"></i> 已报名 986人</span>
  824. </div>
  825. </div>
  826. </div>
  827. <div class="course-card">
  828. <div class="course-img"></div>
  829. <div class="course-content">
  830. <h5 class="course-title">红色文化XR应用开发</h5>
  831. <p>利用XR技术重现江西革命历史场景</p>
  832. <div class="course-meta">
  833. <span><i class="fas fa-clock"></i> 40课时</span>
  834. <span><i class="fas fa-user-graduate"></i> 已报名 1,532人</span>
  835. </div>
  836. </div>
  837. </div>
  838. <div class="course-card">
  839. <div class="course-img"></div>
  840. <div class="course-content">
  841. <h5 class="course-title">智慧旅游系统设计</h5>
  842. <p>学习旅游动线策划与智能导览系统开发</p>
  843. <div class="course-meta">
  844. <span><i class="fas fa-clock"></i> 28课时</span>
  845. <span><i class="fas fa-user-graduate"></i> 已报名 875人</span>
  846. </div>
  847. </div>
  848. </div>
  849. </div>
  850. </div>
  851. </div>
  852. </div>
  853. </section>
  854. <!-- 页脚 -->
  855. <footer class="footer">
  856. <div class="footer-content">
  857. <div class="footer-column">
  858. <h3>网站导航</h3>
  859. <ul>
  860. <li><a href="#">首页</a></li>
  861. <li><a href="#">走进协会</a></li>
  862. <li><a href="#">学术体系</a></li>
  863. <li><a href="#">人才培养</a></li>
  864. <li><a href="#">会员服务</a></li>
  865. </ul>
  866. </div>
  867. <div class="footer-column">
  868. <h3>资源中心</h3>
  869. <ul>
  870. <li><a href="#">学术文库</a></li>
  871. <li><a href="#">标准规范</a></li>
  872. <li><a href="#">培训课程</a></li>
  873. <li><a href="#">竞赛平台</a></li>
  874. <li><a href="#">研究成果</a></li>
  875. </ul>
  876. </div>
  877. <div class="footer-column">
  878. <h3>联系我们</h3>
  879. <ul>
  880. <li><i class="fas fa-map-marker-alt"></i> 江西省南昌市红谷滩区</li>
  881. <li><i class="fas fa-phone"></i> 0791-87654321</li>
  882. <li><i class="fas fa-envelope"></i> association@jxculture.cn</li>
  883. <li><i class="fab fa-weixin"></i> 江西文化协会</li>
  884. </ul>
  885. </div>
  886. <div class="footer-column">
  887. <h3>关注我们</h3>
  888. <div style="display: flex; gap: 1rem; margin-top: 1rem;">
  889. <div style="width: 100px; height: 100px; background: #555; display: flex; justify-content: center; align-items: center; color: #aaa;">
  890. 微信公众号
  891. </div>
  892. <div style="width: 100px; height: 100px; background: #555; display: flex; justify-content: center; align-items: center; color: #aaa;">
  893. 微博
  894. </div>
  895. </div>
  896. </div>
  897. </div>
  898. <div class="copyright">
  899. © 2023 江西省数字文化发展协会 版权所有 | 赣ICP备202300001号
  900. </div>
  901. </footer>
  902. <script>
  903. // 初始化组织架构图
  904. const orgChart = echarts.init(document.getElementById('orgChart'));
  905. orgChart.setOption({
  906. tooltip: {
  907. trigger: 'item',
  908. triggerOn: 'mousemove'
  909. },
  910. series: [
  911. {
  912. type: 'tree',
  913. data: [{
  914. name: '协会主席',
  915. children: [{
  916. name: '常务副主席',
  917. children: [
  918. { name: '会员服务部' },
  919. { name: '人才培养部' }
  920. ]
  921. }, {
  922. name: '秘书长',
  923. children: [
  924. { name: '技术研发中心' },
  925. { name: '平台建设部' }
  926. ]
  927. }, {
  928. name: '学术委员会',
  929. children: [
  930. { name: '红色文化研究所' },
  931. { name: '非遗研究中心' },
  932. { name: '数字技术实验室' }
  933. ]
  934. }]
  935. }],
  936. top: '5%',
  937. left: '10%',
  938. bottom: '5%',
  939. right: '20%',
  940. symbolSize: 20,
  941. symbol: 'circle',
  942. orient: 'vertical',
  943. expandAndCollapse: true,
  944. initialTreeDepth: 2,
  945. lineStyle: {
  946. width: 2,
  947. color: '#8B4513'
  948. },
  949. label: {
  950. position: 'top',
  951. verticalAlign: 'middle',
  952. align: 'middle',
  953. fontSize: 14,
  954. fontWeight: 'bold',
  955. color: '#8B4513'
  956. },
  957. itemStyle: {
  958. color: '#DEB887',
  959. borderColor: '#8B4513',
  960. borderWidth: 2
  961. },
  962. emphasis: {
  963. itemStyle: {
  964. color: '#e8c34d',
  965. borderColor: '#8B4513'
  966. }
  967. },
  968. leaves: {
  969. label: {
  970. position: 'right',
  971. verticalAlign: 'middle',
  972. align: 'left'
  973. },
  974. itemStyle: {
  975. color: '#f0e6d2',
  976. borderColor: '#8B4513'
  977. }
  978. }
  979. }
  980. ]
  981. });
  982. // 初始化学术日历
  983. const academicCalendar = echarts.init(document.getElementById('academicCalendar'));
  984. academicCalendar.setOption({
  985. tooltip: {
  986. formatter: function(params) {
  987. return params.name + '<br/>' +
  988. '热度: ' + params.value[2] + '<br/>' +
  989. '地点: ' + params.data.location;
  990. }
  991. },
  992. visualMap: {
  993. show: false,
  994. min: 0,
  995. max: 100,
  996. inRange: {
  997. color: ['#DEB887', '#A0522D', '#8B0000']
  998. }
  999. },
  1000. calendar: {
  1001. top: 30,
  1002. left: 30,
  1003. right: 30,
  1004. cellSize: ['auto', 20],
  1005. range: '2023-06',
  1006. itemStyle: {
  1007. borderWidth: 1,
  1008. borderColor: '#e8e0d0'
  1009. },
  1010. dayLabel: {
  1011. color: '#8B4513'
  1012. },
  1013. monthLabel: {
  1014. color: '#8B4513',
  1015. fontWeight: 'bold'
  1016. },
  1017. yearLabel: { show: false }
  1018. },
  1019. series: {
  1020. type: 'heatmap',
  1021. coordinateSystem: 'calendar',
  1022. data: [
  1023. ['2023-06-05', 35, '数字文化论坛', '南昌'],
  1024. ['2023-06-08', 65, '非遗保护研讨会', '景德镇'],
  1025. ['2023-06-12', 45, '青年学者交流会', '九江'],
  1026. ['2023-06-15', 85, '红色文化数字展', '井冈山'],
  1027. ['2023-06-18', 25, '会员技术培训', '赣州'],
  1028. ['2023-06-22', 75, '数字艺术创作大赛', '南昌'],
  1029. ['2023-06-25', 55, '智慧旅游研讨会', '上饶'],
  1030. ['2023-06-28', 95, '年度学术大会', '南昌']
  1031. ].map(function (item) {
  1032. return {
  1033. value: (item[0], item[1], item[1], item[2], item[3])
  1034. };
  1035. })
  1036. }
  1037. });
  1038. // 响应窗口大小变化
  1039. window.addEventListener('resize', function() {
  1040. orgChart.resize();
  1041. academicCalendar.resize();
  1042. });
  1043. // 模拟章程搜索高亮效果
  1044. document.querySelector('.search-btn').addEventListener('click', function() {
  1045. const searchTerm = document.querySelector('.search-input').value;
  1046. if (searchTerm) {
  1047. const content = document.querySelector('.constitution-content');
  1048. const text = content.innerHTML;
  1049. const regex = new RegExp(searchTerm, 'gi');
  1050. const highlighted = text.replace(regex, match =>
  1051. `<span class="highlight">${match}</span>`
  1052. );
  1053. content.innerHTML = highlighted;
  1054. }
  1055. });
  1056. // 模拟版本差异高亮
  1057. const diffElements = document.querySelectorAll('.diff-highlight, .new-highlight');
  1058. diffElements.forEach(el => {
  1059. el.addEventListener('mouseenter', function() {
  1060. const allDiff = document.querySelectorAll('.diff-highlight');
  1061. const allNew = document.querySelectorAll('.new-highlight');
  1062. if (this.classList.contains('diff-highlight')) {
  1063. allDiff.forEach(e => e.style.backgroundColor = 'rgba(255,0,0,0.2)');
  1064. } else {
  1065. allNew.forEach(e => e.style.backgroundColor = 'rgba(0,128,0,0.2)');
  1066. }
  1067. });
  1068. el.addEventListener('mouseleave', function() {
  1069. const allDiff = document.querySelectorAll('.diff-highlight');
  1070. const allNew = document.querySelectorAll('.new-highlight');
  1071. allDiff.forEach(e => e.style.backgroundColor = 'rgba(255,0,0,0.1)');
  1072. allNew.forEach(e => e.style.backgroundColor = 'rgba(0,128,0,0.1)');
  1073. });
  1074. });
  1075. </script>
  1076. </body>
  1077. </html>