-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmart-collab.html
More file actions
830 lines (747 loc) · 40.2 KB
/
smart-collab.html
File metadata and controls
830 lines (747 loc) · 40.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>智能中医共创圈 - 共创中医智能化未来 | 中医复兴</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
/* 产品页特殊样式 */
:root {
--product-primary: #8C52FF;
--product-secondary: #4682B4;
--product-accent: #FF2E93;
--bg-gradient: linear-gradient(135deg, var(--product-primary), var(--product-secondary));
}
.product-page {
background-color: #fff;
color: #333;
}
.product-hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 120px 20px 60px;
background: linear-gradient(to bottom, #f5f7fa, #e6ecf0);
}
.product-title {
font-size: 4rem;
margin-bottom: 1rem;
background: var(--bg-gradient);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
font-weight: 700;
}
.product-subtitle {
font-size: 1.5rem;
max-width: 800px;
margin: 0 auto 2rem;
color: #666;
}
.product-image-container {
max-width: 800px;
margin: 3rem auto;
position: relative;
}
.mission-section {
padding: 100px 0;
background-color: #fff;
}
.mission-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
.mission-text {
flex: 1;
min-width: 300px;
padding: 2rem;
}
.mission-image {
flex: 1;
min-width: 300px;
text-align: center;
}
.mission-title {
font-size: 2.5rem;
margin-bottom: 1.5rem;
background: var(--bg-gradient);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.mission-description {
font-size: 1.2rem;
color: #666;
margin-bottom: 2rem;
line-height: 1.6;
}
.collab-section {
padding: 100px 0;
background-color: #f9f9f9;
}
.plans-section {
padding: 100px 0;
text-align: center;
background-color: #fff;
}
.plans-title {
font-size: 2.5rem;
margin-bottom: 2rem;
}
.plans-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.plan-card {
flex: 1;
min-width: 250px;
max-width: 280px;
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: transform 0.3s, box-shadow 0.3s;
display: flex;
flex-direction: column;
position: relative;
border: 1px solid #eee;
}
.plan-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.plan-card.featured {
border: 2px solid var(--product-primary);
}
.featured-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: var(--product-primary);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 14px;
}
.plan-name {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--product-primary);
}
.plan-price {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
}
.plan-price small {
font-size: 1rem;
font-weight: normal;
color: #666;
}
.plan-features {
text-align: left;
margin-bottom: 2rem;
flex-grow: 1;
}
.plan-features li {
margin-bottom: 0.8rem;
padding-left: 1.5rem;
position: relative;
}
.plan-features li::before {
content: "✓";
color: var(--product-primary);
position: absolute;
left: 0;
}
.roadmap-section {
padding: 100px 0;
background-color: #f9f9f9;
}
.roadmap-title {
font-size: 2.5rem;
text-align: center;
margin-bottom: 4rem;
}
.roadmap-container {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}
.roadmap-item {
display: flex;
margin-bottom: 4rem;
position: relative;
}
.roadmap-number {
flex: 0 0 80px;
width: 80px;
height: 80px;
border-radius: 50%;
background: var(--bg-gradient);
color: white;
font-size: 2rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
z-index: 2;
}
.roadmap-content {
flex: 1;
background: white;
border-radius: 20px;
padding: 2rem;
margin-left: -40px;
padding-left: 60px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
z-index: 1;
}
.roadmap-content h3 {
font-size: 1.8rem;
margin-bottom: 1rem;
color: var(--product-primary);
}
.roadmap-content p {
color: #666;
margin-bottom: 1.5rem;
}
.roadmap-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 1rem;
}
.roadmap-list-item {
background: #f9f9f9;
padding: 1rem;
border-radius: 10px;
}
.join-section {
padding: 100px 0;
text-align: center;
background: var(--bg-gradient);
color: white;
}
.join-container {
max-width: 800px;
margin: 0 auto;
padding: 0 20px;
}
.join-title {
font-size: 3rem;
margin-bottom: 1.5rem;
}
.join-description {
font-size: 1.2rem;
margin-bottom: 3rem;
opacity: 0.9;
}
.support-section {
padding: 100px 0;
background-color: #fff;
}
.support-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.support-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
}
.support-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.support-card {
background: white;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: transform 0.3s, box-shadow 0.3s;
}
.support-more {
background: #f9f9f9;
border-radius: 20px;
padding: 2.5rem;
margin-bottom: 3rem;
}
@media (max-width: 768px) {
.product-title {
font-size: 2.5rem;
}
.mission-container, .roadmap-item {
flex-direction: column;
}
.roadmap-number {
margin-bottom: 1rem;
}
.roadmap-content {
margin-left: 0;
padding-left: 2rem;
}
}
</style>
</head>
<body class="product-page">
<header>
<div class="header-container">
<div class="logo">
<svg width="60" height="60" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="45" fill="none" stroke="var(--trad-brown)" stroke-width="2"/>
<path d="M50,5 C50,50 95,50 50,95 C50,50 5,50 50,5" fill="var(--trad-brown)" opacity="0.7">
<animate attributeName="opacity" values="0.5;0.7;0.5" dur="3s" repeatCount="indefinite" />
</path>
<circle cx="50" cy="25" r="8" fill="var(--trad-blue)"/>
<circle cx="50" cy="75" r="8" fill="var(--trad-green)"/>
</svg>
<span>中医复兴</span>
</div>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<nav class="main-nav">
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="index.html#about">关于我们</a></li>
<li><a href="index.html#tools">产品</a></li>
<li><a href="index.html#community">社区</a></li>
<li><a href="index.html#help">支持</a></li>
</ul>
</nav>
</div>
</header>
<main>
<!-- Hero Section -->
<section class="product-hero">
<h1 class="product-title">智能中医共创圈</h1>
<p class="product-subtitle">汇聚中医文化爱好者与技术专家,共同助力中医智能化发展的未来</p>
<a href="#join-us" class="btn primary-btn">立即参与</a>
<div class="product-image-container">
<svg width="100%" height="400" viewBox="0 0 800 400">
<defs>
<linearGradient id="collabGradient" x1="0%" y1="0%" x2="100%" y2="0%">
<stop offset="0%" style="stop-color:#8C52FF;stop-opacity:1" />
<stop offset="100%" style="stop-color:#4682B4;stop-opacity:1" />
</linearGradient>
</defs>
<!-- 中心圆形代表共创圈 -->
<circle cx="400" cy="200" r="100" fill="none" stroke="url(#collabGradient)" stroke-width="8" />
<!-- 连接线代表合作关系 -->
<path d="M400,100 L350,50" stroke="#8C52FF" stroke-width="3" />
<path d="M400,100 L450,50" stroke="#4682B4" stroke-width="3" />
<path d="M490,200 L550,200" stroke="#8C52FF" stroke-width="3" />
<path d="M400,300 L350,350" stroke="#4682B4" stroke-width="3" />
<path d="M400,300 L450,350" stroke="#8C52FF" stroke-width="3" />
<path d="M310,200 L250,200" stroke="#4682B4" stroke-width="3" />
<!-- 代表不同参与者的圆形 -->
<circle cx="350" cy="50" r="30" fill="#8C52FF" opacity="0.8" />
<circle cx="450" cy="50" r="30" fill="#4682B4" opacity="0.8" />
<circle cx="550" cy="200" r="30" fill="#8C52FF" opacity="0.8" />
<circle cx="350" cy="350" r="30" fill="#4682B4" opacity="0.8" />
<circle cx="450" cy="350" r="30" fill="#8C52FF" opacity="0.8" />
<circle cx="250" cy="200" r="30" fill="#4682B4" opacity="0.8" />
<!-- 圆形内的图标 -->
<text x="350" y="55" text-anchor="middle" fill="white" font-size="16">医生</text>
<text x="450" y="55" text-anchor="middle" fill="white" font-size="16">技术</text>
<text x="550" y="205" text-anchor="middle" fill="white" font-size="16">研究</text>
<text x="350" y="355" text-anchor="middle" fill="white" font-size="16">患者</text>
<text x="450" y="355" text-anchor="middle" fill="white" font-size="16">爱好者</text>
<text x="250" y="205" text-anchor="middle" fill="white" font-size="16">学者</text>
<!-- 中心文字 -->
<text x="400" y="205" text-anchor="middle" fill="#333" font-size="24" font-weight="bold">智能中医</text>
<text x="400" y="235" text-anchor="middle" fill="#333" font-size="24" font-weight="bold">共创圈</text>
<!-- 旋转动画 -->
<animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 400 200" to="360 400 200" dur="60s" repeatCount="indefinite" />
</svg>
</div>
</section>
<!-- 使命与愿景 Section -->
<section class="mission-section">
<div class="section-header">
<h2>使命与愿景</h2>
<p>构建合作、开放、共赢的平台,推动中医文化复兴和智能化发展</p>
</div>
<div class="mission-container">
<div class="mission-text">
<h2 class="mission-title">项目背景</h2>
<p class="mission-description">生海王,一名出身于农村的码农,拥有15年医疗行业经验。经历疾病折磨后,深刻认识到中医文化的价值和潜力。在35岁这个人生转折点,受到蔡磊、华为任老爷子等人的启发,决定投身于这项能够造福社会的事业。</p>
<h2 class="mission-title">我们的使命</h2>
<p class="mission-description">利用现代科技手段,如穿戴设备和智能手机,收集脉搏、PPG等健康数据,为个人提供个性化的健康管理,为中医研究提供坚实的数据基础,推动中医智能化的发展。</p>
<a href="#join-us" class="btn secondary-btn">了解更多</a>
</div>
<div class="mission-image">
<svg width="100%" height="300" viewBox="0 0 400 300">
<!-- 五行相生相克图形 -->
<polygon points="200,50 350,150 300,250 100,250 50,150" fill="none" stroke="#333" stroke-width="2"/>
<circle cx="200" cy="50" r="30" fill="#556B2F" opacity="0.8"><title>木</title></circle>
<circle cx="350" cy="150" r="30" fill="#FF4500" opacity="0.8"><title>火</title></circle>
<circle cx="300" cy="250" r="30" fill="#DAA520" opacity="0.8"><title>土</title></circle>
<circle cx="100" cy="250" r="30" fill="#B87333" opacity="0.8"><title>金</title></circle>
<circle cx="50" cy="150" r="30" fill="#4682B4" opacity="0.8"><title>水</title></circle>
<text x="200" y="55" text-anchor="middle" fill="white">木</text>
<text x="350" y="155" text-anchor="middle" fill="white">火</text>
<text x="300" y="255" text-anchor="middle" fill="white">土</text>
<text x="100" y="255" text-anchor="middle" fill="white">金</text>
<text x="50" y="155" text-anchor="middle" fill="white">水</text>
<!-- 相生关系 -->
<path d="M220,65 L330,135" stroke="green" stroke-width="2" marker-end="url(#arrow)">
<animate attributeName="stroke-opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite"/>
</path>
<path d="M335,175 L295,230" stroke="green" stroke-width="2" marker-end="url(#arrow)">
<animate attributeName="stroke-opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite" begin="0.6s"/>
</path>
<path d="M275,250 L125,250" stroke="green" stroke-width="2" marker-end="url(#arrow)">
<animate attributeName="stroke-opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite" begin="1.2s"/>
</path>
<path d="M85,235 L65,175" stroke="green" stroke-width="2" marker-end="url(#arrow)">
<animate attributeName="stroke-opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite" begin="1.8s"/>
</path>
<path d="M70,135 L180,65" stroke="green" stroke-width="2" marker-end="url(#arrow)">
<animate attributeName="stroke-opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite" begin="2.4s"/>
</path>
<defs>
<marker id="arrow" viewBox="0 0 10 10" refX="5" refY="5"
markerWidth="6" markerHeight="6"
orient="auto-start-reverse">
<path d="M 0 0 L 10 5 L 0 10 z" fill="green"/>
</marker>
</defs>
</svg>
</div>
</div>
</section>
<!-- 参与方式 Section -->
<section id="join-us" class="plans-section">
<h2 class="plans-title">参与方式</h2>
<p style="max-width: 800px; margin: 0 auto 3rem; color: #666;">我们提供多种参与方式,以满足不同用户的需求,共同助力中医智能化发展</p>
<div class="plans-container">
<div class="plan-card">
<h3 class="plan-name">随喜版</h3>
<div class="plan-price">无限制</div>
<ul class="plan-features">
<li>基础智能终端使用权</li>
<li>基础工具会员服务(1年)</li>
<li>社区讨论参与</li>
<li>贡献荣誉墙展示</li>
<li>数据共享功能</li>
</ul>
<a href="#" class="btn secondary-btn">选择此版本</a>
</div>
<div class="plan-card">
<h3 class="plan-name">基础版</h3>
<div class="plan-price">¥299 <small>元</small></div>
<ul class="plan-features">
<li>标准智能终端使用权</li>
<li>工具会员服务(1年)</li>
<li>灵石兑换专病研究报告</li>
<li>社区优先参与权</li>
<li>数据共享功能</li>
<li>贡献荣誉墙展示</li>
</ul>
<a href="#" class="btn secondary-btn">选择此版本</a>
</div>
<div class="plan-card featured">
<div class="featured-badge">最受欢迎</div>
<h3 class="plan-name">情侣版</h3>
<div class="plan-price">¥699 <small>元</small></div>
<ul class="plan-features">
<li>双人智能终端使用权</li>
<li>高级工具会员服务(1年)</li>
<li>灵石兑换专病研究报告(双倍)</li>
<li>社区优先参与权</li>
<li>数据共享与对比分析</li>
<li>贡献荣誉墙特殊展示</li>
<li>专属情侣健康分析报告</li>
</ul>
<a href="#" class="btn primary-btn">选择此版本</a>
</div>
<div class="plan-card">
<h3 class="plan-name">家庭版</h3>
<div class="plan-price">¥999 <small>元</small></div>
<ul class="plan-features">
<li>家庭智能终端使用权(多人)</li>
<li>高级工具会员服务(1年)</li>
<li>灵石兑换专病研究报告(家庭版)</li>
<li>社区VIP参与权</li>
<li>家庭数据共享与分析</li>
<li>贡献荣誉墙家庭展示</li>
<li>家庭健康管理方案</li>
</ul>
<a href="#" class="btn secondary-btn">选择此版本</a>
</div>
</div>
</section>
<!-- 支持我们 Section -->
<section class="support-section" id="support-us">
<div class="section-header">
<h2>支持我们</h2>
<p>多种方式参与,共同助力中医智能化发展</p>
</div>
<div class="support-container" style="max-width: 1200px; margin: 0 auto; padding: 0 20px;">
<div class="support-intro" style="text-align: center; max-width: 800px; margin: 0 auto 3rem;">
<p style="font-size: 1.2rem; color: #666; margin-bottom: 2rem;">我们提供多种参与方式,无论您是技术专家、中医爱好者还是关心健康的普通人,都能找到适合您的支持方式。您的每一份支持都将助力中医智能化的未来发展。</p>
</div>
<div class="support-grid" style="display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; margin-bottom: 3rem;">
<div class="support-card" style="background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; align-items: center; margin-bottom: 1.5rem;">
<div style="width: 60px; height: 60px; border-radius: 50%; background: var(--bg-gradient); display: flex; justify-content: center; align-items: center; margin-right: 1rem;">
<i class="fas fa-share-alt" style="font-size: 24px; color: white;"></i>
</div>
<h3 style="font-size: 1.5rem; margin: 0;">社交媒体宣传</h3>
</div>
<p style="color: #666; margin-bottom: 1.5rem;">转发我们的故事、文章和视频,在社交媒体和直播平台支持点赞,帮助扩大项目影响力。</p>
<div style="font-weight: 500; color: var(--product-primary);">获得回报:</div>
<ul style="color: #666; padding-left: 1.5rem; margin-top: 0.5rem;">
<li>社交媒体互动积分</li>
<li>虚拟徽章</li>
<li>参与专属活动的机会</li>
</ul>
</div>
<div class="support-card" style="background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; align-items: center; margin-bottom: 1.5rem;">
<div style="width: 60px; height: 60px; border-radius: 50%; background: var(--bg-gradient); display: flex; justify-content: center; align-items: center; margin-right: 1rem;">
<i class="fas fa-gamepad" style="font-size: 24px; color: white;"></i>
</div>
<h3 style="font-size: 1.5rem; margin: 0;">使用我们的游戏</h3>
</div>
<p style="color: #666; margin-bottom: 1.5rem;">下载并使用我们的中医益智游戏,点击游戏中的广告,寓教于乐中支持项目发展。</p>
<div style="font-weight: 500; color: var(--product-primary);">获得回报:</div>
<ul style="color: #666; padding-left: 1.5rem; margin-top: 0.5rem;">
<li>游戏内积分与奖励</li>
<li>虚拟物品与道具</li>
<li>游戏排行榜特殊称号</li>
</ul>
</div>
<div class="support-card" style="background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; align-items: center; margin-bottom: 1.5rem;">
<div style="width: 60px; height: 60px; border-radius: 50%; background: var(--bg-gradient); display: flex; justify-content: center; align-items: center; margin-right: 1rem;">
<i class="fas fa-mobile-alt" style="font-size: 24px; color: white;"></i>
</div>
<h3 style="font-size: 1.5rem; margin: 0;">使用健康工具APP</h3>
</div>
<p style="color: #666; margin-bottom: 1.5rem;">下载使用我们的健康管理工具和中医概念应用,体验个性化健康管理,提供宝贵反馈。</p>
<div style="font-weight: 500; color: var(--product-primary);">获得回报:</div>
<ul style="color: #666; padding-left: 1.5rem; margin-top: 0.5rem;">
<li>APP内积分与成就系统</li>
<li>个性化健康报告</li>
<li>高级功能免费试用</li>
</ul>
</div>
<div class="support-card" style="background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; align-items: center; margin-bottom: 1.5rem;">
<div style="width: 60px; height: 60px; border-radius: 50%; background: var(--bg-gradient); display: flex; justify-content: center; align-items: center; margin-right: 1rem;">
<i class="fas fa-ring" style="font-size: 24px; color: white;"></i>
</div>
<h3 style="font-size: 1.5rem; margin: 0;">购买智能穿戴设备</h3>
</div>
<p style="color: #666; margin-bottom: 1.5rem;">购买我们的脉康宝智能戒指、手表等穿戴设备,体验中医智能化带来的健康管理革新。</p>
<div style="font-weight: 500; color: var(--product-primary);">获得回报:</div>
<ul style="color: #666; padding-left: 1.5rem; margin-top: 0.5rem;">
<li>设备专属会员特权</li>
<li>优先体验新功能</li>
<li>专属健康咨询服务</li>
</ul>
<a href="smart-ring.html" class="btn secondary-btn" style="margin-top: 1rem;">了解脉康宝</a>
</div>
<div class="support-card" style="background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; align-items: center; margin-bottom: 1.5rem;">
<div style="width: 60px; height: 60px; border-radius: 50%; background: var(--bg-gradient); display: flex; justify-content: center; align-items: center; margin-right: 1rem;">
<i class="fas fa-hand-holding-heart" style="font-size: 24px; color: white;"></i>
</div>
<h3 style="font-size: 1.5rem; margin: 0;">资金赞助</h3>
</div>
<p style="color: #666; margin-bottom: 1.5rem;">通过资金支持,帮助项目更好地推进研究、技术开发和社区建设,加速中医智能化发展。</p>
<div style="font-weight: 500; color: var(--product-primary);">获得回报:</div>
<ul style="color: #666; padding-left: 1.5rem; margin-top: 0.5rem;">
<li>赞助者特别称号</li>
<li>专属感谢与定制礼品</li>
<li>优先体验新产品机会</li>
</ul>
<a href="#join-us" class="btn primary-btn" style="margin-top: 1rem;">立即赞助</a>
</div>
<div class="support-card" style="background: white; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s;">
<div style="display: flex; align-items: center; margin-bottom: 1.5rem;">
<div style="width: 60px; height: 60px; border-radius: 50%; background: var(--bg-gradient); display: flex; justify-content: center; align-items: center; margin-right: 1rem;">
<i class="fas fa-database" style="font-size: 24px; color: white;"></i>
</div>
<h3 style="font-size: 1.5rem; margin: 0;">贡献健康数据</h3>
</div>
<p style="color: #666; margin-bottom: 1.5rem;">签署数据贡献协议,安全地分享您的健康数据用于AI训练,助力中医智能化研究的进步。</p>
<div style="font-weight: 500; color: var(--product-primary);">获得回报:</div>
<ul style="color: #666; padding-left: 1.5rem; margin-top: 0.5rem;">
<li>数据贡献荣誉徽章</li>
<li>专病研究报告免费获取</li>
<li>会员服务折扣与延期</li>
</ul>
</div>
</div>
<div class="support-more" style="background: #f9f9f9; border-radius: 20px; padding: 2.5rem; margin-bottom: 3rem;">
<h3 style="font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center;">更多参与方式</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem;">
<div>
<h4 style="font-size: 1.3rem; color: var(--product-primary); margin-bottom: 1rem;"><i class="fas fa-users" style="margin-right: 0.5rem;"></i> 参与社区维护</h4>
<p style="color: #666;">参与社区讨论、分享中医健康管理经验、协助其他用户解决问题,成为社区的活跃贡献者。</p>
</div>
<div>
<h4 style="font-size: 1.3rem; color: var(--product-primary); margin-bottom: 1rem;"><i class="fas fa-code" style="margin-right: 0.5rem;"></i> 参与技术研发</h4>
<p style="color: #666;">开发者和技术爱好者参与项目的技术研发、算法优化或工具开发,共同推动中医智能化工具的创新。</p>
</div>
<div>
<h4 style="font-size: 1.3rem; color: var(--product-primary); margin-bottom: 1rem;"><i class="fas fa-flask" style="margin-right: 0.5rem;"></i> 参与研究项目</h4>
<p style="color: #666;">参与中医健康相关的开放数据集构建与研究项目,探索中医与现代健康管理之间的科学联系。</p>
</div>
</div>
</div>
<div style="text-align: center; max-width: 700px; margin: 0 auto 2rem;">
<h3 style="font-size: 1.8rem; margin-bottom: 1.5rem;">寻找适合您的参与方式</h3>
<p style="color: #666; margin-bottom: 2rem;">无论您选择何种方式支持我们,都将成为中医智能化发展的重要力量。我们欢迎各种创新性的合作方式,共同推动中医文化的传承与创新。</p>
<a href="#join-us" class="btn primary-btn">立即参与</a>
</div>
</div>
</section>
<!-- 项目规划 Section -->
<section class="roadmap-section">
<h2 class="roadmap-title">项目规划</h2>
<div class="roadmap-container">
<div class="roadmap-item">
<div class="roadmap-number">1</div>
<div class="roadmap-content">
<h3>工具开发与数据采集管理</h3>
<p>开发一系列智能工具,帮助用户了解自身健康状况并收集相关数据</p>
<div class="roadmap-list">
<div class="roadmap-list-item">五行管理</div>
<div class="roadmap-list-item">症状管理</div>
<div class="roadmap-list-item">疗效管理</div>
<div class="roadmap-list-item">湿气管理</div>
<div class="roadmap-list-item">排毒管理</div>
</div>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-number">2</div>
<div class="roadmap-content">
<h3>算法开发</h3>
<p>基于收集的数据,开发中医智能诊断和分析算法</p>
<div class="roadmap-list">
<div class="roadmap-list-item">五脏数据分析算法</div>
<div class="roadmap-list-item">智能辨证算法</div>
<div class="roadmap-list-item">个性化健康建议</div>
</div>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-number">3</div>
<div class="roadmap-content">
<h3>开放数据建设</h3>
<p>构建中医相关开放数据集,推动中医研究和开发</p>
<div class="roadmap-list">
<div class="roadmap-list-item">脉搏波开放数据集</div>
<div class="roadmap-list-item">病症方单病开放数据库</div>
<div class="roadmap-list-item">科研数据开放合作</div>
</div>
</div>
</div>
<div class="roadmap-item">
<div class="roadmap-number">4</div>
<div class="roadmap-content">
<h3>社群运营与合作生态</h3>
<p>构建活跃的中医爱好者和专业人士社区,促进知识交流与合作</p>
<div class="roadmap-list">
<div class="roadmap-list-item">中医爱好者社群</div>
<div class="roadmap-list-item">专业人士交流平台</div>
<div class="roadmap-list-item">医疗机构合作</div>
<div class="roadmap-list-item">科研机构合作</div>
</div>
</div>
</div>
</div>
</section>
<!-- 加入我们 Section -->
<section class="join-section">
<div class="join-container">
<h2 class="join-title">共创中医智能化的未来</h2>
<p class="join-description">我们诚邀每一位热爱中国传统文化、关心中医发展的同胞加入我们,共同助力中医智能化发展的未来。这是一个前人栽树后人乘凉的事业,需要您的支持和参与。</p>
<a href="#join-us" class="btn" style="background: white; color: var(--product-primary); font-weight: 600; padding: 15px 40px; border-radius: 50px; display: inline-block; text-decoration: none;">立即参与</a>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-logo">
<svg width="40" height="40" viewBox="0 0 100 100">
<circle cx="50" cy="50" r="45" fill="none" stroke="var(--trad-brown)" stroke-width="2"/>
<path d="M50,5 C50,50 95,50 50,95 C50,50 5,50 50,5" fill="var(--trad-brown)" opacity="0.7"/>
<circle cx="50" cy="25" r="8" fill="var(--trad-blue)"/>
<circle cx="50" cy="75" r="8" fill="var(--trad-green)"/>
</svg>
<span>中医复兴</span>
</div>
<div class="footer-links">
<div class="footer-section">
<h4>关于我们</h4>
<ul>
<li><a href="index.html#about">我们的故事</a></li>
<li><a href="index.html#about">团队介绍</a></li>
<li><a href="index.html#values">价值观与愿景</a></li>
<li><a href="index.html#join">加入我们</a></li>
</ul>
</div>
<div class="footer-section">
<h4>共创圈</h4>
<ul>
<li><a href="#join-us">参与方式</a></li>
<li><a href="#support-us">支持我们</a></li>
<li><a href="#roadmap">项目规划</a></li>
<li><a href="smart-ring.html">脉康宝智能戒指</a></li>
</ul>
</div>
<div class="footer-section">
<h4>社区与支持</h4>
<ul>
<li><a href="index.html#community">社区活动</a></li>
<li><a href="index.html#support">支持形式</a></li>
<li><a href="index.html#help">联系我们</a></li>
<li><a href="#faq">常见问题</a></li>
<li><a href="#">隐私政策</a></li>
</ul>
</div>
<div class="footer-section">
<h4>更多资源</h4>
<ul>
<li><a href="index.html#games">游戏与娱乐</a></li>
<li><a href="index.html#tools">工具与应用</a></li>
<li><a href="index.html#simulators">模拟与开放数据</a></li>
<li><a href="index.html#opensource">开源项目</a></li>
<li><a href="index.html#news">新闻与活动</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 中医复兴开放生态社区 版权所有</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>