1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>会员服务 - 江西数字文化门户</title>
- <!-- 引入Swiper轮播库 -->
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css">
- <!-- 引入ECharts数据可视化库 -->
- <script src="https://cdn.jsdelivr.net/npm/echarts@5.4.3/dist/echarts.min.js"></script>
- <!-- 引入Font Awesome图标 -->
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
- <style>
- :root {
- --primary-blue: #2a5daa; /* 青花蓝 */
- --gold-yellow: #e8c34d; /* 稻穗金 */
- --porcelain-white: #f8f9fa; /* 瓷白 */
- --dark-charcoal: #333; /* 墨黑 */
- --mountain-green: #4a6b3d; /* 山林绿 */
- --river-blue: #4a86e8; /* 赣江蓝 */
- --ceramic-red: #c73e3a; /* 陶瓷红 */
- }
-
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- body {
- font-family: 'Microsoft YaHei', 'Segoe UI', sans-serif;
- background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
- color: var(--dark-charcoal);
- line-height: 1.6;
- overflow-x: hidden;
- 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"><path d="M20,20 Q40,5 60,20 T100,20 L100,80 L0,80 L0,20 Z" fill="none" stroke="%232a5daa22" stroke-width="0.5"/></svg>');
- }
-
- /* 顶部导航 */
- .header {
- background: rgba(255, 255, 255, 0.95);
- box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
- position: sticky;
- top: 0;
- z-index: 1000;
- padding: 0.8rem 5%;
- }
-
- .nav-container {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
- .logo {
- display: flex;
- align-items: center;
- }
-
- .logo-icon {
- width: 50px;
- height: 50px;
- background: var(--primary-blue);
- border-radius: 50%;
- position: relative;
- margin-right: 12px;
- display: flex;
- justify-content: center;
- align-items: center;
- color: white;
- font-size: 24px;
- box-shadow: 0 4px 8px rgba(42, 93, 170, 0.3);
- }
-
- .logo-text {
- font-size: 1.8rem;
- font-weight: bold;
- background: linear-gradient(45deg, var(--primary-blue), var(--river-blue));
- -webkit-background-clip: text;
- background-clip: text;
- color: transparent;
- letter-spacing: 1px;
- }
-
- .logo-subtext {
- font-size: 0.9rem;
- color: var(--primary-blue);
- margin-top: -4px;
- letter-spacing: 3px;
- }
-
- .nav-links {
- display: flex;
- gap: 2rem;
- }
-
- .nav-links a {
- text-decoration: none;
- color: var(--dark-charcoal);
- font-weight: 500;
- position: relative;
- padding: 0.5rem 0;
- transition: all 0.3s ease;
- }
-
- .nav-links a.active {
- color: var(--primary-blue);
- font-weight: bold;
- }
-
- .nav-links a.active::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 2px;
- background: var(--primary-blue);
- }
-
- .nav-links a::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 0;
- height: 2px;
- background: var(--primary-blue);
- transition: width 0.3s ease;
- }
-
- .nav-links a:hover::after {
- width: 100%;
- }
-
- /* Banner区域 */
- .banner-section {
- padding: 1.5rem 5%;
- margin-top: 1rem;
- position: relative;
- height: 500px;
- display: flex;
- align-items: center;
- justify-content: center;
- overflow: hidden;
- }
-
- .banner-bg {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1579033462043-0f11a7862f7d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
- z-index: -1;
- }
-
- .banner-content {
- text-align: center;
- color: white;
- max-width: 800px;
- padding: 2rem;
- z-index: 2;
- }
-
- .banner-title {
- font-size: 3.5rem;
- font-weight: bold;
- margin-bottom: 1.5rem;
- text-shadow: 0 2px 10px rgba(0,0,0,0.5);
- animation: fadeInDown 1s ease;
- }
-
- .banner-subtitle {
- font-size: 1.5rem;
- margin-bottom: 2rem;
- opacity: 0.9;
- animation: fadeInUp 1s ease;
- }
-
- /* 会员门户区域 */
- .section-header {
- text-align: center;
- padding: 3rem 5% 2rem;
- }
-
- .section-title {
- font-size: 2.5rem;
- color: var(--primary-blue);
- margin-bottom: 1rem;
- position: relative;
- display: inline-block;
- }
-
- .section-title::after {
- content: '';
- position: absolute;
- bottom: -10px;
- left: 50%;
- transform: translateX(-50%);
- width: 80px;
- height: 4px;
- background: var(--gold-yellow);
- border-radius: 2px;
- }
-
- .section-desc {
- font-size: 1.2rem;
- color: #555;
- max-width: 800px;
- margin: 0 auto 2rem;
- }
-
- .services-container {
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- gap: 3rem;
- padding: 0 5% 5rem;
- }
-
- .service-card {
- background: white;
- border-radius: 15px;
- overflow: hidden;
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
- transition: all 0.3s ease;
- width: 100%;
- max-width: 400px;
- }
-
- .service-card:hover {
- transform: translateY(-15px);
- box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
- }
-
- .service-header {
- padding: 1.8rem;
- background: linear-gradient(90deg, var(--primary-blue), var(--river-blue));
- color: white;
- text-align: center;
- }
-
- .service-icon {
- font-size: 3rem;
- margin-bottom: 1rem;
- }
-
- .service-title {
- font-size: 1.8rem;
- font-weight: bold;
- }
-
- .service-body {
- padding: 2rem;
- }
-
- /* OCR注册区域 */
- .ocr-gate {
- position: relative;
- width: 100%;
- height: 200px;
- background: linear-gradient(to bottom, #e9e5d8, #f8f6f0);
- border: 3px solid var(--gold-yellow);
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-bottom: 1.5rem;
- overflow: hidden;
- }
-
- .gate-arch {
- position: absolute;
- top: 0;
- width: 100%;
- height: 30px;
- background: var(--ceramic-red);
- border-radius: 50% 50% 0 0;
- }
-
- .gate-pillar {
- position: absolute;
- bottom: 0;
- width: 20px;
- height: 180px;
- background: var(--ceramic-red);
- }
-
- .gate-pillar.left {
- left: 20%;
- }
-
- .gate-pillar.right {
- right: 20%;
- }
-
- .lantern {
- position: absolute;
- top: 25px;
- width: 25px;
- height: 35px;
- background: var(--gold-yellow);
- border-radius: 50%;
- opacity: 0.4;
- transition: all 0.5s ease;
- }
-
- .lantern.left {
- left: 20%;
- }
-
- .lantern.right {
- right: 20%;
- }
-
- .lantern.active {
- opacity: 1;
- background: #ff6b6b;
- box-shadow: 0 0 20px #ff6b6b;
- }
-
- .ocr-content {
- z-index: 2;
- text-align: center;
- }
-
- .ocr-btn {
- background: var(--primary-blue);
- color: white;
- border: none;
- padding: 0.8rem 2rem;
- border-radius: 30px;
- font-size: 1.1rem;
- cursor: pointer;
- transition: all 0.3s ease;
- margin-top: 1rem;
- font-weight: bold;
- }
-
- .ocr-btn:hover {
- background: var(--river-blue);
- transform: scale(1.05);
- }
-
- /* VR展示区 */
- .vr-showcase {
- width: 100%;
- height: 300px;
- background: url('https://images.unsplash.com/photo-1551649001-7a2482d98d09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
- border-radius: 10px;
- position: relative;
- overflow: hidden;
- margin-bottom: 1.5rem;
- }
-
- .drying-rack {
- position: absolute;
- top: 30px;
- left: 50%;
- transform: translateX(-50%);
- width: 80%;
- height: 180px;
- background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="10" viewBox="0 0 200 10"><rect width="200" height="3" fill="%23d4a017" rx="1.5"/></svg>') repeat;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
-
- .achievement-item {
- width: 70px;
- height: 70px;
- border-radius: 50%;
- background: var(--gold-yellow);
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 2rem;
- color: white;
- cursor: pointer;
- transition: all 0.3s ease;
- box-shadow: 0 5px 15px rgba(0,0,0,0.2);
- }
-
- .achievement-item:hover {
- transform: translateY(-10px);
- }
-
- /* 单位对接 */
- .migration-map {
- width: 100%;
- height: 300px;
- background: linear-gradient(to bottom, #e6f7ff, #f0f8ff);
- border-radius: 10px;
- position: relative;
- overflow: hidden;
- }
-
- .crane {
- position: absolute;
- width: 50px;
- height: 50px;
- background: white;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 1.8rem;
- color: var(--dark-charcoal);
- box-shadow: 0 3px 10px rgba(0,0,0,0.1);
- transition: all 0.5s ease;
- cursor: pointer;
- }
-
- .crane:hover {
- transform: scale(1.2);
- z-index: 10;
- }
-
- /* 共创空间 */
- .creative-space {
- background: linear-gradient(135deg, #f8f9fa 0%, #e6f7ff 100%);
- padding: 5rem 5%;
- }
-
- .space-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 2.5rem;
- margin-top: 2rem;
- }
-
- .space-card {
- background: white;
- border-radius: 15px;
- overflow: hidden;
- box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
- transition: all 0.3s ease;
- }
-
- .space-card:hover {
- transform: translateY(-10px);
- box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
- }
-
- .space-header {
- padding: 1.5rem;
- background: linear-gradient(90deg, var(--mountain-green), #5d8c5a);
- color: white;
- display: flex;
- align-items: center;
- gap: 1rem;
- }
-
- .space-icon {
- font-size: 2rem;
- }
-
- .space-title {
- font-size: 1.5rem;
- font-weight: bold;
- }
-
- .space-body {
- padding: 2rem;
- }
-
- .ceramic-items {
- display: flex;
- justify-content: space-around;
- margin: 1.5rem 0;
- }
-
- .ceramic-item {
- width: 80px;
- height: 100px;
- background: #f8f6f0;
- border: 2px solid var(--gold-yellow);
- border-radius: 10px;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- cursor: pointer;
- transition: all 0.3s ease;
- }
-
- .ceramic-item.vase {
- height: 120px;
- border-radius: 40% 40% 10px 10px;
- }
-
- .ceramic-item.bowl {
- border-radius: 50% 50% 10px 10px;
- }
-
- .ceramic-item:hover {
- transform: translateY(-10px);
- box-shadow: 0 10px 20px rgba(0,0,0,0.1);
- }
-
- /* 奖励体系 */
- .reward-system {
- padding: 5rem 5%;
- background: linear-gradient(135deg, #fff9f0 0%, #fff 100%);
- }
-
- .terrace-form {
- background: white;
- border-radius: 15px;
- overflow: hidden;
- box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
- padding: 2rem;
- margin-top: 2rem;
- }
-
- .form-group {
- margin-bottom: 1.8rem;
- position: relative;
- padding: 1.2rem;
- background: var(--porcelain-white);
- border-radius: 8px;
- box-shadow: 0 3px 10px rgba(0,0,0,0.05);
- transition: all 0.3s ease;
- }
-
- .form-group:hover {
- transform: translateY(-3px);
- box-shadow: 0 5px 15px rgba(0,0,0,0.08);
- }
-
- .form-label {
- display: block;
- margin-bottom: 0.5rem;
- font-weight: bold;
- color: var(--primary-blue);
- }
-
- .form-input {
- width: 100%;
- padding: 0.8rem;
- border: 1px solid #ddd;
- border-radius: 5px;
- font-size: 1rem;
- transition: all 0.3s ease;
- }
-
- .form-input:focus {
- border-color: var(--river-blue);
- box-shadow: 0 0 0 3px rgba(74, 134, 232, 0.1);
- outline: none;
- }
-
- .ripple {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 2px;
- background: var(--river-blue);
- transform: scaleX(0);
- transform-origin: left;
- transition: transform 0.3s ease;
- }
-
- .form-input:focus ~ .ripple {
- transform: scaleX(1);
- }
-
- /* 滕王阁荣誉墙 */
- .pavilion-honor {
- width: 100%;
- height: 400px;
- background: linear-gradient(to bottom, #e6f7ff, #d1e8ff);
- border-radius: 15px;
- margin-top: 3rem;
- position: relative;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .pavilion-model {
- width: 300px;
- height: 300px;
- background: url('https://images.unsplash.com/photo-1600857062241-98c0a9e0f6f5?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/contain no-repeat;
- position: relative;
- }
-
- .honor-item {
- position: absolute;
- width: 80px;
- height: 50px;
- background: white;
- border: 2px solid var(--gold-yellow);
- border-radius: 5px;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: bold;
- color: var(--primary-blue);
- box-shadow: 0 3px 10px rgba(0,0,0,0.1);
- cursor: pointer;
- transition: all 0.3s ease;
- }
-
- .honor-item:hover {
- transform: scale(1.1);
- z-index: 10;
- }
-
- /* 页脚 */
- .footer {
- background: var(--dark-charcoal);
- color: white;
- padding: 3rem 5% 2rem;
- }
-
- .footer-content {
- display: flex;
- flex-wrap: wrap;
- gap: 3rem;
- margin-bottom: 2rem;
- }
-
- .footer-column {
- flex: 1;
- min-width: 200px;
- }
-
- .footer-column h3 {
- color: var(--gold-yellow);
- margin-bottom: 1.5rem;
- position: relative;
- padding-bottom: 0.5rem;
- }
-
- .footer-column h3::after {
- content: '';
- position: absolute;
- bottom: 0;
- left: 0;
- width: 40px;
- height: 2px;
- background: var(--gold-yellow);
- }
-
- .footer-column ul {
- list-style: none;
- }
-
- .footer-column ul li {
- margin-bottom: 0.8rem;
- }
-
- .footer-column a {
- color: #ddd;
- text-decoration: none;
- transition: color 0.3s ease;
- }
-
- .footer-column a:hover {
- color: var(--gold-yellow);
- }
-
- .copyright {
- text-align: center;
- padding-top: 2rem;
- border-top: 1px solid #444;
- color: #aaa;
- font-size: 0.9rem;
- }
-
- /* 动画效果 */
- @keyframes fadeInDown {
- from {
- opacity: 0;
- transform: translateY(-30px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
-
- @keyframes fadeInUp {
- from {
- opacity: 0;
- transform: translateY(30px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
-
- @keyframes float {
- 0% { transform: translateY(0px); }
- 50% { transform: translateY(-10px); }
- 100% { transform: translateY(0px); }
- }
-
- .floating {
- animation: float 3s ease-in-out infinite;
- }
-
- /* 响应式设计 */
- @media (max-width: 768px) {
- .nav-links {
- display: none;
- }
-
- .banner-title {
- font-size: 2.5rem;
- }
-
- .banner-subtitle {
- font-size: 1.2rem;
- }
-
- .services-container {
- flex-direction: column;
- align-items: center;
- }
-
- .space-grid {
- grid-template-columns: 1fr;
- }
- }
- </style>
- </head>
- <body>
- <!-- 顶部导航 -->
- <header class="header">
- <div class="nav-container">
- <div class="logo">
- <div class="logo-icon">
- <i class="fas fa-mountain"></i>
- </div>
- <div>
- <div class="logo-text">赣鄱文化云</div>
- <div class="logo-subtext">JIANGXI DIGITAL CULTURE</div>
- </div>
- </div>
- <nav class="nav-links">
- <a href="D:\文旅创意\江西省数智创享平台\首页.html">首页</a>
- <a href="D:\文旅创意\江西省数智创享平台\数智共创.html">数智共创</a>
- <a href="D:\文旅创意\江西省数智创享平台\协会业务.html">协会业务</a>
- <a href="" class="active">会员服务</a>
- <a href="#">支撑系统</a>
- <a href="#">关于我们</a>
- </nav>
- </div>
- </header>
-
- <!-- Banner区域 -->
- <section class="banner-section">
- <div class="banner-bg"></div>
- <div class="banner-content">
- <h1 class="banner-title">会员服务智能化升级</h1>
- <p class="banner-subtitle">OCR智能注册 · VR风采展示 · 智能匹配对接 · 共创空间 · 荣誉奖励体系</p>
- <button class="ocr-btn" style="animation-delay: 0.5s;">立即体验会员服务</button>
- </div>
- </section>
-
- <!-- 会员门户 -->
- <section class="member-portal">
- <div class="section-header">
- <h2 class="section-title">会员门户</h2>
- <p class="section-desc">智能化的会员服务体系,融合江西文化元素,提供便捷高效的会员服务体验</p>
- </div>
-
- <div class="services-container">
- <!-- 智能注册 -->
- <div class="service-card">
- <div class="service-header">
- <div class="service-icon">
- <i class="fas fa-id-card"></i>
- </div>
- <h3 class="service-title">智能注册</h3>
- </div>
- <div class="service-body">
- <div class="ocr-gate">
- <div class="gate-arch"></div>
- <div class="gate-pillar left"></div>
- <div class="gate-pillar right"></div>
- <div class="lantern left"></div>
- <div class="lantern right"></div>
- <div class="ocr-content">
- <p>上传证件照片进行OCR智能识别</p>
- <button class="ocr-btn" id="ocrBtn">上传证件</button>
- </div>
- </div>
- <p>采用南昌万寿宫牌坊造型设计,识别成功时灯笼亮起,失败时显示碎瓷动画效果</p>
- </div>
- </div>
-
- <!-- 会员风采 -->
- <div class="service-card">
- <div class="service-header">
- <div class="service-icon">
- <i class="fas fa-vr-cardboard"></i>
- </div>
- <h3 class="service-title">会员风采</h3>
- </div>
- <div class="service-body">
- <div class="vr-showcase">
- <div class="drying-rack">
- <div class="achievement-item floating" style="animation-delay: 0s;">
- <i class="fas fa-award"></i>
- </div>
- <div class="achievement-item floating" style="animation-delay: 0.2s;">
- <i class="fas fa-medal"></i>
- </div>
- <div class="achievement-item floating" style="animation-delay: 0.4s;">
- <i class="fas fa-trophy"></i>
- </div>
- <div class="achievement-item floating" style="animation-delay: 0.6s;">
- <i class="fas fa-star"></i>
- </div>
- </div>
- </div>
- <p>采用婺源晒秋场景,成就物品以辣椒/玉米形式悬挂展示,支持手势"晾晒"操作</p>
- </div>
- </div>
-
- <!-- 单位对接 -->
- <div class="service-card">
- <div class="service-header">
- <div class="service-icon">
- <i class="fas fa-handshake"></i>
- </div>
- <h3 class="service-title">单位对接</h3>
- </div>
- <div class="service-body">
- <div class="migration-map">
- <div class="crane" style="top: 20%; left: 20%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 30%; left: 40%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 25%; left: 60%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 40%; left: 30%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 50%; left: 50%; transform: scale(1.3); background: var(--gold-yellow);">
- <i class="fas fa-dove" style="color: white;"></i>
- </div>
- <div class="crane" style="top: 45%; left: 70%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 60%; left: 20%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 70%; left: 40%;">
- <i class="fas fa-dove"></i>
- </div>
- <div class="crane" style="top: 65%; left: 60%;">
- <i class="fas fa-dove"></i>
- </div>
- </div>
- <p>采用候鸟迁徙路线图概念,匹配度高的单位以白鹤群聚呈现,生成青花瓷开片纹关系图谱</p>
- </div>
- </div>
- </div>
- </section>
-
- <!-- 共创空间 -->
- <section class="creative-space">
- <div class="section-header">
- <h2 class="section-title">共创空间</h2>
- <p class="section-desc">创新协作平台,融合江西传统文化元素,打造高效共创环境</p>
- </div>
-
- <div class="space-grid">
- <!-- 项目众包 -->
- <div class="space-card">
- <div class="space-header">
- <i class="fas fa-tasks space-icon"></i>
- <h3 class="space-title">项目众包</h3>
- </div>
- <div class="space-body">
- <p>以景德镇陶市为原型设计任务大厅,各类任务以陶瓷器皿形式展示</p>
-
- <div class="ceramic-items">
- <div class="ceramic-item vase">
- <i class="fas fa-book" style="font-size: 2rem; color: var(--primary-blue);"></i>
- <span style="margin-top: 10px;">传记任务</span>
- </div>
- <div class="ceramic-item bowl">
- <i class="fas fa-paint-brush" style="font-size: 2rem; color: var(--primary-blue);"></i>
- <span style="margin-top: 10px;">IP设计</span>
- </div>
- </div>
-
- <p>接单成功时触发"陶轮旋转"动画效果,增强交互体验</p>
-
- <button class="ocr-btn" style="width: 100%; margin-top: 1.5rem; background: var(--mountain-green);">
- 查看项目任务
- </button>
- </div>
- </div>
-
- <!-- 资源交易所 -->
- <div class="space-card">
- <div class="space-header">
- <i class="fas fa-exchange-alt space-icon"></i>
- <h3 class="space-title">资源交易所</h3>
- </div>
- <div class="space-body">
- <p>数据确权证书采用萍乡春锣造型设计,体现江西特色</p>
-
- <div style="width: 100%; height: 150px; background: url('https://images.unsplash.com/photo-1518895944437-3fefb0f6c0e9?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; border-radius: 10px; margin: 1.5rem 0; position: relative;">
- <div style="position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.8); padding: 0.5rem 1rem; border-radius: 20px; font-weight: bold; color: var(--primary-blue);">
- 文化数据确权证书
- </div>
- </div>
-
- <p>交易过程可视化"樟树药材炮制"步骤,清晰展示交易流程</p>
- </div>
- </div>
-
- <!-- 协同创作 -->
- <div class="space-card">
- <div class="space-header">
- <i class="fas fa-users space-icon"></i>
- <h3 class="space-title">协同创作</h3>
- </div>
- <div class="space-body">
- <p>编辑工具面板设计为江西木雕工具箱样式,体现传统工艺与现代技术的结合</p>
-
- <div style="display: flex; justify-content: space-around; margin: 1.5rem 0;">
- <div style="text-align: center;">
- <div style="width: 60px; height: 60px; background: #f8f6f0; border: 2px solid var(--gold-yellow); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto;">
- <i class="fas fa-user" style="color: var(--ceramic-red); font-size: 1.5rem;"></i>
- </div>
- <span style="display: block; margin-top: 10px;">编辑者A</span>
- </div>
- <div style="text-align: center;">
- <div style="width: 60px; height: 60px; background: #f8f6f0; border: 2px solid var(--gold-yellow); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto;">
- <i class="fas fa-user" style="color: var(--primary-blue); font-size: 1.5rem;"></i>
- </div>
- <span style="display: block; margin-top: 10px;">编辑者B</span>
- </div>
- <div style="text-align: center;">
- <div style="width: 60px; height: 60px; background: #f8f6f0; border: 2px solid var(--gold-yellow); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto;">
- <i class="fas fa-user" style="color: var(--mountain-green); font-size: 1.5rem;"></i>
- </div>
- <span style="display: block; margin-top: 10px;">编辑者C</span>
- </div>
- </div>
-
- <p>多人协作时显示不同赣傩面具光标,增强协作体验识别度</p>
- </div>
- </div>
- </div>
- </section>
-
- <!-- 奖励体系 -->
- <section class="reward-system">
- <div class="section-header">
- <h2 class="section-title">奖励体系</h2>
- <p class="section-desc">创新奖励机制,激发会员创作热情,展示优秀成果</p>
- </div>
-
- <div class="terrace-form">
- <h3 style="color: var(--primary-blue); margin-bottom: 1.5rem; text-align: center;">奖项申报系统</h3>
-
- <div class="form-group">
- <label class="form-label">奖项名称</label>
- <input type="text" class="form-input" placeholder="请输入奖项名称">
- <div class="ripple"></div>
- </div>
-
- <div class="form-group">
- <label class="form-label">申报单位/个人</label>
- <input type="text" class="form-input" placeholder="请输入申报单位或个人名称">
- <div class="ripple"></div>
- </div>
-
- <div class="form-group">
- <label class="form-label">项目描述</label>
- <textarea class="form-input" rows="3" placeholder="请描述申报项目内容"></textarea>
- <div class="ripple"></div>
- </div>
-
- <div class="form-group">
- <label class="form-label">上传证明材料</label>
- <input type="file" class="form-input">
- <div class="ripple"></div>
- </div>
-
- <button class="ocr-btn" style="width: 100%; background: var(--gold-yellow); color: var(--dark-charcoal);">
- 提交申报
- </button>
-
- <p style="text-align: center; margin-top: 1rem; color: #666;">AI辅助输入时推荐内容带"赣江涟漪"动效,提升用户体验</p>
- </div>
-
- <div class="section-header" style="padding-top: 3rem;">
- <h3 class="section-title">三维荣誉墙</h3>
- </div>
-
- <div class="pavilion-honor">
- <div class="pavilion-model">
- <div class="honor-item" style="top: 20px; left: 50px;">2023金奖</div>
- <div class="honor-item" style="top: 60px; right: 40px;">2022创新奖</div>
- <div class="honor-item" style="bottom: 80px; left: 30px;">2023银奖</div>
- <div class="honor-item" style="bottom: 40px; right: 60px;">2022贡献奖</div>
- <div class="honor-item" style="top: 100px; left: 100px;">2023最佳设计</div>
- </div>
- </div>
-
- <p style="text-align: center; margin-top: 1rem; color: #666;">鼠标滑动控制滕王阁楼层旋转查看不同年份奖项,沉浸式体验江西文化</p>
- </section>
-
- <!-- 页脚 -->
- <footer class="footer">
- <div class="footer-content">
- <div class="footer-column">
- <h3>网站导航</h3>
- <ul>
- <li><a href="#">首页</a></li>
- <li><a href="#">数智共创平台</a></li>
- <li><a href="#">协会核心业务</a></li>
- <li><a href="#">会员服务</a></li>
- <li><a href="#">支撑系统</a></li>
- </ul>
- </div>
- <div class="footer-column">
- <h3>资源中心</h3>
- <ul>
- <li><a href="#">文化资源库</a></li>
- <li><a href="#">智慧应用中心</a></li>
- <li><a href="#">共创社区</a></li>
- <li><a href="#">数字文创展廊</a></li>
- <li><a href="#">学术研究成果</a></li>
- </ul>
- </div>
- <div class="footer-column">
- <h3>联系我们</h3>
- <ul>
- <li><i class="fas fa-map-marker-alt"></i> 江西省南昌市红谷滩区</li>
- <li><i class="fas fa-phone"></i> 0791-12345678</li>
- <li><i class="fas fa-envelope"></i> contact@jxculture.cn</li>
- <li><i class="fab fa-weixin"></i> 江西数字文化</li>
- </ul>
- </div>
- <div class="footer-column">
- <h3>关注我们</h3>
- <div style="display: flex; gap: 1rem; margin-top: 1rem;">
- <div style="width: 100px; height: 100px; background: #555; display: flex; justify-content: center; align-items: center; color: #aaa;">
- 微信公众号
- </div>
- <div style="width: 100px; height: 100px; background: #555; display: flex; justify-content: center; align-items: center; color: #aaa;">
- 微博
- </div>
- </div>
- </div>
- </div>
- <div class="copyright">
- © 2023 江西数字文化发展协会 版权所有 | 赣ICP备12345678号
- </div>
- </footer>
- <script>
- // OCR证件识别交互
- document.getElementById('ocrBtn').addEventListener('click', function() {
- const lanterns = document.querySelectorAll('.lantern');
- const btn = this;
-
- btn.textContent = '识别中...';
- btn.disabled = true;
-
- // 模拟OCR识别过程
- setTimeout(() => {
- // 随机成功或失败
- const isSuccess = Math.random() > 0.3;
-
- if(isSuccess) {
- // 识别成功
- lanterns.forEach(lantern => {
- lantern.classList.add('active');
- });
- btn.textContent = '识别成功!';
- btn.style.background = '#4CAF50';
- } else {
- // 识别失败 - 显示碎瓷动画
- btn.textContent = '识别失败,重试';
- btn.style.background = '#f44336';
-
- // 创建碎瓷片动画
- const gate = document.querySelector('.ocr-gate');
- for(let i = 0; i < 8; i++) {
- const shard = document.createElement('div');
- shard.style.position = 'absolute';
- shard.style.width = '20px';
- shard.style.height = '20px';
- shard.style.background = 'white';
- shard.style.border = '1px solid #ccc';
- shard.style.borderRadius = '3px';
- shard.style.left = '50%';
- shard.style.top = '50%';
- shard.style.transform = 'translate(-50%, -50%)';
- shard.style.opacity = '0';
- shard.style.transition = 'all 1s ease';
-
- gate.appendChild(shard);
-
- // 动画
- setTimeout(() => {
- const angle = Math.random() * 360;
- const distance = 50 + Math.random() * 100;
- const x = Math.cos(angle * Math.PI / 180) * distance;
- const y = Math.sin(angle * Math.PI / 180) * distance;
-
- shard.style.opacity = '1';
- shard.style.transform = `translate(${x}px, ${y}px) rotate(${angle}deg)`;
- shard.style.opacity = '0';
- }, 10);
-
- // 移除碎片
- setTimeout(() => {
- if(gate.contains(shard)) {
- gate.removeChild(shard);
- }
- }, 1000);
- }
- }
-
- btn.disabled = false;
-
- // 重置按钮状态
- setTimeout(() => {
- if(isSuccess) {
- btn.textContent = '已认证';
- } else {
- btn.textContent = '上传证件';
- btn.style.background = '';
- }
- lanterns.forEach(lantern => lantern.classList.remove('active'));
- }, 3000);
- }, 1500);
- });
-
- // 单位对接中的白鹤悬浮效果
- const cranes = document.querySelectorAll('.crane');
- cranes.forEach(crane => {
- crane.addEventListener('mouseenter', function() {
- this.style.transform = 'scale(1.3)';
- this.style.zIndex = '10';
- });
-
- crane.addEventListener('mouseleave', function() {
- if(!this.style.background.includes('gold-yellow')) {
- this.style.transform = 'scale(1)';
- this.style.zIndex = '1';
- }
- });
- });
-
- // 表单涟漪效果增强
- const inputs = document.querySelectorAll('.form-input');
- inputs.forEach(input => {
- input.addEventListener('focus', function() {
- this.parentElement.querySelector('.ripple').style.transform = 'scaleX(1)';
- });
-
- input.addEventListener('blur', function() {
- this.parentElement.querySelector('.ripple').style.transform = 'scaleX(0)';
- });
- });
-
- // 滕王阁荣誉墙交互
- const pavilion = document.querySelector('.pavilion-model');
- pavilion.addEventListener('mousemove', function(e) {
- const rect = this.getBoundingClientRect();
- const centerX = rect.left + rect.width / 2;
- const centerY = rect.top + rect.height / 2;
-
- const rotateY = (e.clientX - centerX) / 20;
- const rotateX = (centerY - e.clientY) / 20;
-
- this.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`;
- });
-
- pavilion.addEventListener('mouseleave', function() {
- this.style.transform = 'perspective(1000px) rotateX(0) rotateY(0)';
- this.style.transition = 'transform 0.5s ease';
- setTimeout(() => {
- this.style.transition = '';
- }, 500);
- });
- </script>
- </body>
- </html>
|