This repository was archived by the owner on Aug 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
355 lines (311 loc) · 11.3 KB
/
index.html
File metadata and controls
355 lines (311 loc) · 11.3 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>복약 관리 앱 포지셔닝 맵</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
margin: 0;
padding: 20px;
min-height: 100vh;
}
.container {
max-width: 1000px;
margin: 0 auto;
background: white;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
padding: 30px;
}
.title {
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
font-size: 24px;
font-weight: bold;
}
.positioning-map {
position: relative;
width: 800px;
height: 600px;
margin: 0 auto;
border: 2px solid #34495e;
background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%),
linear-gradient(-45deg, #f8f9fa 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #f8f9fa 75%),
linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
background-size: 20px 20px;
background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}
.axis {
position: absolute;
background: #2c3e50;
}
.x-axis {
width: 100%;
height: 2px;
top: 50%;
left: 0;
transform: translateY(-50%);
}
.y-axis {
width: 2px;
height: 100%;
left: 50%;
top: 0;
transform: translateX(-50%);
}
.axis-label {
position: absolute;
font-weight: bold;
color: #2c3e50;
font-size: 14px;
text-align: center;
}
.x-label-left {
left: 10px;
top: 50%;
transform: translateY(-50%);
writing-mode: vertical-rl;
text-orientation: mixed;
}
.x-label-right {
right: 10px;
top: 50%;
transform: translateY(-50%);
writing-mode: vertical-lr;
text-orientation: mixed;
}
.y-label-top {
top: 10px;
left: 50%;
transform: translateX(-50%);
}
.y-label-bottom {
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}
.app-dot {
position: absolute;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
font-weight: bold;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
border: 2px solid white;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.app-dot:hover {
transform: scale(1.2);
z-index: 10;
}
.our-app {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
color: white;
font-size: 12px;
line-height: 1.2;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}
.competitor {
width: 50px;
height: 50px;
background: #3498db;
color: white;
}
.senior-focused {
background: linear-gradient(135deg, #2ecc71, #27ae60);
}
.health-comprehensive {
background: linear-gradient(135deg, #9b59b6, #8e44ad);
}
.basic-reminder {
background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}
.tooltip {
position: absolute;
background: #2c3e50;
color: white;
padding: 8px 12px;
border-radius: 8px;
font-size: 12px;
white-space: nowrap;
z-index: 20;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
bottom: 100%;
left: 50%;
transform: translateX(-50%) translateY(-5px);
}
.tooltip::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
border: 5px solid transparent;
border-top-color: #2c3e50;
}
.app-dot:hover .tooltip {
opacity: 1;
}
.legend {
margin-top: 30px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 15px;
}
.legend-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px;
background: #f8f9fa;
border-radius: 10px;
}
.legend-dot {
width: 20px;
height: 20px;
border-radius: 50%;
flex-shrink: 0;
}
.insights {
margin-top: 30px;
background: #e8f4fd;
border-radius: 15px;
padding: 20px;
border-left: 5px solid #3498db;
}
.insights h3 {
color: #2c3e50;
margin: 0 0 15px 0;
}
.insights ul {
color: #34495e;
line-height: 1.6;
}
</style>
</head>
<body>
<div class="container">
<div class="title">AI 기반 시니어 복약 관리 앱 포지셔닝 맵</div>
<div class="positioning-map">
<!-- 축 -->
<div class="axis x-axis"></div>
<div class="axis y-axis"></div>
<!-- 축 라벨 -->
<div class="axis-label x-label-left">개인 중심</div>
<div class="axis-label x-label-right">보호자-환자<br>연동 중심</div>
<div class="axis-label y-label-top">고도화된 약물 상호작용<br>및 AI 기능</div>
<div class="axis-label y-label-bottom">기본 알림 및<br>기록 기능</div>
<!-- 우리 앱 (오른쪽 상단) -->
<div class="app-dot our-app" style="top: 80px; right: 80px;">
AI 시니어<br>복약관리
<div class="tooltip">약물 상호작용 AI + 보호자 실시간 모니터링</div>
</div>
<!-- 경쟁사들 -->
<!-- 메디세이프 (왼쪽 중간) -->
<div class="app-dot competitor" style="top: 250px; left: 150px;">
메디세이프
<div class="tooltip">복약친구 알림 기능</div>
</div>
<!-- MyTherapy (왼쪽 중간 위) -->
<div class="app-dot competitor health-comprehensive" style="top: 180px; left: 120px;">
MyTherapy
<div class="tooltip">종합 건강관리 + 리포트</div>
</div>
<!-- 필로 (왼쪽 중간) -->
<div class="app-dot competitor health-comprehensive" style="top: 220px; left: 180px;">
필로
<div class="tooltip">복약관리 + 건강리포트</div>
</div>
<!-- 필라이즈 (왼쪽 중간 위) -->
<div class="app-dot competitor health-comprehensive" style="top: 150px; left: 200px;">
필라이즈
<div class="tooltip">AI 다이어트 코치 + 전문가 상담</div>
</div>
<!-- 필리케어 (왼쪽 중간 아래) -->
<div class="app-dot competitor" style="top: 320px; left: 160px;">
필리케어
<div class="tooltip">영양제 관리 + 커뮤니티</div>
</div>
<!-- 의약품검색 (중간 위) -->
<div class="app-dot competitor" style="top: 120px; left: 350px;">
의약품<br>검색
<div class="tooltip">의약품 정보 검색</div>
</div>
<!-- 약픽업 (중간) -->
<div class="app-dot competitor" style="top: 280px; left: 320px;">
약픽업
<div class="tooltip">약국 수령 + 약사 상담</div>
</div>
<!-- 약알림 태양이 (왼쪽 아래) -->
<div class="app-dot competitor basic-reminder" style="top: 420px; left: 200px;">
태양이
<div class="tooltip">기본 알림 + 가상전화</div>
</div>
<!-- 와플렛공공 (오른쪽 중간 아래) -->
<div class="app-dot competitor senior-focused" style="top: 350px; right: 120px;">
와플렛<br>공공
<div class="tooltip">시니어 특화 + SOS 호출</div>
</div>
<!-- 스마트DUR (중간 위) -->
<div class="app-dot competitor" style="top: 140px; left: 400px;">
스마트<br>DUR
<div class="tooltip">약물 상호작용 검색</div>
</div>
<!-- 삼성헬스케어 (오른쪽 중간) -->
<div class="app-dot competitor health-comprehensive" style="top: 280px; right: 150px;">
삼성<br>헬스케어
<div class="tooltip">가족 연동 헬스케어</div>
</div>
</div>
<div class="legend">
<div class="legend-item">
<div class="legend-dot" style="background: linear-gradient(135deg, #ff6b6b, #ee5a24);"></div>
<span><strong>Pillink</strong></span>
</div>
<div class="legend-item">
<div class="legend-dot" style="background: #3498db;"></div>
<span><strong>일반 복약관리</strong></span>
</div>
<div class="legend-item">
<div class="legend-dot" style="background: linear-gradient(135deg, #2ecc71, #27ae60);"></div>
<span><strong>시니어 특화</strong></span>
</div>
<div class="legend-item">
<div class="legend-dot" style="background: linear-gradient(135deg, #9b59b6, #8e44ad);"></div>
<span><strong>종합 헬스케어</strong></span>
</div>
<div class="legend-item">
<div class="legend-dot" style="background: linear-gradient(135deg, #95a5a6, #7f8c8d);"></div>
<span><strong>기본 알림</strong></span>
</div>
</div>
<div class="insights">
<h3>🎯 포지셔닝 인사이트</h3>
<ul>
<li><strong>블루오션 포지셔닝:</strong> 우리 앱은 "보호자-환자 연동"과 "고도화된 AI 약물 상호작용" 영역에서 독점적 위치를 차지하고 있습니다.</li>
<li><strong>차별화 요소:</strong> 기존 앱들은 개인 중심이거나 기본적인 가족 연동에 머물러 있는 반면, 우리는 실시간 약물 상호작용 모니터링을 제공합니다.</li>
<li><strong>시니어 시장 공략:</strong> 와플렛 공공을 제외하면 진정한 시니어 특화 + 보호자 연동 서비스가 부재한 상황입니다.</li>
<li><strong>기술적 우위:</strong> 스마트 DUR이 약물 상호작용을 다루지만, 우리는 여기에 실시간 보호자 알림까지 결합했습니다.</li>
</ul>
</div>
</div>
</body>
</html>