yhzheng1031 commited on
Commit
d7ceb92
·
verified ·
1 Parent(s): fdeca5f

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. code/1470/1470_10.html +266 -0
  2. code/1470/1470_11.html +239 -0
  3. code/1470/1470_3.html +280 -0
  4. code/1470/1470_4.html +174 -0
  5. code/1470/1470_5.html +243 -0
  6. code/1470/1470_6.html +243 -0
  7. code/1470/1470_7.html +164 -0
  8. code/1470/1470_8.html +246 -0
  9. code/1470/1470_9.html +223 -0
  10. code/14700/14700_0.html +393 -0
  11. code/14700/14700_1.html +345 -0
  12. code/14700/14700_2.html +150 -0
  13. code/14700/14700_3.html +249 -0
  14. code/14700/14700_4.html +267 -0
  15. code/14700/14700_5.html +340 -0
  16. code/14700/14700_6.html +374 -0
  17. code/14700/14700_7.html +322 -0
  18. code/14701/14701_0.html +236 -0
  19. code/14701/14701_1.html +313 -0
  20. code/14701/14701_2.html +296 -0
  21. code/14701/14701_3.html +245 -0
  22. code/14701/14701_4.html +302 -0
  23. code/14701/14701_5.html +369 -0
  24. code/14701/14701_6.html +381 -0
  25. code/14701/14701_7.html +406 -0
  26. code/14701/14701_8.html +441 -0
  27. code/14702/14702_0.html +341 -0
  28. code/14702/14702_1.html +350 -0
  29. code/14703/14703_0.html +319 -0
  30. code/14703/14703_1.html +270 -0
  31. code/14703/14703_2.html +276 -0
  32. code/14703/14703_3.html +450 -0
  33. code/14703/14703_4.html +297 -0
  34. code/14704/14704_0.html +245 -0
  35. code/14704/14704_1.html +276 -0
  36. code/14704/14704_2.html +288 -0
  37. code/14704/14704_3.html +422 -0
  38. code/14704/14704_4.html +371 -0
  39. code/14705/14705_0.html +302 -0
  40. code/14705/14705_1.html +274 -0
  41. code/14705/14705_2.html +222 -0
  42. code/14706/14706_0.html +356 -0
  43. code/14706/14706_1.html +290 -0
  44. code/14707/14707_0.html +267 -0
  45. code/14707/14707_1.html +354 -0
  46. code/14707/14707_2.html +262 -0
  47. code/14709/14709_0.html +246 -0
  48. code/14709/14709_1.html +291 -0
  49. code/14709/14709_2.html +168 -0
  50. code/14710/14710_0.html +313 -0
code/1470/1470_10.html ADDED
@@ -0,0 +1,266 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Calendar UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
10
+ background: #000000; color: #FFFFFF;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position: absolute; top: 0; left: 0; width: 100%; height: 120px;
16
+ display: flex; align-items: center; justify-content: space-between;
17
+ padding: 0 36px; box-sizing: border-box; color: #FFF; font-weight: 500; font-size: 44px;
18
+ }
19
+ .status-right { display: flex; gap: 24px; align-items: center; }
20
+ .status-icon svg { width: 48px; height: 48px; fill: none; stroke: #FFFFFF; stroke-width: 4; }
21
+
22
+ /* Header */
23
+ .header {
24
+ position: absolute; top: 120px; left: 0; width: 100%; height: 140px;
25
+ display: flex; align-items: center; padding: 0 36px; box-sizing: border-box;
26
+ }
27
+ .header-left, .header-right { display: flex; align-items: center; gap: 36px; }
28
+ .header-left { flex: 1; }
29
+ .tab {
30
+ font-size: 56px; font-weight: 700; margin: 0 20px; opacity: 0.9;
31
+ }
32
+ .tab.inactive { color: #777777; font-weight: 700; }
33
+ .tab-indicator {
34
+ position: absolute; left: 180px; top: 220px; width: 140px; height: 8px; background: #3D5AFE; border-radius: 4px;
35
+ }
36
+ .icon-btn svg { width: 64px; height: 64px; stroke: #FFFFFF; stroke-width: 4; fill: none; }
37
+
38
+ /* Month header */
39
+ .month-header {
40
+ position: absolute; top: 280px; left: 36px; right: 36px; height: 100px;
41
+ display: flex; align-items: center; gap: 18px; color: #BDBDBD; font-size: 54px; font-weight: 600;
42
+ }
43
+ .month-header .title { color: #E0E0E0; margin-right: 8px; }
44
+ .caret svg { width: 44px; height: 44px; stroke: #BDBDBD; stroke-width: 4; fill: none; }
45
+
46
+ /* Days of week */
47
+ .dow {
48
+ position: absolute; top: 380px; left: 36px; right: 36px; height: 80px;
49
+ display: grid; grid-template-columns: repeat(7, 1fr); color: #9E9E9E;
50
+ font-size: 40px; font-weight: 600; text-align: center; align-items: center;
51
+ }
52
+
53
+ /* Calendar grid */
54
+ .calendar {
55
+ position: absolute; top: 480px; left: 36px; right: 36px;
56
+ display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 160px;
57
+ text-align: center; align-items: center; font-size: 52px; font-weight: 700;
58
+ }
59
+ .day-cell { position: relative; color: #FFFFFF; }
60
+ .day-number { position: relative; z-index: 2; }
61
+ .selected::before {
62
+ content: ""; position: absolute; width: 124px; height: 124px; border-radius: 62px;
63
+ background: #3D5AFE; left: 50%; top: 50%; transform: translate(-50%, -50%);
64
+ z-index: 1;
65
+ }
66
+
67
+ /* Options card */
68
+ .options-card {
69
+ position: absolute; left: 24px; right: 24px; top: 1380px;
70
+ background: #1F1F1F; border-radius: 28px; padding: 28px 0; box-sizing: border-box;
71
+ box-shadow: 0 8px 24px rgba(0,0,0,0.5);
72
+ }
73
+ .option-row {
74
+ height: 160px; display: flex; align-items: center; padding: 0 36px; box-sizing: border-box;
75
+ border-bottom: 1px solid rgba(255,255,255,0.06);
76
+ }
77
+ .option-row:last-child { border-bottom: none; }
78
+ .opt-icon {
79
+ width: 88px; height: 88px; border-radius: 44px; background: #2A2A2A;
80
+ display: flex; align-items: center; justify-content: center; margin-right: 30px;
81
+ }
82
+ .opt-icon svg { width: 56px; height: 56px; stroke: #BDBDBD; stroke-width: 4; fill: none; }
83
+ .opt-label { flex: 1; color: #FFFFFF; font-size: 48px; font-weight: 600; }
84
+ .opt-value { color: #9E9E9E; font-size: 44px; margin-right: 16px; }
85
+ .chev svg { width: 40px; height: 40px; stroke: #9E9E9E; stroke-width: 4; fill: none; }
86
+
87
+ /* Bottom home indicator */
88
+ .home-indicator {
89
+ position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
90
+ width: 320px; height: 14px; background: #EAEAEA; border-radius: 7px; opacity: 0.9;
91
+ }
92
+ </style>
93
+ </head>
94
+ <body>
95
+ <div id="render-target">
96
+
97
+ <!-- Status Bar -->
98
+ <div class="status-bar">
99
+ <div class="status-left">12:08</div>
100
+ <div class="status-right">
101
+ <div class="status-icon">
102
+ <!-- Wi-Fi -->
103
+ <svg viewBox="0 0 24 24">
104
+ <path d="M2 8c5-4 15-4 20 0" />
105
+ <path d="M5 12c3-3 11-3 14 0" />
106
+ <path d="M8 16c2-2 6-2 8 0" />
107
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF" />
108
+ </svg>
109
+ </div>
110
+ <div class="status-icon">
111
+ <!-- Battery -->
112
+ <svg viewBox="0 0 24 24">
113
+ <rect x="2" y="6" width="18" height="12" rx="2" />
114
+ <rect x="21" y="9" width="2" height="6" />
115
+ <rect x="4" y="8" width="14" height="8" fill="#FFFFFF" stroke="none" />
116
+ </svg>
117
+ </div>
118
+ </div>
119
+ </div>
120
+
121
+ <!-- Header with tabs -->
122
+ <div class="header">
123
+ <div class="header-left">
124
+ <div class="icon-btn">
125
+ <!-- Close (X) -->
126
+ <svg viewBox="0 0 24 24">
127
+ <path d="M4 4 L20 20" />
128
+ <path d="M20 4 L4 20" />
129
+ </svg>
130
+ </div>
131
+ <div class="tab">Date</div>
132
+ <div class="tab inactive">Duration</div>
133
+ </div>
134
+ <div class="header-right">
135
+ <div class="icon-btn">
136
+ <!-- Check -->
137
+ <svg viewBox="0 0 24 24">
138
+ <path d="M4 12 L10 18 L20 6" />
139
+ </svg>
140
+ </div>
141
+ <div class="icon-btn">
142
+ <!-- Kebab menu -->
143
+ <svg viewBox="0 0 24 24">
144
+ <circle cx="12" cy="5" r="2" fill="#FFFFFF" stroke="none" />
145
+ <circle cx="12" cy="12" r="2" fill="#FFFFFF" stroke="none" />
146
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF" stroke="none" />
147
+ </svg>
148
+ </div>
149
+ </div>
150
+ <div class="tab-indicator"></div>
151
+ </div>
152
+
153
+ <!-- Month Header -->
154
+ <div class="month-header">
155
+ <div class="title">October</div>
156
+ <div class="caret">
157
+ <svg viewBox="0 0 24 24"><path d="M15 6 L9 12 L15 18" /></svg>
158
+ </div>
159
+ </div>
160
+
161
+ <!-- Days of Week -->
162
+ <div class="dow">
163
+ <div>Sun</div><div>Mon</div><div>Tue</div><div>Wed</div><div>Thu</div><div>Fri</div><div>Sat</div>
164
+ </div>
165
+
166
+ <!-- Calendar Grid -->
167
+ <div class="calendar">
168
+ <!-- Row 1 -->
169
+ <div class="day-cell"><span class="day-number">1</span></div>
170
+ <div class="day-cell"><span class="day-number">2</span></div>
171
+ <div class="day-cell"><span class="day-number">3</span></div>
172
+ <div class="day-cell"><span class="day-number">4</span></div>
173
+ <div class="day-cell"><span class="day-number">5</span></div>
174
+ <div class="day-cell"><span class="day-number">6</span></div>
175
+ <div class="day-cell"><span class="day-number">7</span></div>
176
+ <!-- Row 2 -->
177
+ <div class="day-cell"><span class="day-number">8</span></div>
178
+ <div class="day-cell"><span class="day-number">9</span></div>
179
+ <div class="day-cell"><span class="day-number">10</span></div>
180
+ <div class="day-cell"><span class="day-number">11</span></div>
181
+ <div class="day-cell"><span class="day-number">12</span></div>
182
+ <div class="day-cell selected"><span class="day-number">13</span></div>
183
+ <div class="day-cell"><span class="day-number">14</span></div>
184
+ <!-- Row 3 -->
185
+ <div class="day-cell"><span class="day-number">15</span></div>
186
+ <div class="day-cell"><span class="day-number">16</span></div>
187
+ <div class="day-cell"><span class="day-number">17</span></div>
188
+ <div class="day-cell"><span class="day-number">18</span></div>
189
+ <div class="day-cell"><span class="day-number">19</span></div>
190
+ <div class="day-cell"><span class="day-number">20</span></div>
191
+ <div class="day-cell"><span class="day-number">21</span></div>
192
+ <!-- Row 4 -->
193
+ <div class="day-cell"><span class="day-number">22</span></div>
194
+ <div class="day-cell"><span class="day-number">23</span></div>
195
+ <div class="day-cell"><span class="day-number">24</span></div>
196
+ <div class="day-cell"><span class="day-number">25</span></div>
197
+ <div class="day-cell"><span class="day-number">26</span></div>
198
+ <div class="day-cell"><span class="day-number">27</span></div>
199
+ <div class="day-cell"><span class="day-number">28</span></div>
200
+ <!-- Row 5 -->
201
+ <div class="day-cell"><span class="day-number">29</span></div>
202
+ <div class="day-cell"><span class="day-number">30</span></div>
203
+ <div class="day-cell"><span class="day-number">31</span></div>
204
+ <div class="day-cell"></div>
205
+ <div class="day-cell"></div>
206
+ <div class="day-cell"></div>
207
+ <div class="day-cell"></div>
208
+ </div>
209
+
210
+ <!-- Options Card -->
211
+ <div class="options-card">
212
+ <div class="option-row">
213
+ <div class="opt-icon">
214
+ <!-- Time icon -->
215
+ <svg viewBox="0 0 24 24">
216
+ <circle cx="12" cy="12" r="8" />
217
+ <path d="M12 7 L12 12 L16 14" />
218
+ </svg>
219
+ </div>
220
+ <div class="opt-label">Set Time</div>
221
+ <div class="opt-value">None</div>
222
+ <div class="chev">
223
+ <svg viewBox="0 0 24 24"><path d="M9 6 L15 12 L9 18" /></svg>
224
+ </div>
225
+ </div>
226
+
227
+ <div class="option-row">
228
+ <div class="opt-icon">
229
+ <!-- Reminder icon (alarm) -->
230
+ <svg viewBox="0 0 24 24">
231
+ <path d="M6 9 a6 6 0 1 0 12 0 a6 6 0 1 0 -12 0" />
232
+ <path d="M12 8 L12 12 L14 13" />
233
+ <path d="M5 5 L8 7" />
234
+ <path d="M19 5 L16 7" />
235
+ </svg>
236
+ </div>
237
+ <div class="opt-label">Set Reminder</div>
238
+ <div class="opt-value">None</div>
239
+ <div class="chev">
240
+ <svg viewBox="0 0 24 24"><path d="M9 6 L15 12 L9 18" /></svg>
241
+ </div>
242
+ </div>
243
+
244
+ <div class="option-row">
245
+ <div class="opt-icon">
246
+ <!-- Repeat icon -->
247
+ <svg viewBox="0 0 24 24">
248
+ <path d="M4 12c0-4 3-7 8-7h2" />
249
+ <path d="M20 12c0 4-3 7-8 7h-2" />
250
+ <path d="M14 5 L16 7 L14 9" />
251
+ <path d="M10 19 L8 17 L10 15" />
252
+ </svg>
253
+ </div>
254
+ <div class="opt-label">Set Repeat</div>
255
+ <div class="opt-value">No Repeat</div>
256
+ <div class="chev">
257
+ <svg viewBox="0 0 24 24"><path d="M9 6 L15 12 L9 18" /></svg>
258
+ </div>
259
+ </div>
260
+ </div>
261
+
262
+ <!-- Home indicator -->
263
+ <div class="home-indicator"></div>
264
+ </div>
265
+ </body>
266
+ </html>
code/1470/1470_11.html ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Inbox Detail UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #000000;
14
+ box-sizing: border-box;
15
+ }
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 100%;
21
+ height: 90px;
22
+ color: #ffffff;
23
+ font-family: Arial, Helvetica, sans-serif;
24
+ font-size: 34px;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 32px;
28
+ box-sizing: border-box;
29
+ }
30
+ .status-left {
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 18px;
34
+ }
35
+ .status-right {
36
+ margin-left: auto;
37
+ display: flex;
38
+ align-items: center;
39
+ gap: 24px;
40
+ }
41
+ .app-bar {
42
+ position: absolute;
43
+ top: 90px;
44
+ left: 0;
45
+ width: 100%;
46
+ height: 150px;
47
+ display: flex;
48
+ align-items: center;
49
+ padding: 0 28px;
50
+ box-sizing: border-box;
51
+ color: #ffffff;
52
+ font-family: Arial, Helvetica, sans-serif;
53
+ }
54
+ .app-bar .title {
55
+ font-size: 56px;
56
+ font-weight: 700;
57
+ margin-left: 18px;
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 12px;
61
+ }
62
+ .right-actions {
63
+ margin-left: auto;
64
+ display: flex;
65
+ align-items: center;
66
+ gap: 30px;
67
+ }
68
+ .content {
69
+ position: absolute;
70
+ top: 240px;
71
+ left: 0;
72
+ width: 100%;
73
+ padding: 0 36px;
74
+ box-sizing: border-box;
75
+ color: #fff;
76
+ font-family: Arial, Helvetica, sans-serif;
77
+ }
78
+ .row {
79
+ display: flex;
80
+ align-items: center;
81
+ gap: 24px;
82
+ margin-bottom: 28px;
83
+ }
84
+ .checkbox {
85
+ width: 54px;
86
+ height: 54px;
87
+ border: 4px solid #8E8E8E;
88
+ border-radius: 8px;
89
+ box-sizing: border-box;
90
+ }
91
+ .date-label {
92
+ color: #2F79FF;
93
+ font-size: 40px;
94
+ font-weight: 600;
95
+ }
96
+ .main-title {
97
+ font-size: 72px;
98
+ font-weight: 800;
99
+ margin-top: 24px;
100
+ margin-bottom: 24px;
101
+ }
102
+ .subtitle {
103
+ color: #7E7E7E;
104
+ font-size: 44px;
105
+ }
106
+ .bottom-toolbar {
107
+ position: absolute;
108
+ bottom: 90px;
109
+ left: 0;
110
+ width: 100%;
111
+ height: 120px;
112
+ padding: 0 40px;
113
+ box-sizing: border-box;
114
+ display: flex;
115
+ align-items: center;
116
+ gap: 60px;
117
+ }
118
+ .tool-icon svg { width: 72px; height: 72px; }
119
+ .tool-icon svg path { fill: #9C9C9C; }
120
+ .gesture-bar {
121
+ position: absolute;
122
+ bottom: 24px;
123
+ left: 50%;
124
+ transform: translateX(-50%);
125
+ width: 380px;
126
+ height: 18px;
127
+ background: #E5E5E5;
128
+ border-radius: 12px;
129
+ opacity: 0.9;
130
+ }
131
+ .icon-btn svg { width: 60px; height: 60px; }
132
+ .icon-btn path { fill: #FFFFFF; }
133
+ .icon-btn .thin path { fill: none; stroke: #FFFFFF; stroke-width: 8; }
134
+ </style>
135
+ </head>
136
+ <body>
137
+ <div id="render-target">
138
+ <!-- Status bar -->
139
+ <div class="status-bar">
140
+ <div class="status-left">
141
+ <div>12:09</div>
142
+ <!-- Simple small status glyphs -->
143
+ <svg width="28" height="28" viewBox="0 0 24 24">
144
+ <circle cx="12" cy="12" r="10" fill="#FFFFFF"></circle>
145
+ </svg>
146
+ <svg width="28" height="28" viewBox="0 0 24 24">
147
+ <path d="M3 12h18" stroke="#FFFFFF" stroke-width="3"></path>
148
+ </svg>
149
+ </div>
150
+ <div class="status-right">
151
+ <!-- WiFi -->
152
+ <svg width="40" height="40" viewBox="0 0 24 24">
153
+ <path d="M2 8c5-4 15-4 20 0M6 12c3-3 9-3 12 0M10 16c2-2 4-2 6 0M12 19l2 2-2 2-2-2z" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round"></path>
154
+ </svg>
155
+ <!-- Battery -->
156
+ <svg width="40" height="40" viewBox="0 0 24 24">
157
+ <rect x="2" y="5" width="18" height="14" rx="2" ry="2" fill="none" stroke="#FFFFFF" stroke-width="2"></rect>
158
+ <rect x="4" y="7" width="12" height="10" fill="#FFFFFF"></rect>
159
+ <rect x="20" y="9" width="3" height="6" fill="#FFFFFF"></rect>
160
+ </svg>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- App bar -->
165
+ <div class="app-bar">
166
+ <!-- Back arrow -->
167
+ <div class="icon-btn">
168
+ <svg viewBox="0 0 24 24">
169
+ <path d="M15 4L7 12l8 8" fill="none" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
170
+ </svg>
171
+ </div>
172
+ <div class="title">
173
+ <span>Inbox</span>
174
+ <!-- dropdown chevron -->
175
+ <svg class="icon-btn" viewBox="0 0 24 24">
176
+ <path d="M6 9l6 6 6-6" fill="#FFFFFF"></path>
177
+ </svg>
178
+ </div>
179
+ <div class="right-actions">
180
+ <!-- Flag icon -->
181
+ <div class="icon-btn">
182
+ <svg viewBox="0 0 24 24">
183
+ <path d="M6 21V5l12 2-4 3 4 3-12 2" fill="#FFFFFF"></path>
184
+ </svg>
185
+ </div>
186
+ <!-- More vertical (kebab) -->
187
+ <div class="icon-btn">
188
+ <svg viewBox="0 0 24 24">
189
+ <circle cx="12" cy="5" r="2" fill="#FFFFFF"></circle>
190
+ <circle cx="12" cy="12" r="2" fill="#FFFFFF"></circle>
191
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF"></circle>
192
+ </svg>
193
+ </div>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- Content -->
198
+ <div class="content">
199
+ <div class="row">
200
+ <div class="checkbox"></div>
201
+ <div class="date-label">Oct 13, 79d left</div>
202
+ </div>
203
+ <div class="main-title">Microsoft training update</div>
204
+ <div class="subtitle">Description</div>
205
+ </div>
206
+
207
+ <!-- Bottom toolbar -->
208
+ <div class="bottom-toolbar">
209
+ <!-- Tag icon -->
210
+ <div class="tool-icon">
211
+ <svg viewBox="0 0 24 24">
212
+ <path d="M3 7v10l7 4 11-11-7-7H7z" fill="#9C9C9C"></path>
213
+ <circle cx="8" cy="9" r="2" fill="#000000"></circle>
214
+ </svg>
215
+ </div>
216
+ <!-- List icon -->
217
+ <div class="tool-icon">
218
+ <svg viewBox="0 0 24 24">
219
+ <path d="M4 6h16v2H4zM4 11h16v2H4zM4 16h16v2H4z" fill="#9C9C9C"></path>
220
+ <circle cx="6" cy="7" r="1.5" fill="#000000"></circle>
221
+ <circle cx="6" cy="12" r="1.5" fill="#000000"></circle>
222
+ <circle cx="6" cy="17" r="1.5" fill="#000000"></circle>
223
+ </svg>
224
+ </div>
225
+ <!-- Image icon -->
226
+ <div class="tool-icon">
227
+ <svg viewBox="0 0 24 24">
228
+ <rect x="3" y="4" width="18" height="16" rx="2" ry="2" fill="#9C9C9C"></rect>
229
+ <circle cx="9" cy="9" r="2.5" fill="#000000"></circle>
230
+ <path d="M5 18l5-6 5 4 4-3v5z" fill="#000000"></path>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+
235
+ <!-- Gesture pill -->
236
+ <div class="gesture-bar"></div>
237
+ </div>
238
+ </body>
239
+ </html>
code/1470/1470_3.html ADDED
@@ -0,0 +1,280 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Drawer UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0d0d0d;
15
+ }
16
+
17
+ /* Left drawer panel */
18
+ .drawer {
19
+ position: absolute;
20
+ left: 0;
21
+ top: 0;
22
+ width: 920px; /* leave a narrow reveal on the right side */
23
+ height: 100%;
24
+ background: #1a1a1a;
25
+ color: #e7e7e7;
26
+ }
27
+
28
+ .header {
29
+ padding: 70px 40px 30px 40px;
30
+ }
31
+ .header-row {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 26px;
35
+ }
36
+ .avatar {
37
+ position: relative;
38
+ width: 116px;
39
+ height: 116px;
40
+ border-radius: 58px;
41
+ background: #ff3e84;
42
+ display: flex;
43
+ align-items: center;
44
+ justify-content: center;
45
+ font-weight: 700;
46
+ font-size: 52px;
47
+ color: #fff;
48
+ }
49
+ .badge {
50
+ position: absolute;
51
+ top: -6px;
52
+ left: -6px;
53
+ width: 36px;
54
+ height: 36px;
55
+ border-radius: 18px;
56
+ background: #dadada;
57
+ display: flex;
58
+ align-items: center;
59
+ justify-content: center;
60
+ font-size: 18px;
61
+ color: #777;
62
+ }
63
+
64
+ .brand {
65
+ flex: 1;
66
+ font-size: 48px;
67
+ font-weight: 600;
68
+ color: #f0f0f0;
69
+ }
70
+ .top-icons {
71
+ display: flex;
72
+ gap: 28px;
73
+ }
74
+ .icon {
75
+ width: 40px;
76
+ height: 40px;
77
+ }
78
+ .icon svg {
79
+ width: 100%;
80
+ height: 100%;
81
+ stroke: #cfcfcf;
82
+ fill: none;
83
+ stroke-width: 2.5;
84
+ stroke-linecap: round;
85
+ stroke-linejoin: round;
86
+ opacity: 0.85;
87
+ }
88
+
89
+ /* Menu items */
90
+ .menu {
91
+ margin-top: 30px;
92
+ }
93
+ .menu-item {
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: space-between;
97
+ height: 120px;
98
+ padding: 0 40px;
99
+ color: #e6e6e6;
100
+ font-size: 40px;
101
+ }
102
+ .menu-left {
103
+ display: flex;
104
+ align-items: center;
105
+ gap: 28px;
106
+ }
107
+ .count {
108
+ color: #9aa0a6;
109
+ font-size: 34px;
110
+ }
111
+
112
+ .calendar-icon, .inbox-icon {
113
+ width: 54px;
114
+ height: 54px;
115
+ border-radius: 10px;
116
+ display: inline-flex;
117
+ align-items: center;
118
+ justify-content: center;
119
+ background: #1a202e;
120
+ border: 2px solid #3256ff;
121
+ }
122
+ .calendar-icon svg, .inbox-icon svg {
123
+ width: 80%;
124
+ height: 80%;
125
+ stroke: #3d6cf1;
126
+ fill: none;
127
+ stroke-width: 2.5;
128
+ }
129
+ .calendar-day {
130
+ position: absolute;
131
+ font-size: 20px;
132
+ color: #3d6cf1;
133
+ transform: translateY(12px);
134
+ }
135
+
136
+ .selected {
137
+ background: #1f2b5d;
138
+ }
139
+
140
+ /* Bottom actions */
141
+ .bottom-actions {
142
+ position: absolute;
143
+ left: 40px;
144
+ right: 40px;
145
+ bottom: 120px;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: space-between;
149
+ color: #e6e6e6;
150
+ }
151
+ .add-list {
152
+ display: flex;
153
+ align-items: center;
154
+ gap: 22px;
155
+ font-size: 40px;
156
+ }
157
+ .plus {
158
+ width: 44px; height: 44px;
159
+ border-radius: 10px;
160
+ border: 2px solid #e6e6e6;
161
+ display: flex; align-items: center; justify-content: center;
162
+ font-size: 30px;
163
+ }
164
+ .settings-mini .icon svg { stroke: #e6e6e6; }
165
+
166
+ /* Android gesture pill (visual) */
167
+ .gesture-pill {
168
+ position: absolute;
169
+ bottom: 40px;
170
+ left: 50%;
171
+ transform: translateX(-50%);
172
+ width: 240px;
173
+ height: 16px;
174
+ background: #e6e6e6;
175
+ border-radius: 12px;
176
+ opacity: 0.65;
177
+ }
178
+ </style>
179
+ </head>
180
+ <body>
181
+ <div id="render-target">
182
+ <div class="drawer">
183
+ <div class="header">
184
+ <div class="header-row">
185
+ <div class="avatar">
186
+ C
187
+ <div class="badge">👑</div>
188
+ </div>
189
+ <div class="brand">Cerebra Research</div>
190
+ <div class="top-icons">
191
+ <!-- Search -->
192
+ <div class="icon">
193
+ <svg viewBox="0 0 24 24">
194
+ <circle cx="11" cy="11" r="6"></circle>
195
+ <line x1="16" y1="16" x2="21" y2="21"></line>
196
+ </svg>
197
+ </div>
198
+ <!-- Bell -->
199
+ <div class="icon">
200
+ <svg viewBox="0 0 24 24">
201
+ <path d="M12 3c-3 0-5 2-5 5v3c0 .9-.5 1.7-1.2 2.2L4 15h16l-1.8-1.8c-.7-.5-1.2-1.3-1.2-2.2V8c0-3-2-5-5-5z"></path>
202
+ <path d="M9 17c.6 1.2 1.7 2 3 2s2.4-.8 3-2"></path>
203
+ </svg>
204
+ </div>
205
+ <!-- Settings (gear) -->
206
+ <div class="icon">
207
+ <svg viewBox="0 0 24 24">
208
+ <circle cx="12" cy="12" r="3.5"></circle>
209
+ <path d="M4 12h2m12 0h2M6.4 6.4l1.4 1.4m8.4 8.4l1.4 1.4M6.4 17.6l1.4-1.4m8.4-8.4l1.4-1.4"></path>
210
+ </svg>
211
+ </div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <div class="menu">
217
+ <!-- Today -->
218
+ <div class="menu-item">
219
+ <div class="menu-left">
220
+ <div class="calendar-icon" style="position: relative;">
221
+ <svg viewBox="0 0 24 24">
222
+ <rect x="3" y="5" width="18" height="16" rx="3"></rect>
223
+ <line x1="3" y1="10" x2="21" y2="10"></line>
224
+ <line x1="7" y1="3" x2="7" y2="7"></line>
225
+ <line x1="17" y1="3" x2="17" y2="7"></line>
226
+ </svg>
227
+ <div class="calendar-day">26</div>
228
+ </div>
229
+ <div>Today</div>
230
+ </div>
231
+ <div class="count"></div>
232
+ </div>
233
+
234
+ <!-- Inbox -->
235
+ <div class="menu-item">
236
+ <div class="menu-left">
237
+ <div class="inbox-icon">
238
+ <svg viewBox="0 0 24 24">
239
+ <rect x="3" y="4" width="18" height="14" rx="3"></rect>
240
+ <path d="M3 13h5l2 3h4l2-3h5"></path>
241
+ </svg>
242
+ </div>
243
+ <div>Inbox</div>
244
+ </div>
245
+ <div class="count">2</div>
246
+ </div>
247
+
248
+ <!-- Welcome (selected) -->
249
+ <div class="menu-item selected">
250
+ <div class="menu-left">
251
+ <div style="font-size: 46px;">👋</div>
252
+ <div>Welcome</div>
253
+ </div>
254
+ <div class="count">11</div>
255
+ </div>
256
+ </div>
257
+
258
+ <div class="bottom-actions">
259
+ <div class="add-list">
260
+ <div class="plus">+</div>
261
+ <div>Add List</div>
262
+ </div>
263
+ <div class="settings-mini icon">
264
+ <!-- Sliders icon -->
265
+ <svg viewBox="0 0 24 24">
266
+ <line x1="4" y1="6" x2="20" y2="6"></line>
267
+ <circle cx="9" cy="6" r="2"></circle>
268
+ <line x1="4" y1="12" x2="20" y2="12"></line>
269
+ <circle cx="15" cy="12" r="2"></circle>
270
+ <line x1="4" y1="18" x2="20" y2="18"></line>
271
+ <circle cx="12" cy="18" r="2"></circle>
272
+ </svg>
273
+ </div>
274
+ </div>
275
+ </div>
276
+
277
+ <div class="gesture-pill"></div>
278
+ </div>
279
+ </body>
280
+ </html>
code/1470/1470_4.html ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Inbox - Dark UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #000000; color: #FFFFFF;
13
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
14
+ }
15
+
16
+ /* Top status spacer */
17
+ .status-bar {
18
+ height: 90px;
19
+ background: #000;
20
+ }
21
+
22
+ /* App bar */
23
+ .app-bar {
24
+ height: 140px;
25
+ padding: 0 40px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #fff;
30
+ }
31
+ .app-left {
32
+ display: flex; align-items: center;
33
+ }
34
+ .menu-icon { width: 70px; height: 70px; margin-right: 24px; }
35
+ .title {
36
+ font-size: 64px; font-weight: 700; letter-spacing: 0.5px;
37
+ }
38
+ .more-icon { width: 60px; height: 60px; }
39
+
40
+ /* Card with tasks */
41
+ .card {
42
+ width: 980px;
43
+ margin: 28px auto 0;
44
+ background: #2B2B2B;
45
+ border-radius: 28px;
46
+ padding: 40px 36px;
47
+ box-sizing: border-box;
48
+ }
49
+ .task {
50
+ display: flex; align-items: center;
51
+ padding: 24px 0;
52
+ }
53
+ .checkbox {
54
+ width: 54px; height: 54px;
55
+ border: 3px solid #9E9E9E;
56
+ border-radius: 8px; margin-right: 28px;
57
+ box-sizing: border-box;
58
+ }
59
+ .task-text {
60
+ font-size: 46px; font-weight: 500; color: #EDEDED;
61
+ }
62
+
63
+ /* Floating Action Button */
64
+ .fab {
65
+ position: absolute;
66
+ right: 56px; bottom: 300px;
67
+ width: 160px; height: 160px;
68
+ background: #3D6AFD;
69
+ border-radius: 50%;
70
+ box-shadow: 0 8px 24px rgba(0,0,0,0.45);
71
+ display: flex; align-items: center; justify-content: center;
72
+ }
73
+ .fab svg { width: 80px; height: 80px; }
74
+
75
+ /* Bottom navigation */
76
+ .bottom-nav {
77
+ position: absolute; left: 0; bottom: 0;
78
+ width: 1080px; height: 220px;
79
+ background: #000;
80
+ display: flex; align-items: center; justify-content: space-around;
81
+ padding-bottom: 40px;
82
+ box-sizing: border-box;
83
+ }
84
+ .nav-item { display: flex; align-items: center; justify-content: center; }
85
+ .nav-square {
86
+ width: 96px; height: 96px; border-radius: 18px; background: #3D6AFD;
87
+ display: flex; align-items: center; justify-content: center;
88
+ }
89
+ .nav-icon { width: 72px; height: 72px; }
90
+ .nav-icon.gray svg path, .nav-icon.gray svg rect, .nav-icon.gray svg circle { fill: #BDBDBD; stroke: #BDBDBD; }
91
+
92
+ /* Gesture pill */
93
+ .gesture {
94
+ position: absolute; bottom: 16px; left: 50%;
95
+ transform: translateX(-50%);
96
+ width: 280px; height: 12px;
97
+ background: #EDEDED; border-radius: 8px; opacity: 0.9;
98
+ }
99
+ </style>
100
+ </head>
101
+ <body>
102
+ <div id="render-target">
103
+
104
+ <div class="status-bar"></div>
105
+
106
+ <div class="app-bar">
107
+ <div class="app-left">
108
+ <!-- Hamburger -->
109
+ <svg class="menu-icon" viewBox="0 0 24 24">
110
+ <rect x="3" y="5" width="18" height="2" fill="#FFFFFF"></rect>
111
+ <rect x="3" y="11" width="18" height="2" fill="#FFFFFF"></rect>
112
+ <rect x="3" y="17" width="18" height="2" fill="#FFFFFF"></rect>
113
+ </svg>
114
+ <div class="title">Inbox</div>
115
+ </div>
116
+ <!-- Kebab (more) -->
117
+ <svg class="more-icon" viewBox="0 0 24 24">
118
+ <circle cx="12" cy="5" r="2" fill="#FFFFFF"></circle>
119
+ <circle cx="12" cy="12" r="2" fill="#FFFFFF"></circle>
120
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF"></circle>
121
+ </svg>
122
+ </div>
123
+
124
+ <div class="card">
125
+ <div class="task">
126
+ <div class="checkbox"></div>
127
+ <div class="task-text">Driving licence</div>
128
+ </div>
129
+ <div class="task">
130
+ <div class="checkbox"></div>
131
+ <div class="task-text">Microsoft training update</div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Floating Action Button -->
136
+ <div class="fab">
137
+ <svg viewBox="0 0 24 24">
138
+ <rect x="11" y="5" width="2" height="14" fill="#FFFFFF"></rect>
139
+ <rect x="5" y="11" width="14" height="2" fill="#FFFFFF"></rect>
140
+ </svg>
141
+ </div>
142
+
143
+ <!-- Bottom Navigation -->
144
+ <div class="bottom-nav">
145
+ <!-- Tasks active -->
146
+ <div class="nav-item">
147
+ <div class="nav-square">
148
+ <svg class="nav-icon" viewBox="0 0 24 24">
149
+ <path d="M9 16.2l-3.5-3.5 1.4-1.4L9 13.4l7.1-7.1 1.4 1.4z" fill="#FFFFFF"></path>
150
+ </svg>
151
+ </div>
152
+ </div>
153
+ <!-- Calendar (gray) -->
154
+ <div class="nav-item nav-icon gray">
155
+ <svg viewBox="0 0 24 24" class="nav-icon">
156
+ <rect x="3" y="5" width="18" height="16" rx="2" ry="2" fill="#BDBDBD"></rect>
157
+ <rect x="3" y="8" width="18" height="3" fill="#000000"></rect>
158
+ <rect x="7" y="3" width="2" height="4" fill="#BDBDBD"></rect>
159
+ <rect x="15" y="3" width="2" height="4" fill="#BDBDBD"></rect>
160
+ </svg>
161
+ </div>
162
+ <!-- Settings (simple) -->
163
+ <div class="nav-item nav-icon gray">
164
+ <svg viewBox="0 0 24 24" class="nav-icon">
165
+ <circle cx="12" cy="12" r="8" fill="#BDBDBD"></circle>
166
+ <circle cx="12" cy="12" r="3" fill="#000000"></circle>
167
+ </svg>
168
+ </div>
169
+ </div>
170
+
171
+ <div class="gesture"></div>
172
+ </div>
173
+ </body>
174
+ </html>
code/1470/1470_5.html ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Mobile UI - Inbox</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #000000;
15
+ color: #ffffff;
16
+ font-family: system-ui, -apple-system, Roboto, Arial, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 88px;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #ffffff;
27
+ font-size: 28px;
28
+ letter-spacing: 0.5px;
29
+ opacity: 0.95;
30
+ }
31
+ .status-right {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 22px;
35
+ }
36
+ .status-icon svg { width: 36px; height: 36px; fill: none; stroke: #ffffff; stroke-width: 2.8; }
37
+
38
+ /* App bar */
39
+ .app-bar {
40
+ height: 120px;
41
+ padding: 0 36px;
42
+ display: flex;
43
+ align-items: center;
44
+ justify-content: space-between;
45
+ }
46
+ .app-left {
47
+ display: flex;
48
+ align-items: center;
49
+ gap: 26px;
50
+ }
51
+ .back-icon svg { width: 56px; height: 56px; stroke: #ffffff; stroke-width: 8; fill: none; }
52
+ .app-title {
53
+ font-size: 48px;
54
+ font-weight: 700;
55
+ }
56
+ .caret {
57
+ display: inline-block;
58
+ margin-left: 12px;
59
+ vertical-align: middle;
60
+ }
61
+ .caret svg { width: 28px; height: 28px; fill: #ffffff; }
62
+ .app-actions {
63
+ display: flex;
64
+ align-items: center;
65
+ gap: 28px;
66
+ }
67
+ .flag-icon svg { width: 48px; height: 48px; fill: none; stroke: #ffffff; stroke-width: 4; }
68
+ .more-icon svg { width: 40px; height: 40px; fill: #ffffff; }
69
+
70
+ /* Content */
71
+ .content {
72
+ padding: 24px 36px 0 36px;
73
+ }
74
+ .meta-row {
75
+ display: flex;
76
+ align-items: center;
77
+ justify-content: flex-start;
78
+ gap: 22px;
79
+ margin-top: 10px;
80
+ }
81
+ .checkbox {
82
+ width: 44px;
83
+ height: 44px;
84
+ border: 3px solid #9E9E9E;
85
+ border-radius: 6px;
86
+ box-sizing: border-box;
87
+ }
88
+ .meta-label {
89
+ font-size: 36px;
90
+ color: #BDBDBD;
91
+ font-weight: 700;
92
+ }
93
+ .title {
94
+ margin-top: 48px;
95
+ font-size: 64px;
96
+ font-weight: 800;
97
+ line-height: 1.15;
98
+ color: #ffffff;
99
+ }
100
+ .desc {
101
+ margin-top: 36px;
102
+ font-size: 40px;
103
+ color: #757575;
104
+ }
105
+
106
+ /* Bottom action bar */
107
+ .bottom-tools {
108
+ position: absolute;
109
+ left: 36px;
110
+ bottom: 140px;
111
+ display: flex;
112
+ align-items: center;
113
+ gap: 70px;
114
+ opacity: 0.8;
115
+ }
116
+ .tool {
117
+ width: 72px;
118
+ height: 72px;
119
+ }
120
+ .tool svg {
121
+ width: 72px; height: 72px;
122
+ stroke: #BDBDBD; stroke-width: 6; fill: none;
123
+ }
124
+
125
+ /* Home pill */
126
+ .home-pill {
127
+ position: absolute;
128
+ left: 50%;
129
+ transform: translateX(-50%);
130
+ bottom: 40px;
131
+ width: 260px;
132
+ height: 16px;
133
+ background: #E0E0E0;
134
+ border-radius: 16px;
135
+ opacity: 0.95;
136
+ }
137
+ </style>
138
+ </head>
139
+ <body>
140
+ <div id="render-target">
141
+ <!-- Status bar -->
142
+ <div class="status-bar">
143
+ <div class="status-left">12:05</div>
144
+ <div class="status-right">
145
+ <div class="status-icon">
146
+ <!-- Navigation / car mode icon (simple triangle) -->
147
+ <svg viewBox="0 0 24 24"><path d="M12 3 L21 21 H3 Z" fill="#ffffff" stroke="none"/></svg>
148
+ </div>
149
+ <div class="status-icon">
150
+ <!-- Do not disturb crescent -->
151
+ <svg viewBox="0 0 24 24"><path d="M17 12a8 8 0 1 1-7.5-8 10 10 0 0 0 7.5 8z" /></svg>
152
+ </div>
153
+ <div class="status-icon">
154
+ <!-- Signal -->
155
+ <svg viewBox="0 0 24 24"><path d="M3 20h3M7 20h3M11 20h3M15 20h3" /></svg>
156
+ </div>
157
+ <div class="status-icon">
158
+ <!-- Wi-Fi -->
159
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0M5 11c4-3 10-3 14 0M8 14c3-2 5-2 8 0M12 18l-2 2 2 2 2-2-2-2z" /></svg>
160
+ </div>
161
+ <div class="status-icon">
162
+ <!-- Battery -->
163
+ <svg viewBox="0 0 28 24">
164
+ <rect x="1" y="5" width="22" height="14" rx="2" ry="2" />
165
+ <rect x="24" y="9" width="3" height="6" rx="1" ry="1" />
166
+ <rect x="3" y="7" width="16" height="10" fill="#ffffff" stroke="none"/>
167
+ </svg>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- App bar -->
173
+ <div class="app-bar">
174
+ <div class="app-left">
175
+ <div class="back-icon">
176
+ <svg viewBox="0 0 24 24"><path d="M15 4 L7 12 L15 20" stroke-linecap="round" stroke-linejoin="round"/></svg>
177
+ </div>
178
+ <div class="app-title">Inbox
179
+ <span class="caret">
180
+ <svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9Z"/></svg>
181
+ </span>
182
+ </div>
183
+ </div>
184
+ <div class="app-actions">
185
+ <div class="flag-icon">
186
+ <svg viewBox="0 0 24 24">
187
+ <path d="M5 3v18M6 4h9l-3 3 3 3H6" stroke-linejoin="round" stroke-linecap="round"/>
188
+ </svg>
189
+ </div>
190
+ <div class="more-icon">
191
+ <svg viewBox="0 0 24 24">
192
+ <circle cx="12" cy="5" r="2" />
193
+ <circle cx="12" cy="12" r="2" />
194
+ <circle cx="12" cy="19" r="2" />
195
+ </svg>
196
+ </div>
197
+ </div>
198
+ </div>
199
+
200
+ <!-- Content -->
201
+ <div class="content">
202
+ <div class="meta-row">
203
+ <div class="checkbox"></div>
204
+ <div class="meta-label">Date &amp; Repeat</div>
205
+ </div>
206
+
207
+ <div class="title">Microsoft training update</div>
208
+ <div class="desc">Description</div>
209
+ </div>
210
+
211
+ <!-- Bottom action toolbar -->
212
+ <div class="bottom-tools">
213
+ <div class="tool">
214
+ <!-- Tag icon -->
215
+ <svg viewBox="0 0 24 24">
216
+ <path d="M3 7l9-3 9 9-8 8-10-10z" stroke-linejoin="round" />
217
+ <circle cx="8" cy="9" r="2" />
218
+ </svg>
219
+ </div>
220
+ <div class="tool">
221
+ <!-- List icon with bullets -->
222
+ <svg viewBox="0 0 24 24">
223
+ <circle cx="5" cy="6" r="2" />
224
+ <path d="M9 6h10M9 12h10M9 18h10" />
225
+ <circle cx="5" cy="12" r="2" />
226
+ <circle cx="5" cy="18" r="2" />
227
+ </svg>
228
+ </div>
229
+ <div class="tool">
230
+ <!-- Image icon -->
231
+ <svg viewBox="0 0 24 24">
232
+ <rect x="3" y="4" width="18" height="16" rx="2" ry="2" />
233
+ <circle cx="9" cy="9" r="2" />
234
+ <path d="M5 18l5-5 4 4 3-3 3 4" />
235
+ </svg>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Home pill -->
240
+ <div class="home-pill"></div>
241
+ </div>
242
+ </body>
243
+ </html>
code/1470/1470_6.html ADDED
@@ -0,0 +1,243 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Calendar Date Picker</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #000000;
15
+ color: #FFFFFF;
16
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 96px;
26
+ padding: 0 32px;
27
+ box-sizing: border-box;
28
+ display: flex;
29
+ align-items: center;
30
+ justify-content: space-between;
31
+ color: #EAEAEA;
32
+ font-size: 38px;
33
+ letter-spacing: 0.5px;
34
+ }
35
+ .status-right {
36
+ display: flex;
37
+ align-items: center;
38
+ gap: 22px;
39
+ }
40
+ .icon-dot {
41
+ width: 10px; height: 10px; background: #BDBDBD; border-radius: 50%;
42
+ }
43
+ .signal, .wifi, .battery {
44
+ display: inline-block;
45
+ }
46
+
47
+ /* Header with tabs and actions */
48
+ .header {
49
+ position: absolute;
50
+ top: 96px;
51
+ left: 0;
52
+ width: 1080px;
53
+ height: 120px;
54
+ padding: 0 32px;
55
+ box-sizing: border-box;
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: space-between;
59
+ }
60
+ .header-left, .header-right {
61
+ display: flex;
62
+ align-items: center;
63
+ gap: 28px;
64
+ }
65
+ .header-tabs {
66
+ display: flex;
67
+ align-items: center;
68
+ gap: 36px;
69
+ margin-left: 8px;
70
+ }
71
+ .tab {
72
+ position: relative;
73
+ font-size: 54px;
74
+ font-weight: 700;
75
+ color: #7C7C7C;
76
+ }
77
+ .tab.active {
78
+ color: #FFFFFF;
79
+ }
80
+ .tab.active::after {
81
+ content: "";
82
+ position: absolute;
83
+ left: 0;
84
+ bottom: -18px;
85
+ width: 60%;
86
+ height: 6px;
87
+ background: #4976FF;
88
+ border-radius: 4px;
89
+ }
90
+
91
+ /* Month title and weekday labels */
92
+ .month-title {
93
+ position: absolute;
94
+ top: 250px;
95
+ left: 48px;
96
+ font-size: 60px;
97
+ font-weight: 600;
98
+ color: #DADADA;
99
+ }
100
+ .weekday-row {
101
+ position: absolute;
102
+ top: 340px;
103
+ left: 40px;
104
+ width: 1000px;
105
+ display: grid;
106
+ grid-template-columns: repeat(7, 1fr);
107
+ color: #8E8E8E;
108
+ font-size: 34px;
109
+ text-align: center;
110
+ }
111
+
112
+ /* Calendar grid */
113
+ .calendar-grid {
114
+ position: absolute;
115
+ top: 410px;
116
+ left: 40px;
117
+ width: 1000px;
118
+ display: grid;
119
+ grid-template-columns: repeat(7, 1fr);
120
+ grid-auto-rows: 128px;
121
+ gap: 14px 0;
122
+ text-align: center;
123
+ font-size: 44px;
124
+ font-weight: 600;
125
+ }
126
+ .day {
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: center;
130
+ color: #EDEDED;
131
+ }
132
+ .day.muted { color: #666; }
133
+ .day .pill {
134
+ width: 96px;
135
+ height: 96px;
136
+ border-radius: 50%;
137
+ display: inline-flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ }
141
+ .day.selected .pill {
142
+ background: #4C6BFF;
143
+ color: #FFFFFF;
144
+ }
145
+
146
+ /* Bottom card */
147
+ .options-card {
148
+ position: absolute;
149
+ left: 24px;
150
+ right: 24px;
151
+ top: 1340px;
152
+ background: #1A1A1A;
153
+ border-radius: 28px;
154
+ padding: 20px 0;
155
+ box-shadow: 0 8px 16px rgba(0,0,0,0.5);
156
+ }
157
+ .option-row {
158
+ height: 160px;
159
+ padding: 0 28px;
160
+ display: flex;
161
+ align-items: center;
162
+ justify-content: space-between;
163
+ border-top: 1px solid rgba(255,255,255,0.06);
164
+ }
165
+ .option-row:first-child { border-top: none; }
166
+ .option-left {
167
+ display: flex;
168
+ align-items: center;
169
+ gap: 26px;
170
+ }
171
+ .option-title {
172
+ font-size: 42px;
173
+ color: #DCDCDC;
174
+ }
175
+ .option-value {
176
+ font-size: 38px;
177
+ color: #8F8F8F;
178
+ }
179
+ .circle-icon {
180
+ width: 72px; height: 72px; border-radius: 50%;
181
+ background: #2A2A2A;
182
+ display: flex; align-items: center; justify-content: center;
183
+ color: #BDBDBD;
184
+ }
185
+ .chevron {
186
+ width: 26px; height: 26px;
187
+ border-right: 3px solid #6F6F6F;
188
+ border-top: 3px solid #6F6F6F;
189
+ transform: rotate(45deg);
190
+ margin-right: 8px;
191
+ }
192
+
193
+ /* Gesture bar */
194
+ .gesture {
195
+ position: absolute;
196
+ bottom: 28px;
197
+ left: 50%;
198
+ transform: translateX(-50%);
199
+ width: 320px;
200
+ height: 12px;
201
+ background: #E6E6E6;
202
+ border-radius: 8px;
203
+ opacity: 0.9;
204
+ }
205
+
206
+ /* Simple icon svgs */
207
+ .icon { width: 56px; height: 56px; }
208
+ .kebab { width: 10px; height: 40px; display: inline-flex; flex-direction: column; justify-content: space-between; }
209
+ .kebab span { width: 8px; height: 8px; border-radius: 50%; background: #E0E0E0; display: block; }
210
+
211
+ </style>
212
+ </head>
213
+ <body>
214
+ <div id="render-target">
215
+
216
+ <!-- Status bar -->
217
+ <div class="status-bar">
218
+ <div class="status-left">12:06</div>
219
+ <div class="status-right">
220
+ <!-- a few tiny placeholders for status icons -->
221
+ <svg class="signal" viewBox="0 0 24 24" width="36" height="36" fill="#E0E0E0">
222
+ <rect x="2" y="16" width="3" height="6"></rect>
223
+ <rect x="7" y="12" width="3" height="10"></rect>
224
+ <rect x="12" y="8" width="3" height="14"></rect>
225
+ </svg>
226
+ <svg class="wifi" viewBox="0 0 24 24" width="36" height="36" fill="none" stroke="#E0E0E0" stroke-width="2">
227
+ <path d="M2 8c5-4 15-4 20 0"></path>
228
+ <path d="M5 12c3-3 11-3 14 0"></path>
229
+ <path d="M9 16c2-2 6-2 8 0"></path>
230
+ <circle cx="12" cy="20" r="1.5" fill="#E0E0E0"></circle>
231
+ </svg>
232
+ <svg class="battery" viewBox="0 0 28 16" width="44" height="26">
233
+ <rect x="1" y="1" width="22" height="14" rx="2" fill="none" stroke="#E0E0E0" stroke-width="2"></rect>
234
+ <rect x="3" y="3" width="16" height="10" fill="#E0E0E0"></rect>
235
+ <rect x="24" y="5" width="3" height="6" rx="1" fill="#E0E0E0"></rect>
236
+ </svg>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Header -->
241
+ <div class="header">
242
+ <div class="header-left">
243
+
code/1470/1470_7.html ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Calendar Date Picker</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #000000;
14
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
15
+ color: #FFFFFF;
16
+ }
17
+
18
+ /* Header / Tabs */
19
+ .topbar {
20
+ position: relative;
21
+ height: 140px;
22
+ padding: 28px 36px 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ box-sizing: border-box;
26
+ }
27
+ .left-icon { width: 72px; height: 72px; display:flex; align-items:center; justify-content:center; margin-right: 18px; }
28
+ .tabs { display: flex; gap: 46px; align-items: center; }
29
+ .tab {
30
+ font-size: 48px;
31
+ font-weight: 800;
32
+ letter-spacing: 0.3px;
33
+ color: #BDBDBD;
34
+ }
35
+ .tab.active { color: #FFFFFF; }
36
+ .tab-underline {
37
+ position: absolute;
38
+ left: 160px;
39
+ top: 118px;
40
+ width: 120px;
41
+ height: 6px;
42
+ background: #2962FF;
43
+ border-radius: 3px;
44
+ }
45
+ .right-actions {
46
+ margin-left: auto;
47
+ display: flex;
48
+ align-items: center;
49
+ gap: 24px;
50
+ }
51
+ .action-icon { width: 64px; height: 64px; display:flex; align-items:center; justify-content:center; }
52
+
53
+ /* Month header */
54
+ .month-header {
55
+ padding: 6px 54px 0 54px;
56
+ display: flex;
57
+ align-items: center;
58
+ gap: 18px;
59
+ }
60
+ .month-name {
61
+ font-size: 54px;
62
+ font-weight: 700;
63
+ }
64
+ .month-arrow {
65
+ width: 40px; height: 40px; display:flex; align-items:center; justify-content:center;
66
+ }
67
+
68
+ /* Weekdays and Calendar grid */
69
+ .weekdays {
70
+ margin: 24px 54px 12px 54px;
71
+ display: grid;
72
+ grid-template-columns: repeat(7, 1fr);
73
+ color: #9E9E9E;
74
+ font-size: 30px;
75
+ letter-spacing: 0.4px;
76
+ text-align: center;
77
+ }
78
+ .calendar-grid {
79
+ margin: 8px 54px 0 54px;
80
+ display: grid;
81
+ grid-template-columns: repeat(7, 1fr);
82
+ grid-auto-rows: 120px;
83
+ gap: 34px 0;
84
+ }
85
+ .day {
86
+ display: flex;
87
+ align-items: center;
88
+ justify-content: center;
89
+ font-size: 52px;
90
+ font-weight: 700;
91
+ color: #FFFFFF;
92
+ }
93
+ .day.empty { color: transparent; }
94
+
95
+ /* Options card */
96
+ .options-card {
97
+ position: absolute;
98
+ left: 28px;
99
+ right: 28px;
100
+ top: 1460px;
101
+ background: #1A1A1A;
102
+ border-radius: 22px;
103
+ box-shadow: 0 8px 24px rgba(0,0,0,0.6);
104
+ padding: 12px 0;
105
+ }
106
+ .option-row {
107
+ height: 160px;
108
+ padding: 0 28px;
109
+ display: flex;
110
+ align-items: center;
111
+ box-sizing: border-box;
112
+ border-bottom: 1px solid #2C2C2C;
113
+ }
114
+ .option-row:last-child { border-bottom: none; }
115
+ .icon-wrap {
116
+ width: 72px; height: 72px;
117
+ border-radius: 36px;
118
+ background: #3A3A3A;
119
+ display:flex; align-items:center; justify-content:center;
120
+ margin-right: 32px;
121
+ }
122
+ .option-label {
123
+ font-size: 42px;
124
+ font-weight: 600;
125
+ color: #E0E0E0;
126
+ }
127
+ .option-spacer { flex: 1; }
128
+ .option-value {
129
+ font-size: 38px;
130
+ color: #9E9E9E;
131
+ margin-right: 16px;
132
+ }
133
+ .chevron { width: 40px; height: 40px; display:flex; align-items:center; justify-content:center; }
134
+
135
+ /* Gesture bar */
136
+ .gesture-bar {
137
+ position: absolute;
138
+ left: 50%;
139
+ bottom: 34px;
140
+ transform: translateX(-50%);
141
+ width: 360px;
142
+ height: 14px;
143
+ background: #EDEDED;
144
+ border-radius: 10px;
145
+ opacity: 0.9;
146
+ }
147
+ </style>
148
+ </head>
149
+ <body>
150
+ <div id="render-target">
151
+
152
+ <!-- Header -->
153
+ <div class="topbar">
154
+ <div class="left-icon">
155
+ <svg width="44" height="44" viewBox="0 0 36 36">
156
+ <path d="M6 6 L30 30 M30 6 L6 30" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" fill="none"/>
157
+ </svg>
158
+ </div>
159
+ <div class="tabs">
160
+ <div class="tab active">Date</div>
161
+ <div class="tab">Duration</div>
162
+ </div>
163
+ <div class="right-actions">
164
+ <div class="action-icon
code/1470/1470_8.html ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Calendar UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #000;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute; top: 0; left: 0; right: 0;
19
+ height: 80px; padding: 0 24px;
20
+ display: flex; align-items: center; justify-content: space-between;
21
+ font-size: 30px; color: #fff;
22
+ }
23
+ .status-icons { display: flex; align-items: center; gap: 18px; opacity: 0.85; }
24
+
25
+ /* Top toolbar */
26
+ .topbar {
27
+ position: absolute; top: 80px; left: 0; right: 0;
28
+ height: 120px; padding: 0 24px;
29
+ display: flex; align-items: center;
30
+ }
31
+ .topbar .icon-btn { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
32
+ .topbar .titles { display: flex; align-items: baseline; gap: 28px; margin-left: 16px; }
33
+ .topbar .title {
34
+ font-size: 50px; font-weight: 700; line-height: 1;
35
+ }
36
+ .topbar .title.inactive { color: #7a7a7a; opacity: 0.6; }
37
+ .active-underline { border-bottom: 6px solid #3478f6; padding-bottom: 10px; }
38
+ .topbar .right { margin-left: auto; display: flex; align-items: center; gap: 30px; }
39
+
40
+ /* Month header */
41
+ .month-header {
42
+ position: absolute; top: 210px; left: 24px; right: 24px;
43
+ display: flex; align-items: center; gap: 16px;
44
+ font-size: 46px; font-weight: 600;
45
+ }
46
+ .month-header .chev { color: #9a9a9a; font-size: 42px; }
47
+
48
+ /* Weekday labels */
49
+ .weekdays {
50
+ position: absolute; top: 290px; left: 24px; right: 24px;
51
+ display: grid; grid-template-columns: repeat(7, 1fr);
52
+ color: #7f7f7f; font-size: 28px; text-align: center;
53
+ letter-spacing: 0.3px;
54
+ }
55
+
56
+ /* Calendar grid */
57
+ .calendar {
58
+ position: absolute; top: 360px; left: 24px; right: 24px;
59
+ display: grid; grid-template-columns: repeat(7, 1fr);
60
+ grid-auto-rows: 150px;
61
+ text-align: center;
62
+ }
63
+ .cell {
64
+ display: flex; align-items: center; justify-content: center;
65
+ font-size: 48px; font-weight: 600; color: #fff;
66
+ }
67
+ .cell.blank { color: transparent; }
68
+
69
+ /* Options card */
70
+ .options-card {
71
+ position: absolute; left: 24px; right: 24px; top: 1400px;
72
+ background: #1a1a1a; border-radius: 26px;
73
+ box-shadow: 0 8px 18px rgba(0,0,0,0.55);
74
+ overflow: hidden;
75
+ }
76
+ .option-row {
77
+ display: flex; align-items: center; justify-content: space-between;
78
+ padding: 34px 36px;
79
+ border-top: 1px solid rgba(255,255,255,0.06);
80
+ }
81
+ .option-row:first-child { border-top: none; }
82
+ .option-left { display: flex; align-items: center; gap: 26px; }
83
+ .icon {
84
+ width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center;
85
+ }
86
+ .option-label { font-size: 40px; font-weight: 600; color: #eaeaea; }
87
+ .option-right { display: flex; align-items: center; gap: 16px; color: #9b9b9b; font-size: 34px; }
88
+ .chevron { width: 28px; height: 28px; }
89
+
90
+ /* Gesture bar */
91
+ .gesture-bar {
92
+ position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
93
+ width: 260px; height: 10px; background: #e6e6e6; border-radius: 10px; opacity: 0.9;
94
+ }
95
+ svg { display: block; }
96
+ </style>
97
+ </head>
98
+ <body>
99
+ <div id="render-target">
100
+
101
+ <!-- Status bar -->
102
+ <div class="status-bar">
103
+ <div>12:07</div>
104
+ <div class="status-icons">
105
+ <!-- simple status icons -->
106
+ <svg width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="#9e9e9e"/></svg>
107
+ <svg width="24" height="24" viewBox="0 0 24 24"><rect x="4" y="10" width="16" height="10" rx="2" fill="#9e9e9e"/></svg>
108
+ <svg width="24" height="24" viewBox="0 0 24 24"><rect x="4" y="6" width="14" height="12" rx="2" fill="#9e9e9e"/><rect x="19" y="10" width="2" height="4" fill="#9e9e9e"/></svg>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- Top toolbar -->
113
+ <div class="topbar">
114
+ <div class="icon-btn">
115
+ <!-- Close (X) -->
116
+ <svg width="42" height="42" viewBox="0 0 42 42">
117
+ <line x1="8" y1="8" x2="34" y2="34" stroke="#ffffff" stroke-width="4" stroke-linecap="round"/>
118
+ <line x1="34" y1="8" x2="8" y2="34" stroke="#ffffff" stroke-width="4" stroke-linecap="round"/>
119
+ </svg>
120
+ </div>
121
+ <div class="titles">
122
+ <div class="title active-underline">Date</div>
123
+ <div class="title inactive">Duration</div>
124
+ </div>
125
+ <div class="right">
126
+ <!-- Check -->
127
+ <svg width="48" height="48" viewBox="0 0 48 48">
128
+ <polyline points="10,26 20,34 38,14" fill="none" stroke="#ffffff" stroke-width="5" stroke-linecap="round" stroke-linejoin="round"/>
129
+ </svg>
130
+ <!-- More (vertical dots) -->
131
+ <svg width="36" height="36" viewBox="0 0 36 36">
132
+ <circle cx="18" cy="8" r="3" fill="#ffffff"/>
133
+ <circle cx="18" cy="18" r="3" fill="#ffffff"/>
134
+ <circle cx="18" cy="28" r="3" fill="#ffffff"/>
135
+ </svg>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Month header -->
140
+ <div class="month-header">
141
+ <div>September</div>
142
+ <div class="chev">
143
+ <!-- Left chevron -->
144
+ <svg width="40" height="40" viewBox="0 0 40 40">
145
+ <polyline points="24,10 16,20 24,30" fill="none" stroke="#9a9a9a" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
146
+ </svg>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Weekdays -->
151
+ <div class="weekdays">
152
+ <div>Sun</div><div>Mon</div><div>Tue</div><div>Wed</div><div>Thu</div><div>Fri</div><div>Sat</div>
153
+ </div>
154
+
155
+ <!-- Calendar days -->
156
+ <div class="calendar">
157
+ <!-- Row 1 -->
158
+ <div class="cell blank"></div>
159
+ <div class="cell blank"></div>
160
+ <div class="cell blank"></div>
161
+ <div class="cell blank"></div>
162
+ <div class="cell blank"></div>
163
+ <div class="cell">1</div>
164
+ <div class="cell">2</div>
165
+ <!-- Row 2 -->
166
+ <div class="cell">3</div><div class="cell">4</div><div class="cell">5</div><div class="cell">6</div><div class="cell">7</div><div class="cell">8</div><div class="cell">9</div>
167
+ <!-- Row 3 -->
168
+ <div class="cell">10</div><div class="cell">11</div><div class="cell">12</div><div class="cell">13</div><div class="cell">14</div><div class="cell">15</div><div class="cell">16</div>
169
+ <!-- Row 4 -->
170
+ <div class="cell">17</div><div class="cell">18</div><div class="cell">19</div><div class="cell">20</div><div class="cell">21</div><div class="cell">22</div><div class="cell">23</div>
171
+ <!-- Row 5 -->
172
+ <div class="cell">24</div><div class="cell">25</div><div class="cell">26</div><div class="cell">27</div><div class="cell">28</div><div class="cell">29</div><div class="cell">30</div>
173
+ </div>
174
+
175
+ <!-- Options card -->
176
+ <div class="options-card">
177
+ <div class="option-row">
178
+ <div class="option-left">
179
+ <div class="icon">
180
+ <!-- Clock icon -->
181
+ <svg width="60" height="60" viewBox="0 0 60 60">
182
+ <circle cx="30" cy="30" r="22" fill="none" stroke="#b6b6b6" stroke-width="4"/>
183
+ <line x1="30" y1="30" x2="30" y2="18" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round"/>
184
+ <line x1="30" y1="30" x2="40" y2="34" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round"/>
185
+ </svg>
186
+ </div>
187
+ <div class="option-label">Set Time</div>
188
+ </div>
189
+ <div class="option-right">
190
+ <div>None</div>
191
+ <svg class="chevron" viewBox="0 0 28 28">
192
+ <polyline points="10,6 18,14 10,22" fill="none" stroke="#9b9b9b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+
197
+ <div class="option-row">
198
+ <div class="option-left">
199
+ <div class="icon">
200
+ <!-- Alarm/Reminder icon -->
201
+ <svg width="60" height="60" viewBox="0 0 60 60">
202
+ <circle cx="30" cy="32" r="18" fill="none" stroke="#b6b6b6" stroke-width="4"/>
203
+ <line x1="30" y1="32" x2="30" y2="22" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round"/>
204
+ <line x1="30" y1="32" x2="38" y2="36" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round"/>
205
+ <line x1="18" y1="50" x2="24" y2="46" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round"/>
206
+ <line x1="42" y1="50" x2="36" y2="46" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round"/>
207
+ </svg>
208
+ </div>
209
+ <div class="option-label">Set Reminder</div>
210
+ </div>
211
+ <div class="option-right">
212
+ <div>None</div>
213
+ <svg class="chevron" viewBox="0 0 28 28">
214
+ <polyline points="10,6 18,14 10,22" fill="none" stroke="#9b9b9b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
215
+ </svg>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="option-row">
220
+ <div class="option-left">
221
+ <div class="icon">
222
+ <!-- Repeat icon -->
223
+ <svg width="60" height="60" viewBox="0 0 60 60">
224
+ <path d="M22 20h16l-4-6" fill="none" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
225
+ <path d="M38 40H22l4 6" fill="none" stroke="#b6b6b6" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
226
+ <path d="M22 20c-6 0-10 4-10 10s4 10 10 10" fill="none" stroke="#b6b6b6" stroke-width="4"/>
227
+ <path d="M38 40c6 0 10-4 10-10s-4-10-10-10" fill="none" stroke="#b6b6b6" stroke-width="4"/>
228
+ </svg>
229
+ </div>
230
+ <div class="option-label">Set Repeat</div>
231
+ </div>
232
+ <div class="option-right">
233
+ <div>No Repeat</div>
234
+ <svg class="chevron" viewBox="0 0 28 28">
235
+ <polyline points="10,6 18,14 10,22" fill="none" stroke="#9b9b9b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
236
+ </svg>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <!-- Gesture bar -->
242
+ <div class="gesture-bar"></div>
243
+
244
+ </div>
245
+ </body>
246
+ </html>
code/1470/1470_9.html ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Calendar Date Picker</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #000;
13
+ color: #fff;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ height: 96px;
19
+ display: flex; align-items: center; justify-content: space-between;
20
+ padding: 0 36px; font-weight: 500; font-size: 34px; color: #fff;
21
+ }
22
+ .status-icons { display: flex; align-items: center; gap: 26px; }
23
+ .dot { width: 14px; height: 14px; border-radius: 50%; background: #fff; opacity: 0.8; }
24
+
25
+ /* Top app bar with tabs */
26
+ .topbar {
27
+ height: 116px;
28
+ display: flex; align-items: center; justify-content: space-between;
29
+ padding: 0 32px;
30
+ }
31
+ .topbar .left { display: flex; align-items: center; gap: 28px; }
32
+ .icon-btn {
33
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
34
+ color: #fff; font-size: 48px; line-height: 0.8;
35
+ }
36
+ .tabs { display: flex; align-items: center; gap: 36px; }
37
+ .tab {
38
+ font-size: 48px; font-weight: 700; letter-spacing: 0.3px;
39
+ position: relative;
40
+ }
41
+ .tab.inactive { color: #666; font-weight: 700; }
42
+ .tab.active { color: #fff; }
43
+ .tab.active .underline {
44
+ position: absolute; left: 0; right: 0; bottom: -18px; height: 8px; background: #2F6DE1; border-radius: 4px;
45
+ }
46
+ .topbar .right { display: flex; align-items: center; gap: 28px; }
47
+ .svg-icon { width: 56px; height: 56px; }
48
+
49
+ /* Calendar */
50
+ .calendar {
51
+ padding: 16px 40px 0 40px;
52
+ }
53
+ .month-row {
54
+ display: flex; align-items: center; gap: 12px;
55
+ font-size: 54px; color: #cfcfcf; font-weight: 600; margin-bottom: 18px;
56
+ }
57
+ .month-row .arrow { color: #9e9e9e; font-size: 46px; margin-left: 8px; }
58
+ .weekday-row {
59
+ display: grid; grid-template-columns: repeat(7, 1fr);
60
+ font-size: 34px; color: #9e9e9e; margin: 10px 0 20px;
61
+ }
62
+ .weekday-row div { text-align: center; }
63
+ .days-grid {
64
+ display: grid; grid-template-columns: repeat(7, 1fr);
65
+ row-gap: 38px; column-gap: 14px;
66
+ padding-top: 8px;
67
+ }
68
+ .day {
69
+ text-align: center; font-size: 46px; font-weight: 700; color: #fff;
70
+ }
71
+
72
+ /* Options card */
73
+ .options-card {
74
+ width: 1008px; margin: 64px auto 0; background: #151515; border-radius: 28px;
75
+ box-shadow: 0 2px 0 rgba(255,255,255,0.04) inset;
76
+ }
77
+ .opt-row {
78
+ display: flex; align-items: center; justify-content: space-between;
79
+ padding: 40px 40px; border-bottom: 1px solid #242424;
80
+ }
81
+ .opt-row:last-child { border-bottom: none; }
82
+ .opt-left { display: flex; align-items: center; gap: 28px; }
83
+ .opt-title { font-size: 44px; font-weight: 600; color: #eaeaea; }
84
+ .opt-right { display: flex; align-items: center; gap: 18px; color: #8e8e8e; font-size: 40px; }
85
+ .chev { width: 28px; height: 28px; }
86
+
87
+ /* Gesture bar */
88
+ .gesture-bar {
89
+ position: absolute; left: 50%; transform: translateX(-50%);
90
+ bottom: 28px; width: 300px; height: 12px; border-radius: 12px; background: #e9e9e9;
91
+ opacity: 0.9;
92
+ }
93
+ </style>
94
+ </head>
95
+ <body>
96
+ <div id="render-target">
97
+
98
+ <!-- Status Bar -->
99
+ <div class="status-bar">
100
+ <div>12:07</div>
101
+ <div class="status-icons">
102
+ <!-- simple placeholders for status icons -->
103
+ <div class="dot"></div>
104
+ <div class="dot"></div>
105
+ <div class="dot"></div>
106
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="#fff" opacity="0.85">
107
+ <path d="M3 10h18v4H3z"></path>
108
+ </svg>
109
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="#fff">
110
+ <path d="M17 2H7c-1.1 0-2 .9-2 2v16l7-3 7 3V4c0-1.1-.9-2-2-2z"></path>
111
+ </svg>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- Top App Bar -->
116
+ <div class="topbar">
117
+ <div class="left">
118
+ <div class="icon-btn">×</div>
119
+ <div class="tabs">
120
+ <div class="tab active">Date<div class="underline"></div></div>
121
+ <div class="tab inactive">Duration</div>
122
+ </div>
123
+ </div>
124
+ <div class="right">
125
+ <!-- Check icon -->
126
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
127
+ <path d="M5 13l4 4 10-10"></path>
128
+ </svg>
129
+ <!-- Kebab menu -->
130
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="#fff">
131
+ <circle cx="12" cy="5" r="2.2"></circle>
132
+ <circle cx="12" cy="12" r="2.2"></circle>
133
+ <circle cx="12" cy="19" r="2.2"></circle>
134
+ </svg>
135
+ </div>
136
+ </div>
137
+
138
+ <!-- Calendar -->
139
+ <div class="calendar">
140
+ <div class="month-row">
141
+ <div>October</div>
142
+ <div class="arrow">‹</div>
143
+ </div>
144
+
145
+ <div class="weekday-row">
146
+ <div>Sun</div><div>Mon</div><div>Tue</div><div>Wed</div><div>Thu</div><div>Fri</div><div>Sat</div>
147
+ </div>
148
+
149
+ <div class="days-grid">
150
+ <!-- Row 1 -->
151
+ <div class="day">1</div><div class="day">2</div><div class="day">3</div><div class="day">4</div><div class="day">5</div><div class="day">6</div><div class="day">7</div>
152
+ <!-- Row 2 -->
153
+ <div class="day">8</div><div class="day">9</div><div class="day">10</div><div class="day">11</div><div class="day">12</div><div class="day">13</div><div class="day">14</div>
154
+ <!-- Row 3 -->
155
+ <div class="day">15</div><div class="day">16</div><div class="day">17</div><div class="day">18</div><div class="day">19</div><div class="day">20</div><div class="day">21</div>
156
+ <!-- Row 4 -->
157
+ <div class="day">22</div><div class="day">23</div><div class="day">24</div><div class="day">25</div><div class="day">26</div><div class="day">27</div><div class="day">28</div>
158
+ <!-- Row 5 -->
159
+ <div class="day">29</div><div class="day">30</div><div class="day">31</div><div class="day"></div><div class="day"></div><div class="day"></div><div class="day"></div>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Options card -->
164
+ <div class="options-card">
165
+ <div class="opt-row">
166
+ <div class="opt-left">
167
+ <!-- Clock icon -->
168
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="none" stroke="#9e9e9e" stroke-width="2">
169
+ <circle cx="12" cy="12" r="8" stroke="#9e9e9e"></circle>
170
+ <path d="M12 7v5l4 2" stroke="#9e9e9e" stroke-linecap="round"></path>
171
+ </svg>
172
+ <div class="opt-title">Set Time</div>
173
+ </div>
174
+ <div class="opt-right">
175
+ <div>None</div>
176
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#8e8e8e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
177
+ <path d="M9 6l6 6-6 6"></path>
178
+ </svg>
179
+ </div>
180
+ </div>
181
+
182
+ <div class="opt-row">
183
+ <div class="opt-left">
184
+ <!-- Alarm icon -->
185
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="#9e9e9e">
186
+ <path d="M6 2l-3 3 3 1 2-3-2-1zm12 0l-2 1 2 3 3-1-3-3z"></path>
187
+ <circle cx="12" cy="14" r="7"></circle>
188
+ <rect x="10" y="7" width="4" height="8" fill="#151515"></rect>
189
+ <path d="M12 11v4" stroke="#151515" stroke-width="2"></path>
190
+ </svg>
191
+ <div class="opt-title">Set Reminder</div>
192
+ </div>
193
+ <div class="opt-right">
194
+ <div>None</div>
195
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#8e8e8e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
196
+ <path d="M9 6l6 6-6 6"></path>
197
+ </svg>
198
+ </div>
199
+ </div>
200
+
201
+ <div class="opt-row">
202
+ <div class="opt-left">
203
+ <!-- Repeat icon -->
204
+ <svg class="svg-icon" viewBox="0 0 24 24" fill="none" stroke="#9e9e9e" stroke-width="2">
205
+ <path d="M4 7h9l-2-2M20 17h-9l2 2" stroke-linecap="round" stroke-linejoin="round"></path>
206
+ <path d="M7 7a6 6 0 0110 2M17 17a6 6 0 01-10-2" opacity="0.6"></path>
207
+ </svg>
208
+ <div class="opt-title">Set Repeat</div>
209
+ </div>
210
+ <div class="opt-right">
211
+ <div>No Repeat</div>
212
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#8e8e8e" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
213
+ <path d="M9 6l6 6-6 6"></path>
214
+ </svg>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Gesture indicator -->
220
+ <div class="gesture-bar"></div>
221
+ </div>
222
+ </body>
223
+ </html>
code/14700/14700_0.html ADDED
@@ -0,0 +1,393 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Generated UI</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; color:#222; }
7
+ #render-target {
8
+ position: relative;
9
+ width: 1080px;
10
+ height: 2400px;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Top status bar */
16
+ .status-bar {
17
+ height: 110px;
18
+ padding: 0 32px;
19
+ display: flex;
20
+ align-items: center;
21
+ justify-content: space-between;
22
+ color:#222;
23
+ font-size: 40px;
24
+ }
25
+ .status-left { display:flex; align-items:center; gap:18px; }
26
+ .status-right { display:flex; align-items:center; gap:28px; }
27
+ .icon { width: 48px; height: 48px; }
28
+ .small-icon { width:44px; height:44px; }
29
+
30
+ /* Search bar */
31
+ .search-wrapper {
32
+ padding: 0 32px;
33
+ }
34
+ .search-bar {
35
+ height: 120px;
36
+ border-radius: 60px;
37
+ border: 1px solid #e3e3e3;
38
+ box-shadow: 0 2px 6px rgba(0,0,0,0.08);
39
+ display:flex;
40
+ align-items:center;
41
+ padding: 0 28px;
42
+ gap:22px;
43
+ }
44
+ .search-text {
45
+ flex:1;
46
+ font-size: 42px;
47
+ color:#6f6f6f;
48
+ }
49
+ .avatar {
50
+ width: 92px;
51
+ height: 92px;
52
+ border-radius: 46px;
53
+ background:#8d6e63;
54
+ color:#fff;
55
+ font-weight:bold;
56
+ display:flex;
57
+ align-items:center;
58
+ justify-content:center;
59
+ font-size: 42px;
60
+ }
61
+
62
+ /* Promo card */
63
+ .promo {
64
+ margin: 36px 32px 0 32px;
65
+ border-radius: 24px;
66
+ border:1px solid #e6e6e6;
67
+ background:#f7f9ff;
68
+ padding: 36px;
69
+ display:flex;
70
+ align-items:center;
71
+ justify-content: space-between;
72
+ }
73
+ .promo-text {
74
+ max-width: 620px;
75
+ }
76
+ .promo-title { font-size: 52px; font-weight: 700; margin-bottom: 20px; }
77
+ .promo-desc { font-size: 40px; color:#666; line-height: 1.3; }
78
+ .promo-actions { display:flex; align-items:center; gap:24px; margin-top:28px; }
79
+ .btn {
80
+ background:#1a73e8;
81
+ color:#fff;
82
+ padding: 22px 34px;
83
+ border-radius: 60px;
84
+ font-size: 40px;
85
+ font-weight:600;
86
+ display:inline-flex;
87
+ align-items:center;
88
+ justify-content:center;
89
+ }
90
+ .promo-img {
91
+ width: 280px;
92
+ height: 220px;
93
+ background:#E0E0E0;
94
+ border:1px solid #BDBDBD;
95
+ border-radius: 16px;
96
+ display:flex;
97
+ align-items:center;
98
+ justify-content:center;
99
+ color:#757575;
100
+ font-size: 34px;
101
+ text-align:center;
102
+ }
103
+
104
+ /* Section titles */
105
+ .section {
106
+ margin: 40px 32px 0 32px;
107
+ }
108
+ .section-title {
109
+ font-size: 56px;
110
+ font-weight: 700;
111
+ margin-bottom: 24px;
112
+ }
113
+
114
+ /* Recently saved card */
115
+ .card {
116
+ width: 640px;
117
+ border-radius: 28px;
118
+ border:1px solid #e5e5e5;
119
+ box-shadow: 0 4px 10px rgba(0,0,0,0.06);
120
+ overflow:hidden;
121
+ background:#fff;
122
+ }
123
+ .card-img {
124
+ width:100%;
125
+ height: 380px;
126
+ background:#E0E0E0;
127
+ border-bottom:1px solid #BDBDBD;
128
+ display:flex;
129
+ align-items:center;
130
+ justify-content:center;
131
+ color:#757575;
132
+ font-size: 36px;
133
+ }
134
+ .card-body { padding: 28px; }
135
+ .card-title { font-size: 52px; font-weight:700; margin-bottom: 16px; }
136
+ .card-sub { font-size: 40px; color:#666; margin-bottom: 22px; }
137
+ .card-row { display:flex; align-items:center; gap:20px; font-size: 40px; color:#444; }
138
+
139
+ /* Your lists header */
140
+ .lists-header {
141
+ display:flex;
142
+ align-items:center;
143
+ justify-content: space-between;
144
+ margin-top: 48px;
145
+ }
146
+ .new-list {
147
+ font-size: 44px;
148
+ color:#1a73e8;
149
+ display:flex;
150
+ align-items:center;
151
+ gap:14px;
152
+ font-weight:600;
153
+ }
154
+ .plus {
155
+ width: 56px; height:56px; border-radius: 28px; background:#eaf2ff; color:#1a73e8;
156
+ display:flex; align-items:center; justify-content:center; font-size: 44px;
157
+ }
158
+
159
+ /* List rows */
160
+ .list-row {
161
+ display:flex;
162
+ align-items:center;
163
+ justify-content: space-between;
164
+ padding: 26px 8px 26px 0;
165
+ border-bottom: 1px solid #eee;
166
+ }
167
+ .list-left {
168
+ display:flex; align-items:center; gap:32px;
169
+ }
170
+ .list-icon {
171
+ width: 64px; height:64px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
172
+ }
173
+ .list-text .title { font-size: 48px; font-weight:700; }
174
+ .list-text .sub { font-size: 38px; color:#777; margin-top: 6px; }
175
+ .kebab { width: 22px; height: 80px; display:flex; align-items:center; justify-content:center; margin-right: 8px; }
176
+ .dots { width: 10px; height:10px; background:#777; border-radius:50%; margin:6px 0; }
177
+
178
+ /* Bottom nav */
179
+ .bottom-nav {
180
+ position:absolute;
181
+ left:0; bottom:0;
182
+ width:100%;
183
+ height: 180px;
184
+ border-top:1px solid #e6e6e6;
185
+ background:#fff;
186
+ display:flex;
187
+ align-items:center;
188
+ justify-content: space-around;
189
+ }
190
+ .tab {
191
+ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
192
+ color:#666; font-size: 34px;
193
+ }
194
+ .tab .nav-icon { width:72px; height:72px; }
195
+ .tab.active { color:#1a73e8; }
196
+ .bookmark-badge {
197
+ width: 108px; height:108px; border-radius:54px; background:#eaf2ff; display:flex; align-items:center; justify-content:center;
198
+ }
199
+
200
+ /* Utility SVG colors */
201
+ .gray-stroke { stroke:#555; }
202
+ .blue-fill { fill:#1a73e8; }
203
+ .pink { color:#e91e63; }
204
+ .green { color:#2e7d32; }
205
+ .orange { color:#ef6c00; }
206
+ </style>
207
+ </head>
208
+ <body>
209
+ <div id="render-target">
210
+
211
+ <!-- Status bar -->
212
+ <div class="status-bar">
213
+ <div class="status-left">
214
+ <div>8:33</div>
215
+ <!-- simple weather cloud icon -->
216
+ <svg class="small-icon" viewBox="0 0 24 24">
217
+ <path fill="#757575" d="M6 15a4 4 0 1 0 0-8c-.7 0-1.4.2-2 .5A5 5 0 1 0 6 15h10a3 3 0 1 0 0-6c-.3 0-.6 0-.8.1A5 5 0 0 0 6 15z"/>
218
+ </svg>
219
+ </div>
220
+ <div class="status-right">
221
+ <!-- location -->
222
+ <svg class="small-icon" viewBox="0 0 24 24">
223
+ <path fill="#444" d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/>
224
+ </svg>
225
+ <!-- wifi -->
226
+ <svg class="small-icon" viewBox="0 0 24 24">
227
+ <path fill="#444" d="M12 18l-2 2 2 2 2-2-2-2zm0-4a6 6 0 0 1 4.2 1.7l1.4-1.4A8 8 0 0 0 12 12a8 8 0 0 0-5.6 2.3l1.4 1.4A6 6 0 0 1 12 14zm0-6a10 10 0 0 1 7 3l1.4-1.4A12 12 0 0 0 12 4a12 12 0 0 0-8.4 3.5L5 8a10 10 0 0 1 7-4z"/>
228
+ </svg>
229
+ <!-- battery -->
230
+ <svg class="small-icon" viewBox="0 0 24 24">
231
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="#444"></rect>
232
+ <rect x="20" y="10" width="2" height="4" fill="#444"></rect>
233
+ <rect x="4" y="8" width="12" height="8" fill="#9ccc65"></rect>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Search bar -->
239
+ <div class="search-wrapper">
240
+ <div class="search-bar">
241
+ <!-- Google maps pin icon -->
242
+ <svg class="icon" viewBox="0 0 24 24">
243
+ <path fill="#4285F4" d="M12 2a7 7 0 0 0-7 7c0 5.5 7 13 7 13s7-7.5 7-13a7 7 0 0 0-7-7z"/>
244
+ <circle cx="12" cy="9" r="3" fill="#fff"></circle>
245
+ </svg>
246
+ <div class="search-text">Search here</div>
247
+ <!-- mic icon -->
248
+ <svg class="icon" viewBox="0 0 24 24">
249
+ <path fill="#444" d="M12 14a3 3 0 0 0 3-3V6a3 3 0 1 0-6 0v5a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6v3h2v-3a7 7 0 0 0 6-6h-2z"/>
250
+ </svg>
251
+ <div class="avatar">C</div>
252
+ </div>
253
+ </div>
254
+
255
+ <!-- Promo card -->
256
+ <div class="promo">
257
+ <div class="promo-text">
258
+ <div class="promo-title">Give your home a precise address</div>
259
+ <div class="promo-desc">Get deliveries fast and trouble-free, no matter where you live</div>
260
+ <div class="promo-actions">
261
+ <div class="btn">Get started</div>
262
+ </div>
263
+ </div>
264
+ <div class="promo-img">[IMG: Address Illustration]</div>
265
+ </div>
266
+
267
+ <!-- Recently saved -->
268
+ <div class="section">
269
+ <div class="section-title">Recently saved</div>
270
+
271
+ <div class="card">
272
+ <div class="card-img">[IMG: Ramagya School Campus]</div>
273
+ <div class="card-body">
274
+ <div class="card-title">Ramagya School</div>
275
+ <div class="card-sub">Opens soon · School</div>
276
+ <div class="card-row">
277
+ <!-- heart icon -->
278
+ <svg class="icon" viewBox="0 0 24 24">
279
+ <path fill="none" stroke="#e91e63" stroke-width="2" d="M12 21s-7-4.6-9.3-8A5.6 5.6 0 0 1 6 4a5 5 0 0 1 6 2 5 5 0 0 1 6-2 5.6 5.6 0 0 1 3.3 9c-2.3 3.4-9.3 8-9.3 8z"/>
280
+ </svg>
281
+ <div>Favorites</div>
282
+ </div>
283
+ </div>
284
+ </div>
285
+ </div>
286
+
287
+ <!-- Your lists -->
288
+ <div class="section">
289
+ <div class="lists-header">
290
+ <div class="section-title" style="margin:0;">Your lists</div>
291
+ <div class="new-list"><div class="plus">+</div>New list</div>
292
+ </div>
293
+
294
+ <!-- Favorites row -->
295
+ <div class="list-row">
296
+ <div class="list-left">
297
+ <div class="list-icon" style="background:#ffe3ec;">
298
+ <svg viewBox="0 0 24 24" width="48" height="48">
299
+ <path fill="#e91e63" d="M12 21s-7-4.6-9.3-8A5.6 5.6 0 0 1 6 4a5 5 0 0 1 6 2 5 5 0 0 1 6-2 5.6 5.6 0 0 1 3.3 9c-2.3 3.4-9.3 8-9.3 8z"/>
300
+ </svg>
301
+ </div>
302
+ <div class="list-text">
303
+ <div class="title">Favorites</div>
304
+ <div class="sub">Private · 1 place</div>
305
+ </div>
306
+ </div>
307
+ <div class="kebab">
308
+ <div class="dots"></div>
309
+ <div class="dots"></div>
310
+ <div class="dots"></div>
311
+ </div>
312
+ </div>
313
+
314
+ <!-- Want to go row -->
315
+ <div class="list-row">
316
+ <div class="list-left">
317
+ <div class="list-icon" style="background:#e7f5e7;">
318
+ <svg viewBox="0 0 24 24" width="48" height="48">
319
+ <path fill="#2e7d32" d="M6 3l5 4-5 4V8H3V6h3V3zm7 4h2v10h-2V7zm4 0h2v10h-2V7z"/>
320
+ </svg>
321
+ </div>
322
+ <div class="list-text">
323
+ <div class="title">Want to go</div>
324
+ <div class="sub">Private · 0 places</div>
325
+ </div>
326
+ </div>
327
+ <div class="kebab">
328
+ <div class="dots"></div>
329
+ <div class="dots"></div>
330
+ <div class="dots"></div>
331
+ </div>
332
+ </div>
333
+
334
+ <!-- Starred places row -->
335
+ <div class="list-row" style="border-bottom: none;">
336
+ <div class="list-left">
337
+ <div class="list-icon" style="background:#fff3e0;">
338
+ <svg viewBox="0 0 24 24" width="48" height="48">
339
+ <path fill="#ef6c00" d="M12 17.3l-6.2 3.7 1.8-6.9-5.3-4.5 7-.6L12 2l2.7 6.9 7 .6-5.3 4.5 1.8 6.9z"/>
340
+ </svg>
341
+ </div>
342
+ <div class="list-text">
343
+ <div class="title">Starred places</div>
344
+ <div class="sub">Private</div>
345
+ </div>
346
+ </div>
347
+ <div class="kebab">
348
+ <div class="dots"></div>
349
+ <div class="dots"></div>
350
+ <div class="dots"></div>
351
+ </div>
352
+ </div>
353
+ </div>
354
+
355
+ <!-- Bottom navigation -->
356
+ <div class="bottom-nav">
357
+ <div class="tab">
358
+ <!-- explore icon (pin) -->
359
+ <svg class="nav-icon" viewBox="0 0 24 24">
360
+ <path fill="#777" d="M12 2a7 7 0 0 0-7 7c0 5.5 7 13 7 13s7-7.5 7-13a7 7 0 0 0-7-7zm0 9a2 2 0 1 1 0-4 2 2 0 0 1 0 4z"/>
361
+ </svg>
362
+ <div>Explore</div>
363
+ </div>
364
+
365
+ <div class="tab">
366
+ <!-- go icon (bus) -->
367
+ <svg class="nav-icon" viewBox="0 0 24 24">
368
+ <path fill="#777" d="M4 5h16a2 2 0 0 1 2 2v8a3 3 0 0 1-3 3v1a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-1H9v1a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-1a3 3 0 0 1-3-3V7a2 2 0 0 1 2-2zm2 4h12v3H6V9zm1 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"/>
369
+ </svg>
370
+ <div>Go</div>
371
+ </div>
372
+
373
+ <div class="tab active">
374
+ <div class="bookmark-badge">
375
+ <svg class="nav-icon" viewBox="0 0 24 24">
376
+ <path fill="#1a73e8" d="M6 3h12a1 1 0 0 1 1 1v17l-7-4-7 4V4a1 1 0 0 1 1-1z"/>
377
+ </svg>
378
+ </div>
379
+ <div>Saved</div>
380
+ </div>
381
+
382
+ <div class="tab">
383
+ <!-- bell icon -->
384
+ <svg class="nav-icon" viewBox="0 0 24 24">
385
+ <path fill="#777" d="M12 2a3 3 0 0 1 3 3v1.1A7 7 0 0 1 20 13v3h-16v-3a7 7 0 0 1 5-6.9V5a3 3 0 0 1 3-3zm0 20a3 3 0 0 0 3-3H9a3 3 0 0 0 3 3z"/>
386
+ </svg>
387
+ <div>Updates</div>
388
+ </div>
389
+ </div>
390
+
391
+ </div>
392
+ </body>
393
+ </html>
code/14700/14700_1.html ADDED
@@ -0,0 +1,345 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Google Maps Account Modal - Mock</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#f5f5f5;
11
+ border-radius:28px;
12
+ box-shadow:0 10px 40px rgba(0,0,0,0.25);
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position:absolute; top:0; left:0; right:0;
18
+ height:90px; padding:0 28px;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ color:#1e1e1e; font-weight:600; font-size:38px;
21
+ background:transparent;
22
+ }
23
+ .status-right { display:flex; align-items:center; gap:22px; }
24
+ .status-icon {
25
+ width:40px; height:40px; border-radius:6px; background:#ccc;
26
+ }
27
+
28
+ /* Search header */
29
+ .top-search {
30
+ position:absolute; top:110px; left:40px; right:40px;
31
+ display:flex; align-items:center; gap:20px;
32
+ }
33
+ .search-field {
34
+ flex:1; height:110px; border-radius:55px;
35
+ background:#ffffff; box-shadow:0 2px 6px rgba(0,0,0,0.08) inset;
36
+ display:flex; align-items:center;
37
+ padding:0 32px; gap:24px; border:1px solid #e4e4e4;
38
+ }
39
+ .maps-pin {
40
+ width:60px; height:60px; border-radius:30px;
41
+ background:linear-gradient(135deg,#4caf50,#f44336,#2196f3);
42
+ box-shadow:0 0 0 2px #ffffff inset;
43
+ }
44
+ .search-text { font-size:40px; color:#666; flex:1; }
45
+ .mic-icon {
46
+ width:46px; height:46px; border-radius:50%;
47
+ background:#1a73e8;
48
+ }
49
+ .avatar-small {
50
+ width:92px; height:92px; border-radius:46px;
51
+ background:#c49a7c; color:#fff; display:flex; align-items:center; justify-content:center;
52
+ font-size:42px; font-weight:700; border:2px solid #e9e9e9;
53
+ }
54
+
55
+ /* Background content placeholders */
56
+ .map-placeholder {
57
+ position:absolute; top:240px; left:0; right:0; bottom:220px;
58
+ background:#e0e0e0; border-top:1px solid #d2d2d2;
59
+ display:flex; align-items:center; justify-content:center; color:#777;
60
+ font-size:34px;
61
+ }
62
+
63
+ .bottom-nav {
64
+ position:absolute; bottom:0; left:0; right:0; height:220px;
65
+ background:#ffffff; border-top:1px solid #ddd;
66
+ display:flex; align-items:center; justify-content:space-around;
67
+ }
68
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:18px; color:#555; font-size:34px; }
69
+ .nav-icon { width:70px; height:70px; border-radius:14px; background:#d9d9d9; }
70
+ .nav-item.active { color:#1a73e8; }
71
+ .bookmark { width:70px; height:70px; border-radius:14px; background:#1a73e8; }
72
+
73
+ /* Scrim behind modal */
74
+ .scrim {
75
+ position:absolute; inset:0;
76
+ background:rgba(0,0,0,0.35);
77
+ }
78
+
79
+ /* Modal sheet */
80
+ .modal-sheet {
81
+ position:absolute; left:40px; right:40px; top:160px;
82
+ height:1970px; border-radius:60px;
83
+ background:#f1f6ef;
84
+ box-shadow:0 12px 40px rgba(0,0,0,0.35);
85
+ overflow:hidden;
86
+ }
87
+ .sheet-inner { padding:40px; }
88
+ .sheet-top {
89
+ background:#ffffff; border-radius:40px; padding:26px 30px;
90
+ display:flex; align-items:center; justify-content:center;
91
+ font-size:60px; font-weight:700; color:#4285f4; letter-spacing:1px;
92
+ position:relative;
93
+ }
94
+ .close-btn {
95
+ position:absolute; top:26px; left:26px;
96
+ width:58px; height:58px; border-radius:50%;
97
+ border:1px solid #ddd; display:flex; align-items:center; justify-content:center;
98
+ color:#333; font-size:40px; background:#f8f8f8;
99
+ }
100
+
101
+ .account-row {
102
+ margin-top:26px;
103
+ background:#ffffff; border-radius:32px; padding:30px;
104
+ display:flex; align-items:center; gap:28px; position:relative;
105
+ }
106
+ .avatar {
107
+ width:104px; height:104px; border-radius:52px; background:#b58a72; color:#fff;
108
+ display:flex; align-items:center; justify-content:center; font-weight:700; font-size:48px;
109
+ box-shadow:0 0 0 3px #eee inset;
110
+ }
111
+ .account-info { flex:1; }
112
+ .acc-name { font-size:44px; font-weight:700; color:#222; }
113
+ .acc-email { font-size:34px; color:#666; margin-top:6px; }
114
+ .chevron {
115
+ width:56px; height:56px; border-radius:28px; border:1px solid #ddd;
116
+ display:flex; align-items:center; justify-content:center; background:#f6f6f6;
117
+ }
118
+ .chevron:before {
119
+ content:"▾"; font-size:34px; color:#444;
120
+ }
121
+
122
+ .manage-btn {
123
+ margin-top:24px;
124
+ height:96px; border-radius:48px; background:#ffffff; border:2px solid #e3e3e3;
125
+ display:flex; align-items:center; justify-content:center;
126
+ font-size:40px; font-weight:600; color:#333;
127
+ }
128
+
129
+ .list-card {
130
+ margin-top:30px; background:#ffffff; border-radius:36px; padding:18px 10px;
131
+ }
132
+ .item {
133
+ display:flex; align-items:center; gap:28px; padding:26px 24px;
134
+ font-size:40px; color:#1f1f1f;
135
+ }
136
+ .item + .item { border-top:1px solid #eee; }
137
+ .icon {
138
+ width:68px; height:68px; border-radius:16px; background:#f0f0f0; display:flex; align-items:center; justify-content:center;
139
+ border:1px solid #ddd;
140
+ }
141
+ .sub-card {
142
+ margin-top:26px; background:#ffffff; border-radius:36px; padding:18px 10px;
143
+ }
144
+
145
+ .footer-links {
146
+ margin-top:26px; display:flex; align-items:center; justify-content:center;
147
+ gap:20px; color:#666; font-size:34px;
148
+ }
149
+ .dot { color:#999; }
150
+
151
+ /* Small header below sheet - just to hint underlying */
152
+ .under-header {
153
+ position:absolute; bottom:350px; left:40px; right:40px;
154
+ font-size:44px; font-weight:600; color:#444;
155
+ }
156
+
157
+ /* Simple inline SVGs adjust */
158
+ .icon svg { width:40px; height:40px; }
159
+ .shield { background:#e9f3ff; }
160
+ .gear { background:#f3f3f3; }
161
+ </style>
162
+ </head>
163
+ <body>
164
+ <div id="render-target">
165
+
166
+ <!-- Status bar -->
167
+ <div class="status-bar">
168
+ <div>8:35</div>
169
+ <div class="status-right">
170
+ <div class="status-icon"></div>
171
+ <div class="status-icon"></div>
172
+ <div class="status-icon"></div>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Top search area -->
177
+ <div class="top-search">
178
+ <div class="search-field">
179
+ <div class="maps-pin"></div>
180
+ <div class="search-text">Search here</div>
181
+ <div class="mic-icon"></div>
182
+ </div>
183
+ <div class="avatar-small">C</div>
184
+ </div>
185
+
186
+ <!-- Background map placeholder -->
187
+ <div class="map-placeholder">[IMG: Google Map Background]</div>
188
+
189
+ <!-- Underlying content title for context -->
190
+ <div class="under-header">Starred places</div>
191
+
192
+ <!-- Bottom navigation -->
193
+ <div class="bottom-nav">
194
+ <div class="nav-item">
195
+ <div class="nav-icon"></div>
196
+ <div>Explore</div>
197
+ </div>
198
+ <div class="nav-item">
199
+ <div class="nav-icon"></div>
200
+ <div>Go</div>
201
+ </div>
202
+ <div class="nav-item active">
203
+ <div class="bookmark"></div>
204
+ <div>Saved</div>
205
+ </div>
206
+ <div class="nav-item">
207
+ <div class="nav-icon"></div>
208
+ <div>Updates</div>
209
+ </div>
210
+ </div>
211
+
212
+ <!-- Dark scrim -->
213
+ <div class="scrim"></div>
214
+
215
+ <!-- Modal sheet -->
216
+ <div class="modal-sheet">
217
+ <div class="sheet-inner">
218
+ <div class="sheet-top">
219
+ <div class="close-btn">×</div>
220
+ Google
221
+ </div>
222
+
223
+ <div class="account-row">
224
+ <div class="avatar">C</div>
225
+ <div class="account-info">
226
+ <div class="acc-name">Cerebra Research</div>
227
+ <div class="acc-email">dbwscratch.test.id2@gmail.com</div>
228
+ </div>
229
+ <div class="chevron"></div>
230
+ </div>
231
+
232
+ <div class="manage-btn">Manage your Google Account</div>
233
+
234
+ <!-- First list block -->
235
+ <div class="list-card">
236
+ <div class="item">
237
+ <div class="icon">
238
+ <svg viewBox="0 0 24 24">
239
+ <path d="M12 4l4 3H8l4-3z" fill="#555"/>
240
+ <path d="M7 15c1.5-1.5 8.5-1.5 10 0" stroke="#555" stroke-width="2" fill="none"/>
241
+ <circle cx="9" cy="16" r="1.5" fill="#555"/>
242
+ <circle cx="15" cy="16" r="1.5" fill="#555"/>
243
+ </svg>
244
+ </div>
245
+ <div>Turn on Incognito mode</div>
246
+ </div>
247
+ <div class="item">
248
+ <div class="icon">
249
+ <svg viewBox="0 0 24 24">
250
+ <circle cx="12" cy="8" r="4" fill="#555"/>
251
+ <path d="M4 20c0-4 16-4 16 0" fill="#555"/>
252
+ </svg>
253
+ </div>
254
+ <div>Your profile</div>
255
+ </div>
256
+ <div class="item">
257
+ <div class="icon">
258
+ <svg viewBox="0 0 24 24">
259
+ <path d="M4 16l6-5 4 3 6-6" stroke="#555" stroke-width="2" fill="none"/>
260
+ <circle cx="4" cy="16" r="2" fill="#555"/>
261
+ <circle cx="10" cy="11" r="2" fill="#555"/>
262
+ <circle cx="14" cy="14" r="2" fill="#555"/>
263
+ <circle cx="20" cy="8" r="2" fill="#555"/>
264
+ </svg>
265
+ </div>
266
+ <div>Your Timeline</div>
267
+ </div>
268
+ <div class="item">
269
+ <div class="icon">
270
+ <svg viewBox="0 0 24 24">
271
+ <circle cx="8" cy="10" r="4" fill="#555"/>
272
+ <circle cx="16" cy="12" r="3.2" fill="#777"/>
273
+ <path d="M3 20c0-3 10-3 10 0" fill="#555"/>
274
+ <path d="M13 20c0-2 8-2 8 0" fill="#777"/>
275
+ </svg>
276
+ </div>
277
+ <div>Location sharing</div>
278
+ </div>
279
+ <div class="item">
280
+ <div class="icon">
281
+ <svg viewBox="0 0 24 24">
282
+ <path d="M3 6h18v12H3z" fill="#bbb"/>
283
+ <path d="M8 6l4 4 4-4" fill="#ddd"/>
284
+ <path d="M12 12v4" stroke="#555" stroke-width="2"/>
285
+ <path d="M10 14l2 2 2-2" fill="#555"/>
286
+ </svg>
287
+ </div>
288
+ <div>Offline maps</div>
289
+ </div>
290
+ <div class="item">
291
+ <div class="icon">
292
+ <svg viewBox="0 0 24 24">
293
+ <path d="M4 10h16l-2 10H6L4 10z" fill="#777"/>
294
+ <path d="M6 10V6h12v4" fill="#bbb"/>
295
+ <rect x="8" y="14" width="3" height="3" fill="#fff"/>
296
+ <rect x="13" y="14" width="3" height="3" fill="#fff"/>
297
+ </svg>
298
+ </div>
299
+ <div>Add your business</div>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Second list block -->
304
+ <div class="sub-card">
305
+ <div class="item">
306
+ <div class="icon shield">
307
+ <svg viewBox="0 0 24 24">
308
+ <path d="M12 3l8 3v6c0 6-8 9-8 9s-8-3-8-9V6l8-3z" fill="#4c7ae6"/>
309
+ </svg>
310
+ </div>
311
+ <div>Your data in Maps</div>
312
+ </div>
313
+ <div class="item">
314
+ <div class="icon gear">
315
+ <svg viewBox="0 0 24 24">
316
+ <circle cx="12" cy="12" r="3" fill="#555"/>
317
+ <path d="M12 2v3M12 19v3M4.6 6l2.1 2.1M17.3 15.3l2.1 2.1M2 12h3M19 12h3M6.7 17.3L4.6 19.4M19.4 4.6l-2.1 2.1" stroke="#555" stroke-width="2"/>
318
+ </svg>
319
+ </div>
320
+ <div>Settings</div>
321
+ </div>
322
+ <div class="item">
323
+ <div class="icon">
324
+ <svg viewBox="0 0 24 24">
325
+ <circle cx="12" cy="12" r="10" fill="#ddd"/>
326
+ <path d="M12 17v-2" stroke="#555" stroke-width="2"/>
327
+ <path d="M9 9a3 3 0 0 1 6 0c0 2-3 2-3 4" stroke="#555" stroke-width="2" fill="none"/>
328
+ </svg>
329
+ </div>
330
+ <div>Help & feedback</div>
331
+ </div>
332
+ </div>
333
+
334
+ <div class="footer-links">
335
+ <div>Privacy Policy</div>
336
+ <div class="dot">•</div>
337
+ <div>Terms of Service</div>
338
+ </div>
339
+
340
+ </div>
341
+ </div>
342
+
343
+ </div>
344
+ </body>
345
+ </html>
code/14700/14700_2.html ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Location Sharing Screen</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px; position:relative; overflow:hidden;
9
+ background:#FFFFFF;
10
+ }
11
+ /* Status bar */
12
+ .status-bar {
13
+ position:absolute; top:0; left:0; width:100%; height:96px;
14
+ background:#ffffff;
15
+ display:flex; align-items:center; justify-content:space-between;
16
+ padding:0 36px; box-sizing:border-box;
17
+ color:#222; font-size:36px;
18
+ }
19
+ .status-right { display:flex; align-items:center; gap:22px; }
20
+ .sb-icon svg { width:40px; height:40px; fill:#555; }
21
+ /* App bar */
22
+ .app-bar {
23
+ position:absolute; top:96px; left:0; width:100%; height:140px;
24
+ background:#fff; border-bottom:1px solid #e9e9e9;
25
+ display:flex; align-items:center; justify-content:space-between;
26
+ padding:0 28px; box-sizing:border-box;
27
+ }
28
+ .app-left { display:flex; align-items:center; gap:12px; }
29
+ .back-btn svg { width:64px; height:64px; fill:#222; }
30
+ .app-title { font-size:52px; color:#212121; font-weight:600; }
31
+ .app-right { display:flex; align-items:center; gap:26px; }
32
+ .icon-btn {
33
+ width:72px; height:72px; display:flex; align-items:center; justify-content:center;
34
+ color:#222; font-size:48px;
35
+ }
36
+ .kebab svg { width:54px; height:54px; fill:#222; }
37
+ /* Illustration area */
38
+ .artwork {
39
+ position:absolute; top:330px; left:90px; width:900px; height:560px;
40
+ background:#E0E0E0; border:1px solid #BDBDBD; border-radius:12px;
41
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px; text-align:center;
42
+ }
43
+ /* Content */
44
+ .headline {
45
+ position:absolute; top:970px; left:0; width:100%; text-align:center;
46
+ font-size:56px; font-weight:700; color:#222;
47
+ }
48
+ .desc, .desc2 {
49
+ position:absolute; left:90px; width:900px; text-align:center; color:#616161;
50
+ font-size:38px; line-height:1.45;
51
+ }
52
+ .desc { top:1080px; }
53
+ .desc2 { top:1260px; }
54
+ .cta {
55
+ position:absolute; top:1480px; left:0; width:100%; display:flex; justify-content:center;
56
+ }
57
+ .cta button {
58
+ width:520px; height:120px; border:none; border-radius:22px;
59
+ background:#3f6ff5; color:#fff; font-size:44px; font-weight:600; box-shadow:0 6px 12px rgba(63,111,245,0.35);
60
+ }
61
+ .link {
62
+ position:absolute; top:1640px; left:0; width:100%; text-align:center;
63
+ color:#316ae8; font-size:40px;
64
+ }
65
+ /* Bottom gesture bar */
66
+ .gesture {
67
+ position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
68
+ width:480px; height:16px; border-radius:12px; background:#8f8f8f;
69
+ opacity:0.9;
70
+ }
71
+ </style>
72
+ </head>
73
+ <body>
74
+ <div id="render-target">
75
+
76
+ <!-- Status bar -->
77
+ <div class="status-bar">
78
+ <div class="status-left">8:36</div>
79
+ <div class="status-right">
80
+ <!-- Location glyph -->
81
+ <span class="sb-icon">
82
+ <svg viewBox="0 0 24 24">
83
+ <path d="M12 2C8.69 2 6 4.69 6 8c0 4.5 6 13 6 13s6-8.5 6-13c0-3.31-2.69-6-6-6zm0 8.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"></path>
84
+ </svg>
85
+ </span>
86
+ <!-- WiFi glyph -->
87
+ <span class="sb-icon">
88
+ <svg viewBox="0 0 24 24">
89
+ <path d="M12 18.5l2.5 2.5-2.5 2.5-2.5-2.5L12 18.5z" opacity="0"></path>
90
+ <path d="M12 18c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2z"></path>
91
+ <path d="M2 9.5C6.2 6 9.9 5 12 5s5.8 1 10 4.5l-1.6 1.6C16.9 8 13.2 7.3 12 7.3S7.1 8 3.6 11.1L2 9.5z"></path>
92
+ </svg>
93
+ </span>
94
+ <!-- Battery glyph -->
95
+ <span class="sb-icon">
96
+ <svg viewBox="0 0 24 24">
97
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2"></rect>
98
+ <rect x="21" y="10" width="2" height="4"></rect>
99
+ </svg>
100
+ </span>
101
+ </div>
102
+ </div>
103
+
104
+ <!-- App bar -->
105
+ <div class="app-bar">
106
+ <div class="app-left">
107
+ <span class="back-btn">
108
+ <svg viewBox="0 0 24 24">
109
+ <path d="M19 11H7.83l4.59-4.59L11 5l-7 7 7 7 1.41-1.41L7.83 13H19v-2z"></path>
110
+ </svg>
111
+ </span>
112
+ <div class="app-title">Location sharing</div>
113
+ </div>
114
+ <div class="app-right">
115
+ <div class="icon-btn" aria-label="Settings">⚙</div>
116
+ <div class="kebab">
117
+ <svg viewBox="0 0 24 24">
118
+ <circle cx="12" cy="5" r="2"></circle>
119
+ <circle cx="12" cy="12" r="2"></circle>
120
+ <circle cx="12" cy="19" r="2"></circle>
121
+ </svg>
122
+ </div>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- Illustration placeholder -->
127
+ <div class="artwork">[IMG: Location sharing illustration]</div>
128
+
129
+ <!-- Headline and descriptions -->
130
+ <div class="headline">Stay connected</div>
131
+ <div class="desc">
132
+ Share your real-time location with friends and family.
133
+ </div>
134
+ <div class="desc2">
135
+ They can see where you are and share with you across Google apps and services. Your location is updated even when the app is not in use.
136
+ </div>
137
+
138
+ <!-- Call to action -->
139
+ <div class="cta">
140
+ <button>Share location</button>
141
+ </div>
142
+
143
+ <!-- Link -->
144
+ <div class="link">Learn what information will be shared</div>
145
+
146
+ <!-- Gesture bar -->
147
+ <div class="gesture"></div>
148
+ </div>
149
+ </body>
150
+ </html>
code/14700/14700_3.html ADDED
@@ -0,0 +1,249 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>UI Rendering</title>
5
+ <style>
6
+ body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width:1080px; height:2400px;
9
+ position:relative; overflow:hidden;
10
+ background:#dcdcdc;
11
+ border-radius:24px;
12
+ box-shadow: 0 8px 24px rgba(0,0,0,0.15);
13
+ }
14
+ /* Map background */
15
+ .map-bg {
16
+ position:absolute; left:0; top:0; width:100%; height:100%;
17
+ background:#e7e7e7;
18
+ }
19
+ .map-bg .placeholder {
20
+ position:absolute; left:50%; top:50%;
21
+ transform:translate(-50%, -50%);
22
+ width:640px; height:200px;
23
+ background:#E0E0E0; border:1px solid #BDBDBD;
24
+ display:flex; align-items:center; justify-content:center; color:#757575;
25
+ border-radius:12px;
26
+ font-size:28px; letter-spacing:.2px;
27
+ }
28
+ /* Status bar */
29
+ .status-bar {
30
+ position:absolute; top:22px; left:24px; right:24px; height:60px;
31
+ color:#222; font-weight:600; font-size:32px;
32
+ display:flex; align-items:center; justify-content:space-between;
33
+ }
34
+ .status-icons { display:flex; align-items:center; gap:16px; color:#333; }
35
+ .status-icons svg { width:32px; height:32px; }
36
+ /* Back FAB */
37
+ .back-fab {
38
+ position:absolute; top:160px; left:30px; width:84px; height:84px;
39
+ background:#fff; border-radius:50%; box-shadow:0 2px 8px rgba(0,0,0,0.25);
40
+ display:flex; align-items:center; justify-content:center;
41
+ }
42
+ .back-fab svg { width:40px; height:40px; fill:#333; }
43
+ /* Location bubble */
44
+ .location-card {
45
+ position:absolute; left:120px; top:280px; width:750px;
46
+ background:#fff; border-radius:20px; box-shadow:0 6px 18px rgba(0,0,0,0.15);
47
+ display:flex; overflow:hidden;
48
+ }
49
+ .loc-icon {
50
+ width:140px; background:#f5f7fb; display:flex; align-items:center; justify-content:center;
51
+ }
52
+ .loc-info { padding:26px 28px; flex:1; }
53
+ .loc-title { font-size:44px; color:#222; line-height:1.2; font-weight:700; }
54
+ .loc-sub { margin-top:10px; font-size:28px; color:#5f6368; display:flex; align-items:center; gap:12px; }
55
+ .bolt {
56
+ display:inline-flex; align-items:center; justify-content:center;
57
+ width:28px; height:28px; border-radius:6px; background:#e8f0fe; color:#1a73e8; font-weight:700; font-size:22px;
58
+ }
59
+ /* Bottom sheet */
60
+ .sheet {
61
+ position:absolute; left:0; right:0; bottom:0; height:1300px; background:#fff;
62
+ border-top-left-radius:28px; border-top-right-radius:28px;
63
+ box-shadow:0 -8px 24px rgba(0,0,0,0.2);
64
+ padding:48px 44px;
65
+ }
66
+ .sheet-title {
67
+ font-size:46px; font-weight:700; color:#202124; display:flex; align-items:center; gap:16px;
68
+ }
69
+ .info-icon {
70
+ width:36px; height:36px; border-radius:50%; background:#e8f0fe; color:#1a73e8;
71
+ display:inline-flex; align-items:center; justify-content:center; font-weight:700;
72
+ }
73
+ .option-row { margin-top:38px; display:flex; align-items:flex-start; justify-content:space-between; }
74
+ .left-opt { display:flex; align-items:flex-start; gap:22px; }
75
+ .radio {
76
+ width:44px; height:44px; border-radius:50%; border:3px solid #1a73e8; position:relative; margin-top:4px;
77
+ }
78
+ .radio::after {
79
+ content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
80
+ width:22px; height:22px; background:#1a73e8; border-radius:50%;
81
+ }
82
+ .radio-off {
83
+ width:44px; height:44px; border-radius:50%; border:3px solid #9aa0a6; position:relative; margin-top:4px;
84
+ }
85
+ .opt-text .main { font-size:38px; color:#202124; font-weight:600; }
86
+ .opt-text .sub { font-size:28px; color:#5f6368; margin-top:6px; }
87
+ .opt-controls { display:flex; align-items:center; gap:28px; }
88
+ .circle-btn {
89
+ width:68px; height:68px; border-radius:50%; background:#e8f0fe; color:#1a73e8;
90
+ display:flex; align-items:center; justify-content:center; font-size:42px; font-weight:700;
91
+ }
92
+ .opt-row-2 { margin-top:30px; display:flex; align-items:center; gap:22px; }
93
+ .divider { height:1px; background:#e0e0e0; margin:30px 0; }
94
+ /* Contacts */
95
+ .contacts { display:flex; align-items:flex-start; gap:40px; }
96
+ .contact {
97
+ width:180px; text-align:center;
98
+ }
99
+ .avatar {
100
+ width:160px; height:160px; border-radius:20px; background:#E0E0E0; border:1px solid #BDBDBD;
101
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px;
102
+ margin:0 auto;
103
+ }
104
+ .name { margin-top:18px; font-size:32px; font-weight:700; color:#202124; }
105
+ .email { font-size:26px; color:#5f6368; margin-top:4px; }
106
+ .more-dot {
107
+ width:160px; height:160px; border-radius:24px; background:#f1f3f4; display:flex; align-items:center; justify-content:center;
108
+ margin:0 auto; font-size:44px; color:#5f6368;
109
+ }
110
+ /* Share apps */
111
+ .apps { margin-top:46px; display:flex; align-items:flex-start; gap:68px; }
112
+ .app {
113
+ width:160px; text-align:center;
114
+ }
115
+ .app .icon {
116
+ width:120px; height:120px; border-radius:26px; background:#E0E0E0; border:1px solid #BDBDBD;
117
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px; margin:0 auto 14px;
118
+ }
119
+ .app .label { font-size:30px; color:#202124; }
120
+ /* Bottom link */
121
+ .bottom-link {
122
+ position:absolute; left:50%; transform:translateX(-50%);
123
+ bottom:72px; font-size:32px; color:#1a73e8; font-weight:600;
124
+ }
125
+ /* Gesture bar */
126
+ .gesture {
127
+ position:absolute; left:50%; transform:translateX(-50%); bottom:22px;
128
+ width:220px; height:10px; background:#c7c7c7; border-radius:10px;
129
+ }
130
+ </style>
131
+ </head>
132
+ <body>
133
+ <div id="render-target">
134
+
135
+ <div class="map-bg">
136
+ <div class="placeholder">[IMG: Google Map background]</div>
137
+ </div>
138
+
139
+ <div class="status-bar">
140
+ <div class="time">8:36</div>
141
+ <div class="status-icons">
142
+ <!-- Location/Pin small -->
143
+ <svg viewBox="0 0 24 24"><path d="M12 2C8.7 2 6 4.7 6 8c0 5 6 14 6 14s6-9 6-14c0-3.3-2.7-6-6-6zm0 8a2 2 0 110-4 2 2 0 010 4z" fill="#555"/></svg>
144
+ <!-- Wifi -->
145
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zm4 4c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2zm4 4l2 2 2-2c-2-2-4-2-6 0z" fill="#555"/></svg>
146
+ <!-- Battery -->
147
+ <svg viewBox="0 0 24 24"><rect x="1" y="6" width="18" height="12" rx="2" fill="#555"></rect><rect x="19" y="10" width="3" height="4" fill="#555"></rect><rect x="3" y="8" width="12" height="8" fill="#9ccc65"></rect></svg>
148
+ </div>
149
+ </div>
150
+
151
+ <div class="back-fab">
152
+ <svg viewBox="0 0 24 24"><path d="M15 18l-6-6 6-6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
153
+ </div>
154
+
155
+ <div class="location-card">
156
+ <div class="loc-icon">
157
+ <svg viewBox="0 0 64 64">
158
+ <circle cx="32" cy="22" r="10" fill="#1a73e8"></circle>
159
+ <path d="M32 6c-9 0-16 7-16 16 0 12 16 30 16 30s16-18 16-30c0-9-7-16-16-16z" fill="#8ab4f8" opacity=".8"></path>
160
+ </svg>
161
+ </div>
162
+ <div class="loc-info">
163
+ <div class="loc-title">Cerebra Research</div>
164
+ <div class="loc-sub">
165
+ ASF INSIGNIA SEZ
166
+ <span class="bolt">⎋</span>
167
+ 100%
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <div class="sheet">
173
+ <div class="sheet-title">
174
+ Share your real-time location
175
+ <span class="info-icon">i</span>
176
+ </div>
177
+
178
+ <div class="option-row">
179
+ <div class="left-opt">
180
+ <div class="radio"></div>
181
+ <div class="opt-text">
182
+ <div class="main">For 1 hour</div>
183
+ <div class="sub">Until 9:36 AM</div>
184
+ </div>
185
+ </div>
186
+ <div class="opt-controls">
187
+ <div class="circle-btn">−</div>
188
+ <div class="circle-btn">+</div>
189
+ </div>
190
+ </div>
191
+
192
+ <div class="opt-row-2">
193
+ <div class="radio-off"></div>
194
+ <div class="opt-text">
195
+ <div class="main" style="font-weight:600; color:#202124;">Until you turn this off</div>
196
+ </div>
197
+ </div>
198
+
199
+ <div class="divider"></div>
200
+
201
+ <div class="contacts">
202
+ <div class="contact">
203
+ <div class="avatar">[IMG: Contact Avatar]</div>
204
+ <div class="name">prashant</div>
205
+ <div class="email">.yadav3@g...</div>
206
+ </div>
207
+ <div class="contact">
208
+ <div class="avatar">[IMG: Contact Avatar]</div>
209
+ <div class="name">prashanty</div>
210
+ <div class="email">a@google.c...</div>
211
+ </div>
212
+ <div class="contact">
213
+ <div class="more-dot">⋯</div>
214
+ <div class="name">More</div>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="apps">
219
+ <div class="app">
220
+ <div class="icon">[IMG: Gmail Icon]</div>
221
+ <div class="label">Gmail</div>
222
+ </div>
223
+ <div class="app">
224
+ <div class="icon">[IMG: Messages Icon]</div>
225
+ <div class="label">Messages</div>
226
+ </div>
227
+ <div class="app">
228
+ <div class="icon">[IMG: Chrome Icon]</div>
229
+ <div class="label">Chrome</div>
230
+ </div>
231
+ <div class="app">
232
+ <div class="icon">[IMG: Bluetooth Icon]</div>
233
+ <div class="label">Bluetooth</div>
234
+ </div>
235
+ <div class="app">
236
+ <div class="icon">[IMG: Nearby Share Icon]</div>
237
+ <div class="label">Nearby</div>
238
+ <div class="label">Share</div>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="bottom-link">Learn what information will be shared</div>
243
+ </div>
244
+
245
+ <div class="gesture"></div>
246
+
247
+ </div>
248
+ </body>
249
+ </html>
code/14700/14700_4.html ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html lang="en">
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Gmail Compose UI - Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #FFFFFF;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0; left: 0;
19
+ width: 100%;
20
+ height: 110px;
21
+ background: #FAFAFA;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ padding: 0 36px;
26
+ color: #3E3E3E;
27
+ font-size: 42px;
28
+ }
29
+ .status-icons { display: flex; align-items: center; gap: 26px; }
30
+ .status-icons svg { width: 44px; height: 44px; fill: #3E3E3E; }
31
+
32
+ /* Action bar */
33
+ .action-bar {
34
+ position: absolute;
35
+ top: 110px; left: 0;
36
+ width: 100%;
37
+ height: 140px;
38
+ border-bottom: 1px solid #E5E5E5;
39
+ display: flex;
40
+ align-items: center;
41
+ padding: 0 40px;
42
+ box-sizing: border-box;
43
+ }
44
+ .back-btn svg { width: 64px; height: 64px; }
45
+ .title {
46
+ font-size: 56px;
47
+ color: #212121;
48
+ margin-left: 24px;
49
+ flex: 1;
50
+ }
51
+ .toolbar { display: flex; align-items: center; gap: 44px; }
52
+ .toolbar svg { width: 58px; height: 58px; fill: #3E3E3E; }
53
+
54
+ /* Content rows */
55
+ .content {
56
+ position: absolute;
57
+ top: 250px; left: 0;
58
+ width: 100%;
59
+ }
60
+ .row {
61
+ width: 100%;
62
+ padding: 34px 40px;
63
+ box-sizing: border-box;
64
+ display: flex;
65
+ align-items: center;
66
+ border-bottom: 1px solid #EFEFEF;
67
+ }
68
+ .row .label {
69
+ width: 160px;
70
+ color: #777777;
71
+ font-size: 42px;
72
+ }
73
+ .row .value {
74
+ flex: 1;
75
+ font-size: 42px;
76
+ color: #222222;
77
+ }
78
+ .chevron {
79
+ width: 36px; height: 36px; margin-left: 16px;
80
+ }
81
+ .subject .value { color: #9E9E9E; font-size: 44px; }
82
+
83
+ /* Body text area */
84
+ .body-area {
85
+ padding: 32px 40px 220px 40px;
86
+ font-size: 52px;
87
+ line-height: 1.35;
88
+ color: #1A1A1A;
89
+ }
90
+ .link {
91
+ color: #1A73E8;
92
+ text-decoration: none;
93
+ }
94
+
95
+ /* Keyboard mock */
96
+ .keyboard {
97
+ position: absolute;
98
+ bottom: 0; left: 0;
99
+ width: 100%;
100
+ height: 900px;
101
+ background: #EEF1EA;
102
+ border-top: 1px solid #DADADA;
103
+ box-sizing: border-box;
104
+ padding: 28px 24px;
105
+ }
106
+ .suggest-strip {
107
+ display: flex; align-items: center; gap: 38px;
108
+ padding: 10px 12px 18px 12px;
109
+ color: #3C3C3C;
110
+ }
111
+ .suggest-strip .dot { width: 6px; height: 60px; border-left: 2px solid #C8C8C8; opacity: .7; }
112
+ .suggest-strip svg { width: 54px; height: 54px; fill: #3C3C3C; }
113
+
114
+ .key-row { display: flex; justify-content: space-between; gap: 16px; margin: 22px 12px; }
115
+ .key {
116
+ width: 90px; height: 120px;
117
+ background: #FFFFFF;
118
+ border-radius: 22px;
119
+ box-shadow: inset 0 0 0 1px #D7D7D7;
120
+ display: flex; align-items: center; justify-content: center;
121
+ font-size: 46px; color: #2F2F2F;
122
+ user-select: none;
123
+ }
124
+ .key.wide { width: 540px; }
125
+ .key.medium { width: 120px; }
126
+ .key.green { background: #CFE3CC; }
127
+ .key.circle {
128
+ width: 120px; height: 120px;
129
+ background: #BFD8B8;
130
+ border-radius: 30px;
131
+ }
132
+ .key.icon svg { width: 48px; height: 48px; fill: #2F2F2F; }
133
+ </style>
134
+ </head>
135
+ <body>
136
+ <div id="render-target">
137
+
138
+ <!-- Status bar -->
139
+ <div class="status-bar">
140
+ <div>8:37</div>
141
+ <div class="status-icons">
142
+ <!-- Silent bell -->
143
+ <svg viewBox="0 0 24 24"><path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zM18 16v-5c0-3.07-1.63-5.64-4.5-6.32V4a1.5 1.5 0 10-3 0v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z"/></svg>
144
+ <!-- Cloud -->
145
+ <svg viewBox="0 0 24 24"><path d="M6 19h11a5 5 0 000-10 6 6 0 00-11-1 4 4 0 000 8z"/></svg>
146
+ <!-- Signal -->
147
+ <svg viewBox="0 0 24 24"><path d="M2 20h2v-2H2v2zm4 0h2v-6H6v6zm4 0h2v-10h-2v10zm4 0h2V8h-2v12zm4 0h2V4h-2v16z"/></svg>
148
+ <!-- Battery -->
149
+ <svg viewBox="0 0 24 24"><path d="M17 6V4h-2v2H7c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2z"/></svg>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- Action bar -->
154
+ <div class="action-bar">
155
+ <div class="back-btn">
156
+ <svg viewBox="0 0 24 24"><path d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"/></svg>
157
+ </div>
158
+ <div class="title">Compose</div>
159
+ <div class="toolbar">
160
+ <!-- Attach -->
161
+ <svg viewBox="0 0 24 24"><path d="M17.5 6.5L9 15a4 4 0 105.66 5.66L21 13.32l-1.41-1.41-6.34 6.34a2 2 0 11-2.83-2.83l8.5-8.5A4 4 0 0012 2a4 4 0 00-2.83 6.83l1.41-1.41A2 2 0 1116 6a2 2 0 01-1.41.59l2.91-.09z"/></svg>
162
+ <!-- Send -->
163
+ <svg viewBox="0 0 24 24"><path d="M2 21l21-9L2 3v7l15 2-15 2v7z"/></svg>
164
+ <!-- More -->
165
+ <svg viewBox="0 0 24 24"><path d="M12 6a2 2 0 100-4 2 2 0 000 4zm0 8a2 2 0 100-4 2 2 0 000 4zm0 8a2 2 0 100-4 2 2 0 000 4z"/></svg>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Content -->
170
+ <div class="content">
171
+ <div class="row">
172
+ <div class="label">From</div>
173
+ <div class="value">dbwscratch.test.id2@gmail.com</div>
174
+ </div>
175
+ <div class="row">
176
+ <div class="label">To</div>
177
+ <div class="value"></div>
178
+ <!-- right chevron -->
179
+ <svg class="chevron" viewBox="0 0 24 24"><path fill="#888" d="M7 10l5 5 5-5z"/></svg>
180
+ </div>
181
+ <div class="row subject">
182
+ <div class="label">Subject</div>
183
+ <div class="value"></div>
184
+ </div>
185
+
186
+ <div class="body-area">
187
+ <div>See my real-time location on Maps:</div>
188
+ <div><a class="link" href="#">https://maps.app.goo.gl/EYLzBMXCShkqnbVJA</a></div>
189
+ <div>A</div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Keyboard -->
194
+ <div class="keyboard">
195
+ <div class="suggest-strip">
196
+ <!-- Back key (green circle) -->
197
+ <div class="key circle" style="background:#BDD7B0; display:flex; align-items:center; justify-content:center;">
198
+ <svg viewBox="0 0 24 24"><path d="M14 7l-5 5 5 5V7z"/></svg>
199
+ </div>
200
+ <!-- Gear -->
201
+ <svg viewBox="0 0 24 24"><path d="M12 8a4 4 0 100 8 4 4 0 000-8zm8.94 4a7.96 7.96 0 00-.53-2l2.17-1.7-2-3.46-2.6 1.02a8.15 8.15 0 00-1.73-1l-.4-2.78H10.15l-.4 2.78c-.62.26-1.2.59-1.73 1L5.43 3.38l-2 3.46 2.17 1.7c-.23.64-.41 1.31-.53 2l-2.64.46v4.12l2.64.46c.12.69.3 1.36.53 2l-2.17 1.7 2 3.46 2.6-1.02c.53.41 1.11.74 1.73 1l.4 2.78h4.71l.4-2.78c.62-.26 1.2-.59 1.73-1l2.6 1.02 2-3.46-2.17-1.7c.23-.64.41-1.31.53-2l2.64-.46V12l-2.64-.46z"/></svg>
202
+ <!-- Translate (G with star) simplified -->
203
+ <svg viewBox="0 0 24 24"><path d="M11 3H4a1 1 0 00-1 1v7a1 1 0 001 1h7a1 1 0 001-1V4a1 1 0 00-1-1zm9 10h-7a1 1 0 00-1 1v7a1 1 0 001 1h7a1 1 0 001-1v-7a1 1 0 00-1-1zM7.5 7.5l1.5 3 1.5-3h-3zM16 18l2-4 2 4h-4z"/></svg>
204
+ <!-- Palette -->
205
+ <svg viewBox="0 0 24 24"><path d="M12 3a9 9 0 00-9 9c0 4.97 4.03 9 9 9h3a3 3 0 000-6h-1a2 2 0 11-2-2h1a4 4 0 000-8z"/></svg>
206
+ <!-- Clipboard -->
207
+ <svg viewBox="0 0 24 24"><path d="M16 4h-3l-1-1h-2l-1 1H6a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V6a2 2 0 00-2-2zM8 8h8v2H8V8zm0 4h8v2H8v-2z"/></svg>
208
+ <div class="dot"></div>
209
+ <!-- Overflow -->
210
+ <svg viewBox="0 0 24 24"><path d="M12 5a2 2 0 100-4 2 2 0 000 4zm0 9a2 2 0 100-4 2 2 0 000 4zm0 9a2 2 0 100-4 2 2 0 000 4z"/></svg>
211
+ <!-- Mic with slash -->
212
+ <svg viewBox="0 0 24 24"><path d="M12 14a3 3 0 003-3V5a3 3 0 10-6 0v6a3 3 0 003 3zm5-3a5 5 0 01-10 0H5a7 7 0 0012.5 3.5l-1.5-1.5zM4 4l16 16-1.5 1.5L2.5 5.5 4 4z"/></svg>
213
+ </div>
214
+
215
+ <!-- Keyboard rows -->
216
+ <div class="key-row">
217
+ <div class="key">q</div>
218
+ <div class="key">w</div>
219
+ <div class="key">e</div>
220
+ <div class="key">r</div>
221
+ <div class="key">t</div>
222
+ <div class="key">y</div>
223
+ <div class="key">u</div>
224
+ <div class="key">i</div>
225
+ <div class="key">o</div>
226
+ <div class="key">p</div>
227
+ </div>
228
+
229
+ <div class="key-row">
230
+ <div class="key">a</div>
231
+ <div class="key">s</div>
232
+ <div class="key">d</div>
233
+ <div class="key">f</div>
234
+ <div class="key">g</div>
235
+ <div class="key">h</div>
236
+ <div class="key">j</div>
237
+ <div class="key">k</div>
238
+ <div class="key">l</div>
239
+ </div>
240
+
241
+ <div class="key-row">
242
+ <div class="key medium">⇧</div>
243
+ <div class="key">z</div>
244
+ <div class="key">x</div>
245
+ <div class="key">c</div>
246
+ <div class="key">v</div>
247
+ <div class="key">b</div>
248
+ <div class="key">n</div>
249
+ <div class="key">m</div>
250
+ <div class="key medium">⌫</div>
251
+ </div>
252
+
253
+ <div class="key-row">
254
+ <div class="key green medium">?123</div>
255
+ <div class="key medium">@</div>
256
+ <div class="key medium">☺</div>
257
+ <div class="key wide"></div>
258
+ <div class="key medium">.</div>
259
+ <div class="key green medium icon">
260
+ <svg viewBox="0 0 24 24"><path d="M4 4l16 8-16 8 4-8-4-8zm8 8l-4 8 12-8-12-8 4 8z"/></svg>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ </div>
266
+ </body>
267
+ </html>
code/14700/14700_5.html ADDED
@@ -0,0 +1,340 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Gmail Compose Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #FFFFFF;
13
+ color: #1f1f1f;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 96px;
23
+ padding: 0 32px;
24
+ box-sizing: border-box;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #303030;
29
+ font-weight: 600;
30
+ font-size: 36px;
31
+ background: #ffffff;
32
+ }
33
+ .status-icons {
34
+ display: flex;
35
+ gap: 22px;
36
+ align-items: center;
37
+ color: #606060;
38
+ font-size: 26px;
39
+ }
40
+ .icon {
41
+ width: 48px;
42
+ height: 48px;
43
+ display: inline-flex;
44
+ align-items: center;
45
+ justify-content: center;
46
+ }
47
+ .icon svg { width: 40px; height: 40px; fill: #3b3b3b; }
48
+
49
+ /* App bar */
50
+ .app-bar {
51
+ position: absolute;
52
+ top: 96px;
53
+ left: 0;
54
+ width: 1080px;
55
+ height: 152px;
56
+ border-bottom: 1px solid #ececec;
57
+ display: flex;
58
+ align-items: center;
59
+ padding: 0 24px;
60
+ box-sizing: border-box;
61
+ gap: 16px;
62
+ background: #ffffff;
63
+ }
64
+ .app-title {
65
+ font-size: 56px;
66
+ font-weight: 600;
67
+ color: #222;
68
+ flex: 1;
69
+ }
70
+ .top-actions .icon svg { fill: #4a4a4a; }
71
+
72
+ /* Fields area */
73
+ .content {
74
+ position: absolute;
75
+ top: 248px; /* 96 + 152 */
76
+ left: 0;
77
+ right: 0;
78
+ bottom: 820px; /* space for keyboard */
79
+ overflow: hidden;
80
+ background: #ffffff;
81
+ }
82
+ .field {
83
+ display: flex;
84
+ align-items: center;
85
+ padding: 26px 32px;
86
+ box-sizing: border-box;
87
+ gap: 28px;
88
+ border-bottom: 1px solid #f0f0f0;
89
+ }
90
+ .label {
91
+ width: 130px;
92
+ color: #6b6b6b;
93
+ font-size: 36px;
94
+ }
95
+ .value, .input {
96
+ flex: 1;
97
+ font-size: 36px;
98
+ color: #1f1f1f;
99
+ }
100
+ .chevron {
101
+ width: 56px;
102
+ height: 56px;
103
+ border-radius: 50%;
104
+ background: #f3f3f3;
105
+ display: flex;
106
+ align-items: center;
107
+ justify-content: center;
108
+ }
109
+ .chevron svg { width: 30px; height: 30px; fill: #5c5c5c; }
110
+
111
+ /* Suggestion */
112
+ .suggestion {
113
+ padding: 28px 32px;
114
+ border-bottom: 1px solid #f0f0f0;
115
+ }
116
+ .suggestion-card {
117
+ display: flex;
118
+ align-items: center;
119
+ gap: 24px;
120
+ }
121
+ .avatar {
122
+ width: 96px;
123
+ height: 96px;
124
+ background: #E0E0E0;
125
+ border: 1px solid #BDBDBD;
126
+ border-radius: 50%;
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: center;
130
+ color: #757575;
131
+ font-size: 24px;
132
+ }
133
+ .s-text .name {
134
+ font-size: 44px;
135
+ color: #1e1e1e;
136
+ }
137
+ .s-text .email {
138
+ font-size: 32px;
139
+ color: #6c6c6c;
140
+ margin-top: 6px;
141
+ }
142
+
143
+ /* Body blank area */
144
+ .body-area {
145
+ height: calc(100% - 270px);
146
+ /* leaves room after suggestion and two rows */
147
+ background: #ffffff;
148
+ }
149
+
150
+ /* Keyboard mock */
151
+ .keyboard {
152
+ position: absolute;
153
+ left: 0;
154
+ bottom: 0;
155
+ width: 1080px;
156
+ height: 820px;
157
+ background: #F3F5F0;
158
+ border-top: 1px solid #e3e3e3;
159
+ box-sizing: border-box;
160
+ }
161
+ .kb-toolbar {
162
+ height: 88px;
163
+ padding: 0 20px;
164
+ display: flex;
165
+ align-items: center;
166
+ gap: 28px;
167
+ }
168
+ .kb-toolbar .circle {
169
+ width: 72px; height: 72px; border-radius: 50%;
170
+ background: #BFD8B8; display: flex; align-items: center; justify-content: center;
171
+ }
172
+ .kb-toolbar .mini { width: 56px; height: 56px; border-radius: 16px; background: #e9eee8; display: flex; align-items: center; justify-content: center; }
173
+ .divider { width: 2px; height: 40px; background: #d0d0d0; margin: 0 6px; }
174
+
175
+ .kb-rows { padding: 10px 12px 0; }
176
+ .row {
177
+ display: grid;
178
+ grid-template-columns: repeat(10, 1fr);
179
+ gap: 12px;
180
+ padding: 10px 16px;
181
+ box-sizing: border-box;
182
+ }
183
+ .row2 { grid-template-columns: repeat(9, 1fr); }
184
+ .row3 { grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1.2fr; }
185
+
186
+ .key {
187
+ height: 120px;
188
+ background: #ffffff;
189
+ border: 1px solid #e6e6e6;
190
+ border-radius: 24px;
191
+ display: flex;
192
+ align-items: center;
193
+ justify-content: center;
194
+ font-size: 44px;
195
+ color: #2a2a2a;
196
+ }
197
+ .key.gray { background: #e8efdf; color: #2a2a2a; }
198
+ .space-row {
199
+ display: grid;
200
+ grid-template-columns: 1.2fr 1.2fr 1.2fr 4.2fr 1fr 1.3fr;
201
+ gap: 14px;
202
+ padding: 10px 16px 16px;
203
+ box-sizing: border-box;
204
+ }
205
+ .space-row .key { height: 120px; }
206
+ .space { border-radius: 26px; }
207
+ .send {
208
+ background: #B9D9B6;
209
+ border: none;
210
+ color: #1a1a1a;
211
+ border-radius: 60px;
212
+ }
213
+
214
+ /* Bottom handle */
215
+ .handle {
216
+ position: absolute;
217
+ bottom: 12px;
218
+ left: 50%;
219
+ transform: translateX(-50%);
220
+ width: 420px;
221
+ height: 10px;
222
+ background: #9E9E9E;
223
+ border-radius: 8px;
224
+ opacity: 0.6;
225
+ }
226
+ </style>
227
+ </head>
228
+ <body>
229
+ <div id="render-target">
230
+
231
+ <!-- Status Bar -->
232
+ <div class="status-bar">
233
+ <div>8:38</div>
234
+ <div class="status-icons">
235
+ <span class="icon">
236
+ <svg viewBox="0 0 24 24"><path d="M12 4C7 4 3 8 3 13h2a7 7 0 0 1 14 0h2c0-5-4-9-9-9z"/></svg>
237
+ </span>
238
+ <span class="icon">
239
+ <svg viewBox="0 0 24 24"><path d="M7 7h10v10H7z"/></svg>
240
+ </span>
241
+ <span class="icon">
242
+ <svg viewBox="0 0 24 24"><path d="M21 7H3v10h18V7zm-7 8H4V9h10v6z"/></svg>
243
+ </span>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- App Bar -->
248
+ <div class="app-bar">
249
+ <div class="icon">
250
+ <svg viewBox="0 0 24 24"><path d="M15.5 19 8.5 12l7-7-1.4-1.4L5.7 12l8.4 8.4z"/></svg>
251
+ </div>
252
+ <div class="app-title">Compose</div>
253
+ <div class="top-actions">
254
+ <span class="icon">
255
+ <svg viewBox="0 0 24 24"><path d="M21 6.5 17.5 10 14 6.5l3.5-3.5L21 6.5zM3 20h14v-2H3v2zm0-4h10v-2H3v2z"/></svg>
256
+ </span>
257
+ <span class="icon">
258
+ <svg viewBox="0 0 24 24"><path d="M2 21l21-9L2 3v7l15 2-15 2v7z"/></svg>
259
+ </span>
260
+ <span class="icon">
261
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
262
+ </span>
263
+ </div>
264
+ </div>
265
+
266
+ <!-- Content -->
267
+ <div class="content">
268
+ <div class="field">
269
+ <div class="label">From</div>
270
+ <div class="value">dbwscratch.test.id2@gmail.com</div>
271
+ </div>
272
+
273
+ <div class="field">
274
+ <div class="label">To</div>
275
+ <div class="input">prashantya@google.com</div>
276
+ <div class="chevron">
277
+ <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>
278
+ </div>
279
+ </div>
280
+
281
+ <div class="suggestion">
282
+ <div class="suggestion-card">
283
+ <div class="avatar">[IMG]</div>
284
+ <div class="s-text">
285
+ <div class="name">prashantya@google.com</div>
286
+ <div class="email">prashantya@google.com</div>
287
+ </div>
288
+ </div>
289
+ </div>
290
+
291
+ <div class="body-area"></div>
292
+ </div>
293
+
294
+ <!-- Keyboard -->
295
+ <div class="keyboard">
296
+ <div class="kb-toolbar">
297
+ <div class="circle">
298
+ <svg viewBox="0 0 24 24" width="36" height="36"><path d="M15.5 19 8.5 12l7-7" stroke="#1e1e1e" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
299
+ </div>
300
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><path d="M12 8a4 4 0 0 0-4 4v5h8v-5a4 4 0 0 0-4-4z" fill="#444"/></svg></div>
301
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><path d="M3 3h18v4H3zM3 10h18v4H3zM3 17h18v4H3z" fill="#444"/></svg></div>
302
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><circle cx="12" cy="12" r="10" fill="#444"/></svg></div>
303
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><path d="M4 4h16v16H4z" fill="#444"/></svg></div>
304
+ <div class="divider"></div>
305
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><path d="M12 5v14M5 12h14" stroke="#444" stroke-width="2" fill="none"/></svg></div>
306
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><path d="M5 12h14" stroke="#444" stroke-width="2"/></svg></div>
307
+ <div class="mini"><svg viewBox="0 0 24 24" width="24" height="24"><path d="M18 8l-8 8M10 8h8v8" stroke="#444" stroke-width="2" fill="none"/></svg></div>
308
+ </div>
309
+
310
+ <div class="kb-rows">
311
+ <div class="row">
312
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
313
+ </div>
314
+ <div class="row row2">
315
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
316
+ </div>
317
+ <div class="row row3">
318
+ <div class="key gray">⇧</div>
319
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
320
+ <div class="key gray">
321
+ <svg viewBox="0 0 24 24" width="34" height="34"><path d="M19 12l-7 7m7-7l-7-7" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
322
+ </div>
323
+ </div>
324
+ <div class="space-row">
325
+ <div class="key gray">?123</div>
326
+ <div class="key gray">@</div>
327
+ <div class="key gray">☺</div>
328
+ <div class="key space"> </div>
329
+ <div class="key">.</div>
330
+ <div class="key send">
331
+ <svg viewBox="0 0 24 24" width="40" height="40"><path d="M2 21l21-9L2 3v7l15 2-15 2z" fill="#1f1f1f"/></svg>
332
+ </div>
333
+ </div>
334
+ </div>
335
+ </div>
336
+
337
+ <div class="handle"></div>
338
+ </div>
339
+ </body>
340
+ </html>
code/14700/14700_6.html ADDED
@@ -0,0 +1,374 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="utf-8">
4
+ <title>Gmail Compose Mock</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #FFFFFF;
13
+ border-radius: 0;
14
+ box-shadow: none;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 120px;
24
+ background: #F5F7F6;
25
+ display: flex;
26
+ align-items: center;
27
+ padding: 0 40px;
28
+ color: #222;
29
+ font-size: 38px;
30
+ letter-spacing: 0.5px;
31
+ }
32
+ .status-right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 26px;
37
+ color: #444;
38
+ }
39
+ .status-icon {
40
+ width: 36px;
41
+ height: 36px;
42
+ }
43
+
44
+ /* App bar */
45
+ .app-bar {
46
+ position: absolute;
47
+ top: 120px;
48
+ left: 0;
49
+ width: 1080px;
50
+ height: 160px;
51
+ background: #FFFFFF;
52
+ border-bottom: 1px solid #E6E6E6;
53
+ display: flex;
54
+ align-items: center;
55
+ padding: 0 28px;
56
+ box-sizing: border-box;
57
+ }
58
+ .app-title {
59
+ font-size: 56px;
60
+ color: #151515;
61
+ margin-left: 22px;
62
+ }
63
+ .app-actions {
64
+ margin-left: auto;
65
+ display: flex;
66
+ align-items: center;
67
+ gap: 38px;
68
+ }
69
+ .icon-btn {
70
+ width: 64px;
71
+ height: 64px;
72
+ display: inline-flex;
73
+ justify-content: center;
74
+ align-items: center;
75
+ color: #666;
76
+ }
77
+ .send-btn {
78
+ width: 84px;
79
+ height: 84px;
80
+ background: #2E7D32;
81
+ border-radius: 50%;
82
+ display: inline-flex;
83
+ justify-content: center;
84
+ align-items: center;
85
+ }
86
+ .icon {
87
+ width: 46px;
88
+ height: 46px;
89
+ fill: #616161;
90
+ }
91
+ .icon-light { fill: #FFFFFF; }
92
+
93
+ /* Content area */
94
+ .content {
95
+ position: absolute;
96
+ left: 0;
97
+ top: 280px;
98
+ width: 1080px;
99
+ height: 1280px;
100
+ background: #FFFFFF;
101
+ box-sizing: border-box;
102
+ padding: 0 40px;
103
+ }
104
+
105
+ .row {
106
+ padding: 26px 0;
107
+ border-bottom: 1px solid #EFEFEF;
108
+ }
109
+ .label {
110
+ font-size: 40px;
111
+ color: #6F6F6F;
112
+ margin-bottom: 12px;
113
+ }
114
+ .value {
115
+ font-size: 44px;
116
+ color: #1F1F1F;
117
+ }
118
+
119
+ /* To field pill */
120
+ .pill {
121
+ display: inline-flex;
122
+ align-items: center;
123
+ background: #F3F5F4;
124
+ border: 1px solid #D6D6D6;
125
+ border-radius: 48px;
126
+ padding: 10px 22px;
127
+ gap: 18px;
128
+ }
129
+ .avatar {
130
+ width: 66px;
131
+ height: 66px;
132
+ border-radius: 50%;
133
+ background: #E0E0E0;
134
+ border: 1px solid #BDBDBD;
135
+ display: flex;
136
+ align-items: center;
137
+ justify-content: center;
138
+ color: #757575;
139
+ font-size: 16px;
140
+ }
141
+ .pill-text {
142
+ font-size: 42px;
143
+ color: #222;
144
+ }
145
+ .chevron {
146
+ width: 34px;
147
+ height: 34px;
148
+ margin-left: 10px;
149
+ fill: #777;
150
+ }
151
+
152
+ .subject-row .label { margin: 16px 0 6px; }
153
+
154
+ .message {
155
+ font-size: 46px;
156
+ line-height: 66px;
157
+ color: #111;
158
+ padding-top: 30px;
159
+ }
160
+ .message a {
161
+ color: #1A73E8;
162
+ text-decoration: none;
163
+ }
164
+
165
+ /* Keyboard mock */
166
+ .keyboard {
167
+ position: absolute;
168
+ bottom: 0;
169
+ left: 0;
170
+ width: 1080px;
171
+ height: 840px;
172
+ background: #F1F3F4;
173
+ border-top: 1px solid #DDDFE1;
174
+ box-sizing: border-box;
175
+ padding-top: 16px;
176
+ }
177
+
178
+ .kbd-toolbar {
179
+ height: 110px;
180
+ display: flex;
181
+ align-items: center;
182
+ gap: 30px;
183
+ padding: 0 30px;
184
+ }
185
+ .toolbar-btn {
186
+ width: 72px;
187
+ height: 72px;
188
+ background: #FFFFFF;
189
+ border: 1px solid #D8D8D8;
190
+ border-radius: 16px;
191
+ display: flex;
192
+ justify-content: center;
193
+ align-items: center;
194
+ }
195
+ .toolbar-icon { width: 40px; height: 40px; fill: #616161; }
196
+ .toolbar-divider {
197
+ width: 2px;
198
+ height: 50px;
199
+ background: #CFCFCF;
200
+ margin: 0 10px;
201
+ }
202
+
203
+ .keys {
204
+ padding: 10px 26px 0;
205
+ }
206
+ .key-row {
207
+ display: flex;
208
+ justify-content: space-between;
209
+ margin: 24px 0;
210
+ }
211
+ .key {
212
+ width: 90px;
213
+ height: 116px;
214
+ background: #FFFFFF;
215
+ border: 1px solid #D4D4D4;
216
+ border-radius: 24px;
217
+ display: flex;
218
+ justify-content: center;
219
+ align-items: center;
220
+ font-size: 48px;
221
+ color: #222;
222
+ }
223
+ .key-wide {
224
+ width: 180px;
225
+ }
226
+ .space {
227
+ flex: 1;
228
+ height: 116px;
229
+ margin: 0 16px;
230
+ background: #FFFFFF;
231
+ border: 1px solid #D4D4D4;
232
+ border-radius: 28px;
233
+ }
234
+ .action-row {
235
+ display: flex;
236
+ align-items: center;
237
+ padding: 0 26px;
238
+ gap: 20px;
239
+ margin-top: 14px;
240
+ }
241
+ .round-key {
242
+ width: 110px;
243
+ height: 110px;
244
+ border-radius: 28px;
245
+ background: #DCE7D9;
246
+ border: 1px solid #C8D3C6;
247
+ display: flex;
248
+ align-items: center;
249
+ justify-content: center;
250
+ }
251
+ .enter-btn {
252
+ width: 140px;
253
+ height: 110px;
254
+ background: #D9EED7;
255
+ border: 1px solid #C6E1C4;
256
+ border-radius: 30px;
257
+ display: flex;
258
+ align-items: center;
259
+ justify-content: center;
260
+ }
261
+ .enter-icon { width: 60px; height: 60px; fill: #2E7D32; }
262
+
263
+ </style>
264
+ </head>
265
+ <body>
266
+ <div id="render-target">
267
+
268
+ <!-- Status Bar -->
269
+ <div class="status-bar">
270
+ <div>8:38</div>
271
+ <div class="status-right">
272
+ <svg class="status-icon" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7h2a5 5 0 1 1 10 0h2a7 7 0 0 0-7-7zm0 6c-3 0-5 2-5 5h2a3 3 0 1 1 6 0h2c0-3-2-5-5-5z" fill="#666"/></svg>
273
+ <svg class="status-icon" viewBox="0 0 24 24"><path d="M12 4a8 8 0 1 0 8 8h-2A6 6 0 1 1 12 6V4z" fill="#666"/></svg>
274
+ <svg class="status-icon" viewBox="0 0 24 24"><path d="M20 7h-1V6a3 3 0 0 0-3-3H8a3 3 0 0 0-3 3v1H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zm-11 0V6a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1H9z" fill="#666"/></svg>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- App Bar -->
279
+ <div class="app-bar">
280
+ <div class="icon-btn">
281
+ <svg class="icon" viewBox="0 0 24 24"><path d="M15.5 19l-7-7 7-7" /></svg>
282
+ </div>
283
+ <div class="app-title">Compose</div>
284
+ <div class="app-actions">
285
+ <div class="icon-btn">
286
+ <svg class="icon" viewBox="0 0 24 24"><path d="M18.5 12l-11 6V6l11 6z" /></svg>
287
+ </div>
288
+ <div class="send-btn">
289
+ <svg class="icon-light" viewBox="0 0 24 24"><path d="M2 21l20-9L2 3l4 8-4 10zm6-7l-2.5 5 5-3 9.5-4-9.5-4-5-3L8 10l10 2-10 2z"/></svg>
290
+ </div>
291
+ <div class="icon-btn">
292
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="5" r="2"/><circle cx="12" cy="12" r="2"/><circle cx="12" cy="19" r="2"/></svg>
293
+ </div>
294
+ </div>
295
+ </div>
296
+
297
+ <!-- Content -->
298
+ <div class="content">
299
+ <div class="row">
300
+ <div class="label">From</div>
301
+ <div class="value">dbwscratch.test.id2@gmail.com</div>
302
+ </div>
303
+
304
+ <div class="row">
305
+ <div class="label">To</div>
306
+ <div class="pill">
307
+ <div class="avatar">IMG</div>
308
+ <div class="pill-text">prashantya@google.com</div>
309
+ <svg class="chevron" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" /></svg>
310
+ </div>
311
+ </div>
312
+
313
+ <div class="row subject-row">
314
+ <div class="label">Subject</div>
315
+ </div>
316
+
317
+ <div class="message">
318
+ See my real-time location on Maps:<br>
319
+ <a href="#">https://maps.app.goo.gl/EYLzBMXCShkqnbVJA</a><br>
320
+ A
321
+ </div>
322
+ </div>
323
+
324
+ <!-- Keyboard -->
325
+ <div class="keyboard">
326
+ <div class="kbd-toolbar">
327
+ <div class="toolbar-btn">
328
+ <svg class="toolbar-icon" viewBox="0 0 24 24"><path d="M9 2H5a3 3 0 0 0-3 3v4h4V5h3V2zm6 0v3h3v4h4V5a3 3 0 0 0-3-3h-4zM2 9v10a3 3 0 0 0 3 3h4v-4H5V9H2zm20 0h-3v9h-3v4h4a3 3 0 0 0 3-3V9z"/></svg>
329
+ </div>
330
+ <div class="toolbar-btn">
331
+ <svg class="toolbar-icon" viewBox="0 0 24 24"><path d="M12 3l4 8-8 0 4-8zm-6 16h12v2H6v-2z"/></svg>
332
+ </div>
333
+ <div class="toolbar-btn">
334
+ <svg class="toolbar-icon" viewBox="0 0 24 24"><path d="M4 4h16v4H4zm0 6h16v10H4z"/></svg>
335
+ </div>
336
+ <div class="toolbar-btn">
337
+ <svg class="toolbar-icon" viewBox="0 0 24 24"><path d="M19 3H5a2 2 0 0 0-2 2v12l5-3h11a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2z"/></svg>
338
+ </div>
339
+ <div class="toolbar-divider"></div>
340
+ <div class="toolbar-btn">
341
+ <svg class="toolbar-icon" viewBox="0 0 24 24"><path d="M12 3v18M3 12h18" /></svg>
342
+ </div>
343
+ <div class="toolbar-btn">
344
+ <svg class="toolbar-icon" viewBox="0 0 24 24"><path d="M12 4a5 5 0 0 0-5 5v3H5a2 2 0 0 0-2 2v5h18v-5a2 2 0 0 0-2-2h-2V9a5 5 0 0 0-5-5z"/></svg>
345
+ </div>
346
+ </div>
347
+
348
+ <div class="keys">
349
+ <div class="key-row">
350
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
351
+ </div>
352
+ <div class="key-row">
353
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
354
+ </div>
355
+ <div class="key-row">
356
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
357
+ </div>
358
+ </div>
359
+
360
+ <div class="action-row">
361
+ <div class="key-wide">?123</div>
362
+ <div class="key-wide">@</div>
363
+ <div class="key-wide">☺</div>
364
+ <div class="space"></div>
365
+ <div class="key-wide">.</div>
366
+ <div class="enter-btn">
367
+ <svg class="enter-icon" viewBox="0 0 24 24"><path d="M4 11v4h12l-4 4 1.4 1.4 6.6-6.6-6.6-6.6L12 8l4 4H4z"/></svg>
368
+ </div>
369
+ </div>
370
+ </div>
371
+
372
+ </div>
373
+ </body>
374
+ </html>
code/14700/14700_7.html ADDED
@@ -0,0 +1,322 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <html>
2
+ <head>
3
+ <meta charset="UTF-8">
4
+ <title>Location Sharing UI</title>
5
+ <style>
6
+ body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
7
+ #render-target {
8
+ width: 1080px;
9
+ height: 2400px;
10
+ position: relative;
11
+ overflow: hidden;
12
+ background: #ffffff;
13
+ box-sizing: border-box;
14
+ }
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute;
18
+ top: 0;
19
+ left: 0;
20
+ width: 1080px;
21
+ height: 110px;
22
+ background: #ffffff;
23
+ color: #222;
24
+ display: flex;
25
+ align-items: center;
26
+ padding: 0 32px;
27
+ box-shadow: 0 1px 0 rgba(0,0,0,0.06);
28
+ font-size: 42px;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 22px; }
31
+ .status-right {
32
+ margin-left: auto;
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 26px;
36
+ }
37
+ /* App bar */
38
+ .app-bar {
39
+ position: absolute;
40
+ top: 110px;
41
+ left: 0;
42
+ width: 1080px;
43
+ height: 150px;
44
+ background: #ffffff;
45
+ display: flex;
46
+ align-items: center;
47
+ padding: 0 28px;
48
+ box-shadow: 0 1px 0 rgba(0,0,0,0.08);
49
+ }
50
+ .app-title {
51
+ font-weight: 500;
52
+ font-size: 56px;
53
+ color: #222;
54
+ margin-left: 24px;
55
+ }
56
+ .app-actions {
57
+ margin-left: auto;
58
+ display: flex;
59
+ align-items: center;
60
+ gap: 32px;
61
+ }
62
+ .icon-btn {
63
+ width: 72px;
64
+ height: 72px;
65
+ border-radius: 36px;
66
+ display: flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ }
70
+ .back-btn {
71
+ width: 80px;
72
+ height: 80px;
73
+ display: flex;
74
+ align-items: center;
75
+ justify-content: center;
76
+ }
77
+ /* Map placeholder */
78
+ .map-area {
79
+ position: absolute;
80
+ top: 260px;
81
+ left: 0;
82
+ width: 1080px;
83
+ height: 1820px;
84
+ background: #f5f5f5;
85
+ overflow: hidden;
86
+ }
87
+ .map-placeholder {
88
+ position: absolute;
89
+ top: 0;
90
+ left: 0;
91
+ width: 1080px;
92
+ height: 1820px;
93
+ background: #E0E0E0;
94
+ border-top: 1px solid #BDBDBD;
95
+ border-bottom: 1px solid #BDBDBD;
96
+ display: flex;
97
+ align-items: center;
98
+ justify-content: center;
99
+ color: #757575;
100
+ font-size: 40px;
101
+ letter-spacing: 0.5px;
102
+ }
103
+ /* Map overlays */
104
+ .label {
105
+ position: absolute;
106
+ color: #3c4043;
107
+ background: rgba(255,255,255,0.8);
108
+ padding: 10px 16px;
109
+ border-radius: 8px;
110
+ font-size: 36px;
111
+ box-shadow: 0 1px 2px rgba(0,0,0,0.15);
112
+ }
113
+ .poi-pin {
114
+ position: absolute;
115
+ width: 56px;
116
+ height: 78px;
117
+ }
118
+ .grey-marker {
119
+ position: absolute;
120
+ width: 46px;
121
+ height: 62px;
122
+ }
123
+ .blue-dot {
124
+ position: absolute;
125
+ width: 72px;
126
+ height: 72px;
127
+ border-radius: 36px;
128
+ background: #1a73e8;
129
+ box-shadow: 0 0 0 16px rgba(26,115,232,0.25);
130
+ }
131
+ /* Floating action button (pill) */
132
+ .fab {
133
+ position: absolute;
134
+ right: 44px;
135
+ bottom: 360px;
136
+ height: 140px;
137
+ width: 520px;
138
+ background: #1a73e8;
139
+ color: #fff;
140
+ border-radius: 70px;
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: center;
144
+ gap: 28px;
145
+ box-shadow: 0 10px 24px rgba(0,0,0,0.25);
146
+ font-size: 48px;
147
+ font-weight: 500;
148
+ }
149
+ .fab .icon {
150
+ width: 88px;
151
+ height: 88px;
152
+ background: rgba(255,255,255,0.18);
153
+ border-radius: 44px;
154
+ display: flex;
155
+ align-items: center;
156
+ justify-content: center;
157
+ }
158
+ /* Bottom sheet */
159
+ .bottom-sheet {
160
+ position: absolute;
161
+ left: 0;
162
+ bottom: 0;
163
+ width: 1080px;
164
+ height: 320px;
165
+ background: #ffffff;
166
+ border-top-left-radius: 28px;
167
+ border-top-right-radius: 28px;
168
+ box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
169
+ padding: 36px 40px;
170
+ }
171
+ .sheet-row {
172
+ display: flex;
173
+ align-items: center;
174
+ gap: 28px;
175
+ margin-top: 22px;
176
+ }
177
+ .sheet-icon {
178
+ width: 96px;
179
+ height: 96px;
180
+ border-radius: 48px;
181
+ background: #f0f0f0;
182
+ border: 1px solid #BDBDBD;
183
+ display: flex;
184
+ align-items: center;
185
+ justify-content: center;
186
+ color: #757575;
187
+ font-size: 36px;
188
+ }
189
+ .sheet-text h3 {
190
+ margin: 0;
191
+ font-size: 48px;
192
+ color: #222;
193
+ }
194
+ .sheet-text p {
195
+ margin: 8px 0 0 0;
196
+ font-size: 38px;
197
+ color: #616161;
198
+ }
199
+ .chevron {
200
+ margin-left: auto;
201
+ width: 56px;
202
+ height: 56px;
203
+ }
204
+ </style>
205
+ </head>
206
+ <body>
207
+ <div id="render-target">
208
+
209
+ <!-- Status Bar -->
210
+ <div class="status-bar">
211
+ <div class="status-left">
212
+ <span>8:39</span>
213
+ <!-- small cloud icon -->
214
+ <svg width="50" height="34" viewBox="0 0 24 16">
215
+ <path d="M6 12c-2.5 0-4-1.3-4-3s1.8-3 4-3c.9-2.3 3.1-3 5-3 3.4 0 5.5 2.2 6 4.5 2 .3 3 1.5 3 3 0 1.8-1.5 3.5-4.5 3.5H6z" fill="#80868b"/>
216
+ </svg>
217
+ </div>
218
+ <div class="status-right">
219
+ <!-- location icon -->
220
+ <svg width="40" height="40" viewBox="0 0 24 24">
221
+ <path d="M12 2l7 18-7-4-7 4 7-18z" fill="#5f6368"/>
222
+ </svg>
223
+ <!-- wifi icon -->
224
+ <svg width="44" height="40" viewBox="0 0 24 24">
225
+ <path d="M12 20l-2-2a3 3 0 014 0l-2 2zm6-6a8 8 0 00-12 0l-2-2a10 10 0 0116 0l-2 2zm3-5a14 14 0 00-20 0L0 7a16 16 0 0124 0l-3-2z" fill="#5f6368"/>
226
+ </svg>
227
+ <!-- battery icon -->
228
+ <svg width="60" height="40" viewBox="0 0 28 16">
229
+ <rect x="1" y="3" width="22" height="10" rx="2" fill="none" stroke="#5f6368" stroke-width="2"/>
230
+ <rect x="3" y="5" width="16" height="6" fill="#5f6368"/>
231
+ <rect x="24" y="6" width="3" height="4" rx="1" fill="#5f6368"/>
232
+ </svg>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- App Bar -->
237
+ <div class="app-bar">
238
+ <div class="back-btn">
239
+ <svg width="60" height="60" viewBox="0 0 24 24">
240
+ <path d="M15 18l-6-6 6-6" stroke="#202124" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
241
+ </svg>
242
+ </div>
243
+ <div class="app-title">Location sharing</div>
244
+ <div class="app-actions">
245
+ <div class="icon-btn">
246
+ <!-- gear icon -->
247
+ <svg width="56" height="56" viewBox="0 0 24 24">
248
+ <circle cx="12" cy="12" r="3.5" fill="#202124"/>
249
+ <path d="M12 2l2.2 1 .8 2.4 2.5.3 1.4 2-1.7 1.9.8 2.4-2 1.3-2.3-1-2.3 1-2-1.3.8-2.4-1.7-1.9 1.4-2 2.5-.3.8-2.4L12 2z" fill="#202124" opacity="0.8"/>
250
+ </svg>
251
+ </div>
252
+ <div class="icon-btn">
253
+ <!-- more vertical icon -->
254
+ <svg class="more-vert" width="56" height="56" viewBox="0 0 24 24">
255
+ <circle cx="12" cy="5" r="2.2" fill="#202124"/>
256
+ <circle cx="12" cy="12" r="2.2" fill="#202124"/>
257
+ <circle cx="12" cy="19" r="2.2" fill="#202124"/>
258
+ </svg>
259
+ </div>
260
+ </div>
261
+ </div>
262
+
263
+ <!-- Map Area -->
264
+ <div class="map-area">
265
+ <div class="map-placeholder">[IMG: Google Map]</div>
266
+
267
+ <!-- Map label example -->
268
+ <div class="label" style="top: 360px; left: 300px;">
269
+ GlobalLogic Technologies Limited
270
+ </div>
271
+
272
+ <!-- Grey marker near label -->
273
+ <div class="grey-marker" style="top: 560px; left: 340px;">
274
+ <svg width="46" height="62" viewBox="0 0 24 32">
275
+ <path d="M12 0C6.5 0 2 4.5 2 10c0 7 10 22 10 22s10-15 10-22C22 4.5 17.5 0 12 0z" fill="#77828a"/>
276
+ <circle cx="12" cy="10" r="4" fill="#dde3e7"/>
277
+ </svg>
278
+ </div>
279
+
280
+ <!-- Pink hotel pin -->
281
+ <div class="poi-pin" style="top: 300px; right: 190px;">
282
+ <svg width="56" height="78" viewBox="0 0 24 32">
283
+ <path d="M12 0C6.5 0 2 4.7 2 10.3c0 7.3 10 21.7 10 21.7s10-14.4 10-21.7C22 4.7 17.5 0 12 0z" fill="#e91e63"/>
284
+ <rect x="6" y="9" width="12" height="7" rx="2" fill="#fff"/>
285
+ <rect x="6" y="16" width="12" height="2" fill="#fff"/>
286
+ </svg>
287
+ </div>
288
+
289
+ <!-- Blue current location dot -->
290
+ <div class="blue-dot" style="top: 820px; left: 530px;"></div>
291
+ </div>
292
+
293
+ <!-- Floating Action Button -->
294
+ <div class="fab">
295
+ <div class="icon">
296
+ <svg width="60" height="60" viewBox="0 0 24 24">
297
+ <circle cx="9" cy="9" r="5" fill="#fff"/>
298
+ <path d="M2 22c1.5-4.2 6-6 9-6s7.5 1.8 9 6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
299
+ <path d="M17 8v-3m0 3h3m-3 0h-3" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
300
+ </svg>
301
+ </div>
302
+ <span>New share</span>
303
+ </div>
304
+
305
+ <!-- Bottom Sheet -->
306
+ <div class="bottom-sheet">
307
+ <div style="font-size: 40px; color: #616161;">Sharing via link</div>
308
+ <div class="sheet-row">
309
+ <div class="sheet-icon">🔗</div>
310
+ <div class="sheet-text">
311
+ <h3>Sharing via link</h3>
312
+ <p>People with this link can see your location for 58 min</p>
313
+ </div>
314
+ <svg class="chevron" viewBox="0 0 24 24">
315
+ <path d="M9 6l6 6-6 6" stroke="#5f6368" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
316
+ </svg>
317
+ </div>
318
+ </div>
319
+
320
+ </div>
321
+ </body>
322
+ </html>
code/14701/14701_0.html ADDED
@@ -0,0 +1,236 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Send Feedback - Mock</title>
6
+ <style>
7
+ body {
8
+ margin: 0;
9
+ padding: 0;
10
+ background: transparent;
11
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, system-ui;
12
+ }
13
+ #render-target {
14
+ width: 1080px;
15
+ height: 2400px;
16
+ position: relative;
17
+ overflow: hidden;
18
+ background: #0f1418;
19
+ border-radius: 32px;
20
+ box-shadow: 0 20px 60px rgba(0,0,0,0.35);
21
+ color: #e8eaed;
22
+ }
23
+ /* Status bar */
24
+ .status-bar {
25
+ position: absolute;
26
+ top: 0;
27
+ left: 0;
28
+ width: 100%;
29
+ height: 96px;
30
+ background: #13191e;
31
+ display: flex;
32
+ align-items: center;
33
+ padding: 0 36px;
34
+ box-sizing: border-box;
35
+ color: #e8eaed;
36
+ font-weight: 600;
37
+ font-size: 36px;
38
+ }
39
+ .status-left,
40
+ .status-right {
41
+ display: flex;
42
+ align-items: center;
43
+ gap: 22px;
44
+ }
45
+ .status-bar .spacer {
46
+ flex: 1;
47
+ }
48
+
49
+ /* App bar */
50
+ .app-bar {
51
+ position: absolute;
52
+ top: 96px;
53
+ left: 0;
54
+ width: 100%;
55
+ height: 140px;
56
+ background: #182025;
57
+ display: flex;
58
+ align-items: center;
59
+ box-sizing: border-box;
60
+ padding: 0 36px;
61
+ border-bottom: 1px solid rgba(255,255,255,0.06);
62
+ }
63
+ .app-title {
64
+ color: #e8eaed;
65
+ font-size: 56px;
66
+ font-weight: 700;
67
+ margin-left: 24px;
68
+ }
69
+ .icon-btn {
70
+ width: 72px;
71
+ height: 72px;
72
+ display: flex;
73
+ align-items: center;
74
+ justify-content: center;
75
+ }
76
+
77
+ /* Content */
78
+ .content {
79
+ position: absolute;
80
+ left: 0;
81
+ top: 236px; /* status + app bar */
82
+ width: 100%;
83
+ height: calc(100% - 236px);
84
+ box-sizing: border-box;
85
+ padding: 48px 40px 140px;
86
+ }
87
+ .description {
88
+ color: #cfd8dc;
89
+ font-size: 34px;
90
+ line-height: 1.5;
91
+ margin-bottom: 40px;
92
+ }
93
+
94
+ .field-group {
95
+ margin-bottom: 36px;
96
+ }
97
+ .label {
98
+ font-size: 28px;
99
+ color: #b7c0c6;
100
+ margin-bottom: 16px;
101
+ }
102
+ .input,
103
+ .textarea {
104
+ width: 100%;
105
+ box-sizing: border-box;
106
+ background: #141b20;
107
+ border: 2px solid #51606b;
108
+ border-radius: 24px;
109
+ color: #e8eaed;
110
+ padding: 32px;
111
+ font-size: 34px;
112
+ outline: none;
113
+ }
114
+ .input {
115
+ height: 120px;
116
+ }
117
+ .textarea {
118
+ height: 520px;
119
+ resize: none;
120
+ }
121
+
122
+ .btn {
123
+ width: 100%;
124
+ height: 120px;
125
+ background: #e4eaef;
126
+ color: #1b2328;
127
+ border: none;
128
+ border-radius: 24px;
129
+ font-size: 40px;
130
+ font-weight: 700;
131
+ cursor: pointer;
132
+ }
133
+
134
+ /* Bottom home indicator */
135
+ .home-indicator {
136
+ position: absolute;
137
+ bottom: 28px;
138
+ left: 50%;
139
+ transform: translateX(-50%);
140
+ width: 420px;
141
+ height: 14px;
142
+ background: #e9eaed;
143
+ border-radius: 10px;
144
+ opacity: 0.9;
145
+ }
146
+
147
+ /* Simple icon styles */
148
+ svg {
149
+ display: block;
150
+ }
151
+ </style>
152
+ </head>
153
+ <body>
154
+ <div id="render-target">
155
+ <!-- Status bar -->
156
+ <div class="status-bar">
157
+ <div class="status-left">
158
+ <div>3:58</div>
159
+ <!-- Sun icon -->
160
+ <svg width="36" height="36" viewBox="0 0 36 36">
161
+ <circle cx="18" cy="18" r="6" fill="#e8eaed"/>
162
+ <g stroke="#e8eaed" stroke-width="2" stroke-linecap="round">
163
+ <line x1="18" y1="2" x2="18" y2="8"/>
164
+ <line x1="18" y1="28" x2="18" y2="34"/>
165
+ <line x1="2" y1="18" x2="8" y2="18"/>
166
+ <line x1="28" y1="18" x2="34" y2="18"/>
167
+ <line x1="6" y1="6" x2="10" y2="10"/>
168
+ <line x1="26" y1="26" x2="30" y2="30"/>
169
+ <line x1="6" y1="30" x2="10" y2="26"/>
170
+ <line x1="26" y1="10" x2="30" y2="6"/>
171
+ </g>
172
+ </svg>
173
+ <!-- Cloud icon -->
174
+ <svg width="42" height="36" viewBox="0 0 42 36">
175
+ <path d="M14 26h16a8 8 0 000-16c-1 0-2 .1-3 .4A9 9 0 0010 18a6 6 0 004 8z" fill="#cfd8dc"/>
176
+ </svg>
177
+ </div>
178
+ <div class="spacer"></div>
179
+ <div class="status-right">
180
+ <!-- WiFi icon -->
181
+ <svg width="40" height="32" viewBox="0 0 40 32">
182
+ <g fill="none" stroke="#e8eaed" stroke-width="2">
183
+ <path d="M4 10c8-6 24-6 32 0"/>
184
+ <path d="M8 16c6-4 18-4 24 0"/>
185
+ <path d="M12 22c4-3 12-3 16 0"/>
186
+ <circle cx="20" cy="26" r="2" fill="#e8eaed" stroke="none"/>
187
+ </g>
188
+ </svg>
189
+ <!-- Battery icon -->
190
+ <svg width="44" height="28" viewBox="0 0 44 28">
191
+ <rect x="2" y="4" width="36" height="20" rx="4" ry="4" fill="none" stroke="#e8eaed" stroke-width="2"/>
192
+ <rect x="6" y="8" width="28" height="12" rx="2" fill="#e8eaed"/>
193
+ <rect x="38" y="10" width="4" height="8" rx="1" fill="#e8eaed"/>
194
+ </svg>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- App bar -->
199
+ <div class="app-bar">
200
+ <div class="icon-btn" aria-label="Close">
201
+ <svg width="44" height="44" viewBox="0 0 44 44">
202
+ <path d="M10 10 L34 34 M34 10 L10 34" stroke="#cfd8dc" stroke-width="4" stroke-linecap="round"/>
203
+ </svg>
204
+ </div>
205
+ <div class="app-title">Send feedback</div>
206
+ </div>
207
+
208
+ <!-- Content -->
209
+ <div class="content">
210
+ <div class="description">
211
+ If you're experiencing a problem, please provide as much detail as possible about what you were doing and what went wrong.
212
+ </div>
213
+
214
+ <div class="field-group">
215
+ <div class="label">Name (optional)</div>
216
+ <div class="input"></div>
217
+ </div>
218
+
219
+ <div class="field-group">
220
+ <div class="label">Email</div>
221
+ <div class="input"></div>
222
+ </div>
223
+
224
+ <div class="field-group">
225
+ <div class="label">Comment</div>
226
+ <div class="textarea"></div>
227
+ </div>
228
+
229
+ <button class="btn">Send</button>
230
+ </div>
231
+
232
+ <!-- Home indicator -->
233
+ <div class="home-indicator"></div>
234
+ </div>
235
+ </body>
236
+ </html>
code/14701/14701_1.html ADDED
@@ -0,0 +1,313 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>My Trips UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #f4f7fb;
13
+ }
14
+
15
+ /* Top hero */
16
+ .hero {
17
+ position: absolute; left: 0; top: 0; width: 1080px; height: 420px;
18
+ background: linear-gradient(180deg, #2bb7ff 0%, #1ea6ff 60%, #0a83dc 100%);
19
+ }
20
+ .hero-img {
21
+ position: absolute; right: 20px; bottom: 0;
22
+ width: 360px; height: 240px;
23
+ background: #E0E0E0; border: 1px solid #BDBDBD;
24
+ display: flex; align-items: center; justify-content: center; color: #757575; border-radius: 12px;
25
+ }
26
+ .status-bar {
27
+ position: absolute; top: 16px; left: 24px; right: 24px; height: 36px; color: #08365e;
28
+ display: flex; align-items: center; justify-content: space-between; font-weight: 600;
29
+ }
30
+ .status-right { display: flex; gap: 16px; align-items: center; }
31
+ .icon-sm svg { width: 28px; height: 28px; fill: #08365e; opacity: 0.9; }
32
+
33
+ .hero-title {
34
+ position: absolute; left: 24px; top: 84px;
35
+ font-size: 66px; font-weight: 800; color: #ffffff; letter-spacing: 0.5px;
36
+ }
37
+ .title-dot {
38
+ display: inline-block; width: 12px; height: 12px; background: #ffd54f; border-radius: 50%; margin-left: 12px;
39
+ }
40
+
41
+ .quick-actions {
42
+ position: absolute; left: 24px; top: 190px; right: 24px;
43
+ display: flex; gap: 20px;
44
+ }
45
+ .pill {
46
+ background: rgba(255,255,255,0.25);
47
+ color: #e9f6ff;
48
+ border: 1px solid rgba(255,255,255,0.35);
49
+ padding: 18px 24px; border-radius: 16px;
50
+ backdrop-filter: blur(2px);
51
+ display: flex; align-items: center; gap: 14px;
52
+ font-size: 34px; font-weight: 600;
53
+ }
54
+ .pill svg { width: 40px; height: 40px; fill: #e9f6ff; }
55
+
56
+ /* Welcome card */
57
+ .welcome-card {
58
+ position: absolute; left: 24px; right: 24px; top: 360px;
59
+ background: #ffffff; border-radius: 28px; box-shadow: 0 10px 24px rgba(20,40,80,0.12);
60
+ padding: 44px 36px;
61
+ }
62
+ .welcome-title {
63
+ color: #1f3553; font-size: 44px; font-weight: 800; line-height: 1.35; text-align: center; margin-bottom: 26px;
64
+ }
65
+ .support-row {
66
+ display: flex; align-items: center; justify-content: center; gap: 12px;
67
+ color: #6a7c93; font-size: 28px; margin-bottom: 36px;
68
+ }
69
+ .support-row svg { width: 34px; height: 34px; fill: #2bc3b8; }
70
+
71
+ .service-grid {
72
+ display: flex; justify-content: space-around; margin-top: 6px;
73
+ }
74
+ .service {
75
+ width: 240px; text-align: center;
76
+ }
77
+ .service-circle {
78
+ width: 160px; height: 160px; background: #eef2f8; border-radius: 50%;
79
+ margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
80
+ }
81
+ .service-circle svg { width: 80px; height: 80px; fill: #3a74ff; }
82
+ .service label { display: block; color: #627188; font-size: 32px; font-weight: 700; }
83
+
84
+ /* Section header */
85
+ .section-title {
86
+ position: absolute; left: 0; right: 0; top: 840px;
87
+ text-align: center; color: #3a4a63; font-size: 36px; font-weight: 800;
88
+ }
89
+
90
+ /* City carousel card */
91
+ .city-card {
92
+ position: absolute; left: 24px; right: 24px; top: 910px;
93
+ background: #ffffff; border-radius: 26px; box-shadow: 0 8px 20px rgba(20,40,80,0.08);
94
+ padding: 28px;
95
+ }
96
+ .city-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
97
+ .city-header h2 { margin: 0; font-size: 44px; color: #132b4c; font-weight: 800; }
98
+ .chevron { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: #f1f4f9; }
99
+ .chevron svg { width: 26px; height: 26px; fill: #7a8aa1; }
100
+
101
+ .cards-grid {
102
+ display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
103
+ }
104
+ .place-card {
105
+ background: #f7f9fc; border-radius: 22px; overflow: hidden; position: relative;
106
+ box-shadow: 0 6px 12px rgba(0,0,0,0.06);
107
+ }
108
+ .img-ph {
109
+ height: 380px; background: #E0E0E0; border-bottom: 1px solid #BDBDBD;
110
+ display: flex; align-items: center; justify-content: center; color: #757575;
111
+ }
112
+ .badge {
113
+ position: absolute; top: 14px; left: 14px; background: rgba(255,238,217,0.95); color: #7a4b00;
114
+ padding: 12px 18px; border-radius: 14px; font-weight: 800; font-size: 28px;
115
+ }
116
+ .desc-box {
117
+ position: absolute; left: 18px; right: 18px; bottom: 18px;
118
+ background: #ffffff; border-radius: 18px; padding: 18px 20px; color: #14233b; font-size: 32px; font-weight: 800;
119
+ box-shadow: 0 6px 0 rgba(25,25,25,0.08);
120
+ }
121
+ .cta-box {
122
+ position: absolute; left: 18px; right: 18px; bottom: 18px;
123
+ background: #ffffff; border-radius: 18px; padding: 18px 20px;
124
+ box-shadow: 0 10px 0 #d1752f, 0 20px 0 rgba(0,0,0,0.08);
125
+ }
126
+ .cta-title { color: #14233b; font-size: 32px; font-weight: 800; margin-bottom: 10px; }
127
+ .cta-link { color: #2b59ff; font-size: 30px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
128
+ .cta-link svg { width: 26px; height: 26px; fill: #2b59ff; }
129
+
130
+ .slider-indicator {
131
+ width: 140px; height: 10px; background: #e9edf4; border-radius: 8px; margin: 20px auto 2px; position: relative;
132
+ }
133
+ .slider-indicator .dot { position: absolute; left: 40%; top: -3px; width: 100px; height: 16px; background: #3a74ff; border-radius: 10px; }
134
+
135
+ /* Next city preview */
136
+ .city-card.secondary { top: 1390px; }
137
+ .city-card.secondary .img-ph { height: 300px; }
138
+
139
+ /* Bottom navigation */
140
+ .bottom-nav {
141
+ position: absolute; left: 0; right: 0; bottom: 110px; height: 160px;
142
+ background: #ffffff; border-top: 1px solid #e2e6ee; display: flex; justify-content: space-around; align-items: center;
143
+ }
144
+ .nav-item { width: 220px; text-align: center; color: #7a8aa1; font-size: 28px; font-weight: 700; }
145
+ .nav-item .ico { width: 66px; height: 66px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; border-radius: 18px; background: #f3f6fb; }
146
+ .nav-item.active { color: #2b59ff; }
147
+ .nav-item.active .ico { background: #e9f0ff; }
148
+ .nav-item.active .ico svg { fill: #2b59ff; }
149
+ .nav-item .ico svg { width: 40px; height: 40px; fill: #7a8aa1; }
150
+ .badge-dot {
151
+ position: absolute; right: 150px; bottom: 162px; width: 28px; height: 28px; background: #ffc400; border: 3px solid #ffffff; border-radius: 50%;
152
+ }
153
+
154
+ .home-indicator {
155
+ position: absolute; left: 50%; transform: translateX(-50%); bottom: 40px;
156
+ width: 440px; height: 14px; background: #c7ccd6; border-radius: 8px;
157
+ }
158
+ </style>
159
+ </head>
160
+ <body>
161
+ <div id="render-target">
162
+
163
+ <!-- Top Hero -->
164
+ <div class="hero">
165
+ <div class="status-bar">
166
+ <div style="display:flex; align-items:center; gap:10px;">
167
+ <span style="font-size:32px;">3:59</span>
168
+ <span class="icon-sm">
169
+ <svg viewBox="0 0 24 24"><path d="M12 4a8 8 0 100 16 8 8 0 000-16zm0 2a6 6 0 110 12A6 6 0 0112 6z"/></svg>
170
+ </span>
171
+ <span class="icon-sm">
172
+ <svg viewBox="0 0 24 24"><path d="M3 14c3-6 15-6 18 0-3 6-15 6-18 0z"/></svg>
173
+ </span>
174
+ </div>
175
+ <div class="status-right">
176
+ <span class="icon-sm"><svg viewBox="0 0 24 24"><path d="M2 17l4-4 3 3 5-5 8 8H2z"/></svg></span>
177
+ <span class="icon-sm"><svg viewBox="0 0 24 24"><path d="M6 2h12v20H6zM10 4h4v16h-4z"/></svg></span>
178
+ </div>
179
+ </div>
180
+
181
+ <div class="hero-title">My Trips<span class="title-dot"></span></div>
182
+
183
+ <div class="quick-actions">
184
+ <div class="pill">
185
+ <svg viewBox="0 0 24 24"><path d="M4 5h16v12H4zM7 3h10v2H7z"/></svg>
186
+ <span>All Bookings</span>
187
+ </div>
188
+ <div class="pill">
189
+ <svg viewBox="0 0 24 24"><path d="M4 5h16v14H4zM7 3h10v2H7zM7 9h10v2H7zM7 13h6v2H7z"/></svg>
190
+ <span>Checklist</span>
191
+ </div>
192
+ <div class="pill">
193
+ <svg viewBox="0 0 24 24"><path d="M12 3l3 3-3 3-3-3 3-3zm-6 9h12v2H6zm6 6l-3-3 3-3 3 3-3 3z"/></svg>
194
+ <span>Currency Converter</span>
195
+ </div>
196
+ </div>
197
+
198
+ <div class="hero-img">[IMG: Person celebrating on mountain summit]</div>
199
+ </div>
200
+
201
+ <!-- Welcome Card -->
202
+ <div class="welcome-card">
203
+ <div class="welcome-title">It's been a while since your last trip. Plan a new journey now!</div>
204
+ <div class="support-row">
205
+ <svg viewBox="0 0 24 24"><path d="M12 21s-7-4.35-7-10a4.5 4.5 0 019 0 4.5 4.5 0 019 0c0 5.65-7 10-7 10z"/></svg>
206
+ <span>Support in Approx. 30s</span>
207
+ </div>
208
+ <div class="service-grid">
209
+ <div class="service">
210
+ <div class="service-circle">
211
+ <svg viewBox="0 0 24 24"><path d="M2 16l20-6-1-3-8 3-5-5-2 1 4 6-8 4zM3 18h18v2H3z"/></svg>
212
+ </div>
213
+ <label>Flights</label>
214
+ </div>
215
+ <div class="service">
216
+ <div class="service-circle">
217
+ <svg viewBox="0 0 24 24"><path d="M4 10h16v10H4zM6 6h12v4H6zM8 14h4v4H8z"/></svg>
218
+ </div>
219
+ <label>Hotels</label>
220
+ </div>
221
+ <div class="service">
222
+ <div class="service-circle">
223
+ <svg viewBox="0 0 24 24"><path d="M3 16h18l-2-7H5l-2 7zm4-9h10V5H7v2zM8 12h2v2H8zm6 0h2v2h-2z"/></svg>
224
+ </div>
225
+ <label>Trains</label>
226
+ </div>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Options Section Title -->
231
+ <div class="section-title">Options for Your Next Journey</div>
232
+
233
+ <!-- City: London -->
234
+ <div class="city-card">
235
+ <div class="city-header">
236
+ <h2>London</h2>
237
+ <div class="chevron"><svg viewBox="0 0 24 24"><path d="M9 6l6 6-6 6"/></svg></div>
238
+ </div>
239
+ <div class="cards-grid">
240
+ <!-- Things to do -->
241
+ <div class="place-card">
242
+ <div class="img-ph">[IMG: London Big Ben]</div>
243
+ <div class="badge">Trip.Best</div>
244
+ <div class="desc-box">Top 19 Best Things to Do in London</div>
245
+ </div>
246
+ <!-- Discounted Hotels -->
247
+ <div class="place-card" style="background:#fff7f0;">
248
+ <div class="img-ph">[IMG: Cozy hotel room in London]</div>
249
+ <div class="cta-box">
250
+ <div class="cta-title">Discounted Hotels in London</div>
251
+ <div class="cta-link">Book Now
252
+ <svg viewBox="0 0 24 24"><path d="M9 6l6 6-6 6M5 12h10"/></svg>
253
+ </div>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ <div class="slider-indicator"><div class="dot"></div></div>
258
+ </div>
259
+
260
+ <!-- City: New York (preview) -->
261
+ <div class="city-card secondary">
262
+ <div class="city-header">
263
+ <h2>New York</h2>
264
+ <div class="chevron"><svg viewBox="0 0 24 24"><path d="M9 6l6 6-6 6"/></svg></div>
265
+ </div>
266
+ <div class="cards-grid">
267
+ <div class="place-card">
268
+ <div class="img-ph">[IMG: Statue of Liberty]</div>
269
+ <div class="badge">Trip.Best</div>
270
+ <div class="desc-box">Top NYC Attractions</div>
271
+ </div>
272
+ <div class="place-card">
273
+ <div class="img-ph">[IMG: NYC skyline with blue pool]</div>
274
+ <div class="desc-box">Great Deals on NYC Hotels</div>
275
+ </div>
276
+ </div>
277
+ </div>
278
+
279
+ <!-- Bottom Navigation -->
280
+ <div class="bottom-nav">
281
+ <div class="nav-item">
282
+ <div class="ico">
283
+ <svg viewBox="0 0 24 24"><path d="M3 11l9-7 9 7v9H3v-9zm6 9v-6h6v6H9z"/></svg>
284
+ </div>
285
+ Home
286
+ </div>
287
+ <div class="nav-item">
288
+ <div class="ico">
289
+ <svg viewBox="0 0 24 24"><path d="M12 3a9 9 0 100 18 9 9 0 000-18zm0 4a5 5 0 110 10 5 5 0 010-10zm-1 5h2v4h-2zm0-4h2v2h-2z"/></svg>
290
+ </div>
291
+ Deals
292
+ </div>
293
+ <div class="nav-item active">
294
+ <div class="ico">
295
+ <svg viewBox="0 0 24 24"><path d="M7 6h10l2 5H5l2-5zm-2 7h14v6H5v-6z"/></svg>
296
+ </div>
297
+ My Trips
298
+ </div>
299
+ <div class="nav-item">
300
+ <div class="ico">
301
+ <svg viewBox="0 0 24 24"><path d="M12 12a5 5 0 100-10 5 5 0 000 10zm0 2c-4 0-7 2-7 5v3h14v-3c0-3-3-5-7-5z"/></svg>
302
+ </div>
303
+ Account
304
+ </div>
305
+ </div>
306
+ <div class="badge-dot"></div>
307
+
308
+ <!-- Home Indicator -->
309
+ <div class="home-indicator"></div>
310
+
311
+ </div>
312
+ </body>
313
+ </html>
code/14701/14701_2.html ADDED
@@ -0,0 +1,296 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Account Screen Mock</title>
7
+ <style>
8
+ body{margin:0;padding:0;background:transparent;font-family:Arial,Helvetica,sans-serif;color:#12223A;}
9
+ #render-target{
10
+ width:1080px;height:2400px;position:relative;overflow:hidden;
11
+ background:#ffffff;
12
+ }
13
+ /* Header gradient */
14
+ .header{
15
+ width:100%;height:560px;background:linear-gradient(180deg,#cfe0ff 0%,#c6dbff 100%);
16
+ padding:32px 40px 0 40px;box-sizing:border-box;
17
+ }
18
+ .status-bar{
19
+ height:80px;display:flex;align-items:center;justify-content:space-between;color:#1b2b3c;opacity:.9;
20
+ font-size:34px;font-weight:600;
21
+ }
22
+ .status-icons{display:flex;align-items:center;gap:22px;}
23
+ .status-dot{width:10px;height:10px;border-radius:50%;background:#1b2b3c;margin-left:6px;}
24
+ .profile-row{
25
+ display:flex;align-items:center;margin-top:24px;
26
+ }
27
+ .avatar{
28
+ width:160px;height:160px;border-radius:50%;
29
+ background:#E0E0E0;border:1px solid #BDBDBD;color:#757575;
30
+ display:flex;align-items:center;justify-content:center;font-size:28px;
31
+ }
32
+ .user-info{margin-left:28px;}
33
+ .user-name{font-size:56px;font-weight:700;color:#2b3b4f;letter-spacing:.2px;}
34
+ .edit-link{font-size:34px;color:#6f7f93;margin-top:6px;display:flex;align-items:center;gap:8px;}
35
+ .edit-link svg{margin-top:2px;}
36
+ .settings-badge{position:absolute;top:140px;right:44px;display:flex;align-items:center;}
37
+ .settings-badge .dot{position:absolute;right:-2px;top:-4px;width:16px;height:16px;background:#FF6B3D;border-radius:50%;}
38
+ /* Membership card */
39
+ .member-card{
40
+ margin-top:32px;background:#eaf1ff;border-radius:18px;padding:32px 36px;display:flex;align-items:center;justify-content:space-between;
41
+ }
42
+ .member-left{display:flex;align-items:center;gap:22px;}
43
+ .coin{
44
+ width:86px;height:86px;border-radius:50%;background:#FFC928;color:#24314a;font-weight:800;
45
+ display:flex;justify-content:center;align-items:center;font-size:56px;box-shadow:inset 0 0 0 2px rgba(0,0,0,0.08);
46
+ }
47
+ .tier{font-size:44px;color:#394a60;}
48
+ .chev{opacity:.5;}
49
+ /* Quick tabs */
50
+ .quick-tabs{display:flex;justify-content:space-around;align-items:center;margin:38px 0 24px 0;}
51
+ .quick-tab{display:flex;flex-direction:column;align-items:center;color:#152a42;}
52
+ .quick-icon{margin-bottom:18px;}
53
+ .quick-tab span{font-size:40px;}
54
+ /* Section dividers */
55
+ .thick-divider{height:18px;background:#eef2f6;width:100%;}
56
+ .thin-divider{height:1px;background:#e6ebf0;width:100%;}
57
+ /* List items */
58
+ .list{padding:0 36px;}
59
+ .list-item{
60
+ display:flex;align-items:center;justify-content:space-between;gap:24px;
61
+ height:128px;
62
+ }
63
+ .li-left{display:flex;align-items:center;gap:28px;}
64
+ .li-icon svg{stroke:#193552;}
65
+ .li-text{font-size:46px;color:#0f2740;}
66
+ .badge{
67
+ background:#F0472E;color:#fff;padding:10px 22px;border-radius:24px;font-size:32px;font-weight:700;
68
+ }
69
+ .bottom-spacer{height:160px;}
70
+ /* Bottom nav */
71
+ .bottom-nav{
72
+ position:absolute;left:0;right:0;bottom:0;height:180px;background:#ffffff;border-top:1px solid #e6ebf0;
73
+ display:flex;justify-content:space-around;align-items:center;
74
+ }
75
+ .nav-item{display:flex;flex-direction:column;align-items:center;font-size:30px;color:#7a8796;gap:14px;}
76
+ .nav-item.active{color:#2455ff;font-weight:700;}
77
+ .active-icon{position:relative;}
78
+ .active-icon .notif{
79
+ position:absolute;right:-8px;top:-6px;width:22px;height:22px;border-radius:50%;background:#FFC928;border:2px solid #fff;
80
+ }
81
+ /* Gesture bar */
82
+ .gesture{position:absolute;left:50%;transform:translateX(-50%);bottom:198px;width:360px;height:12px;background:#b5bbc4;border-radius:8px;opacity:.8;}
83
+ </style>
84
+ </head>
85
+ <body>
86
+ <div id="render-target">
87
+ <div class="header">
88
+ <div class="status-bar">
89
+ <div>4:01</div>
90
+ <div class="status-icons">
91
+ <!-- simple gear & cloud -->
92
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#1b2b3c" stroke-width="2"><circle cx="12" cy="12" r="3"/><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 1 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 .51 1.65 1.65 0 0 1-2.32 0 1.65 1.65 0 0 0-1-.51 1.65 1.65 0 0 0-1.82.33l-.06.06A2 2 0 1 1 4.2 17l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 1 0-1.02 1.65 1.65 0 0 0-.33-1.82L4.2 12a2 2 0 1 1 2.83-2.83l.06.06c.49.49 1.2.64 1.82.33.33-.16.62-.39.84-.7a1.65 1.65 0 0 1 2.32 0c.22.31.51.54.84.7.62.31 1.33.16 1.82-.33l.06-.06A2 2 0 1 1 19.8 12l-.06.06a1.65 1.65 0 0 0-.33 1.82c.1.34.1.68 0 1.02z"/></svg>
93
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" stroke="#1b2b3c" stroke-width="2"><path d="M3 15a4 4 0 0 1 4-4 5 5 0 0 1 9.9-1.2A4 4 0 0 1 20 14a3 3 0 0 1-3 3H7a4 4 0 0 1-4-2z"/></svg>
94
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="#1b2b3c"><path d="M17 4h-1V2h-2v2H10V2H8v2H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM7 20V7h10v13H7z"/></svg>
95
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="#1b2b3c"><path d="M12 2a7 7 0 0 0-7 7v7l-2 2v1h18v-1l-2-2V9a7 7 0 0 0-7-7z"/></svg>
96
+ </div>
97
+ </div>
98
+
99
+ <div class="profile-row">
100
+ <div class="avatar">[IMG: Avatar]</div>
101
+ <div class="user-info">
102
+ <div class="user-name">Cerebra Research</div>
103
+ <div class="edit-link">Edit personal information
104
+ <svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="#6f7f93" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>
105
+ </div>
106
+ </div>
107
+ </div>
108
+
109
+ <div class="settings-badge">
110
+ <svg width="60" height="60" viewBox="0 0 24 24" fill="none" stroke="#6b7c90" stroke-width="2">
111
+ <path d="M12 2l6 3.5v7L12 20l-6-7.5v-7L12 2z"/>
112
+ <circle cx="12" cy="10" r="3" />
113
+ </svg>
114
+ <span class="dot"></span>
115
+ </div>
116
+
117
+ <div class="member-card">
118
+ <div class="member-left">
119
+ <div class="coin">T</div>
120
+ <div class="tier"><strong style="font-weight:800">0</strong> &nbsp; Silver</div>
121
+ </div>
122
+ <svg class="chev" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#6f7f93" stroke-width="2"><path d="M9 6l6 6-6 6"/></svg>
123
+ </div>
124
+
125
+ <div class="quick-tabs">
126
+ <div class="quick-tab">
127
+ <svg class="quick-icon" width="70" height="70" viewBox="0 0 24 24" fill="none" stroke="#3B5AFE" stroke-width="2">
128
+ <rect x="3" y="5" width="18" height="16" rx="2"></rect>
129
+ <path d="M8 3v4M16 3v4M3 11h18"/>
130
+ </svg>
131
+ <span>All Bookings</span>
132
+ </div>
133
+ <div class="quick-tab">
134
+ <svg class="quick-icon" width="70" height="70" viewBox="0 0 24 24" fill="none" stroke="#3B5AFE" stroke-width="2">
135
+ <path d="M4 7h16v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7z"/>
136
+ <path d="M4 7l4-4h8l4 4"/>
137
+ <path d="M9 12h6M9 16h6"/>
138
+ </svg>
139
+ <span>Upcoming</span>
140
+ </div>
141
+ <div class="quick-tab">
142
+ <svg class="quick-icon" width="70" height="70" viewBox="0 0 24 24" fill="#3B5AFE">
143
+ <rect x="3" y="5" width="18" height="14" rx="2"></rect>
144
+ <rect x="6" y="8" width="12" height="2" fill="#ffffff"></rect>
145
+ <rect x="6" y="12" width="8" height="2" fill="#ffffff"></rect>
146
+ </svg>
147
+ <span>Awaiting Review</span>
148
+ </div>
149
+ </div>
150
+ </div>
151
+
152
+ <div class="thick-divider"></div>
153
+
154
+ <div class="list">
155
+ <div class="list-item">
156
+ <div class="li-left">
157
+ <div class="li-icon">
158
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
159
+ <path d="M20.8 12.1a6 6 0 1 1-9.7-6.6"/><path d="M5 12l-2 2"/><path d="M9 21l3-1"/><path d="M3 8l2-2"/>
160
+ </svg>
161
+ </div>
162
+ <div class="li-text">Saved</div>
163
+ </div>
164
+ </div>
165
+ <div class="list-item">
166
+ <div class="li-left">
167
+ <div class="li-icon">
168
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
169
+ <circle cx="12" cy="12" r="8"></circle>
170
+ <path d="M12 8v5l3 3"/>
171
+ </svg>
172
+ </div>
173
+ <div class="li-text">Recently Viewed</div>
174
+ </div>
175
+ </div>
176
+ <div class="list-item">
177
+ <div class="li-left">
178
+ <div class="li-icon">
179
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
180
+ <path d="M3 7l9-4 9 4-9 4-9-4z"/>
181
+ <path d="M3 17l9-4 9 4"/>
182
+ </svg>
183
+ </div>
184
+ <div class="li-text">Promo Codes</div>
185
+ </div>
186
+ </div>
187
+ <div class="list-item">
188
+ <div class="li-left">
189
+ <div class="li-icon">
190
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
191
+ <rect x="3" y="6" width="18" height="12" rx="2"></rect>
192
+ <path d="M7 10h10M7 14h6"/>
193
+ </svg>
194
+ </div>
195
+ <div class="li-text">My Posts</div>
196
+ </div>
197
+ <div class="badge">Rewards</div>
198
+ </div>
199
+ <div class="list-item">
200
+ <div class="li-left">
201
+ <div class="li-icon">
202
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
203
+ <path d="M3 9h18v10H3z"/><path d="M3 9l3-4h12l3 4"/>
204
+ <path d="M8 13h8M8 17h8"/>
205
+ </svg>
206
+ </div>
207
+ <div class="li-text">Gift Cards</div>
208
+ </div>
209
+ </div>
210
+ <div class="list-item">
211
+ <div class="li-left">
212
+ <div class="li-icon">
213
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
214
+ <rect x="2" y="6" width="20" height="12" rx="2"></rect>
215
+ <path d="M2 10h20M7 14h2"/>
216
+ </svg>
217
+ </div>
218
+ <div class="li-text">My Cards</div>
219
+ </div>
220
+ </div>
221
+ <div class="list-item">
222
+ <div class="li-left">
223
+ <div class="li-icon">
224
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
225
+ <circle cx="12" cy="8" r="4"></circle>
226
+ <path d="M6 20c0-3.3 2.7-6 6-6s6 2.7 6 6"/>
227
+ </svg>
228
+ </div>
229
+ <div class="li-text">Frequent Traveler Info</div>
230
+ </div>
231
+ </div>
232
+ </div>
233
+
234
+ <div class="thick-divider"></div>
235
+
236
+ <div class="list">
237
+ <div class="list-item">
238
+ <div class="li-left">
239
+ <div class="li-icon">
240
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
241
+ <path d="M3 19v-6a8 8 0 0 1 16 0v6"/><path d="M8 19h8"/><circle cx="12" cy="7" r="1"/>
242
+ </svg>
243
+ </div>
244
+ <div class="li-text">Customer Support</div>
245
+ </div>
246
+ </div>
247
+ <div class="list-item">
248
+ <div class="li-left">
249
+ <div class="li-icon">
250
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none" stroke="#173653" stroke-width="2">
251
+ <circle cx="12" cy="12" r="10"></circle>
252
+ <path d="M12 16v-4M12 8h.01"/>
253
+ </svg>
254
+ </div>
255
+ <div class="li-text">About Trip.com</div>
256
+ </div>
257
+ </div>
258
+ </div>
259
+
260
+ <div class="bottom-spacer"></div>
261
+
262
+ <div class="gesture"></div>
263
+
264
+ <div class="bottom-nav">
265
+ <div class="nav-item">
266
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#7a8796" stroke-width="2">
267
+ <path d="M3 11l9-8 9 8"/><path d="M5 10v10h14V10"/>
268
+ </svg>
269
+ <div>Home</div>
270
+ </div>
271
+ <div class="nav-item">
272
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#7a8796" stroke-width="2">
273
+ <path d="M3 7l9-4 9 4-9 4-9-4z"/><path d="M3 17l9-4 9 4"/>
274
+ </svg>
275
+ <div>Deals</div>
276
+ </div>
277
+ <div class="nav-item">
278
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#7a8796" stroke-width="2">
279
+ <path d="M4 7h16v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7z"/><path d="M4 7l4-4h8l4 4"/>
280
+ </svg>
281
+ <div>My Trips</div>
282
+ </div>
283
+ <div class="nav-item active">
284
+ <div class="active-icon">
285
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="#2455ff">
286
+ <circle cx="12" cy="8" r="5" fill="#2455ff"></circle>
287
+ <path d="M4 22c0-4.4 3.6-8 8-8s8 3.6 8 8" fill="#2455ff"></path>
288
+ </svg>
289
+ <span class="notif"></span>
290
+ </div>
291
+ <div>Account</div>
292
+ </div>
293
+ </div>
294
+ </div>
295
+ </body>
296
+ </html>
code/14701/14701_3.html ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Customer Support</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; color: #0f2b45; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #eef3f7;
12
+ border-radius: 0; /* outer styles should be here if any */
13
+ }
14
+
15
+ /* Top gradient header */
16
+ .top-gradient {
17
+ position: absolute; top: 0; left: 0; right: 0; height: 320px;
18
+ background: linear-gradient(180deg, #00b5c9 0%, #0097b2 60%, #0091ab 100%);
19
+ }
20
+
21
+ /* Status bar */
22
+ .status-bar {
23
+ position: absolute; top: 0; left: 0; right: 0; height: 92px; color: #ffffff;
24
+ display: flex; align-items: center; padding: 0 36px; font-weight: 600; font-size: 36px;
25
+ }
26
+ .status-left { display: flex; align-items: center; gap: 20px; }
27
+ .status-right { margin-left: auto; display: flex; align-items: center; gap: 24px; }
28
+
29
+ /* Header */
30
+ .app-bar {
31
+ position: absolute; top: 92px; left: 0; right: 0; height: 160px; display: flex; align-items: center;
32
+ padding: 0 36px;
33
+ }
34
+ .back-btn {
35
+ width: 72px; height: 72px; display: inline-flex; align-items: center; justify-content: center; margin-right: 16px;
36
+ }
37
+ .title {
38
+ font-size: 64px; font-weight: 800; color: #ffffff; letter-spacing: 0.2px;
39
+ display: flex; align-items: baseline; gap: 10px;
40
+ }
41
+ .title-dot { width: 16px; height: 16px; background: #ffcf3f; border-radius: 50%; display: inline-block; transform: translateY(-10px); }
42
+
43
+ /* Main card */
44
+ .card {
45
+ position: absolute; top: 220px; left: 24px; right: 24px;
46
+ background: #ffffff; border-radius: 28px; box-shadow: 0 6px 16px rgba(0,0,0,0.06);
47
+ padding: 32px;
48
+ }
49
+ .card-header {
50
+ background: #f2f9fb; border-radius: 22px; padding: 28px; display: flex; align-items: center; gap: 24px;
51
+ }
52
+ .header-dot { width: 22px; height: 22px; background: #19c49b; border-radius: 50%; display: inline-block; }
53
+ .hdr-text { display: flex; flex-direction: column; gap: 6px; }
54
+ .hdr-title { font-size: 44px; font-weight: 800; color: #0f2b45; }
55
+ .hdr-sub { font-size: 32px; color: #59a1b2; }
56
+ .hdr-illustration {
57
+ margin-left: auto; width: 220px; height: 140px; background: #E0E0E0; border: 1px solid #BDBDBD;
58
+ border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; text-align: center;
59
+ }
60
+
61
+ /* Tabs */
62
+ .tabs { display: flex; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
63
+ .tab {
64
+ padding: 20px 28px; border: 2px solid #d6e2ea; border-radius: 16px; color: #0f2b45; font-weight: 700; font-size: 32px; display: inline-flex; align-items: center; gap: 12px; background: #ffffff;
65
+ }
66
+ .tab svg { width: 34px; height: 34px; }
67
+ .tab.active { background: #102f4c; color: #ffffff; border-color: #102f4c; position: relative; }
68
+ .tab.active::after {
69
+ content: ""; position: absolute; bottom: -10px; left: 46px; width: 14px; height: 14px; background: #102f4c; border-radius: 2px; transform: rotate(45deg);
70
+ }
71
+
72
+ /* Questions list */
73
+ .q-list { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
74
+ .q-item {
75
+ background: #edf4f8; border-radius: 20px; padding: 28px 28px; font-size: 36px; font-weight: 700; color: #19344e;
76
+ display: flex; align-items: center; justify-content: space-between;
77
+ border: 1px solid #e1ebf2;
78
+ }
79
+ .q-icon svg { width: 48px; height: 48px; fill: #3571ff; }
80
+
81
+ /* "More Flights FAQ" */
82
+ .section { margin-top: 36px; }
83
+ .section-title { font-size: 34px; font-weight: 800; color: #0f2b45; }
84
+ .chips { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 18px; }
85
+ .chip {
86
+ padding: 18px 24px; background: #f2f6f9; border: 2px solid #dfe8ef; border-radius: 16px;
87
+ font-size: 30px; font-weight: 700; color: #37526c;
88
+ }
89
+
90
+ /* Standalone action cards */
91
+ .action-card {
92
+ margin: 24px; background: #ffffff; border-radius: 26px; box-shadow: 0 6px 16px rgba(0,0,0,0.06);
93
+ padding: 30px; display: flex; align-items: center; gap: 26px; border: 1px solid #e8eef3;
94
+ }
95
+ .action-card .label { font-size: 40px; font-weight: 800; color: #102f4c; }
96
+ .ico {
97
+ width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; color: #102f4c;
98
+ }
99
+ .ico svg { width: 56px; height: 56px; fill: none; stroke: #0f2b45; stroke-width: 4; }
100
+
101
+ /* Bottom gesture pill */
102
+ .gesture-pill {
103
+ position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
104
+ width: 220px; height: 10px; background: #1a1a1a; border-radius: 10px; opacity: 0.9;
105
+ }
106
+ </style>
107
+ </head>
108
+ <body>
109
+ <div id="render-target">
110
+
111
+ <div class="top-gradient"></div>
112
+
113
+ <!-- Status Bar -->
114
+ <div class="status-bar">
115
+ <div class="status-left">
116
+ <div>4:01</div>
117
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#ffffff" aria-hidden="true"><path d="M12 1a10 10 0 1 0 .001 20.001A10 10 0 0 0 12 1zm0 2a8 8 0 1 1-.001 16.001A8 8 0 0 1 12 3z"/></svg>
118
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#ffffff" aria-hidden="true"><path d="M6 14c1.657-1.333 3.343-2 5.06-2C13.775 12 15.49 12.667 17 14l2-3c-2-1.5-4.333-2.25-7-2.25S7 9.5 5 11l1 3z"/></svg>
119
+ </div>
120
+ <div class="status-right">
121
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#ffffff"><path d="M2 19h20L12 5 2 19z"/></svg>
122
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="#ffffff"><path d="M6 2h12v18l-6-3-6 3V2z"/></svg>
123
+ </div>
124
+ </div>
125
+
126
+ <!-- App Bar -->
127
+ <div class="app-bar">
128
+ <div class="back-btn">
129
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#ffffff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
130
+ <path d="M15 18l-6-6 6-6"/>
131
+ </svg>
132
+ </div>
133
+ <div class="title">
134
+ <span>Customer Support</span><span class="title-dot"></span>
135
+ </div>
136
+ </div>
137
+
138
+ <!-- Main Card -->
139
+ <div class="card">
140
+ <div class="card-header">
141
+ <span class="header-dot"></span>
142
+ <div class="hdr-text">
143
+ <div class="hdr-title">Service Chat</div>
144
+ <div class="hdr-sub">Get instant help whenever you need it</div>
145
+ </div>
146
+ <div class="hdr-illustration">[IMG: Support Illustration]</div>
147
+ </div>
148
+
149
+ <!-- Tabs -->
150
+ <div class="tabs">
151
+ <div class="tab active">
152
+ <svg viewBox="0 0 24 24"><path fill="currentColor" d="M2 16l2.5-5h15L22 16H2zm10-7l3-3 3 3h-6z"/></svg>
153
+ <span>Flights</span>
154
+ </div>
155
+ <div class="tab">
156
+ <svg viewBox="0 0 24 24"><path fill="currentColor" d="M3 21h18v-2H3v2zm2-4h14V7H5v10zm2-8h10v6H7V9z"/></svg>
157
+ <span>Hotels</span>
158
+ </div>
159
+ <div class="tab">
160
+ <svg viewBox="0 0 24 24"><path fill="currentColor" d="M4 16h16l-1-5H5l-1 5zm3-9h10v2H7V7z"/></svg>
161
+ <span>Trains</span>
162
+ </div>
163
+ <div class="tab">
164
+ <svg viewBox="0 0 24 24"><path fill="currentColor" d="M5 17h14l1-5-2-5H6L4 12l1 5zm2-9h10l1.2 3H5.8L7 8z"/></svg>
165
+ <span>Car Rentals</span>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Questions -->
170
+ <div class="q-list">
171
+ <div class="q-item">
172
+ <span>How do I change my ticket?</span>
173
+ <span class="q-icon">
174
+ <svg viewBox="0 0 24 24"><path d="M6 18v-1a4 4 0 1 1 12 0v1" stroke-width="2" stroke="#3571ff" fill="none" stroke-linecap="round"/><circle cx="8" cy="9" r="2" fill="#3571ff"/><circle cx="16" cy="9" r="2" fill="#3571ff"/></svg>
175
+ </span>
176
+ </div>
177
+ <div class="q-item">
178
+ <span>How do I check my flight change/refund policy?</span>
179
+ <span class="q-icon">
180
+ <svg viewBox="0 0 24 24"><path d="M6 18v-1a4 4 0 1 1 12 0v1" stroke-width="2" stroke="#3571ff" fill="none" stroke-linecap="round"/><circle cx="8" cy="9" r="2" fill="#3571ff"/><circle cx="16" cy="9" r="2" fill="#3571ff"/></svg>
181
+ </span>
182
+ </div>
183
+ <div class="q-item">
184
+ <span>How can I cancel my flight ticket?</span>
185
+ <span class="q-icon">
186
+ <svg viewBox="0 0 24 24"><path d="M6 18v-1a4 4 0 1 1 12 0v1" stroke-width="2" stroke="#3571ff" fill="none" stroke-linecap="round"/><circle cx="8" cy="9" r="2" fill="#3571ff"/><circle cx="16" cy="9" r="2" fill="#3571ff"/></svg>
187
+ </span>
188
+ </div>
189
+ <div class="q-item">
190
+ <span>Have a different question? Chat with us now.</span>
191
+ <span class="q-icon">
192
+ <svg viewBox="0 0 24 24"><path d="M9 18l6-6-6-6" fill="none" stroke="#0f2b45" stroke-width="2" stroke-linecap="round"/></svg>
193
+ </span>
194
+ </div>
195
+ </div>
196
+
197
+ <!-- More Flights FAQ -->
198
+ <div class="section">
199
+ <div class="section-title">More Flights FAQ</div>
200
+ <div class="chips">
201
+ <div class="chip">Hot topics</div>
202
+ <div class="chip">Booking &amp; Price</div>
203
+ <div class="chip">Ticketing &amp; Payment</div>
204
+ <div class="chip">Booking Query</div>
205
+ <div class="chip">Personal information revision</div>
206
+ <div class="chip">...</div>
207
+ </div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Action cards -->
212
+ <div style="position: absolute; top: 1180px; left: 0; right: 0;">
213
+ <div class="action-card" style="margin-top: 18px;">
214
+ <div class="ico">
215
+ <svg viewBox="0 0 24 24"><circle cx="7" cy="10" r="2"/><circle cx="17" cy="10" r="2"/><path d="M5 18v-1a7 7 0 0 1 14 0v1"/></svg>
216
+ </div>
217
+ <div class="label">Chat With Us</div>
218
+ </div>
219
+
220
+ <div class="action-card">
221
+ <div class="ico">
222
+ <svg viewBox="0 0 24 24"><path d="M6.6 10.8a11 11 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1 .4 2 .7 3.1.8.5 0 .9.5.9 1v3c0 .6-.5 1-1.1 1C10.1 21.8 2.2 13.9 2 3.5 2 3 2.4 2.5 3 2.5h3c.5 0 1 .4 1 1 0 1.1.3 2.1.8 3.1.2.4.1.9-.2 1.2l-2 2z"/></svg>
223
+ </div>
224
+ <div class="label">Call Us</div>
225
+ </div>
226
+
227
+ <div class="action-card">
228
+ <div class="ico">
229
+ <svg viewBox="0 0 24 24"><path d="M3 6h18v12H3z" /><path d="M3 6l9 7 9-7" fill="none" stroke="#0f2b45" stroke-width="2"/></svg>
230
+ </div>
231
+ <div class="label">Email Us</div>
232
+ </div>
233
+
234
+ <div class="action-card">
235
+ <div class="ico">
236
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" fill="none" stroke="#0f2b45" stroke-width="2"/><path d="M12 17v-1.5" stroke="#0f2b45" stroke-width="2"/><path d="M12 7a3 3 0 0 1 2.8 4.2c-.4.8-1.3 1.2-1.8 1.8-.3.3-.5.7-.5 1" fill="none" stroke="#0f2b45" stroke-width="2"/></svg>
237
+ </div>
238
+ <div class="label">Emergency Assistance</div>
239
+ </div>
240
+ </div>
241
+
242
+ <div class="gesture-pill"></div>
243
+ </div>
244
+ </body>
245
+ </html>
code/14701/14701_4.html ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Chat With Us</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: #263238; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #EEF2F5;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 96px;
20
+ background: #FFFFFF;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ padding: 0 36px;
25
+ box-sizing: border-box;
26
+ color: #60717E;
27
+ font-size: 34px;
28
+ border-bottom: 1px solid #E3E7EA;
29
+ }
30
+ .status-left { display: flex; align-items: center; gap: 18px; }
31
+ .status-right { display: flex; align-items: center; gap: 24px; }
32
+
33
+ /* App bar */
34
+ .app-bar {
35
+ height: 132px;
36
+ background: #FFFFFF;
37
+ display: flex;
38
+ align-items: center;
39
+ padding: 0 32px;
40
+ box-sizing: border-box;
41
+ border-bottom: 1px solid #E3E7EA;
42
+ }
43
+ .back-icon {
44
+ width: 64px;
45
+ height: 64px;
46
+ margin-right: 16px;
47
+ display: flex;
48
+ align-items: center;
49
+ justify-content: center;
50
+ }
51
+ .app-title {
52
+ font-size: 46px;
53
+ font-weight: 600;
54
+ color: #243447;
55
+ }
56
+
57
+ /* Content */
58
+ .content {
59
+ padding: 36px;
60
+ }
61
+ .welcome {
62
+ text-align: center;
63
+ margin: 36px 0 28px;
64
+ }
65
+ .welcome h1 {
66
+ margin: 0;
67
+ font-size: 72px;
68
+ font-weight: 700;
69
+ color: #2B3A48;
70
+ }
71
+ .welcome p {
72
+ margin: 12px 0 0;
73
+ font-size: 36px;
74
+ color: #94A3AE;
75
+ }
76
+
77
+ .card {
78
+ background: #FFFFFF;
79
+ border-radius: 28px;
80
+ box-shadow: 0 8px 24px rgba(22, 34, 51, 0.08);
81
+ padding: 44px 40px 36px;
82
+ margin: 28px 8px;
83
+ box-sizing: border-box;
84
+ }
85
+ .card-title {
86
+ font-size: 42px;
87
+ font-weight: 600;
88
+ color: #22303C;
89
+ margin-bottom: 24px;
90
+ }
91
+
92
+ .grid-3 {
93
+ display: grid;
94
+ grid-template-columns: repeat(3, 1fr);
95
+ gap: 24px 12px;
96
+ padding: 12px 6px 6px;
97
+ }
98
+ .grid-2 {
99
+ display: grid;
100
+ grid-template-columns: repeat(2, 1fr);
101
+ gap: 24px 12px;
102
+ padding: 12px 6px 6px;
103
+ }
104
+ .item {
105
+ text-align: center;
106
+ padding: 18px 6px;
107
+ }
108
+ .label {
109
+ margin-top: 16px;
110
+ font-size: 34px;
111
+ color: #4B5B69;
112
+ }
113
+
114
+ .icon {
115
+ width: 120px;
116
+ height: 120px;
117
+ margin: 0 auto;
118
+ }
119
+ .icon svg { width: 100%; height: 100%; display: block; }
120
+ .icon-blue { color: #3D5AFE; }
121
+
122
+ /* Bottom gesture area */
123
+ .gesture-area {
124
+ position: absolute;
125
+ left: 0;
126
+ right: 0;
127
+ bottom: 0;
128
+ height: 132px;
129
+ background: #000000;
130
+ display: flex;
131
+ align-items: center;
132
+ justify-content: center;
133
+ }
134
+ .gesture-bar {
135
+ width: 340px;
136
+ height: 10px;
137
+ background: #E5E6EA;
138
+ border-radius: 6px;
139
+ opacity: 0.9;
140
+ }
141
+ </style>
142
+ </head>
143
+ <body>
144
+ <div id="render-target">
145
+
146
+ <!-- Status Bar -->
147
+ <div class="status-bar">
148
+ <div class="status-left">
149
+ <span>4:02</span>
150
+ <!-- simple sun/gear glyphs -->
151
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8A97A4"><circle cx="12" cy="12" r="4"/></svg>
152
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8A97A4"><path d="M10 2h4l1 3 3 1v4l-3 1-1 3h-4l-1-3-3-1V6l3-1 1-3z"/></svg>
153
+ </div>
154
+ <div class="status-right">
155
+ <!-- signal -->
156
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8A97A4"><path d="M3 18h2v3H3zm4-4h2v7H7zm4-4h2v11h-2zm4-4h2v15h-2z"/></svg>
157
+ <!-- wifi -->
158
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#8A97A4"><path d="M12 18a2 2 0 100 4 2 2 0 000-4zm-6-3a10 10 0 0112 0l-1.5 1.5a8 8 0 00-9 0L6 15zm-3-4a16 16 0 0118 0L19.5 12a14 14 0 00-15 0L3 11z"/></svg>
159
+ <!-- battery -->
160
+ <svg width="44" height="36" viewBox="0 0 28 16" fill="none">
161
+ <rect x="1" y="3" width="22" height="10" rx="2" stroke="#8A97A4" stroke-width="2"/>
162
+ <rect x="3" y="5" width="14" height="6" fill="#8A97A4"/>
163
+ <rect x="23" y="6" width="3" height="4" fill="#8A97A4"/>
164
+ </svg>
165
+ </div>
166
+ </div>
167
+
168
+ <!-- App Bar -->
169
+ <div class="app-bar">
170
+ <div class="back-icon">
171
+ <svg viewBox="0 0 24 24" width="64" height="64" fill="none" stroke="#1F2D3D" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round">
172
+ <path d="M15 18l-6-6 6-6"/>
173
+ </svg>
174
+ </div>
175
+ <div class="app-title">Chat With Us</div>
176
+ </div>
177
+
178
+ <!-- Content -->
179
+ <div class="content">
180
+ <div class="welcome">
181
+ <h1>Welcome!</h1>
182
+ <p>What would you like to discuss today?</p>
183
+ </div>
184
+
185
+ <!-- Card 1 -->
186
+ <div class="card">
187
+ <div class="card-title">Hotels and Transportation</div>
188
+ <div class="grid-3">
189
+ <!-- Hotels -->
190
+ <div class="item">
191
+ <div class="icon icon-blue">
192
+ <svg viewBox="0 0 64 64">
193
+ <rect x="12" y="16" width="36" height="36" rx="3" fill="currentColor"/>
194
+ <rect x="18" y="22" width="6" height="6" fill="#BFD0FF"/>
195
+ <rect x="28" y="22" width="6" height="6" fill="#BFD0FF"/>
196
+ <rect x="38" y="22" width="6" height="6" fill="#BFD0FF"/>
197
+ <rect x="18" y="32" width="6" height="6" fill="#BFD0FF"/>
198
+ <rect x="28" y="32" width="6" height="6" fill="#BFD0FF"/>
199
+ <rect x="38" y="32" width="6" height="6" fill="#BFD0FF"/>
200
+ <rect x="26" y="42" width="12" height="10" fill="#BFD0FF"/>
201
+ </svg>
202
+ </div>
203
+ <div class="label">Hotels</div>
204
+ </div>
205
+
206
+ <!-- Flights -->
207
+ <div class="item">
208
+ <div class="icon icon-blue">
209
+ <svg viewBox="0 0 64 64">
210
+ <path d="M8 36l18-6 14-18 6 6-18 14-6 18-6-6 6-8z" fill="currentColor"/>
211
+ <rect x="46" y="10" width="8" height="8" transform="rotate(45 50 14)" fill="#BFD0FF"/>
212
+ </svg>
213
+ </div>
214
+ <div class="label">Flights</div>
215
+ </div>
216
+
217
+ <!-- Trains -->
218
+ <div class="item">
219
+ <div class="icon icon-blue">
220
+ <svg viewBox="0 0 64 64">
221
+ <rect x="14" y="16" width="36" height="26" rx="4" fill="currentColor"/>
222
+ <rect x="20" y="22" width="10" height="6" fill="#BFD0FF"/>
223
+ <rect x="34" y="22" width="10" height="6" fill="#BFD0FF"/>
224
+ <rect x="18" y="44" width="28" height="6" rx="3" fill="currentColor"/>
225
+ <circle cx="24" cy="54" r="4" fill="currentColor"/>
226
+ <circle cx="40" cy="54" r="4" fill="currentColor"/>
227
+ </svg>
228
+ </div>
229
+ <div class="label">Trains</div>
230
+ </div>
231
+ </div>
232
+
233
+ <div class="grid-2" style="margin-top: 12px;">
234
+ <!-- Airport Transfers -->
235
+ <div class="item">
236
+ <div class="icon icon-blue">
237
+ <svg viewBox="0 0 64 64">
238
+ <!-- small plane above -->
239
+ <path d="M10 22l18-5 8-10 4 4-10 8-5 18-4-4 4-6z" fill="currentColor"/>
240
+ <!-- car -->
241
+ <path d="M14 42h36l4 8v6H10v-6l4-8z" fill="currentColor"/>
242
+ <rect x="18" y="38" width="28" height="6" rx="3" fill="#BFD0FF"/>
243
+ <circle cx="22" cy="56" r="4" fill="#FFFFFF"/>
244
+ <circle cx="42" cy="56" r="4" fill="#FFFFFF"/>
245
+ </svg>
246
+ </div>
247
+ <div class="label">Airport Transfers</div>
248
+ </div>
249
+
250
+ <!-- Car Rentals -->
251
+ <div class="item">
252
+ <div class="icon icon-blue">
253
+ <svg viewBox="0 0 64 64">
254
+ <path d="M14 38l6-10h24l6 10h4l4 8v6H10v-6l4-8h0z" fill="currentColor"/>
255
+ <rect x="18" y="36" width="28" height="6" rx="3" fill="#BFD0FF"/>
256
+ <circle cx="22" cy="56" r="5" fill="#FFFFFF"/>
257
+ <circle cx="42" cy="56" r="5" fill="#FFFFFF"/>
258
+ </svg>
259
+ </div>
260
+ <div class="label">Car Rentals</div>
261
+ </div>
262
+ </div>
263
+ </div>
264
+
265
+ <!-- Card 2 -->
266
+ <div class="card">
267
+ <div class="card-title">Travel and Vacationing</div>
268
+ <div class="grid-2">
269
+ <!-- Attractions & Tickets -->
270
+ <div class="item">
271
+ <div class="icon icon-blue">
272
+ <svg viewBox="0 0 64 64">
273
+ <circle cx="32" cy="28" r="16" fill="currentColor" opacity="0.25"/>
274
+ <circle cx="32" cy="28" r="10" fill="currentColor"/>
275
+ <path d="M20 56l12-20 12 20H20z" fill="currentColor"/>
276
+ </svg>
277
+ </div>
278
+ <div class="label">Attractions & Tickets</div>
279
+ </div>
280
+
281
+ <!-- Cruises -->
282
+ <div class="item">
283
+ <div class="icon icon-blue">
284
+ <svg viewBox="0 0 64 64">
285
+ <path d="M20 16h16v8H20z" fill="currentColor"/>
286
+ <path d="M12 34l8-6h24l8 6-6 16H18l-6-16z" fill="currentColor"/>
287
+ <path d="M10 54c4 4 12 4 16 0 4 4 12 4 16 0 4 4 12 4 16 0" stroke="#BFD0FF" stroke-width="3" fill="none"/>
288
+ </svg>
289
+ </div>
290
+ <div class="label">Cruises</div>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ </div>
295
+
296
+ <!-- Bottom gesture area -->
297
+ <div class="gesture-area">
298
+ <div class="gesture-bar"></div>
299
+ </div>
300
+ </div>
301
+ </body>
302
+ </html>
code/14701/14701_5.html ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Flights Chat UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #F1F4F7;
15
+ color: #1F2A37;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 96px;
21
+ padding: 0 32px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ background: #FFFFFF;
26
+ }
27
+ .status-time {
28
+ font-weight: 600;
29
+ font-size: 38px;
30
+ color: #1F2A37;
31
+ }
32
+ .status-icons {
33
+ display: flex;
34
+ gap: 24px;
35
+ align-items: center;
36
+ }
37
+ .status-icon {
38
+ width: 40px;
39
+ height: 40px;
40
+ }
41
+
42
+ /* Header */
43
+ .header {
44
+ height: 124px;
45
+ background: #FFFFFF;
46
+ display: flex;
47
+ align-items: center;
48
+ padding: 0 32px;
49
+ box-shadow: 0 1px 0 rgba(0,0,0,0.06);
50
+ }
51
+ .back {
52
+ width: 60px; height: 60px; margin-right: 16px; display: flex; align-items: center; justify-content: center;
53
+ }
54
+ .header-title {
55
+ font-size: 56px;
56
+ font-weight: 600;
57
+ color: #1F2A37;
58
+ }
59
+
60
+ /* Notice */
61
+ .notice {
62
+ margin: 20px 24px 8px 24px;
63
+ padding: 22px 24px;
64
+ background: #E9EFFA;
65
+ border-radius: 18px;
66
+ display: flex;
67
+ align-items: center;
68
+ gap: 20px;
69
+ }
70
+ .notice-text {
71
+ font-size: 34px;
72
+ color: #2A3749;
73
+ flex: 1;
74
+ }
75
+ .notice-icon, .notice-close {
76
+ width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
77
+ }
78
+
79
+ /* Chat area background */
80
+ .chat-area {
81
+ background: #EEF2F5;
82
+ padding: 24px;
83
+ height: 1910px; /* remainder space above input */
84
+ }
85
+
86
+ /* Bot message */
87
+ .bot-msg {
88
+ display: flex;
89
+ align-items: flex-start;
90
+ gap: 20px;
91
+ margin: 8px 8px 24px 8px;
92
+ }
93
+ .avatar {
94
+ width: 88px;
95
+ height: 88px;
96
+ border-radius: 44px;
97
+ background: #E0E0E0;
98
+ border: 1px solid #BDBDBD;
99
+ display: flex;
100
+ align-items: center;
101
+ justify-content: center;
102
+ color: #757575;
103
+ font-size: 22px;
104
+ text-align: center;
105
+ line-height: 1.1;
106
+ padding: 6px;
107
+ }
108
+ .bubble {
109
+ background: #FFFFFF;
110
+ border-radius: 18px;
111
+ box-shadow: 0 2px 6px rgba(0,0,0,0.06);
112
+ padding: 22px 24px;
113
+ font-size: 36px;
114
+ color: #1F2A37;
115
+ max-width: 880px;
116
+ }
117
+
118
+ /* FAQ card */
119
+ .faq-card {
120
+ margin: 12px 8px 24px 8px;
121
+ background: #FFFFFF;
122
+ border-radius: 26px;
123
+ box-shadow: 0 2px 6px rgba(0,0,0,0.06);
124
+ overflow: hidden;
125
+ }
126
+ .faq-header {
127
+ display: flex;
128
+ align-items: center;
129
+ justify-content: space-between;
130
+ padding: 28px 32px 18px 32px;
131
+ font-size: 42px;
132
+ font-weight: 700;
133
+ color: #24364B;
134
+ }
135
+ .refresh {
136
+ width: 46px; height: 46px;
137
+ }
138
+ .faq-item {
139
+ padding: 26px 32px;
140
+ border-top: 1px solid #E6ECF3;
141
+ display: flex;
142
+ align-items: center;
143
+ justify-content: space-between;
144
+ font-size: 36px;
145
+ color: #2B3C52;
146
+ }
147
+ .chev {
148
+ width: 36px; height: 36px; opacity: 0.5;
149
+ }
150
+
151
+ /* Small tile */
152
+ .small-tile {
153
+ width: 280px;
154
+ background: #FFFFFF;
155
+ border-radius: 26px;
156
+ box-shadow: 0 2px 6px rgba(0,0,0,0.06);
157
+ padding: 18px 22px;
158
+ display: flex;
159
+ align-items: center;
160
+ gap: 16px;
161
+ margin-left: 8px;
162
+ }
163
+ .tile-icon-wrap {
164
+ width: 68px; height: 68px; background: #E8F0FF; border-radius: 14px; display: flex; align-items: center; justify-content: center;
165
+ }
166
+ .tile-icon { width: 44px; height: 44px; }
167
+ .tile-text { font-size: 34px; color: #24364B; }
168
+
169
+ /* Select booking chip */
170
+ .chip {
171
+ margin: 36px 8px;
172
+ display: inline-block;
173
+ background: #FFFFFF;
174
+ border-radius: 18px;
175
+ box-shadow: 0 2px 6px rgba(0,0,0,0.06);
176
+ padding: 20px 24px;
177
+ font-size: 36px;
178
+ color: #1F2A37;
179
+ border: 1px solid #E6ECF3;
180
+ }
181
+
182
+ /* Input bar */
183
+ .input-bar {
184
+ position: absolute;
185
+ left: 0;
186
+ bottom: 110px;
187
+ width: 100%;
188
+ padding: 0 24px;
189
+ display: flex;
190
+ align-items: center;
191
+ gap: 16px;
192
+ }
193
+ .input-field {
194
+ flex: 1;
195
+ height: 108px;
196
+ background: #FFFFFF;
197
+ border-radius: 26px;
198
+ border: 1px solid #E6ECF3;
199
+ box-shadow: 0 2px 6px rgba(0,0,0,0.06);
200
+ }
201
+ .input-actions {
202
+ display: flex;
203
+ gap: 18px;
204
+ align-items: center;
205
+ }
206
+ .action-btn {
207
+ width: 96px; height: 96px; border-radius: 48px;
208
+ border: 3px solid #1F2A37;
209
+ display: flex; align-items: center; justify-content: center;
210
+ background: #FFFFFF;
211
+ }
212
+ .action-icon { width: 48px; height: 48px; }
213
+
214
+ /* Bottom gesture/nav area */
215
+ .bottom-black {
216
+ position: absolute;
217
+ left: 0; right: 0;
218
+ bottom: 0;
219
+ height: 110px;
220
+ background: #000000;
221
+ }
222
+ .gesture {
223
+ position: absolute;
224
+ left: 50%;
225
+ transform: translateX(-50%);
226
+ bottom: 36px;
227
+ width: 300px; height: 10px; background: #C9CDD2; border-radius: 6px;
228
+ opacity: 0.9;
229
+ }
230
+ </style>
231
+ </head>
232
+ <body>
233
+ <div id="render-target">
234
+
235
+ <!-- Status bar -->
236
+ <div class="status-bar">
237
+ <div class="status-time">4:02</div>
238
+ <div class="status-icons">
239
+ <svg class="status-icon" viewBox="0 0 24 24">
240
+ <circle cx="12" cy="12" r="10" fill="#6B7280"/>
241
+ <path d="M12 6v6l4 3" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
242
+ </svg>
243
+ <svg class="status-icon" viewBox="0 0 24 24">
244
+ <path d="M6 15c-2 0-3-1.5-3-3s1.5-3 3-3c.6-2.3 2.4-4 5-4 3 0 5.5 2.5 5.5 5.5 1.7.3 3 1.8 3 3.5 0 2-1.7 3.5-3.7 3.5H6z" fill="#6B7280"/>
245
+ </svg>
246
+ <svg class="status-icon" viewBox="0 0 24 24">
247
+ <rect x="7" y="4" width="10" height="16" rx="2" fill="#6B7280"/>
248
+ </svg>
249
+ </div>
250
+ </div>
251
+
252
+ <!-- Header -->
253
+ <div class="header">
254
+ <div class="back">
255
+ <svg width="48" height="48" viewBox="0 0 24 24">
256
+ <path d="M15 6l-6 6 6 6" stroke="#1F2A37" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
257
+ </svg>
258
+ </div>
259
+ <div class="header-title">Flights</div>
260
+ </div>
261
+
262
+ <!-- Notice -->
263
+ <div class="notice">
264
+ <div class="notice-icon">
265
+ <svg width="44" height="44" viewBox="0 0 24 24">
266
+ <circle cx="12" cy="12" r="10" fill="#AEB9D6"/>
267
+ <path d="M12 8.5h.01M11 11h2v6h-2z" stroke="#2A3749" stroke-width="1.5" fill="none" stroke-linecap="round"/>
268
+ </svg>
269
+ </div>
270
+ <div class="notice-text">Notice: Ryanair Check-in</div>
271
+ <div class="notice-close">
272
+ <svg width="40" height="40" viewBox="0 0 24 24">
273
+ <path d="M6 6l12 12M18 6L6 18" stroke="#2A3749" stroke-width="2" stroke-linecap="round"/>
274
+ </svg>
275
+ </div>
276
+ </div>
277
+
278
+ <!-- Chat area -->
279
+ <div class="chat-area">
280
+
281
+ <!-- Bot message -->
282
+ <div class="bot-msg">
283
+ <div class="avatar">[IMG: Trip.com Avatar]</div>
284
+ <div class="bubble">Hi, Cerebra. We're glad to be able to help you out.</div>
285
+ </div>
286
+
287
+ <!-- FAQ card -->
288
+ <div class="faq-card">
289
+ <div class="faq-header">
290
+ <div>Frequently Asked</div>
291
+ <svg class="refresh" viewBox="0 0 24 24">
292
+ <path d="M4 12a8 8 0 1 0 8-8" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/>
293
+ <path d="M4 4v5h5" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/>
294
+ </svg>
295
+ </div>
296
+ <div class="faq-item">
297
+ <span>How do I change my ticket?</span>
298
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
299
+ </div>
300
+ <div class="faq-item">
301
+ <span>How do I check my flight change/refund policy?</span>
302
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
303
+ </div>
304
+ <div class="faq-item">
305
+ <span>How can I cancel my flight ticket?</span>
306
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
307
+ </div>
308
+ <div class="faq-item">
309
+ <span>Why can't I find my booking on the airline's official website?</span>
310
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
311
+ </div>
312
+ <div class="faq-item">
313
+ <span>How do I request additional checked baggage allowance?</span>
314
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
315
+ </div>
316
+ <div class="faq-item">
317
+ <span>Why haven't I received a confirmation email?</span>
318
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
319
+ </div>
320
+ <div class="faq-item">
321
+ <span>How do I book a flight?</span>
322
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" stroke="#2A3749" stroke-width="2" fill="none" stroke-linecap="round"/></svg>
323
+ </div>
324
+ </div>
325
+
326
+ <!-- Small tile -->
327
+ <div class="small-tile">
328
+ <div class="tile-icon-wrap">
329
+ <svg class="tile-icon" viewBox="0 0 24 24">
330
+ <path d="M2 12l20 0M5 9l5 3-5 3" stroke="#2D6CDF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
331
+ <rect x="2" y="18" width="8" height="2" rx="1" fill="#2D6CDF"/>
332
+ </svg>
333
+ </div>
334
+ <div class="tile-text">Flight Status</div>
335
+ </div>
336
+
337
+ <!-- Select booking chip -->
338
+ <div class="chip">Select Booking</div>
339
+
340
+ </div>
341
+
342
+ <!-- Input bar -->
343
+ <div class="input-bar">
344
+ <div class="input-field"></div>
345
+ <div class="input-actions">
346
+ <div class="action-btn">
347
+ <svg class="action-icon" viewBox="0 0 24 24">
348
+ <circle cx="12" cy="12" r="10" stroke="#1F2A37" stroke-width="2" fill="none"/>
349
+ <path d="M8 10a3 3 0 0 0 8 0" stroke="#1F2A37" stroke-width="2" fill="none" stroke-linecap="round"/>
350
+ <circle cx="9" cy="9" r="1.2" fill="#1F2A37"/>
351
+ <circle cx="15" cy="9" r="1.2" fill="#1F2A37"/>
352
+ </svg>
353
+ </div>
354
+ <div class="action-btn">
355
+ <svg class="action-icon" viewBox="0 0 24 24">
356
+ <path d="M12 5v14M5 12h14" stroke="#1F2A37" stroke-width="2.5" stroke-linecap="round"/>
357
+ </svg>
358
+ </div>
359
+ </div>
360
+ </div>
361
+
362
+ <!-- Bottom nav/gesture -->
363
+ <div class="bottom-black">
364
+ <div class="gesture"></div>
365
+ </div>
366
+
367
+ </div>
368
+ </body>
369
+ </html>
code/14701/14701_6.html ADDED
@@ -0,0 +1,381 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Flights UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #FFFFFF;
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
16
+ color: #2b3a4a;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ height: 110px;
22
+ padding: 0 36px;
23
+ display: flex;
24
+ align-items: center;
25
+ justify-content: space-between;
26
+ color: #3a4a5a;
27
+ font-size: 46px;
28
+ }
29
+ .status-right {
30
+ display: flex;
31
+ align-items: center;
32
+ gap: 26px;
33
+ }
34
+ .status-icon { width: 44px; height: 44px; color: #3a4a5a; }
35
+
36
+ /* Header */
37
+ .header {
38
+ height: 160px;
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 24px;
42
+ padding: 0 32px;
43
+ background: #fff;
44
+ border-bottom: 1px solid #eaeef3;
45
+ }
46
+ .back-btn {
47
+ width: 64px; height: 64px; display: flex; align-items: center; justify-content: center;
48
+ }
49
+ .title {
50
+ font-size: 60px;
51
+ font-weight: 600;
52
+ color: #2b3a4a;
53
+ }
54
+
55
+ /* Notice banner */
56
+ .notice {
57
+ position: absolute;
58
+ top: 270px;
59
+ left: 0;
60
+ right: 0;
61
+ height: 104px;
62
+ background: #EEF3FF;
63
+ border-top: 1px solid #DAE2F7;
64
+ border-bottom: 1px solid #DAE2F7;
65
+ display: flex;
66
+ align-items: center;
67
+ padding: 0 32px;
68
+ z-index: 4;
69
+ color: #3b4b67;
70
+ font-size: 40px;
71
+ }
72
+ .notice .label { flex: 1; display: flex; align-items: center; gap: 18px; }
73
+ .notice .close { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
74
+
75
+ /* Content area */
76
+ .content {
77
+ position: absolute;
78
+ top: 430px;
79
+ left: 0;
80
+ right: 0;
81
+ bottom: 820px;
82
+ background: #F3F6F9;
83
+ padding: 30px;
84
+ overflow: hidden;
85
+ }
86
+ .faq-card {
87
+ width: 920px;
88
+ margin: 0 auto 30px;
89
+ background: #fff;
90
+ border-radius: 28px;
91
+ box-shadow: 0 4px 16px rgba(0,0,0,0.06);
92
+ }
93
+ .faq-item {
94
+ display: flex;
95
+ align-items: center;
96
+ justify-content: space-between;
97
+ padding: 34px 40px;
98
+ font-size: 40px;
99
+ color: #3a4a5a;
100
+ border-bottom: 1px solid #e7edf5;
101
+ }
102
+ .faq-item:last-child { border-bottom: none; }
103
+ .chip {
104
+ display: inline-flex;
105
+ align-items: center;
106
+ gap: 18px;
107
+ padding: 22px 26px;
108
+ background: #fff;
109
+ border-radius: 26px;
110
+ box-shadow: 0 2px 10px rgba(0,0,0,0.06);
111
+ color: #2b3a4a;
112
+ font-size: 40px;
113
+ margin-left: 66px;
114
+ margin-bottom: 24px;
115
+ }
116
+ .chip .img {
117
+ width: 86px; height: 86px;
118
+ background: #E0E0E0;
119
+ border: 1px solid #BDBDBD;
120
+ display: flex; align-items: center; justify-content: center;
121
+ color: #757575; font-size: 24px; border-radius: 12px;
122
+ }
123
+ .btn-outline {
124
+ display: inline-block;
125
+ margin-left: 26px;
126
+ padding: 18px 22px;
127
+ border: 2px solid #2d4466;
128
+ border-radius: 16px;
129
+ color: #2d4466;
130
+ font-size: 40px;
131
+ background: #F9FBFF;
132
+ }
133
+
134
+ /* Input bar above keyboard */
135
+ .input-bar {
136
+ position: absolute;
137
+ left: 20px;
138
+ right: 20px;
139
+ bottom: 860px;
140
+ height: 116px;
141
+ background: #fff;
142
+ border-radius: 26px;
143
+ box-shadow: 0 3px 10px rgba(0,0,0,0.08);
144
+ display: flex;
145
+ align-items: center;
146
+ padding: 0 20px;
147
+ gap: 16px;
148
+ }
149
+ .input-placeholder {
150
+ flex: 1;
151
+ height: 70px;
152
+ border-radius: 14px;
153
+ border: 1px dashed #e5e8ef;
154
+ }
155
+ .circle-btn {
156
+ width: 80px; height: 80px; border-radius: 40px;
157
+ border: 2px solid #17375d;
158
+ display: flex; align-items: center; justify-content: center;
159
+ color: #17375d;
160
+ }
161
+
162
+ /* Keyboard */
163
+ .keyboard {
164
+ position: absolute;
165
+ left: 0; right: 0; bottom: 0;
166
+ height: 820px;
167
+ background: #0F1215;
168
+ color: #fff;
169
+ }
170
+ .kbd-top {
171
+ height: 120px;
172
+ display: flex;
173
+ align-items: center;
174
+ gap: 34px;
175
+ padding: 0 34px;
176
+ color: #cfd6dc;
177
+ font-size: 40px;
178
+ }
179
+ .kbd-top .icon {
180
+ width: 84px; height: 84px; background: #1F2428; border-radius: 18px;
181
+ display: flex; align-items: center; justify-content: center;
182
+ }
183
+
184
+ .row { display: flex; justify-content: center; padding: 8px 18px; gap: 12px; }
185
+ .key {
186
+ width: 88px; height: 110px;
187
+ background: #1F2428;
188
+ border-radius: 22px;
189
+ display: flex; align-items: center; justify-content: center;
190
+ font-size: 48px; color: #e9eef3;
191
+ }
192
+ .key.wide { width: 540px; }
193
+ .key.medium { width: 140px; }
194
+ .key.light { background: #D7EBF7; color: #0F1215; }
195
+
196
+ /* Gesture bar */
197
+ .gesture {
198
+ position: absolute;
199
+ bottom: 16px;
200
+ left: 50%;
201
+ transform: translateX(-50%);
202
+ width: 320px; height: 10px;
203
+ background: #FFFFFF;
204
+ border-radius: 6px;
205
+ opacity: 0.8;
206
+ }
207
+
208
+ /* Simple icon styles */
209
+ svg { display: block; }
210
+ </style>
211
+ </head>
212
+ <body>
213
+ <div id="render-target">
214
+
215
+ <!-- Status Bar -->
216
+ <div class="status-bar">
217
+ <div>4:04</div>
218
+ <div class="status-right">
219
+ <!-- Cloud/WiFi icon -->
220
+ <svg class="status-icon" viewBox="0 0 24 24">
221
+ <path d="M12 5c-4 0-7 2-9 5l2 2c2-3 5-4 7-4s5 1 7 4l2-2c-2-3-5-5-9-5z" fill="#3a4a5a"/>
222
+ </svg>
223
+ <!-- Battery icon -->
224
+ <svg class="status-icon" viewBox="0 0 24 24">
225
+ <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="#3a4a5a"/>
226
+ <rect x="20" y="10" width="2" height="4" fill="#3a4a5a"/>
227
+ </svg>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Header -->
232
+ <div class="header">
233
+ <div class="back-btn">
234
+ <svg width="48" height="48" viewBox="0 0 24 24">
235
+ <path d="M15 18l-6-6 6-6" stroke="#2b3a4a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
236
+ </svg>
237
+ </div>
238
+ <div class="title">Flights</div>
239
+ </div>
240
+
241
+ <!-- Notice banner -->
242
+ <div class="notice">
243
+ <div class="label">
244
+ <svg width="40" height="40" viewBox="0 0 24 24">
245
+ <circle cx="12" cy="12" r="10" stroke="#3b4b67" stroke-width="2" fill="none"/>
246
+ <circle cx="12" cy="8" r="1.6" fill="#3b4b67"/>
247
+ <path d="M12 11v6" stroke="#3b4b67" stroke-width="2" stroke-linecap="round"/>
248
+ </svg>
249
+ <span>Notice: Ryanair Check-in</span>
250
+ </div>
251
+ <div class="close">
252
+ <svg width="36" height="36" viewBox="0 0 24 24">
253
+ <path d="M6 6l12 12M18 6l-12 12" stroke="#3b4b67" stroke-width="2" stroke-linecap="round"/>
254
+ </svg>
255
+ </div>
256
+ </div>
257
+
258
+ <!-- Main content -->
259
+ <div class="content">
260
+ <div class="faq-card">
261
+ <div class="faq-item">
262
+ <span>How do I check my flight change/refund policy?</span>
263
+ <svg width="36" height="36" viewBox="0 0 24 24">
264
+ <path d="M9 6l6 6-6 6" stroke="#98a7b7" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
265
+ </svg>
266
+ </div>
267
+ <div class="faq-item">
268
+ <span>How can I cancel my flight ticket?</span>
269
+ <svg width="36" height="36" viewBox="0 0 24 24">
270
+ <path d="M9 6l6 6-6 6" stroke="#98a7b7" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
271
+ </svg>
272
+ </div>
273
+ <div class="faq-item">
274
+ <span>Why can't I find my booking on the airline's official website?</span>
275
+ <svg width="36" height="36" viewBox="0 0 24 24">
276
+ <path d="M9 6l6 6-6 6" stroke="#98a7b7" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
277
+ </svg>
278
+ </div>
279
+ <div class="faq-item">
280
+ <span>How do I request additional checked baggage allowance?</span>
281
+ <svg width="36" height="36" viewBox="0 0 24 24">
282
+ <path d="M9 6l6 6-6 6" stroke="#98a7b7" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
283
+ </svg>
284
+ </div>
285
+ <div class="faq-item">
286
+ <span>Why haven't I received a confirmation email?</span>
287
+ <svg width="36" height="36" viewBox="0 0 24 24">
288
+ <path d="M9 6l6 6-6 6" stroke="#98a7b7" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
289
+ </svg>
290
+ </div>
291
+ <div class="faq-item">
292
+ <span>How do I book a flight?</span>
293
+ <svg width="36" height="36" viewBox="0 0 24 24">
294
+ <path d="M9 6l6 6-6 6" stroke="#98a7b7" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
295
+ </svg>
296
+ </div>
297
+ </div>
298
+
299
+ <div class="chip">
300
+ <div class="img">[IMG: Flight Icon]</div>
301
+ <div>Flight Status</div>
302
+ </div>
303
+
304
+ <div class="btn-outline">Select Booking</div>
305
+ </div>
306
+
307
+ <!-- Input bar -->
308
+ <div class="input-bar">
309
+ <div class="input-placeholder"></div>
310
+ <div class="circle-btn">
311
+ <svg width="40" height="40" viewBox="0 0 24 24">
312
+ <circle cx="12" cy="12" r="8" fill="none" stroke="#17375d" stroke-width="2"/>
313
+ <circle cx="9" cy="10" r="1.6" fill="#17375d"/>
314
+ <path d="M8 15c2 2 6 2 8 0" stroke="#17375d" stroke-width="2" fill="none" stroke-linecap="round"/>
315
+ </svg>
316
+ </div>
317
+ <div class="circle-btn">
318
+ <svg width="40" height="40" viewBox="0 0 24 24">
319
+ <path d="M12 5v14M5 12h14" stroke="#17375d" stroke-width="2" stroke-linecap="round"/>
320
+ </svg>
321
+ </div>
322
+ </div>
323
+
324
+ <!-- Keyboard -->
325
+ <div class="keyboard">
326
+ <div class="kbd-top">
327
+ <div class="icon">GIF</div>
328
+ <div class="icon">
329
+ <svg width="44" height="44" viewBox="0 0 24 24">
330
+ <circle cx="12" cy="12" r="8" stroke="#cfd6dc" stroke-width="2" fill="none"/>
331
+ <path d="M12 8v4l3 3" stroke="#cfd6dc" stroke-width="2" fill="none" stroke-linecap="round"/>
332
+ </svg>
333
+ </div>
334
+ <div class="icon">G</div>
335
+ <div class="icon">
336
+ <svg width="44" height="44" viewBox="0 0 24 24">
337
+ <path d="M6 18l12-12M6 6l12 12" stroke="#cfd6dc" stroke-width="2" stroke-linecap="round"/>
338
+ </svg>
339
+ </div>
340
+ </div>
341
+
342
+ <!-- Rows of keys -->
343
+ <div class="row">
344
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div>
345
+ <div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
346
+ </div>
347
+ <div class="row">
348
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div>
349
+ <div class="key">j</div><div class="key">k</div><div class="key">l</div>
350
+ </div>
351
+ <div class="row">
352
+ <div class="key medium">
353
+ <svg width="40" height="40" viewBox="0 0 24 24">
354
+ <path d="M8 13l-3 3 3 3" stroke="#e9eef3" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
355
+ </svg>
356
+ </div>
357
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
358
+ <div class="key medium">
359
+ <svg width="40" height="40" viewBox="0 0 24 24">
360
+ <path d="M6 12h12M9 9l-3 3 3 3" stroke="#e9eef3" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
361
+ </svg>
362
+ </div>
363
+ </div>
364
+ <div class="row">
365
+ <div class="key medium light">?123</div>
366
+ <div class="key medium">😊</div>
367
+ <div class="key">,</div>
368
+ <div class="key wide"></div>
369
+ <div class="key">.</div>
370
+ <div class="key medium light">
371
+ <svg width="40" height="40" viewBox="0 0 24 24">
372
+ <path d="M6 12h10l-3-3M16 12l-3 3" stroke="#0F1215" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
373
+ </svg>
374
+ </div>
375
+ </div>
376
+ </div>
377
+
378
+ <div class="gesture"></div>
379
+ </div>
380
+ </body>
381
+ </html>
code/14701/14701_7.html ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Flights Support Screen</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #1f2d3d; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ right: 0;
23
+ height: 86px;
24
+ padding: 0 28px;
25
+ display: flex;
26
+ align-items: center;
27
+ justify-content: space-between;
28
+ color: #263238;
29
+ font-size: 34px;
30
+ letter-spacing: 0.5px;
31
+ }
32
+ .status-icons {
33
+ display: flex;
34
+ align-items: center;
35
+ gap: 22px;
36
+ }
37
+ .icon {
38
+ width: 28px;
39
+ height: 28px;
40
+ }
41
+
42
+ /* Header */
43
+ .app-bar {
44
+ position: absolute;
45
+ top: 86px;
46
+ left: 0;
47
+ right: 0;
48
+ height: 120px;
49
+ display: flex;
50
+ align-items: center;
51
+ padding: 0 30px;
52
+ gap: 16px;
53
+ }
54
+ .app-title {
55
+ font-size: 48px;
56
+ font-weight: 600;
57
+ color: #213a4a;
58
+ }
59
+ .back-btn {
60
+ width: 54px;
61
+ height: 54px;
62
+ display: inline-flex;
63
+ align-items: center;
64
+ justify-content: center;
65
+ }
66
+
67
+ /* Notice banner */
68
+ .notice {
69
+ position: absolute;
70
+ top: 206px;
71
+ left: 0;
72
+ right: 0;
73
+ height: 68px;
74
+ background: #e9f0ff;
75
+ display: flex;
76
+ align-items: center;
77
+ padding: 0 26px;
78
+ color: #2b3a4b;
79
+ font-size: 30px;
80
+ gap: 16px;
81
+ }
82
+ .notice .spacer { flex: 1; }
83
+
84
+ /* Card list */
85
+ .faq-card {
86
+ position: absolute;
87
+ top: 286px;
88
+ left: 66px;
89
+ width: 948px;
90
+ background: #f3f7ff;
91
+ border-radius: 22px;
92
+ overflow: hidden;
93
+ box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
94
+ }
95
+ .faq-item {
96
+ display: flex;
97
+ align-items: center;
98
+ padding: 30px 24px;
99
+ font-size: 34px;
100
+ color: #2c3e50;
101
+ line-height: 1.25;
102
+ border-bottom: 1px solid #e2e8f0;
103
+ }
104
+ .faq-item:last-child { border-bottom: none; }
105
+ .faq-item .label { flex: 1; padding-right: 12px; }
106
+ .faq-item .chev {
107
+ width: 28px; height: 28px; opacity: 0.6;
108
+ }
109
+
110
+ /* Suggestion list */
111
+ .suggestions {
112
+ position: absolute;
113
+ top: 906px;
114
+ left: 0;
115
+ right: 0;
116
+ background: #ffffff;
117
+ border-top: 1px solid #eef2f6;
118
+ }
119
+ .sug-item {
120
+ display: flex;
121
+ align-items: center;
122
+ gap: 16px;
123
+ padding: 26px 28px;
124
+ border-bottom: 1px solid #eef2f6;
125
+ font-size: 34px;
126
+ color: #2c3e50;
127
+ }
128
+ .sug-icon {
129
+ width: 36px; height: 36px; opacity: 0.5;
130
+ }
131
+
132
+ /* Composer */
133
+ .composer-wrap {
134
+ position: absolute;
135
+ left: 26px;
136
+ right: 26px;
137
+ top: 1188px;
138
+ height: 100px;
139
+ display: flex;
140
+ align-items: center;
141
+ }
142
+ .composer {
143
+ flex: 1;
144
+ height: 100%;
145
+ background: #f4f6f8;
146
+ border-radius: 18px;
147
+ display: flex;
148
+ align-items: center;
149
+ padding: 0 18px;
150
+ gap: 14px;
151
+ border: 1px solid #e0e6ed;
152
+ }
153
+ .composer .text {
154
+ flex: 1;
155
+ font-size: 36px;
156
+ color: #1f2d3d;
157
+ }
158
+ .circle-btn {
159
+ width: 68px;
160
+ height: 68px;
161
+ border-radius: 50%;
162
+ display: inline-flex;
163
+ align-items: center;
164
+ justify-content: center;
165
+ background: #ffffff;
166
+ border: 1px solid #d9e2ec;
167
+ }
168
+ .send-btn {
169
+ background: #bfe3ff;
170
+ border: none;
171
+ }
172
+ .send-btn svg { transform: translateX(1px); }
173
+
174
+ /* Keyboard (visual placeholder) */
175
+ .keyboard {
176
+ position: absolute;
177
+ left: 0;
178
+ right: 0;
179
+ bottom: 40px;
180
+ height: 860px;
181
+ background: #1d2328;
182
+ padding: 22px 18px;
183
+ box-sizing: border-box;
184
+ }
185
+ .kb-row {
186
+ display: flex;
187
+ gap: 12px;
188
+ margin-bottom: 16px;
189
+ justify-content: center;
190
+ }
191
+ .key {
192
+ height: 108px;
193
+ min-width: 84px;
194
+ padding: 0 18px;
195
+ background: #2a3138;
196
+ border-radius: 16px;
197
+ color: #e6ebef;
198
+ display: flex;
199
+ align-items: center;
200
+ justify-content: center;
201
+ font-size: 44px;
202
+ box-shadow: inset 0 -2px 0 rgba(0,0,0,0.25);
203
+ }
204
+ .key.wide { min-width: 140px; }
205
+ .key.xwide { min-width: 200px; }
206
+ .key.circle { width: 96px; min-width: 96px; height: 96px; border-radius: 50%; }
207
+
208
+ /* Gesture bar */
209
+ .gesture {
210
+ position: absolute;
211
+ left: 50%;
212
+ transform: translateX(-50%);
213
+ bottom: 10px;
214
+ width: 240px;
215
+ height: 10px;
216
+ background: #c7cdd3;
217
+ border-radius: 8px;
218
+ opacity: 0.9;
219
+ }
220
+ </style>
221
+ </head>
222
+ <body>
223
+ <div id="render-target">
224
+
225
+ <!-- Status Bar -->
226
+ <div class="status-bar">
227
+ <div style="display:flex; align-items:center; gap:14px;">
228
+ <div style="font-weight:600;">4:06</div>
229
+ <!-- small gear icon -->
230
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#607d8b" stroke-width="2">
231
+ <circle cx="12" cy="12" r="3"></circle>
232
+ <path d="M19 12l2 0M3 12l2 0M12 5l0-2M12 21l0-2M16.95 7.05l1.4-1.4M5.65 18.35l1.4-1.4M7.05 7.05l-1.4-1.4M18.35 18.35l-1.4-1.4"></path>
233
+ </svg>
234
+ <!-- tiny cloud icon -->
235
+ <svg class="icon" viewBox="0 0 24 24" fill="#90a4ae">
236
+ <path d="M6 18a5 5 0 0 1 0-10 6 6 0 0 1 11.6 2A4 4 0 1 1 18 18H6z"></path>
237
+ </svg>
238
+ </div>
239
+ <div class="status-icons">
240
+ <!-- signal -->
241
+ <svg class="icon" viewBox="0 0 24 24" fill="#607d8b">
242
+ <path d="M2 20h2v-2H2v2zm4 0h2v-6H6v6zm4 0h2v-10h-2v10zm4 0h2V6h-2v14zm4 0h2V2h-2v18z"></path>
243
+ </svg>
244
+ <!-- wifi -->
245
+ <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#607d8b" stroke-width="2">
246
+ <path d="M2 8a15 15 0 0 1 20 0"></path>
247
+ <path d="M5 12a10 10 0 0 1 14 0"></path>
248
+ <path d="M8 16a6 6 0 0 1 8 0"></path>
249
+ <circle cx="12" cy="20" r="1.6" fill="#607d8b"></circle>
250
+ </svg>
251
+ <!-- battery -->
252
+ <svg class="icon" viewBox="0 0 26 24" fill="none" stroke="#607d8b" stroke-width="2">
253
+ <rect x="1" y="6" width="20" height="12" rx="2"></rect>
254
+ <rect x="3" y="8" width="12" height="8" fill="#607d8b"></rect>
255
+ <rect x="22" y="10" width="3" height="4" fill="#607d8b"></rect>
256
+ </svg>
257
+ </div>
258
+ </div>
259
+
260
+ <!-- App Bar -->
261
+ <div class="app-bar">
262
+ <div class="back-btn">
263
+ <svg viewBox="0 0 24 24" width="42" height="42" fill="none" stroke="#2b3a4b" stroke-width="2.8" stroke-linecap="round" stroke-linejoin="round">
264
+ <path d="M15 18l-6-6 6-6"></path>
265
+ </svg>
266
+ </div>
267
+ <div class="app-title">Flights</div>
268
+ </div>
269
+
270
+ <!-- Notice -->
271
+ <div class="notice">
272
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#3b6bd6" stroke-width="2">
273
+ <circle cx="12" cy="12" r="10"></circle>
274
+ <path d="M12 8h.01"></path>
275
+ <path d="M11 12h2v6h-2z"></path>
276
+ </svg>
277
+ <div>Notice: Ryanair Check-in</div>
278
+ <div class="spacer"></div>
279
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="#4a6572" stroke-width="2" stroke-linecap="round">
280
+ <path d="M6 6l12 12M18 6l-12 12"></path>
281
+ </svg>
282
+ </div>
283
+
284
+ <!-- FAQ Card -->
285
+ <div class="faq-card">
286
+ <div class="faq-item">
287
+ <div class="label">How do I check my flight change/refund policy?</div>
288
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#5c6b73" stroke-width="2" stroke-linecap="round">
289
+ <path d="M9 6l6 6-6 6"></path>
290
+ </svg>
291
+ </div>
292
+ <div class="faq-item">
293
+ <div class="label">How can I cancel my flight ticket?</div>
294
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#5c6b73" stroke-width="2" stroke-linecap="round">
295
+ <path d="M9 6l6 6-6 6"></path>
296
+ </svg>
297
+ </div>
298
+ <div class="faq-item">
299
+ <div class="label">Why can't I find my booking on the airline's official website?</div>
300
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#5c6b73" stroke-width="2" stroke-linecap="round">
301
+ <path d="M9 6l6 6-6 6"></path>
302
+ </svg>
303
+ </div>
304
+ <div class="faq-item">
305
+ <div class="label">How do I request additional checked baggage allowance?</div>
306
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#5c6b73" stroke-width="2" stroke-linecap="round">
307
+ <path d="M9 6l6 6-6 6"></path>
308
+ </svg>
309
+ </div>
310
+ <div class="faq-item">
311
+ <div class="label">Why haven't I received a confirmation email?</div>
312
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#5c6b73" stroke-width="2" stroke-linecap="round">
313
+ <path d="M9 6l6 6-6 6"></path>
314
+ </svg>
315
+ </div>
316
+ <div class="faq-item">
317
+ <div class="label">How do I book a flight?</div>
318
+ <svg class="chev" viewBox="0 0 24 24" fill="none" stroke="#5c6b73" stroke-width="2" stroke-linecap="round">
319
+ <path d="M9 6l6 6-6 6"></path>
320
+ </svg>
321
+ </div>
322
+ </div>
323
+
324
+ <!-- Suggestions -->
325
+ <div class="suggestions">
326
+ <div class="sug-item">
327
+ <svg class="sug-icon" viewBox="0 0 24 24" fill="none" stroke="#78909c" stroke-width="2">
328
+ <path d="M3 12h6l2-3 2 6 2-3h6"></path>
329
+ </svg>
330
+ <div>What are the latest refund and change policies for each airlin…</div>
331
+ </div>
332
+ <div class="sug-item">
333
+ <svg class="sug-icon" viewBox="0 0 24 24" fill="none" stroke="#78909c" stroke-width="2">
334
+ <path d="M3 12h6l2-3 2 6 2-3h6"></path>
335
+ </svg>
336
+ <div>How do I check my flight change/refund policy?</div>
337
+ </div>
338
+ <div class="sug-item">
339
+ <svg class="sug-icon" viewBox="0 0 24 24" fill="none" stroke="#78909c" stroke-width="2">
340
+ <path d="M3 12h6l2-3 2 6 2-3h6"></path>
341
+ </svg>
342
+ <div>How do I change my ticket?</div>
343
+ </div>
344
+ </div>
345
+
346
+ <!-- Composer -->
347
+ <div class="composer-wrap">
348
+ <div class="composer">
349
+ <div class="text">How do I change my ticket ?</div>
350
+ <div class="circle-btn">
351
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="#4a6572" stroke-width="2" stroke-linecap="round">
352
+ <circle cx="12" cy="12" r="9"></circle>
353
+ <circle cx="9" cy="10" r="1.2" fill="#4a6572"></circle>
354
+ <circle cx="15" cy="10" r="1.2" fill="#4a6572"></circle>
355
+ <path d="M8 15c2 1.6 6 1.6 8 0" stroke="#4a6572"></path>
356
+ </svg>
357
+ </div>
358
+ <div class="circle-btn send-btn">
359
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#1e88e5">
360
+ <path d="M3 11.5l17-8-7 8 7 8-17-8z"></path>
361
+ </svg>
362
+ </div>
363
+ </div>
364
+ </div>
365
+
366
+ <!-- Keyboard placeholder -->
367
+ <div class="keyboard">
368
+ <div class="kb-row">
369
+ <div class="key circle">⌨</div>
370
+ <div class="key circle">😊</div>
371
+ <div class="key circle">GIF</div>
372
+ <div class="key circle">⚙</div>
373
+ <div class="key circle">G</div>
374
+ <div class="key circle">🎨</div>
375
+ </div>
376
+
377
+ <div class="kb-row">
378
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
379
+ <div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
380
+ </div>
381
+ <div class="kb-row">
382
+ <div class="key wide">⇪</div>
383
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
384
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
385
+ <div class="key wide">⌫</div>
386
+ </div>
387
+ <div class="kb-row">
388
+ <div class="key wide">?123</div>
389
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div>
390
+ <div class="key">n</div><div class="key">m</div>
391
+ <div class="key">,</div>
392
+ <div class="key">.</div>
393
+ <div class="key wide">⏎</div>
394
+ </div>
395
+ <div class="kb-row">
396
+ <div class="key xwide">🙂</div>
397
+ <div class="key" style="flex:1; min-width: 480px;">space</div>
398
+ <div class="key xwide">◀︎</div>
399
+ </div>
400
+ </div>
401
+
402
+ <!-- Gesture bar -->
403
+ <div class="gesture"></div>
404
+ </div>
405
+ </body>
406
+ </html>
code/14701/14701_8.html ADDED
@@ -0,0 +1,441 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Flights Chat UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #263238; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 84px;
20
+ padding: 0 28px;
21
+ display: flex;
22
+ align-items: center;
23
+ justify-content: space-between;
24
+ color: #37474F;
25
+ font-size: 36px;
26
+ }
27
+ .status-icons {
28
+ display: flex;
29
+ align-items: center;
30
+ gap: 18px;
31
+ }
32
+ .status-icons .icon {
33
+ width: 36px;
34
+ height: 36px;
35
+ opacity: 0.8;
36
+ }
37
+
38
+ /* App bar */
39
+ .app-bar {
40
+ height: 120px;
41
+ border-bottom: 1px solid #e6e9ec;
42
+ display: flex;
43
+ align-items: center;
44
+ padding: 0 20px;
45
+ background: #ffffff;
46
+ }
47
+ .back-btn {
48
+ width: 96px;
49
+ height: 96px;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: center;
53
+ }
54
+ .app-title {
55
+ font-size: 48px;
56
+ font-weight: 600;
57
+ color: #1f2d3d;
58
+ }
59
+
60
+ /* Notice */
61
+ .notice {
62
+ height: 92px;
63
+ background: #e9eefb;
64
+ display: flex;
65
+ align-items: center;
66
+ padding: 0 24px;
67
+ gap: 18px;
68
+ font-size: 34px;
69
+ color: #455a64;
70
+ }
71
+ .notice .spacer { flex: 1; }
72
+ .notice .close {
73
+ width: 56px;
74
+ height: 56px;
75
+ display: flex;
76
+ align-items: center;
77
+ justify-content: center;
78
+ opacity: 0.7;
79
+ }
80
+
81
+ /* Chat area */
82
+ .chat-area {
83
+ position: absolute;
84
+ top: 84px; /* status bar */
85
+ top: calc(84px + 120px + 92px);
86
+ left: 0;
87
+ right: 0;
88
+ bottom: 880px; /* keyboard height */
89
+ background: #ECEFF3;
90
+ padding: 20px 24px 0 24px;
91
+ overflow: hidden;
92
+ }
93
+
94
+ .time-stamp {
95
+ text-align: center;
96
+ color: #90a4ae;
97
+ font-size: 32px;
98
+ margin: 20px 0 20px;
99
+ }
100
+
101
+ /* User message */
102
+ .msg-user {
103
+ display: flex;
104
+ justify-content: flex-end;
105
+ margin: 8px 0 6px;
106
+ }
107
+ .bubble-user {
108
+ max-width: 700px;
109
+ background: #2f5bff;
110
+ color: #ffffff;
111
+ padding: 26px 30px;
112
+ border-radius: 26px;
113
+ font-size: 40px;
114
+ line-height: 1.25;
115
+ box-shadow: 0 2px 6px rgba(47,91,255,0.25);
116
+ }
117
+ .read-receipt {
118
+ text-align: right;
119
+ color: #9eacb5;
120
+ font-size: 26px;
121
+ margin: 8px 8px 0 0;
122
+ }
123
+
124
+ /* Bot message */
125
+ .bot-row {
126
+ display: flex;
127
+ align-items: flex-start;
128
+ gap: 16px;
129
+ margin-top: 18px;
130
+ margin-bottom: 8px;
131
+ }
132
+ .avatar {
133
+ width: 96px;
134
+ height: 96px;
135
+ border-radius: 50%;
136
+ background: #1f6bff;
137
+ display: flex;
138
+ align-items: center;
139
+ justify-content: center;
140
+ color: #ffffff;
141
+ font-weight: 700;
142
+ font-size: 36px;
143
+ }
144
+ .bot-card-wrap {
145
+ flex: 1;
146
+ }
147
+ .bot-name {
148
+ font-size: 28px;
149
+ color: #7b8a95;
150
+ margin: 4px 0 8px 8px;
151
+ }
152
+ .bot-card {
153
+ background: #ffffff;
154
+ border-radius: 20px;
155
+ border: 1px solid #e6e9ec;
156
+ padding: 26px;
157
+ box-shadow: 0 2px 8px rgba(0,0,0,0.05);
158
+ }
159
+ .bot-text {
160
+ font-size: 36px;
161
+ color: #37474F;
162
+ line-height: 1.35;
163
+ margin-bottom: 22px;
164
+ }
165
+ .bot-action {
166
+ background: #f3f6f9;
167
+ border: 1px solid #e0e6ee;
168
+ color: #2f5bff;
169
+ font-size: 34px;
170
+ padding: 22px;
171
+ border-radius: 16px;
172
+ margin-bottom: 18px;
173
+ text-align: center;
174
+ }
175
+ .reactions {
176
+ display: flex;
177
+ justify-content: flex-end;
178
+ gap: 26px;
179
+ padding: 8px 16px 0 0;
180
+ color: #8a98a6;
181
+ }
182
+ .pill-row {
183
+ display: flex;
184
+ gap: 22px;
185
+ margin: 22px 0 10px 0;
186
+ }
187
+ .pill {
188
+ border: 1px solid #cbd5df;
189
+ background: #ffffff;
190
+ color: #37474f;
191
+ padding: 16px 22px;
192
+ font-size: 34px;
193
+ border-radius: 12px;
194
+ display: inline-flex;
195
+ align-items: center;
196
+ gap: 12px;
197
+ }
198
+ .pill .icon {
199
+ width: 40px; height: 40px;
200
+ }
201
+
202
+ /* Input area above keyboard */
203
+ .composer {
204
+ position: absolute;
205
+ left: 0; right: 0;
206
+ bottom: 880px;
207
+ padding: 10px 22px 16px;
208
+ background: #ECEFF3;
209
+ }
210
+ .input-box {
211
+ background: #ffffff;
212
+ border: 1px solid #dfe6ee;
213
+ border-radius: 20px;
214
+ height: 96px;
215
+ display: flex;
216
+ align-items: center;
217
+ padding: 0 16px;
218
+ gap: 16px;
219
+ }
220
+ .input-field {
221
+ flex: 1;
222
+ height: 64px;
223
+ border: none;
224
+ outline: none;
225
+ font-size: 34px;
226
+ }
227
+ .input-icons {
228
+ display: flex;
229
+ gap: 16px;
230
+ }
231
+ .circle-btn {
232
+ width: 72px;
233
+ height: 72px;
234
+ border-radius: 50%;
235
+ border: 1px solid #dfe6ee;
236
+ display: flex;
237
+ align-items: center;
238
+ justify-content: center;
239
+ background: #ffffff;
240
+ }
241
+ .circle-btn svg { width: 36px; height: 36px; }
242
+
243
+ /* Keyboard mock */
244
+ .keyboard {
245
+ position: absolute;
246
+ left: 0; right: 0; bottom: 0;
247
+ height: 880px;
248
+ background: #1f1f22;
249
+ border-top: 1px solid #101113;
250
+ display: flex;
251
+ flex-direction: column;
252
+ padding: 12px 18px 36px;
253
+ box-sizing: border-box;
254
+ }
255
+ .kbd-top {
256
+ display: flex;
257
+ align-items: center;
258
+ gap: 28px;
259
+ margin-bottom: 16px;
260
+ }
261
+ .kbd-small {
262
+ width: 84px; height: 64px;
263
+ border-radius: 10px;
264
+ background: #2a2b2e;
265
+ color: #c5cad0;
266
+ font-size: 26px;
267
+ display: flex;
268
+ align-items: center;
269
+ justify-content: center;
270
+ }
271
+ .row {
272
+ display: flex;
273
+ justify-content: center;
274
+ gap: 12px;
275
+ margin: 12px 0;
276
+ }
277
+ .key {
278
+ width: 84px; height: 108px;
279
+ border-radius: 16px;
280
+ background: #2c2d30;
281
+ color: #e9ecf0;
282
+ font-size: 38px;
283
+ display: flex; align-items: center; justify-content: center;
284
+ }
285
+ .key.wide { width: 140px; }
286
+ .key.space { flex: 1; }
287
+ .gesture {
288
+ position: absolute;
289
+ bottom: 10px; left: 50%;
290
+ transform: translateX(-50%);
291
+ width: 240px; height: 8px;
292
+ background: #e6e6ea;
293
+ border-radius: 6px;
294
+ opacity: 0.85;
295
+ }
296
+ </style>
297
+ </head>
298
+ <body>
299
+ <div id="render-target">
300
+
301
+ <!-- Status Bar -->
302
+ <div class="status-bar">
303
+ <div>4:06</div>
304
+ <div class="status-icons">
305
+ <svg class="icon" viewBox="0 0 24 24"><path fill="#607D8B" d="M12 2L1 21h22L12 2z"/></svg>
306
+ <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="10" width="18" height="8" rx="2" fill="#607D8B"/></svg>
307
+ <svg class="icon" viewBox="0 0 24 24"><rect x="3" y="6" width="14" height="12" rx="2" fill="#607D8B"/><rect x="18" y="9" width="3" height="6" fill="#B0BEC5"/></svg>
308
+ </div>
309
+ </div>
310
+
311
+ <!-- App Bar -->
312
+ <div class="app-bar">
313
+ <div class="back-btn">
314
+ <svg width="40" height="40" viewBox="0 0 24 24">
315
+ <path d="M15 18l-6-6 6-6" stroke="#344955" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
316
+ </svg>
317
+ </div>
318
+ <div class="app-title">Flights</div>
319
+ </div>
320
+
321
+ <!-- Notice -->
322
+ <div class="notice">
323
+ <svg width="34" height="34" viewBox="0 0 24 24">
324
+ <circle cx="12" cy="12" r="10" stroke="#5f6f7f" stroke-width="2" fill="none"/>
325
+ <rect x="11" y="10" width="2" height="7" fill="#5f6f7f"/>
326
+ <rect x="11" y="6" width="2" height="2" fill="#5f6f7f"/>
327
+ </svg>
328
+ <div>Notice: Ryanair Check-in</div>
329
+ <div class="spacer"></div>
330
+ <div class="close">
331
+ <svg width="28" height="28" viewBox="0 0 24 24">
332
+ <path d="M6 6l12 12M18 6l-12 12" stroke="#5f6f7f" stroke-width="2" stroke-linecap="round"/>
333
+ </svg>
334
+ </div>
335
+ </div>
336
+
337
+ <!-- Chat Area -->
338
+ <div class="chat-area">
339
+ <div class="time-stamp">16:06</div>
340
+
341
+ <div class="msg-user">
342
+ <div class="bubble-user">How do I change my ticket ?</div>
343
+ </div>
344
+ <div class="read-receipt">READ</div>
345
+
346
+ <div class="bot-row">
347
+ <div class="avatar">Trip.</div>
348
+ <div class="bot-card-wrap">
349
+ <div class="bot-name">Trip.com Chatbot</div>
350
+ <div class="bot-card">
351
+ <div class="bot-text">
352
+ No booking has been found for this account. You can check the scenarios below for more details.
353
+ </div>
354
+ <div class="bot-action">Pre-booking questions</div>
355
+ <div class="bot-action">I can't find my booking</div>
356
+ </div>
357
+ <div class="reactions">
358
+ <svg width="36" height="36" viewBox="0 0 24 24">
359
+ <path d="M2 14h4v8H2zM6 14l6-8a2 2 0 013 2v6h5a2 2 0 012 2v1a2 2 0 01-2 2h-9l-1 3H6v-8z" fill="#8a98a6"/>
360
+ </svg>
361
+ <svg width="36" height="36" viewBox="0 0 24 24" style="transform: scaleY(-1);">
362
+ <path d="M2 14h4v8H2zM6 14l6-8a2 2 0 013 2v6h5a2 2 0 012 2v1a2 2 0 01-2 2h-9l-1 3H6v-8z" fill="#8a98a6"/>
363
+ </svg>
364
+ </div>
365
+ </div>
366
+ </div>
367
+
368
+ <div class="pill-row">
369
+ <div class="pill">
370
+ <svg class="icon" viewBox="0 0 24 24">
371
+ <path d="M3 4h18v14H3z" fill="#90a4ae"/>
372
+ <path d="M6 8h10v2H6zm0 4h7v2H6z" fill="#fff"/>
373
+ </svg>
374
+ Give Feedback
375
+ </div>
376
+ <div class="pill">
377
+ <svg class="icon" viewBox="0 0 24 24">
378
+ <path d="M7 3h10v4H7z" fill="#90a4ae"/><rect x="5" y="7" width="14" height="12" rx="2" fill="#b0bec5"/>
379
+ </svg>
380
+ Select Booking
381
+ </div>
382
+ </div>
383
+ </div>
384
+
385
+ <!-- Composer -->
386
+ <div class="composer">
387
+ <div class="input-box">
388
+ <input class="input-field" placeholder="" />
389
+ <div class="input-icons">
390
+ <div class="circle-btn" title="Emoji">
391
+ <svg viewBox="0 0 24 24">
392
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#78909C" stroke-width="2"/>
393
+ <circle cx="9" cy="10" r="1.2" fill="#78909C"/>
394
+ <circle cx="15" cy="10" r="1.2" fill="#78909C"/>
395
+ <path d="M8 14c1.2 1 2.8 1.5 4 1.5s2.8-.5 4-1.5" stroke="#78909C" stroke-width="2" fill="none" stroke-linecap="round"/>
396
+ </svg>
397
+ </div>
398
+ <div class="circle-btn" title="Add">
399
+ <svg viewBox="0 0 24 24">
400
+ <path d="M12 5v14M5 12h14" stroke="#78909C" stroke-width="2" stroke-linecap="round"/>
401
+ </svg>
402
+ </div>
403
+ </div>
404
+ </div>
405
+ </div>
406
+
407
+ <!-- Keyboard Mock -->
408
+ <div class="keyboard">
409
+ <div class="kbd-top">
410
+ <div class="kbd-small">▦</div>
411
+ <div class="kbd-small">🙂</div>
412
+ <div class="kbd-small">GIF</div>
413
+ <div class="kbd-small">⚙</div>
414
+ <div class="kbd-small">G✕</div>
415
+ <div class="kbd-small">🎨</div>
416
+ </div>
417
+
418
+ <div class="row">
419
+ <div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
420
+ </div>
421
+ <div class="row">
422
+ <div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
423
+ </div>
424
+ <div class="row">
425
+ <div class="key wide">⇧</div>
426
+ <div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
427
+ <div class="key wide">⌫</div>
428
+ </div>
429
+ <div class="row">
430
+ <div class="key wide">?123</div>
431
+ <div class="key">,</div>
432
+ <div class="key space"></div>
433
+ <div class="key">.</div>
434
+ <div class="key wide" style="background:#8ec9ff;color:#0a2238;">↵</div>
435
+ </div>
436
+ <div class="gesture"></div>
437
+ </div>
438
+
439
+ </div>
440
+ </body>
441
+ </html>
code/14702/14702_0.html ADDED
@@ -0,0 +1,341 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Shopping - Main Door Lock Set</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #ffffff; border-radius: 0;
12
+ color: #111;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status {
17
+ height: 60px; padding: 12px 28px 0 28px; font-size: 30px; color: #222;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ }
20
+ .status .icons { display: flex; gap: 16px; align-items: center; }
21
+ .dot { width: 14px; height: 14px; background:#666; border-radius: 50%; display:inline-block; }
22
+
23
+ /* Search */
24
+ .search-row { display: flex; align-items: center; padding: 14px 24px 10px 18px; gap: 18px; }
25
+ .back-btn {
26
+ width: 64px; height: 64px; display:flex; align-items:center; justify-content:center;
27
+ }
28
+ .search-pill {
29
+ flex: 1;
30
+ height: 84px; border-radius: 42px; border: 2px solid #dcdcdc; background: #fff;
31
+ display: flex; align-items: center; padding: 0 22px; gap: 16px;
32
+ box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset;
33
+ }
34
+ .search-pill .text { font-size: 34px; color: #222; flex: 1; }
35
+ .search-pill .suffix { display:flex; align-items:center; gap: 18px; }
36
+ .icon-btn { width: 54px; height: 54px; border-radius: 27px; display:flex; align-items:center; justify-content:center; }
37
+
38
+ /* Top chips */
39
+ .chips { display:flex; gap: 16px; padding: 10px 20px 8px 20px; flex-wrap: nowrap; overflow: hidden; }
40
+ .chip {
41
+ background:#F1F2F4; color:#333; border-radius: 28px; padding: 18px 26px; font-size: 28px; border:1px solid #E3E5E8;
42
+ display:flex; align-items:center; gap: 14px;
43
+ }
44
+
45
+ /* Free shipping banner */
46
+ .banner {
47
+ margin: 16px 0; background:#fdecd9; color:#1b5e20; display:flex; justify-content: space-between; align-items:center;
48
+ padding: 22px 26px; font-size: 30px; border-top:1px solid #f5dbc6; border-bottom:1px solid #f5dbc6;
49
+ }
50
+ .banner .right { color:#7c6b57; }
51
+
52
+ /* Tag chips row */
53
+ .tag-chips { display:flex; gap: 16px; padding: 10px 16px 20px 16px; overflow:hidden; flex-wrap: nowrap; }
54
+ .tag { background:#F6F7F8; border:1px solid #E3E5E8; color:#222; border-radius: 30px; padding: 16px 24px; font-size:26px; display:flex; align-items:center; gap:10px; white-space:nowrap; }
55
+
56
+ /* Grid */
57
+ .grid {
58
+ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 0 18px 120px 18px;
59
+ }
60
+ .card {
61
+ border-radius: 18px; background:#fff; overflow:hidden; border:1px solid #E5E6E8;
62
+ box-shadow: 0 1px 0 rgba(0,0,0,0.03);
63
+ }
64
+ .img {
65
+ height: 420px; background:#E0E0E0; border-bottom:1px solid #BDBDBD;
66
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size: 28px; text-align:center; padding: 0 12px;
67
+ }
68
+ .badge {
69
+ background:#c40000; color:#fff; font-size:26px; padding: 12px 16px; display:flex; align-items:center; gap:10px;
70
+ }
71
+ .content { padding: 12px 18px 18px 18px; }
72
+ .title { font-size: 30px; color:#111; line-height: 1.25; height: 78px; overflow:hidden; }
73
+ .meta { font-size: 26px; color:#ff6d00; margin-top: 8px; display:flex; align-items:center; gap:10px; }
74
+ .stars { display:flex; align-items:center; gap: 6px; margin-top: 6px; color:#111; }
75
+ .stars .count { font-size: 26px; color:#333; margin-left: 8px; }
76
+ .price-row { display:flex; align-items:center; justify-content:space-between; margin-top: 12px; }
77
+ .price { font-size: 36px; font-weight: 700; }
78
+ .sold { font-size: 26px; color:#666; margin-left: 10px; }
79
+ .cart-circle {
80
+ width: 64px; height: 64px; border-radius: 32px; border:2px solid #222; display:flex; align-items:center; justify-content:center;
81
+ }
82
+
83
+ /* Bottom home indicator */
84
+ .home-indicator {
85
+ position:absolute; left:50%; transform:translateX(-50%);
86
+ bottom: 20px; width: 360px; height: 10px; border-radius: 6px; background:#000000;
87
+ opacity: 0.5;
88
+ }
89
+ .muted { color:#777; }
90
+ </style>
91
+ </head>
92
+ <body>
93
+ <div id="render-target">
94
+
95
+ <!-- Status bar -->
96
+ <div class="status">
97
+ <div>11:12</div>
98
+ <div class="icons">
99
+ <span class="dot"></span>
100
+ <span class="dot" style="opacity:.7"></span>
101
+ </div>
102
+ </div>
103
+
104
+ <!-- Search row -->
105
+ <div class="search-row">
106
+ <div class="back-btn">
107
+ <svg width="40" height="40" viewBox="0 0 24 24">
108
+ <path d="M15 6 L9 12 L15 18" stroke="#111" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
109
+ </svg>
110
+ </div>
111
+ <div class="search-pill">
112
+ <svg width="34" height="34" viewBox="0 0 24 24">
113
+ <circle cx="10" cy="10" r="7" stroke="#666" stroke-width="2" fill="none"/>
114
+ <path d="M15 15 L21 21" stroke="#666" stroke-width="2" />
115
+ </svg>
116
+ <div class="text">main door lock set</div>
117
+ <div class="suffix">
118
+ <div class="icon-btn">
119
+ <svg width="30" height="30" viewBox="0 0 24 24">
120
+ <path d="M6 6 L18 18 M18 6 L6 18" stroke="#666" stroke-width="2" stroke-linecap="round"/>
121
+ </svg>
122
+ </div>
123
+ <div class="icon-btn">
124
+ <svg width="30" height="30" viewBox="0 0 24 24">
125
+ <rect x="4" y="6" width="16" height="12" rx="2" ry="2" stroke="#111" stroke-width="2" fill="none"/>
126
+ <circle cx="12" cy="12" r="3" stroke="#111" stroke-width="2" fill="none"/>
127
+ </svg>
128
+ </div>
129
+ </div>
130
+ </div>
131
+ </div>
132
+
133
+ <!-- Filter chips -->
134
+ <div class="chips">
135
+ <div class="chip">
136
+ <svg width="26" height="26" viewBox="0 0 24 24">
137
+ <path d="M4 6h16l-6 7v5l-4 2v-7z" fill="#666"/>
138
+ </svg>
139
+ Filters
140
+ </div>
141
+ <div class="chip">Sort by ▼</div>
142
+ <div class="chip">Category ▼</div>
143
+ <div class="chip">Color ▼</div>
144
+ <div class="chip">Material ▼</div>
145
+ </div>
146
+
147
+ <!-- Banner -->
148
+ <div class="banner">
149
+ <div style="display:flex; align-items:center; gap:16px;">
150
+ <svg width="30" height="30" viewBox="0 0 24 24">
151
+ <path d="M20 6 L9 17 L4 12" stroke="#1b5e20" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
152
+ </svg>
153
+ <span>Free shipping for you</span>
154
+ </div>
155
+ <div class="right">Limited-time offer</div>
156
+ </div>
157
+
158
+ <!-- Tag chips -->
159
+ <div class="tag-chips">
160
+ <div class="tag">
161
+ <svg width="20" height="20" viewBox="0 0 24 24">
162
+ <path d="M12 2 L9 10 L17 10 L8 22 L11 14 L5 14z" fill="#111"/>
163
+ </svg>
164
+ Deals
165
+ </div>
166
+ <div class="tag">Under $4</div>
167
+ <div class="tag">
168
+ <svg width="100" height="20" viewBox="0 0 100 20">
169
+ <path d="M10 2 L12.9 7.8 L19 8.2 L14 12.1 L15.7 18 L10 14.6 L4.3 18 L6 12.1 L1 8.2 L7.1 7.8 Z" fill="#111"/>
170
+ <use href="#s2"/>
171
+ </svg>
172
+ ★★★★☆ &amp; up
173
+ </div>
174
+ <div class="tag">Hardware</div>
175
+ <div class="tag">Black</div>
176
+ </div>
177
+
178
+ <!-- Grid of products -->
179
+ <div class="grid">
180
+
181
+ <!-- Card 1 -->
182
+ <div class="card">
183
+ <div class="img">[IMG: Silver door knob with lock and keys]</div>
184
+ <div class="badge">CHRISTMAS  31% off discount</div>
185
+ <div class="content">
186
+ <div class="title">1 Set, Door Knob With Lock And Keys, Stainless Steel</div>
187
+ <div class="meta">Almost sold out • <span class="muted">just bought</span></div>
188
+ <div class="stars">
189
+ <span>★★★★★</span><span class="count">(1,070)</span>
190
+ </div>
191
+ <div class="price-row">
192
+ <div>
193
+ <span class="price">$14.48</span>
194
+ <span class="sold">1.6K+ sold</span>
195
+ </div>
196
+ <div class="cart-circle">
197
+ <svg width="28" height="28" viewBox="0 0 24 24">
198
+ <path d="M3 4h2l2 12h10l2-8H6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
199
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
200
+ <circle cx="17" cy="20" r="1.6" fill="#111"/>
201
+ </svg>
202
+ </div>
203
+ </div>
204
+ </div>
205
+ </div>
206
+
207
+ <!-- Card 2 -->
208
+ <div class="card">
209
+ <div class="img">[IMG: Tubular deadbolt lock single cylinder]</div>
210
+ <div class="badge">CHRISTMAS  43% off discount</div>
211
+ <div class="content">
212
+ <div class="title">1 Set Tubular Deadbolt Lock, Single Cylinder</div>
213
+ <div class="meta">Almost sold out • <span class="muted">just bought</span></div>
214
+ <div class="stars">
215
+ <span>★★★★★</span><span class="count">(75)</span>
216
+ </div>
217
+ <div class="price-row">
218
+ <div>
219
+ <span class="price">$9.28</span>
220
+ <span class="sold">616 sold</span>
221
+ </div>
222
+ <div class="cart-circle">
223
+ <svg width="28" height="28" viewBox="0 0 24 24">
224
+ <path d="M3 4h2l2 12h10l2-8H6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
225
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
226
+ <circle cx="17" cy="20" r="1.6" fill="#111"/>
227
+ </svg>
228
+ </div>
229
+ </div>
230
+ </div>
231
+ </div>
232
+
233
+ <!-- Card 3 -->
234
+ <div class="card">
235
+ <div class="img">[IMG: Matte black door knob with keys]</div>
236
+ <div class="badge">CHRISTMAS  37% off discount</div>
237
+ <div class="content">
238
+ <div class="title">1 Set Doorknob With Key, Matte Black Finish</div>
239
+ <div class="meta">Almost sold out • <span class="muted">just bought</span></div>
240
+ <div class="stars">
241
+ <span>★★★★★</span><span class="count">(460)</span>
242
+ </div>
243
+ <div class="price-row">
244
+ <div>
245
+ <span class="price">$12.98</span>
246
+ <span class="sold">262 sold</span>
247
+ </div>
248
+ <div class="cart-circle">
249
+ <svg width="28" height="28" viewBox="0 0 24 24">
250
+ <path d="M3 4h2l2 12h10l2-8H6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
251
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
252
+ <circle cx="17" cy="20" r="1.6" fill="#111"/>
253
+ </svg>
254
+ </div>
255
+ </div>
256
+ </div>
257
+ </div>
258
+
259
+ <!-- Card 4 -->
260
+ <div class="card">
261
+ <div class="img">[IMG: Indoor door lock handle set with plates and hardware]</div>
262
+ <div class="badge">CHRISTMAS  —</div>
263
+ <div class="content">
264
+ <div class="title">1 Set, Indoor Door Lock, Handle Kit With Accessories</div>
265
+ <div class="meta">Almost sold out • <span class="muted">just bought</span></div>
266
+ <div class="stars">
267
+ <span>★★★★☆</span><span class="count">(2)</span>
268
+ </div>
269
+ <div class="price-row">
270
+ <div>
271
+ <span class="price">$13.79</span>
272
+ <span class="sold">14 sold</span>
273
+ </div>
274
+ <div class="cart-circle">
275
+ <svg width="28" height="28" viewBox="0 0 24 24">
276
+ <path d="M3 4h2l2 12h10l2-8H6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
277
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
278
+ <circle cx="17" cy="20" r="1.6" fill="#111"/>
279
+ </svg>
280
+ </div>
281
+ </div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Additional placeholder rows to suggest scroll -->
286
+ <div class="card">
287
+ <div class="img">[IMG: Modern square door handle set]</div>
288
+ <div class="badge">CHRISTMAS  —</div>
289
+ <div class="content">
290
+ <div class="title">Modern Square Lever Door Handle, Privacy Set</div>
291
+ <div class="meta">Almost sold out • <span class="muted">just bought</span></div>
292
+ <div class="stars">
293
+ <span>★★★★☆</span><span class="count">(128)</span>
294
+ </div>
295
+ <div class="price-row">
296
+ <div>
297
+ <span class="price">$16.20</span>
298
+ <span class="sold">980 sold</span>
299
+ </div>
300
+ <div class="cart-circle">
301
+ <svg width="28" height="28" viewBox="0 0 24 24">
302
+ <path d="M3 4h2l2 12h10l2-8H6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
303
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
304
+ <circle cx="17" cy="20" r="1.6" fill="#111"/>
305
+ </svg>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ </div>
310
+
311
+ <div class="card">
312
+ <div class="img">[IMG: Heavy duty deadbolt lock orange background]</div>
313
+ <div class="badge">CHRISTMAS  —</div>
314
+ <div class="content">
315
+ <div class="title">Heavy Duty Deadbolt Lock, Security Grade</div>
316
+ <div class="meta">Almost sold out • <span class="muted">just bought</span></div>
317
+ <div class="stars">
318
+ <span>★★★★★</span><span class="count">(322)</span>
319
+ </div>
320
+ <div class="price-row">
321
+ <div>
322
+ <span class="price">$11.40</span>
323
+ <span class="sold">2.1K sold</span>
324
+ </div>
325
+ <div class="cart-circle">
326
+ <svg width="28" height="28" viewBox="0 0 24 24">
327
+ <path d="M3 4h2l2 12h10l2-8H6" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
328
+ <circle cx="9" cy="20" r="1.6" fill="#111"/>
329
+ <circle cx="17" cy="20" r="1.6" fill="#111"/>
330
+ </svg>
331
+ </div>
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ </div>
337
+
338
+ <div class="home-indicator"></div>
339
+ </div>
340
+ </body>
341
+ </html>
code/14702/14702_1.html ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Detail Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ color: #212121;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ position: absolute;
21
+ left: 0; top: 0; right: 0;
22
+ height: 80px;
23
+ padding: 0 28px;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ color: #333;
28
+ font-size: 34px;
29
+ }
30
+ .status-icons { display: flex; align-items: center; gap: 22px; }
31
+
32
+ /* Header actions over image */
33
+ .fab {
34
+ position: absolute;
35
+ top: 140px;
36
+ width: 96px; height: 96px;
37
+ border-radius: 48px;
38
+ background: rgba(0,0,0,0.06);
39
+ display: flex; align-items: center; justify-content: center;
40
+ }
41
+ .fab.left { left: 28px; }
42
+ .fab.right { right: 28px; }
43
+
44
+ /* Image area */
45
+ .image-wrap {
46
+ position: relative;
47
+ margin-top: 80px;
48
+ width: 1080px;
49
+ height: 780px;
50
+ background: #fff;
51
+ }
52
+ .img-placeholder {
53
+ width: 100%; height: 100%;
54
+ background: #E0E0E0;
55
+ border: 1px solid #BDBDBD;
56
+ display: flex; align-items: center; justify-content: center;
57
+ color: #757575; font-size: 36px;
58
+ }
59
+ .count-chip {
60
+ position: absolute; right: 28px; bottom: 22px;
61
+ background: rgba(0,0,0,0.35);
62
+ color: #fff; padding: 10px 18px; border-radius: 28px;
63
+ font-size: 28px;
64
+ }
65
+
66
+ /* Promo ribbon */
67
+ .promo-bar {
68
+ display: flex; align-items: center; justify-content: space-between;
69
+ background: #c8191f;
70
+ color: #fff;
71
+ height: 86px;
72
+ padding: 0 24px;
73
+ }
74
+ .promo-left {
75
+ display: flex; align-items: center; gap: 14px;
76
+ font-size: 30px; font-weight: 600;
77
+ }
78
+ .promo-tag {
79
+ background: #f2d1a8;
80
+ color: #7a4e1b;
81
+ padding: 8px 14px; border-radius: 8px;
82
+ font-size: 26px; font-weight: 700;
83
+ }
84
+ .promo-right { font-size: 26px; opacity: 0.9; }
85
+
86
+ /* Content */
87
+ .content { padding: 28px; }
88
+ .title {
89
+ font-size: 42px; line-height: 1.28; font-weight: 600; color: #1c1c1c;
90
+ margin: 18px 0 14px;
91
+ }
92
+ .meta {
93
+ display: flex; align-items: center; justify-content: space-between;
94
+ gap: 18px; color: #666; font-size: 28px;
95
+ }
96
+ .seller {
97
+ display: flex; align-items: center; gap: 12px;
98
+ }
99
+ .avatar {
100
+ width: 38px; height: 38px; border-radius: 19px; background: #E0E0E0; border: 1px solid #BDBDBD;
101
+ display: inline-flex; align-items: center; justify-content: center; color: #757575; font-size: 18px;
102
+ }
103
+ .rating { display: flex; align-items: center; gap: 10px; }
104
+ .rating .score { font-size: 28px; color: #222; }
105
+
106
+ .price-row {
107
+ display: flex; align-items: baseline; gap: 14px;
108
+ margin: 18px 0 12px;
109
+ }
110
+ .price { font-size: 64px; color: #000; font-weight: 800; }
111
+ .badge-off { font-size: 26px; color: #c8191f; background: #ffe7e7; padding: 6px 10px; border-radius: 6px; border: 1px solid #ffc6c6; }
112
+ .old { font-size: 30px; color: #9e9e9e; text-decoration: line-through; }
113
+
114
+ .size-line { font-size: 30px; margin: 12px 0 22px; }
115
+ .size-line b { color: #333; }
116
+
117
+ .qty-row {
118
+ display: flex; align-items: center; gap: 18px;
119
+ margin: 10px 0 16px;
120
+ }
121
+ .stepper {
122
+ display: flex; align-items: center; gap: 0;
123
+ border: 1px solid #ddd; border-radius: 10px; overflow: hidden;
124
+ }
125
+ .stepper button {
126
+ width: 96px; height: 82px; background: #f6f6f6; border: none; font-size: 42px; color: #444;
127
+ }
128
+ .stepper .num {
129
+ width: 120px; height: 82px; display: flex; align-items: center; justify-content: center;
130
+ font-size: 36px; border-left: 1px solid #eee; border-right: 1px solid #eee; background: #fff;
131
+ }
132
+ .almost {
133
+ color: #ff8a00; background: #fff5e6; border: 1px dashed #ffc37a; padding: 10px 16px; border-radius: 10px;
134
+ display: flex; align-items: center; gap: 10px; font-size: 28px;
135
+ }
136
+
137
+ .info-line {
138
+ margin: 16px 0 6px; padding: 16px 0;
139
+ color: #9e9e9e; font-size: 28px; border-top: 1px solid #eee;
140
+ }
141
+
142
+ /* Shipping section */
143
+ .section {
144
+ padding: 22px 28px;
145
+ border-top: 12px solid #f5f5f5;
146
+ }
147
+ .section-header {
148
+ display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
149
+ font-size: 34px; color: #222;
150
+ }
151
+ .head-left { display: flex; align-items: center; gap: 14px; }
152
+ .chevron { color: #bbb; }
153
+
154
+ .card {
155
+ background: #fff; border: 1px solid #eee; border-radius: 18px;
156
+ padding: 22px;
157
+ box-shadow: 0 1px 0 rgba(0,0,0,0.03);
158
+ }
159
+ .green { color: #1a9f3d; font-weight: 700; font-size: 30px; margin-bottom: 8px; }
160
+ .muted { color: #666; font-size: 28px; margin: 6px 0; }
161
+ .couriers { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
162
+ .courier {
163
+ width: 64px; height: 38px; border-radius: 6px; border: 1px solid #ccc; background: #f4f4f4;
164
+ display: flex; align-items: center; justify-content: center; font-size: 22px; color: #333;
165
+ }
166
+
167
+ /* Floating green cart badge */
168
+ .float-cart {
169
+ position: absolute; right: 24px; top: 1410px;
170
+ background: #18c55f; color: #fff; border-radius: 34px;
171
+ padding: 16px 18px; font-size: 26px; box-shadow: 0 6px 14px rgba(24,197,95,0.3);
172
+ display: flex; align-items: center; gap: 12px;
173
+ }
174
+
175
+ /* Bottom bar */
176
+ .bottom-bar {
177
+ position: absolute; left: 0; right: 0; bottom: 0;
178
+ height: 160px; background: #fff; border-top: 1px solid #eee;
179
+ display: flex; align-items: center; justify-content: center;
180
+ padding: 0 24px;
181
+ }
182
+ .cta {
183
+ width: 100%; height: 100px; background: #ff8a00; color: #fff;
184
+ display: flex; align-items: center; justify-content: center;
185
+ border-radius: 50px; font-size: 40px; font-weight: 800;
186
+ box-shadow: 0 8px 16px rgba(255,138,0,0.35);
187
+ }
188
+
189
+ /* Simple helpers */
190
+ .divider { height: 14px; background: #f5f5f5; }
191
+ .sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
192
+ svg { display: block; }
193
+ </style>
194
+ </head>
195
+ <body>
196
+ <div id="render-target">
197
+
198
+ <!-- Status bar -->
199
+ <div class="status-bar">
200
+ <div>11:13</div>
201
+ <div class="status-icons">
202
+ <!-- Wifi -->
203
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
204
+ <path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" fill="#333"/>
205
+ <path d="M4 12.5a12 12 0 0 1 16 0" stroke="#333" stroke-width="2" stroke-linecap="round"/>
206
+ <path d="M7 15.5a8 8 0 0 1 10 0" stroke="#333" stroke-width="2" stroke-linecap="round"/>
207
+ </svg>
208
+ <!-- Battery -->
209
+ <svg width="54" height="44" viewBox="0 0 28 16" fill="none">
210
+ <rect x="1" y="3" width="22" height="10" rx="2" stroke="#333" stroke-width="2"/>
211
+ <rect x="3" y="5" width="14" height="6" rx="1" fill="#333"/>
212
+ <rect x="24" y="6" width="3" height="4" rx="1" fill="#333"/>
213
+ </svg>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Header floating actions -->
218
+ <div class="fab left">
219
+ <!-- back chevron -->
220
+ <svg width="44" height="44" viewBox="0 0 24 24">
221
+ <path d="M15 4 7 12l8 8" fill="none" stroke="#444" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
222
+ </svg>
223
+ </div>
224
+ <div class="fab right">
225
+ <!-- share -->
226
+ <svg width="44" height="44" viewBox="0 0 24 24">
227
+ <path d="M12 3v10M12 3l4 4M12 3 8 7" stroke="#444" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
228
+ <rect x="5" y="11" width="14" height="9" rx="2" stroke="#444" stroke-width="2" fill="none"/>
229
+ </svg>
230
+ </div>
231
+
232
+ <!-- Product image -->
233
+ <div class="image-wrap">
234
+ <div class="img-placeholder">[IMG: Door Lock Product]</div>
235
+ <div class="count-chip">1 / 7</div>
236
+ </div>
237
+
238
+ <!-- Promo -->
239
+ <div class="promo-bar">
240
+ <div class="promo-left">
241
+ <div class="promo-tag">CHRISTMAS 🎄</div>
242
+ <div>Free shipping for you</div>
243
+ </div>
244
+ <div class="promo-right">Limited-time offer</div>
245
+ </div>
246
+
247
+ <!-- Main content -->
248
+ <div class="content">
249
+ <div class="title">
250
+ 1 Set Tubular Deadbolt Lock, Single Cylinder With 3pcs Brass Key, Apartment Home School Dormitory Door Lock
251
+ </div>
252
+
253
+ <div class="meta">
254
+ <div class="seller">
255
+ <span>616 sold, by</span>
256
+ <span class="avatar">S</span>
257
+ <span>ANOR STYLE (761 sold)</span>
258
+ </div>
259
+ <div class="rating">
260
+ <span class="score">4.9</span>
261
+ <!-- stars -->
262
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#000"><path d="m12 2 2.6 5.3 5.9.9-4.3 4.2 1 5.9L12 16.8 6.8 18.3l1-5.9L3.4 8.2l5.9-.9L12 2z"/></svg>
263
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#000"><path d="m12 2 2.6 5.3 5.9.9-4.3 4.2 1 5.9L12 16.8 6.8 18.3l1-5.9L3.4 8.2l5.9-.9L12 2z"/></svg>
264
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#000"><path d="m12 2 2.6 5.3 5.9.9-4.3 4.2 1 5.9L12 16.8 6.8 18.3l1-5.9L3.4 8.2l5.9-.9L12 2z"/></svg>
265
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#000"><path d="m12 2 2.6 5.3 5.9.9-4.3 4.2 1 5.9L12 16.8 6.8 18.3l1-5.9L3.4 8.2l5.9-.9L12 2z"/></svg>
266
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="#000"><path d="m12 2 2.6 5.3 5.9.9-4.3 4.2 1 5.9L12 16.8 6.8 18.3l1-5.9L3.4 8.2l5.9-.9L12 2z"/></svg>
267
+ </div>
268
+ </div>
269
+
270
+ <div class="price-row">
271
+ <div class="price">$9.28</div>
272
+ <div class="badge-off">-43%</div>
273
+ <div class="old">$16.49</div>
274
+ </div>
275
+
276
+ <div class="size-line">Size: <b>Door Thickness 1-3/8" to 1-3/4"</b></div>
277
+
278
+ <div class="qty-row">
279
+ <div style="font-size:32px;">Qty</div>
280
+ <div class="stepper">
281
+ <button aria-label="decrease">−</button>
282
+ <div class="num">1</div>
283
+ <button aria-label="increase">+</button>
284
+ </div>
285
+ <div class="almost">
286
+ <!-- hourglass -->
287
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
288
+ <path d="M7 4h10v3l-3.5 3L17 13v7H7v-7l3.5-3L7 7V4z" stroke="#ff8a00" stroke-width="2"/>
289
+ </svg>
290
+ Almost sold out
291
+ </div>
292
+ </div>
293
+
294
+ <div class="info-line">
295
+ ⓘ Sold by ANOR STYLE. Ships from Temu.
296
+ </div>
297
+ </div>
298
+
299
+ <!-- Shipping section -->
300
+ <div class="section">
301
+ <div class="section-header">
302
+ <div class="head-left">
303
+ <!-- truck icon -->
304
+ <svg width="40" height="40" viewBox="0 0 24 24">
305
+ <path d="M1 6h12v8H1V6zm12 4h5l3 3v3h-8V10z" fill="#333"/>
306
+ <circle cx="6" cy="18" r="2.2" fill="#333"/>
307
+ <circle cx="17" cy="18" r="2.2" fill="#333"/>
308
+ </svg>
309
+ <span>Shipping</span>
310
+ </div>
311
+ <div class="chevron">
312
+ <svg width="30" height="30" viewBox="0 0 24 24">
313
+ <path d="M9 5l7 7-7 7" stroke="#bbb" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
314
+ </svg>
315
+ </div>
316
+ </div>
317
+
318
+ <div class="card">
319
+ <div class="green">Standard: free on all orders</div>
320
+ <div class="muted">Delivery: Dec 14-22, 80.8% are ≤ 11 days</div>
321
+ <div class="muted">Get a $5.00 credit for late delivery</div>
322
+ <div class="muted">Courier company:</div>
323
+ <div class="couriers">
324
+ <div class="courier">USPS</div>
325
+ <div class="courier">UPS</div>
326
+ <div class="courier">OnTrac</div>
327
+ <div class="courier">etc.</div>
328
+ </div>
329
+ </div>
330
+ </div>
331
+
332
+ <!-- floating cart/free shipping badge -->
333
+ <div class="float-cart">
334
+ <!-- cart icon -->
335
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="none">
336
+ <path d="M3 4h2l2 12h10l2-8H7" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
337
+ <circle cx="10" cy="20" r="1.6" fill="#fff"/>
338
+ <circle cx="17" cy="20" r="1.6" fill="#fff"/>
339
+ </svg>
340
+ Cart · Free Shipping
341
+ </div>
342
+
343
+ <!-- Bottom bar -->
344
+ <div class="bottom-bar">
345
+ <div class="cta">Add to cart</div>
346
+ </div>
347
+
348
+ </div>
349
+ </body>
350
+ </html>
code/14703/14703_0.html ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compare Cars</title>
7
+ <style>
8
+ body{margin:0;padding:0;background:transparent;font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#333;}
9
+ #render-target{
10
+ position:relative; overflow:hidden;
11
+ width:1080px; height:2400px;
12
+ background:#ffffff;
13
+ box-sizing:border-box;
14
+ }
15
+
16
+ /* Top system status bar */
17
+ .status-bar{
18
+ height:120px; background:#7c7c7c; color:#fff;
19
+ display:flex; align-items:center; justify-content:space-between;
20
+ padding:0 40px; font-size:40px; box-sizing:border-box;
21
+ }
22
+ .status-icons{display:flex; gap:24px; align-items:center;}
23
+ .status-dot{width:28px;height:28px;border-radius:50%;background:#fff;opacity:.9;}
24
+ .battery{width:38px;height:38px;border:3px solid #fff;border-radius:6px;position:relative;}
25
+ .battery::after{content:""; position:absolute; right:-8px; top:10px; width:6px; height:16px; background:#fff; border-radius:2px;}
26
+
27
+ /* App bar */
28
+ .app-bar{
29
+ height:150px; display:flex; align-items:center; padding:0 36px; box-sizing:border-box;
30
+ border-bottom:1px solid #e9e9e9; background:#fff;
31
+ }
32
+ .app-title{font-size:56px; font-weight:600; margin-left:16px;}
33
+ .app-bar .spacer{flex:1}
34
+ .icon-btn{width:84px;height:84px; display:flex; align-items:center; justify-content:center; color:#757575;}
35
+ .back{width:72px;height:72px; display:flex; align-items:center; justify-content:center;}
36
+
37
+ /* Compare section */
38
+ .cards-wrap{position:relative; border-top:1px solid #eee;}
39
+ .cards{display:flex;}
40
+ .card{
41
+ width:50%; box-sizing:border-box; padding:32px 32px 40px 44px; position:relative;
42
+ border-right:1px solid #eee;
43
+ }
44
+ .card:last-child{border-right:none;}
45
+ .close-x{position:absolute; right:24px; top:20px; color:#999;}
46
+ .img-ph{
47
+ width:100%; height:300px; background:#E0E0E0; border:1px solid #BDBDBD;
48
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px; border-radius:6px;
49
+ }
50
+ .card .title{
51
+ color:#0b7fd3; font-size:46px; font-weight:600; margin:28px 0 8px 0;
52
+ }
53
+ .muted{color:#777; font-size:34px;}
54
+ .price{margin-top:18px; font-size:40px;}
55
+ .price b{font-weight:700;}
56
+ .arrow-right{position:absolute; right:28px; top:540px; color:#999;}
57
+ .btn-outline{
58
+ margin-top:28px; padding:22px 30px; border:2px solid #10b7a7; color:#10b7a7; background:#fff;
59
+ border-radius:12px; font-size:38px; width:320px; text-align:center;
60
+ }
61
+ .vs-badge{
62
+ position:absolute; left:50%; top:210px; transform:translate(-50%, -50%);
63
+ width:96px; height:96px; border-radius:50%; background:#fff; border:6px solid #10b7a7;
64
+ display:flex; align-items:center; justify-content:center; color:#10b7a7; font-weight:700; font-size:34px;
65
+ z-index:2;
66
+ }
67
+
68
+ /* Add/Save row */
69
+ .actions-row{display:flex; gap:36px; padding:32px; border-top:1px solid #f0f0f0;}
70
+ .action-btn{
71
+ flex:1; height:120px; border:3px solid #10b7a7; border-radius:16px; color:#10b7a7;
72
+ display:flex; align-items:center; justify-content:center; font-size:44px; font-weight:600; background:#fff;
73
+ }
74
+ .action-btn .icon{margin-right:20px;}
75
+ .action-outline{
76
+ flex:1; height:120px; border:3px solid #d6d6d6; color:#555; border-radius:16px;
77
+ display:flex; align-items:center; justify-content:center; gap:22px; font-size:40px; background:#fff;
78
+ }
79
+ .bookmark{width:48px; height:48px;}
80
+
81
+ /* Tabs */
82
+ .tabs{display:flex; padding:16px 24px 0 24px; border-top:1px solid #eee;}
83
+ .tab{flex:1; text-align:center; padding:28px 0 24px 0; font-size:38px; color:#777; position:relative;}
84
+ .tab.active{color:#10b7a7; font-weight:700;}
85
+ .tab.active::after{
86
+ content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:0;
87
+ width:60%; height:8px; background:#10b7a7; border-radius:4px;
88
+ }
89
+
90
+ /* Section title */
91
+ .section-title{
92
+ padding:34px; font-size:50px; font-weight:700; background:#f7f7f7; border-top:1px solid #ededed; border-bottom:1px solid #ededed;
93
+ }
94
+
95
+ /* Finance boxes */
96
+ .finance{display:flex; border-bottom:1px solid #eee;}
97
+ .fin-box{
98
+ width:50%; padding:28px 34px; border-right:1px solid #eee; box-sizing:border-box;
99
+ }
100
+ .fin-box:last-child{border-right:none;}
101
+ .emi{font-size:44px; font-weight:700;}
102
+ .emi small{font-weight:400; color:#777; font-size:32px;}
103
+ .link{color:#0b7fd3; font-size:38px; margin-top:18px;}
104
+
105
+ /* Accordions */
106
+ .accordion{border-top:1px solid #eaeaea;}
107
+ .acc-item{
108
+ height:140px; display:flex; align-items:center; justify-content:space-between;
109
+ padding:0 34px; border-bottom:1px solid #eaeaea; font-size:44px; font-weight:600; background:#fff;
110
+ }
111
+ .caret{transform:rotate(0deg); color:#999;}
112
+
113
+ /* Bottom toolbar */
114
+ .bottom-tools{
115
+ position:absolute; left:0; right:0; bottom:120px; height:180px;
116
+ background:#f3f3f3; border-top:1px solid #e0e0e0; display:flex; align-items:center; justify-content:space-around;
117
+ padding:0 24px; box-sizing:border-box;
118
+ }
119
+ .tool{
120
+ display:flex; align-items:center; gap:22px; color:#6d6d6d; font-size:34px;
121
+ }
122
+ .tool .box{
123
+ width:92px; height:92px; background:#fff; border:1px solid #ddd; border-radius:16px;
124
+ display:flex; align-items:center; justify-content:center;
125
+ }
126
+
127
+ /* Home indicator */
128
+ .home-indicator{
129
+ position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
130
+ width:320px; height:14px; background:#000; border-radius:8px;
131
+ }
132
+ </style>
133
+ </head>
134
+ <body>
135
+ <div id="render-target">
136
+
137
+ <!-- System status bar -->
138
+ <div class="status-bar">
139
+ <div>9:01</div>
140
+ <div class="status-icons">
141
+ <div class="status-dot"></div>
142
+ <div class="status-dot" style="border-radius:6px;width:34px;height:24px;background:#fff;"></div>
143
+ <div class="battery"></div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- App bar -->
148
+ <div class="app-bar">
149
+ <div class="back">
150
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
151
+ <path d="M15 18l-6-6 6-6" stroke="#555" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
152
+ </svg>
153
+ </div>
154
+ <div class="app-title">Compare Cars</div>
155
+ <div class="spacer"></div>
156
+ <div class="icon-btn">
157
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#9e9e9e" stroke-width="2">
158
+ <path d="M6 3h12l-1 15-5 3-5-3L6 3z"/>
159
+ </svg>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- Compare cards -->
164
+ <div class="cards-wrap">
165
+ <div class="vs-badge">VS</div>
166
+ <div class="cards">
167
+ <!-- Card 1 -->
168
+ <div class="card">
169
+ <div class="close-x">
170
+ <svg width="40" height="40" viewBox="0 0 24 24" stroke="#9a9a9a" stroke-width="2" fill="none">
171
+ <path d="M18 6L6 18M6 6l12 12"/>
172
+ </svg>
173
+ </div>
174
+ <div class="img-ph">[IMG: Red Sedan]</div>
175
+ <div class="title">Honda City</div>
176
+ <div class="muted">V Petrol MT</div>
177
+ <div class="price">Rs. <b>12.55 Lakh</b></div>
178
+ <div class="muted">Avg. Ex-Showroom Price</div>
179
+ <div class="arrow-right">
180
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none">
181
+ <path d="M9 6l6 6-6 6" stroke="#9a9a9a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
182
+ </svg>
183
+ </div>
184
+ <div class="btn-outline">Get Offers</div>
185
+ </div>
186
+
187
+ <!-- Card 2 -->
188
+ <div class="card">
189
+ <div class="close-x">
190
+ <svg width="40" height="40" viewBox="0 0 24 24" stroke="#9a9a9a" stroke-width="2" fill="none">
191
+ <path d="M18 6L6 18M6 6l12 12"/>
192
+ </svg>
193
+ </div>
194
+ <div class="img-ph">[IMG: Grey Sedan]</div>
195
+ <div class="title">Honda Amaze</div>
196
+ <div class="muted">E 1.2 Petrol MT</div>
197
+ <div class="price">Rs. <b>7.13 Lakh</b></div>
198
+ <div class="muted">Avg. Ex-Showroom Price</div>
199
+ <div class="arrow-right">
200
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none">
201
+ <path d="M9 6l6 6-6 6" stroke="#9a9a9a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
202
+ </svg>
203
+ </div>
204
+ <div class="btn-outline">Get Offers</div>
205
+ </div>
206
+ </div>
207
+ </div>
208
+
209
+ <!-- Add / Save -->
210
+ <div class="actions-row">
211
+ <div class="action-btn">
212
+ <span class="icon">
213
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="none">
214
+ <path d="M12 5v14M5 12h14" stroke="#10b7a7" stroke-width="2" stroke-linecap="round"/>
215
+ </svg>
216
+ </span>
217
+ + Add Car
218
+ </div>
219
+ <div class="action-outline">
220
+ <svg class="bookmark" viewBox="0 0 24 24" fill="none" stroke="#777" stroke-width="2">
221
+ <path d="M6 3h12v18l-6-4-6 4V3z"/>
222
+ </svg>
223
+ <span>Save Comparison</span>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Tabs -->
228
+ <div class="tabs">
229
+ <div class="tab active">SPECIFICATIONS</div>
230
+ <div class="tab">FEATURES</div>
231
+ <div class="tab">CARWALE'S OPINION</div>
232
+ </div>
233
+
234
+ <!-- Specifications & Finance -->
235
+ <div class="section-title">Specifications And Finance</div>
236
+ <div class="finance">
237
+ <div class="fin-box">
238
+ <div class="emi">₹ 23,721
239
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" style="margin-left:10px;vertical-align:middle">
240
+ <path d="M3 21l3-1 11-11-2-2L4 18l-1 3zM14 6l2 2" stroke="#10b7a7" stroke-width="2" stroke-linecap="round"/>
241
+ </svg>
242
+ </div>
243
+ <div class="muted" style="margin-top:8px;">EMI for 5 years</div>
244
+ <div class="link">Get Loan Offers</div>
245
+ </div>
246
+ <div class="fin-box">
247
+ <div class="emi">₹ 13,320
248
+ <svg width="34" height="34" viewBox="0 0 24 24" fill="none" style="margin-left:10px;vertical-align:middle">
249
+ <path d="M3 21l3-1 11-11-2-2L4 18l-1 3zM14 6l2 2" stroke="#10b7a7" stroke-width="2" stroke-linecap="round"/>
250
+ </svg>
251
+ </div>
252
+ <div class="muted" style="margin-top:8px;">EMI for 5 years</div>
253
+ <div class="link">Get Loan Offers</div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Accordions -->
258
+ <div class="accordion">
259
+ <div class="acc-item">
260
+ <span>Engine & Transmission</span>
261
+ <span class="caret">
262
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
263
+ <path d="M6 9l6 6 6-6" stroke="#8c8c8c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
264
+ </svg>
265
+ </span>
266
+ </div>
267
+ <div class="acc-item">
268
+ <span>Dimensions & Weight</span>
269
+ <span class="caret">
270
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
271
+ <path d="M6 9l6 6 6-6" stroke="#8c8c8c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
272
+ </svg>
273
+ </span>
274
+ </div>
275
+ <div class="acc-item">
276
+ <span>Capacity</span>
277
+ <span class="caret">
278
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none">
279
+ <path d="M6 9l6 6 6-6" stroke="#8c8c8c" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
280
+ </svg>
281
+ </span>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Bottom tools -->
286
+ <div class="bottom-tools">
287
+ <div class="tool">
288
+ <div class="box">
289
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
290
+ <circle cx="11" cy="11" r="7" stroke="#7a7a7a" stroke-width="2"/>
291
+ <path d="M20 20l-4-4" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round"/>
292
+ </svg>
293
+ </div>
294
+ <div>Search Specs & Features</div>
295
+ </div>
296
+ <div class="tool">
297
+ <div class="box">
298
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
299
+ <path d="M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z" stroke="#7a7a7a" stroke-width="2"/>
300
+ <circle cx="12" cy="12" r="3" stroke="#7a7a7a" stroke-width="2"/>
301
+ </svg>
302
+ </div>
303
+ <div>Hide Similarities</div>
304
+ </div>
305
+ <div class="tool">
306
+ <div class="box">
307
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
308
+ <circle cx="9" cy="12" r="5" stroke="#7a7a7a" stroke-width="2"/>
309
+ <circle cx="15" cy="12" r="5" stroke="#7a7a7a" stroke-width="2"/>
310
+ </svg>
311
+ </div>
312
+ <div>Highlight Differences</div>
313
+ </div>
314
+ </div>
315
+
316
+ <div class="home-indicator"></div>
317
+ </div>
318
+ </body>
319
+ </html>
code/14703/14703_1.html ADDED
@@ -0,0 +1,270 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Car Detail - Mock</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #2b2b2b; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ }
15
+ .status-bar {
16
+ height: 120px;
17
+ background: #8e8e8e;
18
+ color: #fff;
19
+ font-size: 40px;
20
+ display: flex;
21
+ align-items: center;
22
+ justify-content: center;
23
+ position: relative;
24
+ }
25
+ .status-icons {
26
+ position: absolute; right: 28px; top: 32px; display: flex; gap: 26px; align-items: center;
27
+ }
28
+ .topbar {
29
+ height: 170px;
30
+ background: #ffffff;
31
+ border-bottom: 1px solid #e9e9e9;
32
+ display: flex;
33
+ align-items: center;
34
+ padding: 0 28px;
35
+ position: relative;
36
+ }
37
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
38
+ .topbar-right { margin-left: auto; display: flex; gap: 18px; }
39
+ .tabs {
40
+ height: 120px;
41
+ border-bottom: 1px solid #e9e9e9;
42
+ display: flex;
43
+ align-items: flex-end;
44
+ padding: 0 28px 0 28px;
45
+ gap: 46px;
46
+ }
47
+ .tab { font-size: 40px; color: #6f6f6f; padding-bottom: 26px; letter-spacing: 0.5px; }
48
+ .tab.active { color: #00bfa5; position: relative; }
49
+ .tab.active::after {
50
+ content: ""; position: absolute; left: 0; bottom: 0; height: 8px; width: 170px; background: #00bfa5; border-radius: 4px;
51
+ }
52
+ .hero {
53
+ padding: 30px 28px 10px 28px;
54
+ }
55
+ .img-ph {
56
+ width: 100%; height: 560px;
57
+ background: #E0E0E0;
58
+ border: 1px solid #BDBDBD;
59
+ display: flex; align-items: center; justify-content: center;
60
+ color: #757575; font-size: 42px; border-radius: 12px;
61
+ }
62
+ .quick-row {
63
+ display: flex; justify-content: space-between; padding: 28px; margin-top: 10px;
64
+ }
65
+ .quick-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #7a7a7a; font-size: 34px; }
66
+ .circle {
67
+ width: 84px; height: 84px; border-radius: 42px; border: 2px solid #cfcfcf; display: flex; align-items: center; justify-content: center; color: #8a8a8a;
68
+ }
69
+ .divider { height: 1px; background: #e9e9e9; margin: 8px 28px; }
70
+ .title {
71
+ padding: 26px 28px 8px 28px;
72
+ font-size: 64px; font-weight: 700;
73
+ }
74
+ .rating-row {
75
+ display: flex; align-items: center; gap: 24px; padding: 0 28px 10px 28px; font-size: 36px;
76
+ }
77
+ .stars { display: flex; gap: 6px; }
78
+ .stars svg { width: 44px; height: 44px; }
79
+ .link { color: #1e88e5; }
80
+ .selector-grid {
81
+ display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 26px 28px 0 28px; border: 1px solid #e3e3e3; border-radius: 12px; overflow: hidden;
82
+ }
83
+ .select-card {
84
+ padding: 26px;
85
+ border-right: 1px solid #e3e3e3;
86
+ }
87
+ .select-card:nth-child(2) { border-right: none; }
88
+ .select-label { color: #9a9a9a; font-size: 34px; }
89
+ .select-value { margin-top: 12px; font-size: 44px; font-weight: 700; color: #444; }
90
+ .select-right { display: flex; align-items: center; justify-content: space-between; }
91
+ .price {
92
+ padding: 34px 28px 12px 28px;
93
+ }
94
+ .price .amount { font-size: 58px; font-weight: 800; }
95
+ .price .sub { color: #8a8a8a; font-size: 34px; margin-top: 8px; }
96
+ .emi-card {
97
+ margin: 18px 28px;
98
+ border: 1px solid #e6e6e6; border-radius: 14px;
99
+ display: flex; align-items: center; justify-content: space-between;
100
+ padding: 34px;
101
+ background: #fafafa;
102
+ }
103
+ .emi-left .emi-title { font-size: 44px; font-weight: 700; margin-bottom: 8px; }
104
+ .emi-left .emi-link { color: #1e88e5; font-size: 36px; }
105
+ .emi-btn {
106
+ background: #fff;
107
+ border: 2px solid #00bfa5;
108
+ color: #00bfa5;
109
+ font-size: 40px; padding: 22px 34px; border-radius: 12px;
110
+ }
111
+ .wa-card {
112
+ margin: 26px 28px;
113
+ border: 1px solid #e6e6e6; border-radius: 14px;
114
+ padding: 34px;
115
+ display: flex; align-items: center; gap: 24px; font-size: 40px; color: #3a3a3a;
116
+ background: #ffffff;
117
+ }
118
+ .wa-icon { width: 64px; height: 64px; border-radius: 32px; background: #eafff6; border: 1px solid #b6f0dd; display: flex; align-items: center; justify-content: center; }
119
+ .bottom-offer {
120
+ position: absolute; left: 0; right: 0; bottom: 0;
121
+ height: 150px; background: #e53935; color: #fff;
122
+ display: flex; align-items: center; justify-content: center;
123
+ font-size: 48px; font-weight: 800;
124
+ }
125
+ .home-indicator {
126
+ position: absolute; bottom: 160px; left: 50%; transform: translateX(-50%);
127
+ width: 220px; height: 12px; background: #d0d0d0; border-radius: 8px;
128
+ }
129
+ </style>
130
+ </head>
131
+ <body>
132
+ <div id="render-target">
133
+
134
+ <!-- Status Bar -->
135
+ <div class="status-bar">
136
+ 9:02
137
+ <div class="status-icons">
138
+ <!-- simple signal/wifi/battery -->
139
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M2 8l2 2c3-3 13-3 16 0l2-2C16-1 8-1 2 8z"/></svg>
140
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M2 9c6-6 14-6 20 0l-2 2c-4-4-12-4-16 0L2 9z"/></svg>
141
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#fff"><path d="M16 6H8v12h8c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zM6 9v6H4V9h2z"/></svg>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Top App Bar -->
146
+ <div class="topbar">
147
+ <div class="icon-btn">
148
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#6b6b6b" stroke-width="2.5"><path d="M15 18l-6-6 6-6"/></svg>
149
+ </div>
150
+ <div class="topbar-right">
151
+ <div class="icon-btn">
152
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#9c9c9c" stroke-width="2"><path d="M12 21s-6-4.35-8.5-7.16C1.6 11.7 2 8.5 4.5 7.3 6.2 6.5 8.2 7 9.4 8.4L12 11l2.6-2.6c1.2-1.4 3.2-1.9 4.9-1.1 2.5 1.2 2.9 4.4 1 6.6C18 16.7 12 21 12 21z"/></svg>
153
+ </div>
154
+ <div class="icon-btn">
155
+ <svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#9c9c9c" stroke-width="2">
156
+ <circle cx="18" cy="5" r="2"/><circle cx="6" cy="12" r="2"/><circle cx="18" cy="19" r="2"/><path d="M8 12h8M16 6l-8 4m8 8l-8-4"/>
157
+ </svg>
158
+ </div>
159
+ </div>
160
+ </div>
161
+
162
+ <!-- Tabs -->
163
+ <div class="tabs">
164
+ <div class="tab active">OVERVIEW</div>
165
+ <div class="tab">OFFERS</div>
166
+ <div class="tab">KEY SPECS</div>
167
+ <div class="tab">VERSIONS</div>
168
+ <div class="tab">EXTRAS</div>
169
+ </div>
170
+
171
+ <!-- Car Image -->
172
+ <div class="hero">
173
+ <div class="img-ph">[IMG: Red Sedan Car]</div>
174
+ </div>
175
+
176
+ <!-- Quick Actions -->
177
+ <div class="quick-row">
178
+ <div class="quick-item">
179
+ <div class="circle">
180
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#9c9c9c"><path d="M12 2l3 7h7l-5.5 4.2L18 21l-6-4-6 4 1.5-7.8L2 9h7z"/></svg>
181
+ </div>
182
+ <div>Colours</div>
183
+ </div>
184
+ <div class="quick-item">
185
+ <div class="circle">
186
+ <svg width="38" height="38" viewBox="0 0 24 24" fill="none" stroke="#9c9c9c" stroke-width="2"><rect x="3" y="5" width="18" height="14" rx="2"/><path d="M3 15l5-5 4 4 3-3 6 6"/></svg>
187
+ </div>
188
+ <div>Images</div>
189
+ </div>
190
+ <div class="quick-item">
191
+ <div class="circle">
192
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#9c9c9c"><path d="M8 5v14l11-7z"/></svg>
193
+ </div>
194
+ <div>Videos</div>
195
+ </div>
196
+ <div class="quick-item">
197
+ <div class="circle">
198
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none" stroke="#9c9c9c" stroke-width="2"><circle cx="12" cy="12" r="7"/><path d="M12 5v2M12 17v2M5 12h2M17 12h2"/></svg>
199
+ </div>
200
+ <div>360° View</div>
201
+ </div>
202
+ </div>
203
+
204
+ <div class="divider"></div>
205
+
206
+ <!-- Title -->
207
+ <div class="title">Honda City</div>
208
+
209
+ <!-- Rating Row -->
210
+ <div class="rating-row">
211
+ <div class="stars">
212
+ <svg viewBox="0 0 24 24" fill="#00bfa5"><path d="M12 17.3L6.2 21l1.6-6.9L2 9.2l7-.6L12 2l3 6.6 7 .6-5.8 4.9L17.8 21z"/></svg>
213
+ <svg viewBox="0 0 24 24" fill="#00bfa5"><path d="M12 17.3L6.2 21l1.6-6.9L2 9.2l7-.6L12 2l3 6.6 7 .6-5.8 4.9L17.8 21z"/></svg>
214
+ <svg viewBox="0 0 24 24" fill="#00bfa5"><path d="M12 17.3L6.2 21l1.6-6.9L2 9.2l7-.6L12 2l3 6.6 7 .6-5.8 4.9L17.8 21z"/></svg>
215
+ <svg viewBox="0 0 24 24" fill="#00bfa5"><path d="M12 17.3L6.2 21l1.6-6.9L2 9.2l7-.6L12 2l3 6.6 7 .6-5.8 4.9L17.8 21z"/></svg>
216
+ <svg viewBox="0 0 24 24" fill="#c7c7c7"><path d="M12 17.3L6.2 21l1.6-6.9L2 9.2l7-.6L12 2l3 6.6 7 .6-5.8 4.9L17.8 21z"/></svg>
217
+ </div>
218
+ <div class="link" style="color:#1e88e5;">35 Reviews</div>
219
+ <div style="color:#9d9d9d;">|</div>
220
+ <div class="link">Write Review</div>
221
+ </div>
222
+
223
+ <!-- Selectors -->
224
+ <div class="selector-grid">
225
+ <div class="select-card">
226
+ <div class="select-label">Version</div>
227
+ <div class="select-right">
228
+ <div class="select-value">VX Petrol MT</div>
229
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#b0b0b0" stroke-width="2"><path d="M9 6l6 6-6 6"/></svg>
230
+ </div>
231
+ </div>
232
+ <div class="select-card">
233
+ <div class="select-label">City</div>
234
+ <div class="select-right">
235
+ <div class="select-value" style="font-weight:600; color:#555;">Show price in my city</div>
236
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#b0b0b0" stroke-width="2"><path d="M9 6l6 6-6 6"/></svg>
237
+ </div>
238
+ </div>
239
+ </div>
240
+
241
+ <!-- Price -->
242
+ <div class="price">
243
+ <div class="amount">Rs. 13.67 Lakh</div>
244
+ <div class="sub">Avg. Ex-Showroom price</div>
245
+ </div>
246
+
247
+ <!-- EMI Card -->
248
+ <div class="emi-card">
249
+ <div class="emi-left">
250
+ <div class="emi-title">Calculate your EMI</div>
251
+ <div class="emi-link">EMI Calculator</div>
252
+ </div>
253
+ <button class="emi-btn">Get EMI Offers</button>
254
+ </div>
255
+
256
+ <!-- Whatsapp card -->
257
+ <div class="wa-card">
258
+ <div class="wa-icon">
259
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="#00bfa5"><path d="M20 12a8 8 0 0 1-11.8 7L4 21l2-4.2A8 8 0 1 1 20 12zM8.3 8.9c-.2.5-.6 1.5 1.2 3.3 1.9 1.9 3 1.5 3.5 1.3l.7-.3c.2-.1.5 0 .6.3l.8 1.8c.1.3-.1.6-.4.8-.5.3-1.4.7-2.7.6-1.9-.1-4.3-1.4-5.6-3.7-1.3-2.2-1-3.9-.6-4.9.2-.5.6-.5.9-.5h1c.3 0 .5.2.4.5l-.8 1.1z"/></svg>
260
+ </div>
261
+ <div>Get Price Details on Whatsapp</div>
262
+ </div>
263
+
264
+ <!-- Home indicator and sticky CTA -->
265
+ <div class="home-indicator"></div>
266
+ <div class="bottom-offer">Get December Offers</div>
267
+
268
+ </div>
269
+ </body>
270
+ </html>
code/14703/14703_2.html ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Car Detail - Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff; color: #333; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 130px; background: #7d7d7d; color: #fff;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ padding: 0 40px; font-size: 36px; letter-spacing: 0.5px;
20
+ }
21
+ .status-icons { display: flex; gap: 22px; align-items: center; }
22
+ .dot { width: 12px; height: 12px; background:#fff; border-radius:50%; opacity:.9; }
23
+
24
+ /* App bar */
25
+ .app-bar {
26
+ height: 150px; background: #fff; border-bottom: 1px solid #ececec;
27
+ display: flex; align-items: center; justify-content: space-between;
28
+ padding: 0 36px;
29
+ }
30
+ .icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
31
+ .icon-row { display: flex; gap: 24px; align-items: center; }
32
+
33
+ /* Tabs */
34
+ .tabs {
35
+ height: 112px; display: flex; align-items: center; justify-content: space-around;
36
+ border-bottom: 1px solid #ececec; color: #555; font-weight: 600; text-transform: uppercase; font-size: 30px;
37
+ }
38
+
39
+ /* Content */
40
+ .content { padding: 36px; }
41
+ .car-shot {
42
+ width: 100%; height: 560px;
43
+ background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 10px;
44
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 34px; font-weight: 600;
45
+ }
46
+
47
+ .quick-actions { display: flex; justify-content: space-between; margin: 28px 10px 8px; color: #757575; }
48
+ .qa-item { display: flex; align-items: center; gap: 16px; font-size: 30px; }
49
+ .qa-icon {
50
+ width: 56px; height: 56px; border-radius: 50%;
51
+ border: 2px solid #cfcfcf; display: flex; align-items: center; justify-content: center; color: #9c9c9c;
52
+ }
53
+
54
+ .divider { height: 1px; background: #e9e9e9; margin: 30px 0; }
55
+
56
+ .title { font-size: 54px; font-weight: 700; margin: 8px 0 18px; color: #3a3a3a; }
57
+
58
+ .rating-row { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; }
59
+ .stars { display: flex; gap: 10px; }
60
+ .link { color: #1686d4; font-weight: 600; }
61
+
62
+ .selectors { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 28px; }
63
+ .selector-box {
64
+ border: 1px solid #e6e6e6; border-radius: 12px; padding: 28px; position: relative; min-height: 150px;
65
+ }
66
+ .selector-label { color: #9b9b9b; font-size: 28px; margin-bottom: 8px; }
67
+ .selector-value { font-size: 36px; font-weight: 700; color: #444; }
68
+ .chev {
69
+ position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
70
+ }
71
+
72
+ .price-block { margin: 18px 0 28px; }
73
+ .price-amount { font-size: 50px; font-weight: 800; margin-bottom: 6px; }
74
+ .subtext { color: #8a8a8a; font-size: 28px; }
75
+
76
+ .emi-card {
77
+ border: 1px solid #e9e9e9; border-radius: 14px; padding: 28px; display: flex; align-items: center; justify-content: space-between;
78
+ box-shadow: 0 1px 0 rgba(0,0,0,0.04); margin-top: 20px;
79
+ }
80
+ .emi-left { display: flex; flex-direction: column; }
81
+ .emi-title { font-size: 38px; font-weight: 700; color: #424242; }
82
+ .emi-link { color: #1686d4; font-weight: 600; margin-top: 6px; }
83
+ .emi-btn {
84
+ padding: 20px 34px; border: 2px solid #0aa19a; color: #0aa19a; border-radius: 12px; font-weight: 700; background: #fff; font-size: 32px;
85
+ }
86
+
87
+ .wa-cta {
88
+ margin-top: 30px; border: 1px solid #e6e6e6; border-radius: 14px; padding: 28px 30px;
89
+ display: flex; align-items: center; gap: 18px; color: #2f2f2f; font-weight: 600; font-size: 34px;
90
+ }
91
+ .wa-icon {
92
+ width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800;
93
+ }
94
+
95
+ /* Sticky bottom CTA */
96
+ .bottom-cta {
97
+ position: absolute; left: 0; right: 0; bottom: 140px;
98
+ background: #e5391b; color: #fff; height: 140px; display: flex; align-items: center; justify-content: center;
99
+ font-size: 42px; font-weight: 800;
100
+ }
101
+
102
+ /* Home indicator */
103
+ .home-indicator {
104
+ position: absolute; left: 50%; transform: translateX(-50%);
105
+ bottom: 48px; width: 300px; height: 16px; background: rgba(0,0,0,0.6); border-radius: 10px;
106
+ }
107
+
108
+ /* Utility */
109
+ .muted { color: #9b9b9b; }
110
+ </style>
111
+ </head>
112
+ <body>
113
+ <div id="render-target">
114
+
115
+ <!-- Status Bar -->
116
+ <div class="status-bar">
117
+ <div>9:03</div>
118
+ <div class="status-icons">
119
+ <!-- Simple wifi icon -->
120
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
121
+ <path d="M2 8c5-4 15-4 20 0M5 11c3-3 11-3 14 0M8 14c2-2 6-2 8 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
122
+ <circle cx="12" cy="18" r="1.8" fill="#fff"/>
123
+ </svg>
124
+ <!-- Battery -->
125
+ <svg width="56" height="44" viewBox="0 0 28 16" fill="none">
126
+ <rect x="1" y="3" width="22" height="10" rx="2" stroke="#fff" stroke-width="2"/>
127
+ <rect x="3" y="5" width="14" height="6" rx="1" fill="#fff"/>
128
+ <rect x="23" y="6" width="3" height="4" fill="#fff"/>
129
+ </svg>
130
+ </div>
131
+ </div>
132
+
133
+ <!-- App Bar -->
134
+ <div class="app-bar">
135
+ <div class="icon-btn">
136
+ <!-- Back arrow -->
137
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
138
+ <path d="M15 5l-7 7 7 7" stroke="#6c6c6c" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
139
+ </svg>
140
+ </div>
141
+ <div class="icon-row">
142
+ <!-- Heart outline -->
143
+ <div class="icon-btn">
144
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
145
+ <path d="M12 20s-7-4.4-7-10.1C5 6.2 7.2 5 8.9 5c1.6 0 2.7.8 3.1 1.6C12.4 5.8 13.5 5 15.1 5 16.8 5 19 6.2 19 9.9 19 15.6 12 20 12 20z" stroke="#7a7a7a" stroke-width="2" fill="none"/>
146
+ </svg>
147
+ </div>
148
+ <!-- Share -->
149
+ <div class="icon-btn">
150
+ <svg width="44" height="44" viewBox="0 0 24 24" fill="none">
151
+ <circle cx="18" cy="5" r="2.2" stroke="#7a7a7a" stroke-width="2"/>
152
+ <circle cx="6" cy="12" r="2.2" stroke="#7a7a7a" stroke-width="2"/>
153
+ <circle cx="18" cy="19" r="2.2" stroke="#7a7a7a" stroke-width="2"/>
154
+ <path d="M8 11l8-4M8 13l8 4" stroke="#7a7a7a" stroke-width="2" stroke-linecap="round"/>
155
+ </svg>
156
+ </div>
157
+ </div>
158
+ </div>
159
+
160
+ <!-- Tabs -->
161
+ <div class="tabs">
162
+ <div>Specifications</div>
163
+ <div>Expert Opinion</div>
164
+ <div>Alternatives</div>
165
+ <div>Colours</div>
166
+ </div>
167
+
168
+ <!-- Main Content -->
169
+ <div class="content">
170
+ <div class="car-shot">[IMG: Red Sedan Car - Honda City]</div>
171
+
172
+ <div class="quick-actions">
173
+ <div class="qa-item">
174
+ <div class="qa-icon">
175
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
176
+ <circle cx="12" cy="12" r="9" stroke="#9c9c9c" stroke-width="2"/>
177
+ </svg>
178
+ </div>
179
+ <span>Colours</span>
180
+ </div>
181
+ <div class="qa-item">
182
+ <div class="qa-icon">
183
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
184
+ <rect x="4" y="6" width="16" height="12" rx="2" stroke="#9c9c9c" stroke-width="2"/>
185
+ <path d="M4 15l4-4 4 4 3-3 5 5" stroke="#9c9c9c" stroke-width="2"/>
186
+ </svg>
187
+ </div>
188
+ <span>Images</span>
189
+ </div>
190
+ <div class="qa-item">
191
+ <div class="qa-icon">
192
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
193
+ <circle cx="12" cy="12" r="9" stroke="#9c9c9c" stroke-width="2"/>
194
+ <path d="M10 9l6 3-6 3V9z" fill="#9c9c9c"/>
195
+ </svg>
196
+ </div>
197
+ <span>Videos</span>
198
+ </div>
199
+ <div class="qa-item">
200
+ <div class="qa-icon">
201
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
202
+ <circle cx="12" cy="12" r="9" stroke="#9c9c9c" stroke-width="2"/>
203
+ <path d="M8 12a4 4 0 108 0" stroke="#9c9c9c" stroke-width="2" stroke-linecap="round"/>
204
+ </svg>
205
+ </div>
206
+ <span>360° View</span>
207
+ </div>
208
+ </div>
209
+
210
+ <div class="divider"></div>
211
+
212
+ <div class="title">Honda City</div>
213
+
214
+ <div class="rating-row">
215
+ <div class="stars">
216
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#00a99d"><path d="M12 17.3l-6.2 3.7 1.6-7-5.4-4.6 7.1-.6L12 2l2.9 6.8 7.1.6-5.4 4.6 1.6 7z"/></svg>
217
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#00a99d"><path d="M12 17.3l-6.2 3.7 1.6-7-5.4-4.6 7.1-.6L12 2l2.9 6.8 7.1.6-5.4 4.6 1.6 7z"/></svg>
218
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#00a99d"><path d="M12 17.3l-6.2 3.7 1.6-7-5.4-4.6 7.1-.6L12 2l2.9 6.8 7.1.6-5.4 4.6 1.6 7z"/></svg>
219
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#00a99d"><path d="M12 17.3l-6.2 3.7 1.6-7-5.4-4.6 7.1-.6L12 2l2.9 6.8 7.1.6-5.4 4.6 1.6 7z"/></svg>
220
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="#cfeeea"><path d="M12 17.3l-6.2 3.7 1.6-7-5.4-4.6 7.1-.6L12 2l2.9 6.8 7.1.6-5.4 4.6 1.6 7z"/></svg>
221
+ </div>
222
+ <div class="link">35 Reviews</div>
223
+ <div class="muted">|</div>
224
+ <div class="link">Write Review</div>
225
+ </div>
226
+
227
+ <div class="selectors">
228
+ <div class="selector-box">
229
+ <div class="selector-label">Version</div>
230
+ <div class="selector-value">VX Petrol MT</div>
231
+ <div class="chev">
232
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
233
+ <path d="M9 6l6 6-6 6" stroke="#9b9b9b" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+ <div class="selector-box">
238
+ <div class="selector-label">City</div>
239
+ <div class="selector-value">Show price in my city</div>
240
+ <div class="chev">
241
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
242
+ <path d="M9 6l6 6-6 6" stroke="#9b9b9b" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/>
243
+ </svg>
244
+ </div>
245
+ </div>
246
+ </div>
247
+
248
+ <div class="price-block">
249
+ <div class="price-amount">Rs. 13.67 Lakh</div>
250
+ <div class="subtext">Avg. Ex-Showroom price</div>
251
+ </div>
252
+
253
+ <div class="emi-card">
254
+ <div class="emi-left">
255
+ <div class="emi-title">Calculate your EMI</div>
256
+ <div class="emi-link">EMI Calculator</div>
257
+ </div>
258
+ <button class="emi-btn">Get EMI Offers</button>
259
+ </div>
260
+
261
+ <div class="wa-cta">
262
+ <div class="wa-icon">W</div>
263
+ <div>Get Price Details on Whatsapp</div>
264
+ </div>
265
+
266
+ </div>
267
+
268
+ <!-- Bottom sticky CTA -->
269
+ <div class="bottom-cta">Get December Offers</div>
270
+
271
+ <!-- Home indicator -->
272
+ <div class="home-indicator"></div>
273
+
274
+ </div>
275
+ </body>
276
+ </html>
code/14703/14703_3.html ADDED
@@ -0,0 +1,450 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Car Detail UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; color: #333; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #ffffff;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ height: 110px;
20
+ background: #8c8c8c;
21
+ color: #fff;
22
+ display: flex;
23
+ align-items: center;
24
+ padding: 0 40px;
25
+ font-size: 38px;
26
+ letter-spacing: 1px;
27
+ box-sizing: border-box;
28
+ }
29
+ .status-bar .right-icons {
30
+ margin-left: auto;
31
+ display: flex;
32
+ align-items: center;
33
+ gap: 26px;
34
+ }
35
+ .icon {
36
+ width: 44px; height: 44px;
37
+ }
38
+
39
+ /* App bar */
40
+ .app-bar {
41
+ height: 150px;
42
+ background: #fff;
43
+ display: flex;
44
+ align-items: center;
45
+ padding: 0 32px;
46
+ box-sizing: border-box;
47
+ border-bottom: 1px solid #e9e9e9;
48
+ }
49
+ .app-bar .left {
50
+ display: flex;
51
+ align-items: center;
52
+ gap: 18px;
53
+ }
54
+ .app-bar .right {
55
+ margin-left: auto;
56
+ display: flex;
57
+ gap: 38px;
58
+ }
59
+ .app-title {
60
+ font-size: 40px;
61
+ font-weight: 600;
62
+ color: #333;
63
+ display: none; /* hidden to match screenshot which has only icons */
64
+ }
65
+
66
+ /* Tabs */
67
+ .tabs {
68
+ height: 110px;
69
+ display: flex;
70
+ align-items: center;
71
+ padding: 0 36px;
72
+ gap: 54px;
73
+ border-bottom: 1px solid #efefef;
74
+ box-sizing: border-box;
75
+ }
76
+ .tabs .tab {
77
+ font-size: 36px;
78
+ color: #777;
79
+ letter-spacing: 1px;
80
+ }
81
+
82
+ /* Car image */
83
+ .hero {
84
+ padding: 40px 36px 10px;
85
+ }
86
+ .img-placeholder {
87
+ width: 100%;
88
+ height: 520px;
89
+ background: #E0E0E0;
90
+ border: 1px solid #BDBDBD;
91
+ display: flex;
92
+ justify-content: center;
93
+ align-items: center;
94
+ color: #757575;
95
+ font-size: 40px;
96
+ border-radius: 8px;
97
+ }
98
+
99
+ /* Quick actions row */
100
+ .quick-actions {
101
+ display: flex;
102
+ justify-content: space-around;
103
+ padding: 34px 24px;
104
+ color: #808080;
105
+ }
106
+ .qa-item {
107
+ display: flex;
108
+ align-items: center;
109
+ gap: 18px;
110
+ font-size: 34px;
111
+ }
112
+ .qa-icon {
113
+ width: 64px; height: 64px;
114
+ border-radius: 50%;
115
+ border: 2px solid #dcdcdc;
116
+ display: flex;
117
+ justify-content: center;
118
+ align-items: center;
119
+ color: #9a9a9a;
120
+ }
121
+
122
+ .divider {
123
+ height: 1px;
124
+ background: #eaeaea;
125
+ margin: 10px 36px 0 36px;
126
+ }
127
+
128
+ /* Title and rating */
129
+ .title-wrap {
130
+ padding: 34px 36px 12px 36px;
131
+ }
132
+ .title {
133
+ font-size: 64px;
134
+ font-weight: 700;
135
+ margin: 10px 0 18px 0;
136
+ color: #3a3a3a;
137
+ }
138
+ .rating-row {
139
+ display: flex;
140
+ align-items: center;
141
+ gap: 18px;
142
+ font-size: 34px;
143
+ }
144
+ .stars {
145
+ display: flex;
146
+ gap: 8px;
147
+ }
148
+ .star {
149
+ width: 34px; height: 34px;
150
+ fill: #00a58c;
151
+ }
152
+ .link {
153
+ color: #1a77d4;
154
+ }
155
+ .sep {
156
+ color: #c7c7c7;
157
+ margin: 0 12px;
158
+ }
159
+
160
+ /* Selection cards */
161
+ .selectors {
162
+ display: grid;
163
+ grid-template-columns: 1fr 1fr;
164
+ gap: 0;
165
+ margin: 24px 36px;
166
+ border: 1px solid #e6e6e6;
167
+ border-radius: 12px;
168
+ overflow: hidden;
169
+ }
170
+ .select-card {
171
+ padding: 28px;
172
+ border-right: 1px solid #e6e6e6;
173
+ background: #fff;
174
+ position: relative;
175
+ min-height: 160px;
176
+ }
177
+ .select-card:last-child { border-right: none; }
178
+ .sc-label {
179
+ color: #a7a7a7;
180
+ font-size: 34px;
181
+ }
182
+ .sc-value {
183
+ margin-top: 12px;
184
+ font-size: 44px;
185
+ font-weight: 700;
186
+ color: #444;
187
+ }
188
+ .chev {
189
+ position: absolute;
190
+ right: 24px;
191
+ top: 50%;
192
+ transform: translateY(-50%);
193
+ width: 30px; height: 30px;
194
+ fill: #bdbdbd;
195
+ }
196
+
197
+ /* Price */
198
+ .price-block {
199
+ padding: 16px 36px 0 36px;
200
+ }
201
+ .price {
202
+ font-size: 56px;
203
+ font-weight: 800;
204
+ margin: 18px 0 8px;
205
+ color: #2f2f2f;
206
+ }
207
+ .subtext {
208
+ color: #8a8a8a;
209
+ font-size: 34px;
210
+ }
211
+
212
+ /* EMI Card */
213
+ .emi-card {
214
+ margin: 28px 36px;
215
+ border: 1px solid #e7e7e7;
216
+ border-radius: 16px;
217
+ padding: 28px;
218
+ box-sizing: border-box;
219
+ background: #fafafa;
220
+ }
221
+ .emi-row {
222
+ display: flex;
223
+ align-items: center;
224
+ gap: 24px;
225
+ }
226
+ .emi-left {
227
+ flex: 1;
228
+ }
229
+ .emi-title {
230
+ font-size: 44px;
231
+ font-weight: 700;
232
+ color: #404040;
233
+ }
234
+ .emi-link {
235
+ margin-top: 8px;
236
+ color: #1a77d4;
237
+ font-size: 34px;
238
+ }
239
+ .emi-btn {
240
+ padding: 20px 34px;
241
+ border: 2px solid #05a092;
242
+ color: #008a7e;
243
+ border-radius: 12px;
244
+ font-size: 36px;
245
+ font-weight: 700;
246
+ background: #fff;
247
+ }
248
+
249
+ /* WhatsApp CTA */
250
+ .wa-cta {
251
+ margin: 28px 36px;
252
+ border: 1px solid #e7e7e7;
253
+ border-radius: 14px;
254
+ padding: 28px;
255
+ display: flex;
256
+ align-items: center;
257
+ gap: 22px;
258
+ }
259
+ .wa-icon {
260
+ width: 54px; height: 54px;
261
+ background: #25d366;
262
+ border-radius: 50%;
263
+ display: flex;
264
+ align-items: center;
265
+ justify-content: center;
266
+ }
267
+ .wa-cta span {
268
+ font-size: 38px;
269
+ color: #3d3d3d;
270
+ }
271
+
272
+ /* Sticky bottom offer bar */
273
+ .sticky-offer {
274
+ position: absolute;
275
+ left: 0;
276
+ right: 0;
277
+ bottom: 88px;
278
+ background: #e5391a;
279
+ color: #fff;
280
+ text-align: center;
281
+ font-weight: 800;
282
+ font-size: 46px;
283
+ padding: 28px 20px;
284
+ }
285
+
286
+ /* Home indicator */
287
+ .home-indicator {
288
+ position: absolute;
289
+ bottom: 24px;
290
+ left: 50%;
291
+ transform: translateX(-50%);
292
+ width: 300px;
293
+ height: 12px;
294
+ background: #000;
295
+ opacity: 0.25;
296
+ border-radius: 8px;
297
+ }
298
+ </style>
299
+ </head>
300
+ <body>
301
+ <div id="render-target">
302
+
303
+ <!-- Status bar -->
304
+ <div class="status-bar">
305
+ 9:03
306
+ <div class="right-icons">
307
+ <!-- wifi -->
308
+ <svg class="icon" viewBox="0 0 24 24">
309
+ <path fill="#fff" d="M12 20l2-2h-4l2 2zm6-6l-1.4 1.4C14.9 12.7 9.1 12.7 7.4 15.4L6 14c3-3 9-3 12 0zM20 10l-1.4 1.4c-4.3-4.3-11.3-4.3-15.6 0L1.6 10c5.1-5.1 15.7-5.1 20.8 0z"/>
310
+ </svg>
311
+ <!-- battery -->
312
+ <svg class="icon" viewBox="0 0 24 24">
313
+ <rect x="2" y="7" width="18" height="10" rx="2" ry="2" fill="#fff"></rect>
314
+ <rect x="4" y="9" width="12" height="6" fill="#8c8c8c"></rect>
315
+ <rect x="20" y="10" width="2" height="4" fill="#fff"></rect>
316
+ </svg>
317
+ </div>
318
+ </div>
319
+
320
+ <!-- App bar -->
321
+ <div class="app-bar">
322
+ <div class="left">
323
+ <!-- Back arrow -->
324
+ <svg class="icon" viewBox="0 0 24 24">
325
+ <path d="M15 18l-6-6 6-6" stroke="#777" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
326
+ </svg>
327
+ </div>
328
+ <div class="right">
329
+ <!-- Heart -->
330
+ <svg class="icon" viewBox="0 0 24 24">
331
+ <path d="M12 21s-7-4.6-9.5-8C-0.2 9.7 2.1 5 6.5 6.2 8 6.6 9.2 7.6 10 8.8 10.8 7.6 12 6.6 13.5 6.2 17.9 5 20.2 9.7 17.5 13c-2.5 3.4-9.5 8-9.5 8z" fill="none" stroke="#8c8c8c" stroke-width="2"/>
332
+ </svg>
333
+ <!-- Share -->
334
+ <svg class="icon" viewBox="0 0 24 24">
335
+ <path d="M18 8a3 3 0 1 0-3-3 3 3 0 0 0 3 3zM6 14a3 3 0 1 0-3-3 3 3 0 0 0 3 3zm12 8a3 3 0 1 0-3-3 3 3 0 0 0 3 3z" fill="none" stroke="#8c8c8c" stroke-width="2"/>
336
+ <path d="M8.7 11.4l6.6-3.8M8.7 12.6l6.6 3.8" stroke="#8c8c8c" stroke-width="2" fill="none"/>
337
+ </svg>
338
+ </div>
339
+ </div>
340
+
341
+ <!-- Tabs -->
342
+ <div class="tabs">
343
+ <div class="tab">COLOURS</div>
344
+ <div class="tab">BROCHURE</div>
345
+ <div class="tab">MILEAGE</div>
346
+ <div class="tab">USER REVIEW</div>
347
+ <div class="tab">EX…</div>
348
+ </div>
349
+
350
+ <!-- Car image -->
351
+ <div class="hero">
352
+ <div class="img-placeholder">[IMG: Red Sedan Car]</div>
353
+ </div>
354
+
355
+ <!-- Quick actions -->
356
+ <div class="quick-actions">
357
+ <div class="qa-item">
358
+ <div class="qa-icon">
359
+ <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" stroke="#bdbdbd" stroke-width="2" fill="none"/></svg>
360
+ </div>
361
+ <span>Colours</span>
362
+ </div>
363
+ <div class="qa-item">
364
+ <div class="qa-icon">
365
+ <svg width="34" height="34" viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="12" rx="2" ry="2" stroke="#bdbdbd" stroke-width="2" fill="none"/></svg>
366
+ </div>
367
+ <span>Images</span>
368
+ </div>
369
+ <div class="qa-item">
370
+ <div class="qa-icon">
371
+ <svg width="34" height="34" viewBox="0 0 24 24"><polygon points="9,8 17,12 9,16" fill="#bdbdbd"/></svg>
372
+ </div>
373
+ <span>Videos</span>
374
+ </div>
375
+ <div class="qa-item">
376
+ <div class="qa-icon">
377
+ <svg width="34" height="34" viewBox="0 0 24 24"><circle cx="12" cy="12" r="9" stroke="#bdbdbd" stroke-width="2" fill="none"/><path d="M12 7v5l4 2" stroke="#bdbdbd" stroke-width="2" fill="none"/></svg>
378
+ </div>
379
+ <span>View</span>
380
+ </div>
381
+ </div>
382
+
383
+ <div class="divider"></div>
384
+
385
+ <!-- Title & rating -->
386
+ <div class="title-wrap">
387
+ <div class="title">Honda City</div>
388
+ <div class="rating-row">
389
+ <div class="stars">
390
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
391
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
392
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
393
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
394
+ <svg class="star" viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z" fill="#9bd8cf"/></svg>
395
+ </div>
396
+ <span class="link">35 Reviews</span>
397
+ <span class="sep">|</span>
398
+ <span class="link">Write Review</span>
399
+ </div>
400
+ </div>
401
+
402
+ <!-- Selectors -->
403
+ <div class="selectors">
404
+ <div class="select-card">
405
+ <div class="sc-label">Version</div>
406
+ <div class="sc-value">VX Petrol MT</div>
407
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" fill="none" stroke="#bdbdbd" stroke-width="2"/></svg>
408
+ </div>
409
+ <div class="select-card">
410
+ <div class="sc-label">City</div>
411
+ <div class="sc-value" style="font-weight:600; color:#4b4b4b;">Show price in my city</div>
412
+ <svg class="chev" viewBox="0 0 24 24"><path d="M9 6l6 6-6 6" fill="none" stroke="#bdbdbd" stroke-width="2"/></svg>
413
+ </div>
414
+ </div>
415
+
416
+ <!-- Price -->
417
+ <div class="price-block">
418
+ <div class="price">Rs. 13.67 Lakh</div>
419
+ <div class="subtext">Avg. Ex-Showroom price</div>
420
+ </div>
421
+
422
+ <!-- EMI Card -->
423
+ <div class="emi-card">
424
+ <div class="emi-row">
425
+ <div class="emi-left">
426
+ <div class="emi-title">Calculate your EMI</div>
427
+ <div class="emi-link">EMI Calculator</div>
428
+ </div>
429
+ <button class="emi-btn">Get EMI Offers</button>
430
+ </div>
431
+ </div>
432
+
433
+ <!-- WhatsApp CTA -->
434
+ <div class="wa-cta">
435
+ <div class="wa-icon">
436
+ <svg width="28" height="28" viewBox="0 0 24 24">
437
+ <path d="M12 3a9 9 0 0 0-7.7 13.7L3 21l4.5-1.2A9 9 0 1 0 12 3z" fill="#fff"/>
438
+ </svg>
439
+ </div>
440
+ <span>Get Price Details on Whatsapp</span>
441
+ </div>
442
+
443
+ <!-- Sticky Offer -->
444
+ <div class="sticky-offer">Get December Offers</div>
445
+
446
+ <!-- Home Indicator -->
447
+ <div class="home-indicator"></div>
448
+ </div>
449
+ </body>
450
+ </html>
code/14703/14703_4.html ADDED
@@ -0,0 +1,297 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>User Reviews - Honda City</title>
7
+ <style>
8
+ :root{
9
+ --teal:#19b7ad;
10
+ --text:#333333;
11
+ --muted:#8c8c8c;
12
+ --light:#f3f3f3;
13
+ --divider:#e6e6e6;
14
+ --blue:#0b76d8;
15
+ --danger:#e53935;
16
+ }
17
+ body{ margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color:var(--text); }
18
+ #render-target{
19
+ position:relative;
20
+ width:1080px; height:2400px;
21
+ overflow:hidden;
22
+ background:#ffffff;
23
+ }
24
+ /* Status bar */
25
+ .status-bar{
26
+ height:130px;
27
+ background:#7a7a7a;
28
+ color:#fff;
29
+ display:flex;
30
+ align-items:center;
31
+ padding:0 40px;
32
+ box-sizing:border-box;
33
+ font-weight:600;
34
+ letter-spacing:1px;
35
+ }
36
+ .status-bar .time{ font-size:42px; }
37
+ .status-icons{ margin-left:auto; display:flex; align-items:center; gap:28px; }
38
+ /* Tabs */
39
+ .tabs{
40
+ height:150px;
41
+ display:flex;
42
+ align-items:flex-end;
43
+ padding:0 40px;
44
+ box-sizing:border-box;
45
+ box-shadow:0 2px 6px rgba(0,0,0,0.08);
46
+ background:#ffffff;
47
+ gap:60px;
48
+ }
49
+ .tab{
50
+ padding:0 6px 26px 6px;
51
+ font-size:40px;
52
+ color:#9aa0a6;
53
+ font-weight:600;
54
+ }
55
+ .tab.active{
56
+ color:var(--teal);
57
+ border-bottom:8px solid var(--teal);
58
+ }
59
+
60
+ .page{
61
+ padding:36px 40px 0 40px;
62
+ }
63
+ h1{
64
+ font-size:56px;
65
+ margin:36px 0 26px 0;
66
+ font-weight:700;
67
+ }
68
+ .summary{
69
+ margin:22px 0;
70
+ padding:30px 30px;
71
+ background:#fafafa;
72
+ border:1px solid var(--divider);
73
+ border-radius:12px;
74
+ display:flex;
75
+ align-items:center;
76
+ gap:22px;
77
+ font-size:44px;
78
+ }
79
+ .summary small{
80
+ color:var(--muted);
81
+ font-size:36px;
82
+ margin-left:16px;
83
+ }
84
+ .summary .sep{
85
+ margin:0 20px;
86
+ color:var(--muted);
87
+ font-size:40px;
88
+ }
89
+
90
+ /* Rating feature grid */
91
+ .features{
92
+ margin-top:26px;
93
+ display:grid;
94
+ grid-template-columns: 1fr 1fr;
95
+ column-gap:80px;
96
+ row-gap:48px;
97
+ }
98
+ .feat{
99
+ display:flex; align-items:center; gap:26px;
100
+ font-size:42px; color:#555;
101
+ }
102
+ .ring{
103
+ width:110px; height:110px; border-radius:50%;
104
+ background:#fff;
105
+ border:10px solid var(--teal);
106
+ display:flex; align-items:center; justify-content:center;
107
+ color:#3a3a3a; font-weight:700; font-size:40px;
108
+ }
109
+
110
+ /* Filter row */
111
+ .filter-row{
112
+ margin:46px -40px 0 -40px;
113
+ padding:34px 40px;
114
+ border-top:1px solid var(--divider);
115
+ border-bottom:1px solid var(--divider);
116
+ display:flex; align-items:center;
117
+ background:#ffffff;
118
+ }
119
+ .filter-row .title{
120
+ font-size:44px; font-weight:600;
121
+ }
122
+ .dropdown{
123
+ margin-left:auto;
124
+ border:1px solid var(--divider);
125
+ padding:22px 28px;
126
+ border-radius:12px;
127
+ display:flex; align-items:center; gap:16px;
128
+ font-size:40px; color:#6b6b6b; background:#fff;
129
+ }
130
+
131
+ /* Review cards */
132
+ .card{
133
+ padding:40px 10px;
134
+ border-bottom:1px solid var(--divider);
135
+ }
136
+ .card h3{
137
+ font-size:52px; margin:0 0 20px 0;
138
+ }
139
+ .stars{ display:flex; gap:10px; margin-bottom:18px; }
140
+ .meta{
141
+ color:#9b9b9b; font-size:36px; margin-bottom:24px;
142
+ }
143
+ .desc{
144
+ color:#666; font-size:42px; line-height:1.5; margin-right:20px;
145
+ }
146
+ .read-more{ color:var(--blue); font-weight:600; margin-top:18px; font-size:40px; }
147
+ .helpful{
148
+ margin-top:34px; color:#777; font-size:38px; display:flex; align-items:center;
149
+ }
150
+ .actions{ margin-left:auto; display:flex; align-items:center; gap:34px; color:#777; font-size:36px; }
151
+ .count{ margin-left:10px; }
152
+ /* Bottom CTA */
153
+ .cta-bar{
154
+ position:absolute; left:0; right:0; bottom:70px;
155
+ height:150px; display:flex; box-shadow:0 -2px 8px rgba(0,0,0,0.08);
156
+ border-top:1px solid var(--divider);
157
+ }
158
+ .cta-left, .cta-right{ flex:1; display:flex; align-items:center; justify-content:center; font-size:44px; font-weight:700; }
159
+ .cta-left{ background:#ffffff; color:var(--teal); }
160
+ .cta-right{ background:var(--danger); color:#fff; }
161
+
162
+ /* Home indicator */
163
+ .home-indicator{
164
+ position:absolute; bottom:18px; left:50%; transform:translateX(-50%);
165
+ width:340px; height:14px; background:#000; opacity:0.2; border-radius:10px;
166
+ }
167
+
168
+ /* SVG helpers */
169
+ .icon{
170
+ width:44px; height:44px;
171
+ }
172
+ .star-icon{ width:42px; height:42px; fill:var(--teal); }
173
+ .muted{ color:var(--muted); }
174
+ </style>
175
+ </head>
176
+ <body>
177
+ <div id="render-target">
178
+ <!-- Status bar -->
179
+ <div class="status-bar">
180
+ <div class="time">9:04</div>
181
+ <div class="status-icons">
182
+ <!-- simple signal icon -->
183
+ <svg class="icon" viewBox="0 0 24 24" fill="#fff"><path d="M2 18h2v2H2v-2zm4-4h2v6H6v-6zm4-4h2v10h-2V10zm4-4h2v14h-2V6zm4-2h2v16h-2V4z"></path></svg>
184
+ <!-- battery -->
185
+ <svg class="icon" viewBox="0 0 28 16"><rect x="1" y="3" width="22" height="10" rx="2" fill="none" stroke="#fff" stroke-width="2"/><rect x="3" y="5" width="18" height="6" fill="#fff"/><rect x="24" y="6" width="3" height="4" rx="1" fill="#fff"/></svg>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- Tabs -->
190
+ <div class="tabs">
191
+ <div class="tab active">USER REVIEW</div>
192
+ <div class="tab">EXPERT REVIEW</div>
193
+ <div class="tab">VIDEOS</div>
194
+ <div class="tab">NEWS</div>
195
+ </div>
196
+
197
+ <div class="page">
198
+ <h1>User Reviews - Honda City</h1>
199
+
200
+ <div class="summary">
201
+ <!-- star icon -->
202
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
203
+ <div><strong>4.4</strong>/5 <small>(94 Ratings)</small><span class="sep">|</span><small>35 Reviews</small></div>
204
+ </div>
205
+
206
+ <div class="features">
207
+ <div class="feat">
208
+ <div class="ring">4.6</div>
209
+ <div>Exterior</div>
210
+ </div>
211
+ <div class="feat">
212
+ <div class="ring">4.7</div>
213
+ <div>Comfort</div>
214
+ </div>
215
+ <div class="feat">
216
+ <div class="ring">4.5</div>
217
+ <div>Performance</div>
218
+ </div>
219
+ <div class="feat">
220
+ <div class="ring">4.1</div>
221
+ <div>Fuel Economy</div>
222
+ </div>
223
+ <div class="feat">
224
+ <div class="ring">4.4</div>
225
+ <div>Value For Money</div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+
230
+ <div class="filter-row">
231
+ <div class="title">All Reviews (35)</div>
232
+ <div class="dropdown">
233
+ Latest
234
+ <svg class="icon" viewBox="0 0 24 24" fill="#7a7a7a"><path d="M7 10l5 5 5-5H7z"/></svg>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- Review card 1 -->
239
+ <div class="page" style="padding-top:28px;">
240
+ <div class="card">
241
+ <h3>Best Sedan Car In India</h3>
242
+ <div class="stars">
243
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
244
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
245
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
246
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
247
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
248
+ </div>
249
+ <div class="meta">15 days ago | Asis Bhue</div>
250
+ <div class="desc">
251
+ A New Perfect Sedan with Value For Money and Spacious Cabins. Driving an ivtec is just adds another level of an e...
252
+ </div>
253
+ <div class="read-more">Read More</div>
254
+
255
+ <div class="helpful">
256
+ Was this review helpful?
257
+ <div class="actions">
258
+ <span>
259
+ <svg class="icon" viewBox="0 0 24 24" fill="#7a7a7a"><path d="M9 21H5a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h4v10zM22 10a2 2 0 0 0-2-2h-6l1-4-1-2-5 6v11h9a2 2 0 0 0 2-2v-7z"/></svg>
260
+ <span class="count">1</span>
261
+ </span>
262
+ <span>
263
+ <svg class="icon" viewBox="0 0 24 24" fill="#7a7a7a"><path d="M9 3H5a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4V3zM22 14a2 2 0 0 1-2 2h-6l1 4-1 2-5-6V5h9a2 2 0 0 1 2 2v7z"/></svg>
264
+ <span class="count">1</span>
265
+ </span>
266
+ </div>
267
+ </div>
268
+ </div>
269
+
270
+ <!-- Review card 2 -->
271
+ <div class="card" style="border-bottom:none;">
272
+ <h3>Honda City</h3>
273
+ <div class="stars">
274
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
275
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
276
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
277
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
278
+ <svg class="star-icon" viewBox="0 0 24 24"><path d="M12 2l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 8.9 9 8l3-6z"/></svg>
279
+ </div>
280
+ <div class="meta">20 days ago | Meera</div>
281
+ <div class="desc">
282
+ Amazing driving experience, perfect and comfortable for long journeys, good performance. The Interior and ex...
283
+ </div>
284
+ <div class="read-more">Read More</div>
285
+ </div>
286
+ </div>
287
+
288
+ <!-- Bottom CTA -->
289
+ <div class="cta-bar">
290
+ <div class="cta-left">Contact Dealer</div>
291
+ <div class="cta-right">Get December Offers</div>
292
+ </div>
293
+
294
+ <div class="home-indicator"></div>
295
+ </div>
296
+ </body>
297
+ </html>
code/14704/14704_0.html ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>New voice note UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: #1f2430; /* dark app background */
15
+ color: #E9EEF6;
16
+ font-family: "Roboto", "Inter", "Segoe UI", Arial, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 24px;
23
+ left: 24px;
24
+ right: 24px;
25
+ height: 72px;
26
+ color: #e9eef6;
27
+ }
28
+ .status-bar .time {
29
+ font-size: 40px;
30
+ line-height: 72px;
31
+ font-weight: 500;
32
+ letter-spacing: 0.5px;
33
+ }
34
+ .status-icons {
35
+ position: absolute;
36
+ right: 0;
37
+ top: 0;
38
+ height: 72px;
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 28px;
42
+ }
43
+ .status-icons svg { width: 44px; height: 44px; fill: none; stroke: #e9eef6; stroke-width: 3; }
44
+
45
+ /* App bar */
46
+ .app-bar {
47
+ position: absolute;
48
+ top: 120px;
49
+ left: 48px;
50
+ right: 48px;
51
+ }
52
+ .title {
53
+ font-size: 72px;
54
+ font-weight: 600;
55
+ color: #E9EEF6;
56
+ margin-bottom: 36px;
57
+ }
58
+ .app-actions {
59
+ position: absolute;
60
+ right: 0;
61
+ top: 12px;
62
+ display: flex;
63
+ gap: 36px;
64
+ align-items: center;
65
+ }
66
+ .app-actions svg { width: 48px; height: 48px; stroke: #E9EEF6; fill: none; stroke-width: 3; }
67
+
68
+ /* Tabs */
69
+ .tabs {
70
+ display: flex;
71
+ gap: 72px;
72
+ align-items: center;
73
+ margin-top: 14px;
74
+ }
75
+ .tab {
76
+ font-size: 40px;
77
+ letter-spacing: 2px;
78
+ text-transform: uppercase;
79
+ color: #6e7a88;
80
+ font-weight: 600;
81
+ }
82
+ .tab.active {
83
+ color: #2F95E8;
84
+ }
85
+ .active-underline {
86
+ margin-top: 20px;
87
+ width: 560px;
88
+ height: 6px;
89
+ background: #2F95E8;
90
+ border-radius: 3px;
91
+ }
92
+
93
+ /* Content area */
94
+ .content {
95
+ position: absolute;
96
+ left: 80px;
97
+ right: 80px;
98
+ top: 860px;
99
+ text-align: center;
100
+ }
101
+ .record-name {
102
+ font-size: 84px;
103
+ color: #E9EEF6;
104
+ font-style: italic;
105
+ font-weight: 500;
106
+ }
107
+ .record-name .under {
108
+ border-bottom: 4px solid #A7AFB9;
109
+ padding-bottom: 8px;
110
+ }
111
+ .record-name .ext { color: #B9C1CC; }
112
+ .subtitle {
113
+ margin-top: 40px;
114
+ font-size: 58px;
115
+ color: #7d8896;
116
+ font-weight: 500;
117
+ }
118
+
119
+ /* Bottom area */
120
+ .bottom-divider {
121
+ position: absolute;
122
+ left: 48px;
123
+ right: 48px;
124
+ top: 1600px;
125
+ height: 4px;
126
+ background: #2F95E8;
127
+ opacity: 0.6;
128
+ }
129
+ .storage-text {
130
+ position: absolute;
131
+ width: 100%;
132
+ top: 1710px;
133
+ text-align: center;
134
+ font-size: 40px;
135
+ color: #93A0AE;
136
+ }
137
+
138
+ .mic-button {
139
+ position: absolute;
140
+ left: 50%;
141
+ transform: translateX(-50%);
142
+ top: 1890px;
143
+ width: 168px;
144
+ height: 168px;
145
+ background: #E53935;
146
+ border-radius: 50%;
147
+ box-shadow: 0 16px 26px rgba(0,0,0,0.45);
148
+ display: flex;
149
+ align-items: center;
150
+ justify-content: center;
151
+ }
152
+ .mic-button svg { width: 84px; height: 84px; fill: none; stroke: #ffffff; stroke-width: 6; }
153
+
154
+ .home-indicator {
155
+ position: absolute;
156
+ bottom: 44px;
157
+ left: 50%;
158
+ transform: translateX(-50%);
159
+ width: 300px;
160
+ height: 10px;
161
+ background: #b9c1cc;
162
+ opacity: 0.55;
163
+ border-radius: 6px;
164
+ }
165
+ </style>
166
+ </head>
167
+ <body>
168
+ <div id="render-target">
169
+
170
+ <!-- Status Bar -->
171
+ <div class="status-bar">
172
+ <span class="time">1:29</span>
173
+ <div class="status-icons">
174
+ <!-- Wi-Fi icon -->
175
+ <svg viewBox="0 0 24 24">
176
+ <path d="M2 8c5-4 15-4 20 0"></path>
177
+ <path d="M5 11c4-3 10-3 14 0"></path>
178
+ <path d="M8 14c3-2 5-2 8 0"></path>
179
+ <circle cx="12" cy="18" r="1.8" fill="#e9eef6" stroke="none"></circle>
180
+ </svg>
181
+ <!-- Battery icon -->
182
+ <svg viewBox="0 0 28 18">
183
+ <rect x="1.5" y="2.5" width="22" height="13" rx="2"></rect>
184
+ <rect x="24" y="6" width="3" height="5" rx="1" fill="#e9eef6" stroke="none"></rect>
185
+ </svg>
186
+ </div>
187
+ </div>
188
+
189
+ <!-- App Bar -->
190
+ <div class="app-bar">
191
+ <div class="title">New voice note</div>
192
+
193
+ <div class="app-actions">
194
+ <!-- Sliders/settings icon -->
195
+ <svg viewBox="0 0 24 24">
196
+ <circle cx="7" cy="6" r="2" fill="#E9EEF6" stroke="none"></circle>
197
+ <line x1="2" y1="6" x2="24" y2="6"></line>
198
+ <circle cx="14" cy="12" r="2" fill="#E9EEF6" stroke="none"></circle>
199
+ <line x1="2" y1="12" x2="24" y2="12"></line>
200
+ <circle cx="10" cy="18" r="2" fill="#E9EEF6" stroke="none"></circle>
201
+ <line x1="2" y1="18" x2="24" y2="18"></line>
202
+ </svg>
203
+ <!-- More (vertical dots) icon -->
204
+ <svg viewBox="0 0 24 24">
205
+ <circle cx="12" cy="5" r="2" fill="#E9EEF6" stroke="none"></circle>
206
+ <circle cx="12" cy="12" r="2" fill="#E9EEF6" stroke="none"></circle>
207
+ <circle cx="12" cy="19" r="2" fill="#E9EEF6" stroke="none"></circle>
208
+ </svg>
209
+ </div>
210
+
211
+ <!-- Tabs -->
212
+ <div class="tabs">
213
+ <span class="tab active">RECORD</span>
214
+ <span class="tab">LISTEN</span>
215
+ </div>
216
+ <div class="active-underline"></div>
217
+ </div>
218
+
219
+ <!-- Content -->
220
+ <div class="content">
221
+ <div class="record-name">
222
+ <span class="under">My recording 3</span><span class="ext"> .m4a</span>
223
+ </div>
224
+ <div class="subtitle">is ready to start</div>
225
+ </div>
226
+
227
+ <!-- Bottom info and action -->
228
+ <div class="bottom-divider"></div>
229
+ <div class="storage-text">~2449h left on storage</div>
230
+
231
+ <div class="mic-button">
232
+ <!-- Microphone icon -->
233
+ <svg viewBox="0 0 24 24">
234
+ <rect x="9" y="4" width="6" height="10" rx="3"></rect>
235
+ <path d="M5 11c0 4 3 6 7 6s7-2 7-6"></path>
236
+ <path d="M12 17v4"></path>
237
+ <path d="M9 21h6"></path>
238
+ </svg>
239
+ </div>
240
+
241
+ <!-- Home indicator -->
242
+ <div class="home-indicator"></div>
243
+ </div>
244
+ </body>
245
+ </html>
code/14704/14704_1.html ADDED
@@ -0,0 +1,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <title>Voice Recorder UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #21262D; /* dark app background */
13
+ color: #E8ECEF; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
14
+ }
15
+
16
+ /* Status bar */
17
+ .status-bar {
18
+ position: absolute; top: 0; left: 0; right: 0;
19
+ height: 96px; background: #2A3036;
20
+ display: flex; align-items: center; justify-content: space-between;
21
+ padding: 0 32px; color: #CFD8DC; font-size: 36px; letter-spacing: 0.2px;
22
+ }
23
+ .sb-icons { display: flex; align-items: center; gap: 28px; }
24
+ .sb-icons svg { width: 40px; height: 40px; fill: none; stroke: #CFD8DC; stroke-width: 4; opacity: 0.9; }
25
+
26
+ /* Header / title area */
27
+ .app-header {
28
+ position: absolute; top: 96px; left: 0; right: 0;
29
+ background: #2A3036; padding: 22px 32px 0;
30
+ box-shadow: 0 1px 0 #2C3138 inset;
31
+ }
32
+ .title-row { display: flex; align-items: flex-start; justify-content: space-between; }
33
+ .heading {
34
+ font-size: 64px; font-weight: 500; color: #EDEFF5;
35
+ margin: 10px 0 12px;
36
+ }
37
+ .header-icons { display: flex; align-items: center; gap: 28px; margin-top: 18px; }
38
+ .header-icons svg { width: 48px; height: 48px; stroke: #BFC7CD; stroke-width: 5; fill: none; }
39
+
40
+ .tabs {
41
+ display: flex; gap: 40px; padding: 10px 0 24px; position: relative;
42
+ }
43
+ .tab { font-size: 30px; letter-spacing: 2px; color: #8A95A1; }
44
+ .tab.active { color: #45A8F6; font-weight: 600; }
45
+ .active-underline {
46
+ position: absolute; bottom: 0; left: 520px; width: 280px; height: 6px; background: #2EA0FF;
47
+ border-radius: 3px;
48
+ }
49
+
50
+ /* List */
51
+ .list {
52
+ position: absolute; top: 300px; left: 0; right: 0;
53
+ padding: 0 32px;
54
+ }
55
+ .item {
56
+ display: flex; align-items: center; justify-content: space-between;
57
+ padding: 34px 0; border-top: 1px solid #2C3138;
58
+ }
59
+ .item:first-child { border-top: none; }
60
+ .left { max-width: 660px; }
61
+ .title { font-size: 42px; color: #EDEFF5; margin-bottom: 8px; }
62
+ .subtitle { font-size: 30px; color: #9BA5AF; }
63
+ .right { display: flex; align-items: flex-end; gap: 22px; }
64
+ .metrics { text-align: right; min-width: 160px; }
65
+ .duration { font-size: 36px; color: #D7DDE2; }
66
+ .size { font-size: 28px; color: #92A0AB; margin-top: 8px; }
67
+ .overflow {
68
+ width: 40px; height: 80px; display: flex; align-items: center; justify-content: center;
69
+ }
70
+ .overflow svg { width: 10px; height: 44px; fill: #9BA5AF; }
71
+
72
+ /* Player */
73
+ .player {
74
+ position: absolute; left: 0; right: 0; bottom: 120px;
75
+ background: #2A3036; padding: 24px 32px 38px;
76
+ box-shadow: 0 -1px 0 #2C3138 inset;
77
+ }
78
+ .progress-row {
79
+ display: grid; grid-template-columns: 160px 1fr 160px; align-items: center;
80
+ gap: 24px; padding: 10px 0 22px;
81
+ }
82
+ .timer-box {
83
+ display: inline-flex; align-items: center; justify-content: center;
84
+ width: 140px; height: 64px; border-radius: 12px;
85
+ border: 2px solid #3A4A58; color: #9FC2E7; font-size: 30px; letter-spacing: 1px;
86
+ }
87
+ .timer-right { text-align: right; font-size: 30px; color: #9FC2E7; }
88
+ .progress {
89
+ position: relative; height: 16px; background: transparent;
90
+ }
91
+ .track {
92
+ position: absolute; top: 50%; left: 0; right: 0; height: 6px;
93
+ background: #34424E; transform: translateY(-50%); border-radius: 3px;
94
+ }
95
+ .thumb {
96
+ position: absolute; top: 50%; left: 180px; width: 26px; height: 26px;
97
+ background: #58A7E8; border-radius: 50%; transform: translate(-50%, -50%);
98
+ box-shadow: 0 0 0 4px rgba(88,167,232,0.25);
99
+ }
100
+
101
+ .controls {
102
+ display: flex; align-items: center; justify-content: space-between;
103
+ padding: 22px 120px 10px;
104
+ }
105
+ .ctrl-group { display: flex; align-items: center; gap: 60px; }
106
+ .ctrl { opacity: 0.85; }
107
+ .ctrl svg { width: 56px; height: 56px; fill: none; stroke: #71B3EA; stroke-width: 6; }
108
+ .play {
109
+ width: 170px; height: 170px; background: #58A7E8; border-radius: 50%;
110
+ display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.35);
111
+ }
112
+ .play svg { width: 80px; height: 80px; fill: #FFFFFF; stroke: none; }
113
+ .speed { font-size: 36px; color: #71B3EA; }
114
+
115
+ /* Gesture bar */
116
+ .gesture {
117
+ position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
118
+ width: 300px; height: 12px; background: #E6E6E6; border-radius: 6px; opacity: 0.8;
119
+ }
120
+ </style>
121
+ </head>
122
+ <body>
123
+ <div id="render-target">
124
+
125
+ <!-- Status bar -->
126
+ <div class="status-bar">
127
+ <div>1:30</div>
128
+ <div class="sb-icons">
129
+ <!-- Simple Wi-Fi -->
130
+ <svg viewBox="0 0 24 24">
131
+ <path d="M2 9c5-4 15-4 20 0" />
132
+ <path d="M5 12c3-3 11-3 14 0" />
133
+ <path d="M9 15c2-2 6-2 8 0" />
134
+ <circle cx="12" cy="18" r="1.5" fill="#CFD8DC"></circle>
135
+ </svg>
136
+ <!-- Battery -->
137
+ <svg viewBox="0 0 28 24">
138
+ <rect x="2" y="6" width="20" height="12" rx="2" />
139
+ <rect x="23" y="10" width="3" height="4" rx="1" />
140
+ <rect x="4" y="8" width="14" height="8" fill="#CFD8DC" stroke="none"></rect>
141
+ </svg>
142
+ </div>
143
+ </div>
144
+
145
+ <!-- Header -->
146
+ <div class="app-header">
147
+ <div class="title-row">
148
+ <div class="heading">2 recordings</div>
149
+ <div class="header-icons">
150
+ <!-- Search -->
151
+ <svg viewBox="0 0 24 24">
152
+ <circle cx="10" cy="10" r="6"></circle>
153
+ <path d="M15 15 L22 22"></path>
154
+ </svg>
155
+ <!-- Sort -->
156
+ <svg viewBox="0 0 24 24">
157
+ <path d="M4 6 H20"></path>
158
+ <path d="M8 12 H20"></path>
159
+ <path d="M12 18 H20"></path>
160
+ </svg>
161
+ <!-- More (vertical dots) -->
162
+ <svg viewBox="0 0 6 24">
163
+ <circle cx="3" cy="4" r="2" fill="#BFC7CD" stroke="none"></circle>
164
+ <circle cx="3" cy="12" r="2" fill="#BFC7CD" stroke="none"></circle>
165
+ <circle cx="3" cy="20" r="2" fill="#BFC7CD" stroke="none"></circle>
166
+ </svg>
167
+ </div>
168
+ </div>
169
+
170
+ <div class="tabs">
171
+ <div class="tab">RECORD</div>
172
+ <div class="tab active">LISTEN</div>
173
+ <div class="active-underline"></div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Recordings list -->
178
+ <div class="list">
179
+ <div class="item">
180
+ <div class="left">
181
+ <div class="title">My recording 2.m4a</div>
182
+ <div class="subtitle">December 14, 1:27 PM</div>
183
+ </div>
184
+ <div class="right">
185
+ <div class="metrics">
186
+ <div class="duration">01:50</div>
187
+ <div class="size">1.3 MB</div>
188
+ </div>
189
+ <div class="overflow">
190
+ <svg viewBox="0 0 6 24">
191
+ <circle cx="3" cy="4" r="2"></circle>
192
+ <circle cx="3" cy="12" r="2"></circle>
193
+ <circle cx="3" cy="20" r="2"></circle>
194
+ </svg>
195
+ </div>
196
+ </div>
197
+ </div>
198
+
199
+ <div class="item">
200
+ <div class="left">
201
+ <div class="title">Speech.m4a</div>
202
+ <div class="subtitle">December 14, 12:32 PM</div>
203
+ </div>
204
+ <div class="right">
205
+ <div class="metrics">
206
+ <div class="duration">00:04</div>
207
+ <div class="size">0.1 MB</div>
208
+ </div>
209
+ <div class="overflow">
210
+ <svg viewBox="0 0 6 24">
211
+ <circle cx="3" cy="4" r="2"></circle>
212
+ <circle cx="3" cy="12" r="2"></circle>
213
+ <circle cx="3" cy="20" r="2"></circle>
214
+ </svg>
215
+ </div>
216
+ </div>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- Player -->
221
+ <div class="player">
222
+ <div class="progress-row">
223
+ <div class="timer-box">00:00</div>
224
+ <div class="progress">
225
+ <div class="track"></div>
226
+ <div class="thumb"></div>
227
+ </div>
228
+ <div class="timer-right">00:00</div>
229
+ </div>
230
+
231
+ <div class="controls">
232
+ <div class="ctrl-group">
233
+ <!-- Loop -->
234
+ <div class="ctrl">
235
+ <svg viewBox="0 0 24 24">
236
+ <path d="M7 6 H18 L16 4" />
237
+ <path d="M17 18 H6 L8 20" />
238
+ <path d="M6 10 C6 7, 9 6, 12 6" />
239
+ <path d="M18 14 C18 17, 15 18, 12 18" />
240
+ </svg>
241
+ </div>
242
+ <!-- Rewind -->
243
+ <div class="ctrl">
244
+ <svg viewBox="0 0 24 24">
245
+ <path d="M12 6 L4 12 L12 18 Z" fill="#71B3EA" stroke="none"></path>
246
+ <path d="M20 6 L12 12 L20 18 Z" fill="#71B3EA" stroke="none"></path>
247
+ </svg>
248
+ </div>
249
+ </div>
250
+
251
+ <!-- Play big -->
252
+ <div class="play">
253
+ <svg viewBox="0 0 24 24">
254
+ <path d="M8 5 L19 12 L8 19 Z"></path>
255
+ </svg>
256
+ </div>
257
+
258
+ <div class="ctrl-group">
259
+ <!-- Forward -->
260
+ <div class="ctrl">
261
+ <svg viewBox="0 0 24 24">
262
+ <path d="M12 6 L20 12 L12 18 Z" fill="#71B3EA" stroke="none"></path>
263
+ <path d="M4 6 L12 12 L4 18 Z" fill="#71B3EA" stroke="none"></path>
264
+ </svg>
265
+ </div>
266
+ <div class="speed">1x</div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+
271
+ <!-- Gesture bar -->
272
+ <div class="gesture"></div>
273
+
274
+ </div>
275
+ </body>
276
+ </html>
code/14704/14704_2.html ADDED
@@ -0,0 +1,288 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Audio Recorder - List</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #111820; color: #E9EEF4;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 110px;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 40px; color: #E9EEF4; font-size: 38px; letter-spacing: 0.5px;
19
+ }
20
+ .status-icons { display: flex; align-items: center; gap: 28px; opacity: 0.95; }
21
+
22
+ /* Header */
23
+ .header {
24
+ padding: 30px 60px 10px 60px;
25
+ }
26
+ .title {
27
+ font-size: 68px; font-weight: 600; margin: 30px 0 26px 0;
28
+ }
29
+
30
+ /* Tabs + actions */
31
+ .tabs-actions {
32
+ display: flex; align-items: center; justify-content: space-between;
33
+ padding-right: 40px;
34
+ }
35
+ .tabs {
36
+ display: flex; gap: 50px; align-items: flex-end; padding-left: 4px;
37
+ }
38
+ .tab {
39
+ font-size: 34px; letter-spacing: 2px; color: #7C8895; font-weight: 700;
40
+ }
41
+ .tab.active { color: #3CA1F5; }
42
+ .tab-underline {
43
+ width: 420px; height: 6px; background: #2D3A45; margin-top: 18px; position: relative;
44
+ }
45
+ .tab-underline .active-line {
46
+ position: absolute; left: 300px; width: 220px; height: 6px; background: #3CA1F5;
47
+ }
48
+
49
+ .actions { display: flex; align-items: center; gap: 36px; }
50
+ .icon-btn { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; }
51
+ .icon { width: 44px; height: 44px; fill: none; stroke: #C9D3DC; stroke-width: 5; }
52
+
53
+ /* List area */
54
+ .list {
55
+ margin-top: 40px;
56
+ border-top: 1px solid #26313A;
57
+ }
58
+ .item {
59
+ padding: 38px 60px;
60
+ border-bottom: 1px solid #1D2730;
61
+ display: flex; align-items: flex-start; justify-content: space-between;
62
+ }
63
+ .item .left .name { font-size: 40px; margin-bottom: 14px; }
64
+ .item .left .meta { font-size: 30px; color: #8C97A3; }
65
+ .item .right { text-align: right; display: flex; align-items: flex-start; gap: 26px; }
66
+ .item .right .stats { margin-right: 10px; }
67
+ .item .right .stats .dur { font-size: 30px; color: #E9EEF4; }
68
+ .item .right .stats .size { font-size: 28px; color: #8C97A3; margin-top: 10px; }
69
+ .kebab { width: 40px; height: 40px; }
70
+ .kebab svg { fill: #C9D3DC; }
71
+
72
+ /* Context menu */
73
+ .menu {
74
+ position: absolute; right: 60px; top: 780px; width: 480px;
75
+ background: #1E2730; border-radius: 18px; box-shadow: 0 14px 24px rgba(0,0,0,0.45);
76
+ border: 1px solid #2A3742;
77
+ }
78
+ .menu .row {
79
+ padding: 28px 32px; font-size: 34px; color: #D7E2EA; border-bottom: 1px solid #2A3742;
80
+ }
81
+ .menu .row:last-child { border-bottom: none; }
82
+ .menu .row.muted { color: #AFC4D3; font-style: italic; }
83
+ .menu .section-divider { height: 1px; background: #2A3742; margin: 4px 0; }
84
+
85
+ /* Player */
86
+ .player {
87
+ position: absolute; left: 0; right: 0; bottom: 120px;
88
+ height: 320px; background: #172028; border-top: 1px solid #24303A;
89
+ padding: 28px 36px;
90
+ }
91
+ .timeline {
92
+ display: flex; align-items: center; justify-content: space-between; color: #8FBCE6;
93
+ padding: 24px 18px 8px 18px;
94
+ }
95
+ .time { font-size: 30px; padding: 8px 20px; border: 2px solid #3CA1F5; border-radius: 12px; }
96
+ .bar {
97
+ flex: 1; height: 6px; background: #2B3A46; margin: 0 24px; position: relative; border-radius: 3px;
98
+ }
99
+ .bar .progress { position: absolute; left: 0; top: 0; height: 6px; width: 12%; background: #3CA1F5; border-radius: 3px; }
100
+ .bar .thumb {
101
+ position: absolute; left: 12%; top: -8px; width: 22px; height: 22px; background: #66B8FF;
102
+ border-radius: 50%; box-shadow: 0 0 0 3px rgba(60,161,245,0.35);
103
+ }
104
+
105
+ .controls {
106
+ margin-top: 22px;
107
+ display: flex; align-items: center; justify-content: space-between; padding: 0 80px;
108
+ }
109
+ .ctrl { color: #86A7C0; font-size: 32px; display: flex; align-items: center; gap: 14px; }
110
+ .play-btn {
111
+ width: 160px; height: 160px; border-radius: 50%; background: #5CB3FF;
112
+ display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 18px rgba(0,0,0,0.35);
113
+ }
114
+ .play-btn svg { width: 70px; height: 70px; fill: #ffffff; }
115
+
116
+ /* Gesture bar */
117
+ .gesture {
118
+ position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
119
+ width: 360px; height: 12px; background: #C8CDD2; border-radius: 12px; opacity: 0.8;
120
+ }
121
+ </style>
122
+ </head>
123
+ <body>
124
+ <div id="render-target">
125
+
126
+ <!-- Status Bar -->
127
+ <div class="status-bar">
128
+ <div>1:31</div>
129
+ <div class="status-icons">
130
+ <!-- simple wifi icon -->
131
+ <svg class="icon" viewBox="0 0 24 24">
132
+ <path d="M2 8c5-4 15-4 20 0"></path>
133
+ <path d="M5 11c4-3 10-3 14 0"></path>
134
+ <path d="M8 14c3-2 5-2 8 0"></path>
135
+ <circle cx="12" cy="18" r="1.8" fill="#C9D3DC" stroke="none"></circle>
136
+ </svg>
137
+ <!-- battery -->
138
+ <svg class="icon" viewBox="0 0 28 24">
139
+ <rect x="2" y="6" width="18" height="12" rx="2" stroke="#C9D3DC"></rect>
140
+ <rect x="22" y="10" width="4" height="4" rx="1" stroke="#C9D3DC"></rect>
141
+ <rect x="5" y="8" width="12" height="8" fill="#C9D3DC" stroke="none"></rect>
142
+ </svg>
143
+ </div>
144
+ </div>
145
+
146
+ <!-- Header -->
147
+ <div class="header">
148
+ <div class="title">2 recordings</div>
149
+
150
+ <div class="tabs-actions">
151
+ <div>
152
+ <div class="tabs">
153
+ <div class="tab">RECORD</div>
154
+ <div class="tab active">LISTEN</div>
155
+ </div>
156
+ <div class="tab-underline"><div class="active-line"></div></div>
157
+ </div>
158
+
159
+ <div class="actions">
160
+ <!-- Search -->
161
+ <div class="icon-btn">
162
+ <svg class="icon" viewBox="0 0 24 24">
163
+ <circle cx="10" cy="10" r="6"></circle>
164
+ <line x1="15" y1="15" x2="22" y2="22"></line>
165
+ </svg>
166
+ </div>
167
+ <!-- Filter -->
168
+ <div class="icon-btn">
169
+ <svg class="icon" viewBox="0 0 24 24">
170
+ <line x1="4" y1="6" x2="20" y2="6"></line>
171
+ <circle cx="9" cy="6" r="2.5" fill="#C9D3DC" stroke="none"></circle>
172
+ <line x1="4" y1="12" x2="20" y2="12"></line>
173
+ <circle cx="15" cy="12" r="2.5" fill="#C9D3DC" stroke="none"></circle>
174
+ <line x1="4" y1="18" x2="20" y2="18"></line>
175
+ <circle cx="12" cy="18" r="2.5" fill="#C9D3DC" stroke="none"></circle>
176
+ </svg>
177
+ </div>
178
+ <!-- More (kebab) -->
179
+ <div class="icon-btn">
180
+ <svg class="icon" viewBox="0 0 24 24">
181
+ <circle cx="12" cy="5" r="2.2" fill="#C9D3DC" stroke="none"></circle>
182
+ <circle cx="12" cy="12" r="2.2" fill="#C9D3DC" stroke="none"></circle>
183
+ <circle cx="12" cy="19" r="2.2" fill="#C9D3DC" stroke="none"></circle>
184
+ </svg>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- List -->
191
+ <div class="list">
192
+ <!-- Item 1 -->
193
+ <div class="item">
194
+ <div class="left">
195
+ <div class="name">My recording 2.m4a</div>
196
+ <div class="meta">December 14, 1:27 PM</div>
197
+ </div>
198
+ <div class="right">
199
+ <div class="stats">
200
+ <div class="dur">01:50</div>
201
+ <div class="size">1.3 MB</div>
202
+ </div>
203
+ <div class="kebab">
204
+ <svg viewBox="0 0 24 24">
205
+ <circle cx="12" cy="5" r="2.3" />
206
+ <circle cx="12" cy="12" r="2.3" />
207
+ <circle cx="12" cy="19" r="2.3" />
208
+ </svg>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ <!-- Item 2 -->
214
+ <div class="item">
215
+ <div class="left">
216
+ <div class="name">Speech.m4a</div>
217
+ <div class="meta">December 14, 12:32 PM</div>
218
+ </div>
219
+ <div class="right">
220
+ <!-- empty right area to match screenshot -->
221
+ </div>
222
+ </div>
223
+ </div>
224
+
225
+ <!-- Context menu for item 2 -->
226
+ <div class="menu">
227
+ <div class="row">Share</div>
228
+ <div class="row">Delete</div>
229
+ <div class="row">Rename</div>
230
+ <div class="row">Open with…</div>
231
+ <div class="section-divider"></div>
232
+ <div class="row muted">Edit</div>
233
+ <div class="row muted">Make video</div>
234
+ <div class="row">Set as ringtone</div>
235
+ </div>
236
+
237
+ <!-- Player -->
238
+ <div class="player">
239
+ <div class="timeline">
240
+ <div class="time">00:00</div>
241
+ <div class="bar">
242
+ <div class="progress"></div>
243
+ <div class="thumb"></div>
244
+ </div>
245
+ <div class="time" style="border-color:#2E82C7;color:#89B9E5;">00:00</div>
246
+ </div>
247
+
248
+ <div class="controls">
249
+ <!-- Repeat -->
250
+ <div class="ctrl">
251
+ <svg width="44" height="44" viewBox="0 0 24 24" stroke="#86A7C0" fill="none" stroke-width="2">
252
+ <path d="M4 7h10l-2-2M20 17H10l2 2"></path>
253
+ <path d="M4 7v6M20 17v-6"></path>
254
+ </svg>
255
+ </div>
256
+ <!-- Rewind -->
257
+ <div class="ctrl">
258
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="#86A7C0">
259
+ <polygon points="12,6 4,12 12,18"></polygon>
260
+ <polygon points="20,6 12,12 20,18"></polygon>
261
+ </svg>
262
+ </div>
263
+
264
+ <!-- Play -->
265
+ <div class="play-btn">
266
+ <svg viewBox="0 0 100 100">
267
+ <polygon points="36,26 78,50 36,74"></polygon>
268
+ </svg>
269
+ </div>
270
+
271
+ <!-- Forward -->
272
+ <div class="ctrl">
273
+ <svg width="54" height="54" viewBox="0 0 24 24" fill="#86A7C0">
274
+ <polygon points="12,6 20,12 12,18"></polygon>
275
+ <polygon points="4,6 12,12 4,18"></polygon>
276
+ </svg>
277
+ </div>
278
+ <!-- Speed -->
279
+ <div class="ctrl" style="color:#89B9E5;">1x</div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Gesture bar -->
284
+ <div class="gesture"></div>
285
+
286
+ </div>
287
+ </body>
288
+ </html>
code/14704/14704_3.html ADDED
@@ -0,0 +1,422 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Audio Recorder - List</title>
6
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #121415;
15
+ color: #ECEFF1;
16
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ right: 0;
25
+ height: 96px;
26
+ padding: 0 36px;
27
+ display: flex;
28
+ align-items: center;
29
+ justify-content: space-between;
30
+ color: #B0BEC5;
31
+ font-size: 34px;
32
+ letter-spacing: 0.5px;
33
+ }
34
+ .status-right {
35
+ display: flex;
36
+ align-items: center;
37
+ gap: 24px;
38
+ }
39
+ .status-dot {
40
+ width: 18px;
41
+ height: 18px;
42
+ border-radius: 50%;
43
+ background: #ECEFF1;
44
+ opacity: 0.95;
45
+ }
46
+
47
+ /* Header / tabs */
48
+ .header {
49
+ position: absolute;
50
+ top: 96px;
51
+ left: 0;
52
+ right: 0;
53
+ padding: 36px 48px 0 48px;
54
+ }
55
+ .title {
56
+ font-size: 60px;
57
+ font-weight: 600;
58
+ color: #B0BEC5;
59
+ margin-bottom: 36px;
60
+ }
61
+ .tabs {
62
+ display: flex;
63
+ align-items: center;
64
+ justify-content: space-between;
65
+ padding-right: 168px; /* space for actions */
66
+ position: relative;
67
+ }
68
+ .tab-labels {
69
+ display: flex;
70
+ gap: 64px;
71
+ font-size: 30px;
72
+ font-weight: 600;
73
+ letter-spacing: 2px;
74
+ }
75
+ .tab {
76
+ color: #607D8B;
77
+ }
78
+ .tab.active {
79
+ color: #3AA0D8;
80
+ }
81
+ .tab-underline {
82
+ position: absolute;
83
+ bottom: -12px;
84
+ left: 0;
85
+ right: 0;
86
+ height: 4px;
87
+ background: #1E2931;
88
+ }
89
+ .tab-underline .active-line {
90
+ width: 220px;
91
+ height: 4px;
92
+ background: #2F7FB7;
93
+ position: absolute;
94
+ left: 220px; /* under LISTEN */
95
+ top: 0;
96
+ }
97
+
98
+ /* Header actions */
99
+ .actions {
100
+ position: absolute;
101
+ right: 24px;
102
+ top: 180px;
103
+ display: flex;
104
+ gap: 36px;
105
+ align-items: center;
106
+ }
107
+ .icon {
108
+ width: 48px;
109
+ height: 48px;
110
+ fill: none;
111
+ stroke: #90A4AE;
112
+ stroke-width: 4;
113
+ }
114
+ .icon-dots {
115
+ width: 10px;
116
+ height: 48px;
117
+ stroke: none;
118
+ fill: #90A4AE;
119
+ }
120
+
121
+ /* List */
122
+ .list {
123
+ position: absolute;
124
+ top: 320px;
125
+ left: 0;
126
+ right: 0;
127
+ }
128
+ .item {
129
+ padding: 48px;
130
+ border-top: 1px solid #1D2328;
131
+ display: flex;
132
+ align-items: flex-start;
133
+ justify-content: space-between;
134
+ }
135
+ .item:first-child { border-top: none; }
136
+ .item-title {
137
+ font-size: 42px;
138
+ font-weight: 500;
139
+ margin-bottom: 12px;
140
+ color: #CFD8DC;
141
+ }
142
+ .item-sub {
143
+ font-size: 30px;
144
+ color: #708492;
145
+ }
146
+ .item-meta {
147
+ text-align: right;
148
+ min-width: 170px;
149
+ }
150
+ .item-meta .top {
151
+ font-size: 34px;
152
+ color: #B0BEC5;
153
+ margin-bottom: 8px;
154
+ }
155
+ .item-meta .bottom {
156
+ font-size: 28px;
157
+ color: #6F8591;
158
+ }
159
+ .item .kebab {
160
+ margin-left: 28px;
161
+ display: flex;
162
+ align-items: center;
163
+ }
164
+ .kebab svg { width: 10px; height: 44px; fill: #6F8591; }
165
+
166
+ /* Dialog */
167
+ .dialog {
168
+ position: absolute;
169
+ left: 72px;
170
+ top: 1280px;
171
+ width: 936px;
172
+ background: #2A3138;
173
+ border: 1px solid #3A424A;
174
+ border-radius: 18px;
175
+ box-shadow: 0 24px 60px rgba(0,0,0,0.6);
176
+ padding: 56px 48px;
177
+ color: #CFD8DC;
178
+ }
179
+ .dialog .text {
180
+ font-size: 34px;
181
+ margin-bottom: 48px;
182
+ }
183
+ .dialog .buttons {
184
+ display: flex;
185
+ justify-content: flex-end;
186
+ gap: 48px;
187
+ }
188
+ .dialog .btn {
189
+ font-size: 34px;
190
+ font-weight: 700;
191
+ letter-spacing: 2px;
192
+ color: #38A2DA;
193
+ }
194
+
195
+ /* Player */
196
+ .player {
197
+ position: absolute;
198
+ left: 0;
199
+ right: 0;
200
+ bottom: 140px;
201
+ height: 300px;
202
+ background: #171B1E;
203
+ border-top: 1px solid #20262B;
204
+ padding: 32px 48px 24px 48px;
205
+ color: #6F8591;
206
+ }
207
+ .player .timeline {
208
+ display: flex;
209
+ align-items: center;
210
+ justify-content: space-between;
211
+ margin-bottom: 36px;
212
+ }
213
+ .time {
214
+ font-size: 28px;
215
+ color: #4F6673;
216
+ min-width: 100px;
217
+ text-align: center;
218
+ border: 2px solid #2B5068;
219
+ padding: 6px 12px;
220
+ border-radius: 10px;
221
+ }
222
+ .time.right {
223
+ border: none;
224
+ padding: 0;
225
+ text-align: right;
226
+ }
227
+ .track {
228
+ position: relative;
229
+ height: 6px;
230
+ flex: 1;
231
+ margin: 0 24px;
232
+ background: #243038;
233
+ border-radius: 3px;
234
+ }
235
+ .track .knob {
236
+ position: absolute;
237
+ top: -10px;
238
+ left: 40px;
239
+ width: 20px;
240
+ height: 20px;
241
+ background: #2F7FB7;
242
+ border-radius: 50%;
243
+ }
244
+ .player .controls {
245
+ display: flex;
246
+ align-items: center;
247
+ justify-content: space-between;
248
+ padding: 0 60px;
249
+ }
250
+ .ctrl {
251
+ width: 56px; height: 56px; stroke: #546E7A; stroke-width: 4; fill: none;
252
+ }
253
+ .play {
254
+ width: 140px; height: 140px; background: #2F7FB7; border-radius: 50%;
255
+ display: flex; align-items: center; justify-content: center;
256
+ box-shadow: inset 0 0 0 4px rgba(255,255,255,0.05);
257
+ }
258
+ .play svg { width: 56px; height: 56px; fill: #EAF2F6; }
259
+ .speed {
260
+ font-size: 34px;
261
+ color: #3AA0D8;
262
+ min-width: 80px;
263
+ text-align: right;
264
+ }
265
+
266
+ /* Home indicator */
267
+ .home-indicator {
268
+ position: absolute;
269
+ bottom: 36px;
270
+ left: 50%;
271
+ transform: translateX(-50%);
272
+ width: 360px;
273
+ height: 12px;
274
+ background: #D7D7D7;
275
+ border-radius: 6px;
276
+ opacity: 0.9;
277
+ }
278
+ </style>
279
+ </head>
280
+ <body>
281
+ <div id="render-target">
282
+
283
+ <!-- Status bar -->
284
+ <div class="status-bar">
285
+ <div>1:31</div>
286
+ <div class="status-right">
287
+ <!-- simple shapes to emulate status icons -->
288
+ <svg class="icon" viewBox="0 0 24 24"><circle cx="10" cy="10" r="6"></circle><line x1="14" y1="14" x2="22" y2="22"></line></svg>
289
+ <svg class="icon" viewBox="0 0 24 24"><rect x="2" y="6" width="18" height="12" rx="2"></rect><line x1="6" y1="10" x2="14" y2="10"></line></svg>
290
+ <div class="status-dot"></div>
291
+ </div>
292
+ </div>
293
+
294
+ <!-- Header -->
295
+ <div class="header">
296
+ <div class="title">2 recordings</div>
297
+ <div class="tabs">
298
+ <div class="tab-labels">
299
+ <div class="tab">RECORD</div>
300
+ <div class="tab active">LISTEN</div>
301
+ </div>
302
+ <div class="actions">
303
+ <!-- Search -->
304
+ <svg class="icon" viewBox="0 0 24 24">
305
+ <circle cx="10" cy="10" r="6"></circle>
306
+ <line x1="14" y1="14" x2="22" y2="22"></line>
307
+ </svg>
308
+ <!-- Sort -->
309
+ <svg class="icon" viewBox="0 0 24 24">
310
+ <line x1="4" y1="6" x2="20" y2="6"></line>
311
+ <line x1="8" y1="12" x2="20" y2="12"></line>
312
+ <line x1="12" y1="18" x2="20" y2="18"></line>
313
+ </svg>
314
+ <!-- More -->
315
+ <svg class="icon-dots" viewBox="0 0 4 20">
316
+ <circle cx="2" cy="4" r="2"></circle>
317
+ <circle cx="2" cy="10" r="2"></circle>
318
+ <circle cx="2" cy="16" r="2"></circle>
319
+ </svg>
320
+ </div>
321
+ <div class="tab-underline"><div class="active-line"></div></div>
322
+ </div>
323
+ </div>
324
+
325
+ <!-- List -->
326
+ <div class="list">
327
+ <div class="item">
328
+ <div style="display:flex; align-items:flex-start; flex:1;">
329
+ <div style="flex:1;">
330
+ <div class="item-title">My recording 2.m4a</div>
331
+ <div class="item-sub">December 14, 1:27 PM</div>
332
+ </div>
333
+ <div class="item-meta">
334
+ <div class="top">01:50</div>
335
+ <div class="bottom">1.3 MB</div>
336
+ </div>
337
+ <div class="kebab">
338
+ <svg viewBox="0 0 4 20">
339
+ <circle cx="2" cy="4" r="2"></circle>
340
+ <circle cx="2" cy="10" r="2"></circle>
341
+ <circle cx="2" cy="16" r="2"></circle>
342
+ </svg>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <div class="item">
348
+ <div style="display:flex; align-items:flex-start; flex:1;">
349
+ <div style="flex:1;">
350
+ <div class="item-title">Speech.m4a</div>
351
+ <div class="item-sub">December 14, 12:32 PM</div>
352
+ </div>
353
+ <div class="item-meta">
354
+ <div class="top">00:04</div>
355
+ <div class="bottom">0.1 MB</div>
356
+ </div>
357
+ <div class="kebab">
358
+ <svg viewBox="0 0 4 20">
359
+ <circle cx="2" cy="4" r="2"></circle>
360
+ <circle cx="2" cy="10" r="2"></circle>
361
+ <circle cx="2" cy="16" r="2"></circle>
362
+ </svg>
363
+ </div>
364
+ </div>
365
+ </div>
366
+ </div>
367
+
368
+ <!-- Dialog -->
369
+ <div class="dialog">
370
+ <div class="text">Delete “Speech.m4a”?</div>
371
+ <div class="buttons">
372
+ <div class="btn">CANCEL</div>
373
+ <div class="btn">DELETE</div>
374
+ </div>
375
+ </div>
376
+
377
+ <!-- Player -->
378
+ <div class="player">
379
+ <div class="timeline">
380
+ <div class="time">00:00</div>
381
+ <div class="track"><div class="knob"></div></div>
382
+ <div class="time right">00:00</div>
383
+ </div>
384
+ <div class="controls">
385
+ <!-- Repeat -->
386
+ <svg class="ctrl" viewBox="0 0 48 48">
387
+ <polyline points="10,18 4,24 10,30" fill="#546E7A"></polyline>
388
+ <path d="M8 24h20c6 0 10 4 10 10" stroke="#546E7A"></path>
389
+ <polyline points="38,34 44,40 38,46" fill="#546E7A"></polyline>
390
+ <path d="M40 40H20c-6 0-10-4-10-10" stroke="#546E7A"></path>
391
+ </svg>
392
+
393
+ <!-- Rewind -->
394
+ <svg class="ctrl" viewBox="0 0 48 48">
395
+ <polygon points="22,12 6,24 22,36" fill="#546E7A"></polygon>
396
+ <polygon points="42,12 26,24 42,36" fill="#546E7A"></polygon>
397
+ </svg>
398
+
399
+ <!-- Play -->
400
+ <div class="play">
401
+ <svg viewBox="0 0 48 48">
402
+ <polygon points="18,12 36,24 18,36"></polygon>
403
+ </svg>
404
+ </div>
405
+
406
+ <!-- Forward -->
407
+ <svg class="ctrl" viewBox="0 0 48 48">
408
+ <polygon points="26,12 42,24 26,36" fill="#546E7A"></polygon>
409
+ <polygon points="6,12 22,24 6,36" fill="#546E7A"></polygon>
410
+ </svg>
411
+
412
+ <!-- Speed -->
413
+ <div class="speed">1x</div>
414
+ </div>
415
+ </div>
416
+
417
+ <!-- Home Indicator -->
418
+ <div class="home-indicator"></div>
419
+
420
+ </div>
421
+ </body>
422
+ </html>
code/14704/14704_4.html ADDED
@@ -0,0 +1,371 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Audio Recordings - Dark UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #1e2329;
14
+ color: #e9edf1;
15
+ border-radius: 28px;
16
+ box-shadow: 0 40px 100px rgba(0,0,0,0.35);
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ width: 1080px;
25
+ height: 96px;
26
+ background: #232831;
27
+ display: flex;
28
+ align-items: center;
29
+ padding: 0 32px;
30
+ box-sizing: border-box;
31
+ }
32
+ .status-time {
33
+ font-size: 36px;
34
+ letter-spacing: 0.5px;
35
+ color: #e8eef6;
36
+ }
37
+ .status-icons {
38
+ margin-left: auto;
39
+ display: flex;
40
+ align-items: center;
41
+ gap: 28px;
42
+ }
43
+ .status-icons svg { fill: none; stroke: #e8eef6; stroke-width: 2.5; }
44
+
45
+ /* Header / toolbar */
46
+ .toolbar {
47
+ position: absolute;
48
+ top: 96px;
49
+ left: 0;
50
+ width: 1080px;
51
+ padding: 28px 36px 20px 36px;
52
+ box-sizing: border-box;
53
+ background: #242a33;
54
+ }
55
+ .title-row {
56
+ display: flex;
57
+ align-items: center;
58
+ }
59
+ .screen-title {
60
+ font-size: 58px;
61
+ font-weight: 500;
62
+ color: #eef3f8;
63
+ }
64
+ .actions {
65
+ margin-left: auto;
66
+ display: flex;
67
+ align-items: center;
68
+ gap: 36px;
69
+ }
70
+ .action-btn {
71
+ width: 52px;
72
+ height: 52px;
73
+ display: inline-flex;
74
+ justify-content: center;
75
+ align-items: center;
76
+ border-radius: 26px;
77
+ }
78
+ .action-btn svg { stroke: #e9edf1; stroke-width: 2.5; }
79
+
80
+ .tabs {
81
+ margin-top: 26px;
82
+ display: flex;
83
+ align-items: center;
84
+ gap: 38px;
85
+ }
86
+ .tab {
87
+ font-size: 28px;
88
+ letter-spacing: 2px;
89
+ color: #8b95a3;
90
+ }
91
+ .tab.active {
92
+ color: #2fa8ff;
93
+ position: relative;
94
+ }
95
+ .tab.active::after {
96
+ content: "";
97
+ position: absolute;
98
+ left: -4px;
99
+ right: -4px;
100
+ bottom: -12px;
101
+ height: 6px;
102
+ background: #2fa8ff;
103
+ border-radius: 3px;
104
+ }
105
+
106
+ /* List area */
107
+ .list {
108
+ position: absolute;
109
+ top: 240px;
110
+ left: 0;
111
+ width: 1080px;
112
+ height: 1400px;
113
+ background: #1f242b;
114
+ }
115
+ .list-item {
116
+ display: flex;
117
+ align-items: center;
118
+ padding: 40px 36px;
119
+ box-sizing: border-box;
120
+ border-top: 1px solid #2a313b;
121
+ border-bottom: 1px solid #2a313b;
122
+ }
123
+ .item-texts {
124
+ flex: 1;
125
+ min-width: 0;
126
+ }
127
+ .item-title {
128
+ font-size: 36px;
129
+ color: #e9edf1;
130
+ white-space: nowrap;
131
+ overflow: hidden;
132
+ text-overflow: ellipsis;
133
+ margin-bottom: 12px;
134
+ }
135
+ .item-sub {
136
+ font-size: 28px;
137
+ color: #8c96a4;
138
+ }
139
+ .item-meta {
140
+ text-align: right;
141
+ margin-left: 20px;
142
+ }
143
+ .item-duration {
144
+ font-size: 32px;
145
+ color: #e9edf1;
146
+ margin-bottom: 10px;
147
+ }
148
+ .item-size {
149
+ font-size: 28px;
150
+ color: #8c96a4;
151
+ }
152
+ .item-menu {
153
+ margin-left: 22px;
154
+ width: 48px;
155
+ height: 48px;
156
+ display: inline-flex;
157
+ justify-content: center;
158
+ align-items: center;
159
+ }
160
+ .item-menu svg { fill: #8c96a4; }
161
+
162
+ /* Player */
163
+ .player {
164
+ position: absolute;
165
+ left: 0;
166
+ bottom: 120px;
167
+ width: 1080px;
168
+ height: 280px;
169
+ background: #242a33;
170
+ box-sizing: border-box;
171
+ padding: 28px 36px;
172
+ }
173
+ .progress-row {
174
+ position: relative;
175
+ height: 80px;
176
+ display: flex;
177
+ align-items: center;
178
+ }
179
+ .time-left, .time-right {
180
+ font-size: 28px;
181
+ color: #8fbff1;
182
+ }
183
+ .progress-track {
184
+ position: absolute;
185
+ left: 140px;
186
+ right: 140px;
187
+ top: 40px;
188
+ height: 2px;
189
+ background: #36404c;
190
+ }
191
+ .progress-fill {
192
+ position: absolute;
193
+ left: 140px;
194
+ top: 40px;
195
+ height: 2px;
196
+ width: 220px;
197
+ background: #2fa8ff;
198
+ }
199
+ .progress-knob {
200
+ position: absolute;
201
+ left: calc(140px + 220px - 10px);
202
+ top: 30px;
203
+ width: 20px;
204
+ height: 20px;
205
+ border-radius: 50%;
206
+ background: #2fa8ff;
207
+ box-shadow: 0 0 0 3px rgba(47,168,255,0.25);
208
+ }
209
+ .player-controls {
210
+ margin-top: 18px;
211
+ display: flex;
212
+ align-items: center;
213
+ justify-content: center;
214
+ gap: 90px;
215
+ }
216
+ .play-btn {
217
+ width: 140px;
218
+ height: 140px;
219
+ border-radius: 70px;
220
+ background: #44b2ff;
221
+ display: flex;
222
+ justify-content: center;
223
+ align-items: center;
224
+ box-shadow: inset 0 -8px 0 rgba(0,0,0,0.15);
225
+ }
226
+ .play-btn svg { fill: #ffffff; }
227
+
228
+ /* Snackbar */
229
+ .snackbar {
230
+ position: absolute;
231
+ left: 24px;
232
+ right: 24px;
233
+ bottom: 260px;
234
+ background: #cfd3d7;
235
+ color: #1c1f24;
236
+ border-radius: 20px;
237
+ padding: 26px 28px;
238
+ font-size: 30px;
239
+ box-shadow: 0 8px 24px rgba(0,0,0,0.35);
240
+ }
241
+
242
+ /* Gesture pill */
243
+ .gesture {
244
+ position: absolute;
245
+ left: 50%;
246
+ transform: translateX(-50%);
247
+ bottom: 38px;
248
+ width: 220px;
249
+ height: 10px;
250
+ background: #cfd3d7;
251
+ border-radius: 8px;
252
+ opacity: 0.9;
253
+ }
254
+ </style>
255
+ </head>
256
+ <body>
257
+ <div id="render-target">
258
+
259
+ <!-- Status Bar -->
260
+ <div class="status-bar">
261
+ <div class="status-time">1:32</div>
262
+ <div class="status-icons">
263
+ <!-- WiFi -->
264
+ <svg width="36" height="28" viewBox="0 0 36 28">
265
+ <path d="M3 9c6-5 24-5 30 0"></path>
266
+ <path d="M7 14c4-3 18-3 22 0"></path>
267
+ <path d="M13 19c2-2 8-2 10 0"></path>
268
+ <circle cx="18" cy="23" r="2" fill="#e8eef6"></circle>
269
+ </svg>
270
+ <!-- Battery -->
271
+ <svg width="44" height="24" viewBox="0 0 44 24">
272
+ <rect x="2" y="4" width="34" height="16" rx="3" ry="3" stroke="#e8eef6"></rect>
273
+ <rect x="38" y="9" width="4" height="6" fill="#e8eef6"></rect>
274
+ <rect x="6" y="8" width="18" height="8" fill="#e8eef6"></rect>
275
+ </svg>
276
+ </div>
277
+ </div>
278
+
279
+ <!-- Toolbar / Header -->
280
+ <div class="toolbar">
281
+ <div class="title-row">
282
+ <div class="screen-title">1 recording</div>
283
+ <div class="actions">
284
+ <!-- Search -->
285
+ <div class="action-btn">
286
+ <svg width="36" height="36" viewBox="0 0 36 36">
287
+ <circle cx="15" cy="15" r="10"></circle>
288
+ <line x1="23" y1="23" x2="33" y2="33"></line>
289
+ </svg>
290
+ </div>
291
+ <!-- Sort -->
292
+ <div class="action-btn">
293
+ <svg width="36" height="36" viewBox="0 0 36 36">
294
+ <line x1="6" y1="9" x2="30" y2="9"></line>
295
+ <line x1="12" y1="18" x2="30" y2="18"></line>
296
+ <line x1="18" y1="27" x2="30" y2="27"></line>
297
+ </svg>
298
+ </div>
299
+ <!-- More -->
300
+ <div class="action-btn">
301
+ <svg width="10" height="36" viewBox="0 0 10 36">
302
+ <circle cx="5" cy="8" r="3" fill="#e9edf1"></circle>
303
+ <circle cx="5" cy="18" r="3" fill="#e9edf1"></circle>
304
+ <circle cx="5" cy="28" r="3" fill="#e9edf1"></circle>
305
+ </svg>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ <div class="tabs">
310
+ <div class="tab">RECORD</div>
311
+ <div class="tab active">LISTEN</div>
312
+ </div>
313
+ </div>
314
+
315
+ <!-- List -->
316
+ <div class="list">
317
+ <div class="list-item">
318
+ <div class="item-texts">
319
+ <div class="item-title">My recording 2.m4a</div>
320
+ <div class="item-sub">December 14, 1:27 PM</div>
321
+ </div>
322
+ <div class="item-meta">
323
+ <div class="item-duration">01:50</div>
324
+ <div class="item-size">1.3 MB</div>
325
+ </div>
326
+ <div class="item-menu">
327
+ <svg width="10" height="32" viewBox="0 0 10 32">
328
+ <circle cx="5" cy="6" r="3"></circle>
329
+ <circle cx="5" cy="16" r="3"></circle>
330
+ <circle cx="5" cy="26" r="3"></circle>
331
+ </svg>
332
+ </div>
333
+ </div>
334
+ </div>
335
+
336
+ <!-- Player -->
337
+ <div class="player">
338
+ <div class="progress-row">
339
+ <div class="time-left">00:00</div>
340
+ <div class="progress-track"></div>
341
+ <div class="progress-fill"></div>
342
+ <div class="progress-knob"></div>
343
+ <div class="time-right" style="margin-left:auto;">00:00</div>
344
+ </div>
345
+ <div class="player-controls">
346
+ <!-- Small left icon placeholder -->
347
+ <svg width="40" height="40" viewBox="0 0 40 40" style="stroke:#8c96a4; fill:none; stroke-width:3;">
348
+ <polygon points="26,8 12,20 26,32"></polygon>
349
+ </svg>
350
+ <!-- Play -->
351
+ <div class="play-btn">
352
+ <svg width="60" height="60" viewBox="0 0 60 60">
353
+ <polygon points="22,16 22,44 45,30"></polygon>
354
+ </svg>
355
+ </div>
356
+ <!-- Small right icon placeholder -->
357
+ <svg width="40" height="40" viewBox="0 0 40 40" style="stroke:#8c96a4; fill:none; stroke-width:3;">
358
+ <polygon points="14,8 28,20 14,32"></polygon>
359
+ </svg>
360
+ </div>
361
+ </div>
362
+
363
+ <!-- Snackbar -->
364
+ <div class="snackbar">“Speech.m4a” deleted</div>
365
+
366
+ <!-- Gesture bar -->
367
+ <div class="gesture"></div>
368
+
369
+ </div>
370
+ </body>
371
+ </html>
code/14705/14705_0.html ADDED
@@ -0,0 +1,302 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Android Home Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ position: relative;
11
+ overflow: hidden;
12
+ width: 1080px;
13
+ height: 2400px;
14
+ background: radial-gradient(1800px 1600px at 80% 60%, #3e574c 0%, #2f3f37 45%, #2e3e36 46%, #3f5a4f 100%);
15
+ font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
16
+ color: #fff;
17
+ }
18
+ /* Subtle abstract curves to imitate wallpaper */
19
+ .curve {
20
+ position: absolute; border-radius: 50%;
21
+ filter: blur(1px);
22
+ pointer-events: none;
23
+ }
24
+ .curve.one {
25
+ width: 1100px; height: 2200px;
26
+ top: -200px; left: 660px;
27
+ border: 6px solid rgba(0,0,0,0.35);
28
+ transform: rotate(12deg);
29
+ }
30
+ .curve.two {
31
+ width: 1500px; height: 1500px;
32
+ right: -800px; bottom: -300px;
33
+ border: 6px solid rgba(0,0,0,0.35);
34
+ }
35
+
36
+ /* Status bar */
37
+ .status {
38
+ position: absolute; top: 26px; left: 24px; right: 24px; height: 44px;
39
+ display: flex; align-items: center; justify-content: space-between;
40
+ font-weight: 600; letter-spacing: 0.5px;
41
+ }
42
+ .status .left, .status .right { display: flex; align-items: center; gap: 20px; }
43
+ .status .time { font-size: 30px; opacity: 0.95; }
44
+ .icon {
45
+ width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
46
+ }
47
+ .icon svg { width: 30px; height: 30px; fill: #ffffff; }
48
+
49
+ /* Timer chip */
50
+ .timer {
51
+ position: absolute; top: 120px; left: 52px;
52
+ display: flex; align-items: center; gap: 18px;
53
+ font-size: 50px; font-weight: 700; opacity: 0.95;
54
+ }
55
+ .timer .hourglass svg { width: 46px; height: 46px; }
56
+
57
+ /* App grid */
58
+ .apps {
59
+ position: absolute; left: 60px; right: 60px;
60
+ display: grid; grid-template-columns: repeat(4, 1fr);
61
+ column-gap: 56px; row-gap: 120px;
62
+ }
63
+ .row1 { top: 1520px; }
64
+ .row2 { top: 1760px; }
65
+
66
+ .app {
67
+ text-align: center; color: rgba(255,255,255,0.94);
68
+ }
69
+ .label {
70
+ margin-top: 26px; font-size: 36px; font-weight: 500;
71
+ color: rgba(255,255,255,0.92);
72
+ }
73
+ .app-icon {
74
+ position: relative;
75
+ margin: 0 auto;
76
+ width: 168px; height: 168px;
77
+ border-radius: 50%;
78
+ background: #ffffff;
79
+ box-shadow: 0 8px 22px rgba(0,0,0,0.35);
80
+ display: grid; place-items: center;
81
+ }
82
+ .badge {
83
+ position: absolute; top: 10px; right: 12px;
84
+ width: 30px; height: 30px; background: #bfe6f3;
85
+ border: 3px solid #ffffff; border-radius: 50%;
86
+ }
87
+
88
+ /* Glyphs inside icons (simple, suggestive) */
89
+ .glyph { position: relative; width: 120px; height: 120px; }
90
+ /* Play Store - colored play triangle */
91
+ .glyph.play::before{
92
+ content:""; position:absolute; left:30px; top:16px;
93
+ width: 0; height: 0;
94
+ border-top: 44px solid transparent;
95
+ border-bottom: 44px solid transparent;
96
+ border-left: 70px solid #36a853;
97
+ transform: translateX(-18px);
98
+ filter: drop-shadow(-10px -8px 0 #4285f4) drop-shadow(-10px 8px 0 #fbbc05) drop-shadow(-20px 0 0 #ea4335);
99
+ }
100
+
101
+ /* Gmail - colored M */
102
+ .glyph.gmail::before, .glyph.gmail::after { content:""; position:absolute; }
103
+ .glyph.gmail::before{
104
+ left:10px; right:10px; top:24px; height:72px; border-radius:12px;
105
+ border:10px solid #dadce0;
106
+ border-top: none;
107
+ }
108
+ .glyph.gmail::after{
109
+ left:10px; right:10px; top:18px; height:0;
110
+ border-left: 38px solid transparent;
111
+ border-right: 38px solid transparent;
112
+ border-top: 40px solid #ea4335;
113
+ box-shadow:
114
+ -38px 0 0 0 #34a853,
115
+ 38px 0 0 0 #4285f4,
116
+ 0 40px 0 0 #fbbc05;
117
+ }
118
+
119
+ /* Photos - four petals */
120
+ .petal { position:absolute; width:52px; height:52px; border-radius: 50% 0 50% 50%; }
121
+ .p1{ background:#ea4335; left:34px; top:10px; transform: rotate(45deg); }
122
+ .p2{ background:#fbbc05; right:34px; top:10px; transform: rotate(135deg); }
123
+ .p3{ background:#34a853; left:34px; bottom:10px; transform: rotate(-45deg); }
124
+ .p4{ background:#4285f4; right:34px; bottom:10px; transform: rotate(-135deg); }
125
+ .photos-center{ position:absolute; left:50%; top:50%; width:24px; height:24px; background:#ffffff; border-radius:50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 6px rgba(255,255,255,0.7); }
126
+
127
+ /* YouTube */
128
+ .yt-body { position:absolute; left:20px; top:32px; width:80px; height:56px; background:#ff0000; border-radius:16px; }
129
+ .yt-body::after { content:""; position:absolute; left:30px; top:18px; width:0; height:0; border-left: 26px solid #fff; border-top: 16px solid transparent; border-bottom: 16px solid transparent; }
130
+
131
+ /* Phone */
132
+ .phone svg, .chat svg, .cam svg, .wifi svg, .battery svg, .dnd svg { fill: #2b5bd7; }
133
+ .phone svg { fill:#2563eb; }
134
+ .chat svg { fill:#1565c0; }
135
+ .chrome .ring { position:absolute; inset:14px; border-radius:50%; background:
136
+ conic-gradient(#ea4335 0 120deg, #fbbc05 120deg 240deg, #34a853 240deg 360deg);
137
+ }
138
+ .chrome .center { position:absolute; inset:34px; border-radius:50%; background:#1a73e8; box-shadow: inset 0 0 0 10px #ffffff; }
139
+ .cam svg { fill:#4b5563; }
140
+
141
+ /* Dock search bar */
142
+ .search {
143
+ position: absolute; left: 70px; right: 70px; bottom: 150px;
144
+ height: 120px; border-radius: 60px; background: rgba(20,20,20,0.9);
145
+ display: flex; align-items: center; padding: 0 34px; gap: 22px;
146
+ box-shadow: 0 10px 26px rgba(0,0,0,0.5);
147
+ }
148
+ .g-logo {
149
+ width: 66px; height: 66px; border-radius: 50%; background:#fff; display:grid; place-items:center;
150
+ }
151
+ .g-logo::before {
152
+ content:"G"; font-weight:800; font-size: 40px;
153
+ background: linear-gradient(90deg,#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
154
+ -webkit-background-clip: text; color: transparent;
155
+ }
156
+ .search .spacer { flex: 1; }
157
+ .pill-icon { width: 54px; height: 54px; display:grid; place-items:center; border-radius: 14px; background: transparent; }
158
+ .pill-icon svg { width: 36px; height: 36px; fill: #6ee7ff; }
159
+
160
+ /* Bottom nav pill */
161
+ .nav-pill {
162
+ position: absolute; left: 50%; transform: translateX(-50%);
163
+ bottom: 66px; width: 220px; height: 10px; border-radius: 6px;
164
+ background: rgba(255,255,255,0.7);
165
+ }
166
+ </style>
167
+ </head>
168
+ <body>
169
+ <div id="render-target">
170
+ <div class="curve one"></div>
171
+ <div class="curve two"></div>
172
+
173
+ <!-- Status bar -->
174
+ <div class="status">
175
+ <div class="left">
176
+ <div class="time">3:14</div>
177
+ <!-- a tiny dot -->
178
+ <div class="icon" style="opacity:0.6;"><svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="3"/></svg></div>
179
+ </div>
180
+ <div class="right">
181
+ <!-- Do not disturb / silent -->
182
+ <div class="icon dnd"><svg viewBox="0 0 24 24"><path d="M12 2a9.9 9.9 0 0 0-10 10 10 10 0 0 0 20 0A9.9 9.9 0 0 0 12 2zm6 11H6v-2h12z"/></svg></div>
183
+ <!-- Wi-Fi -->
184
+ <div class="icon wifi"><svg viewBox="0 0 24 24"><path d="M12 20l-2.5-2.5a3.5 3.5 0 0 1 5 0L12 20zm6-5a8 8 0 0 0-12 0l-2-2a11 11 0 0 1 16 0l-2 2zm4-5a15 15 0 0 0-20 0l-2-2a18 18 0 0 1 24 0l-2 2z"/></svg></div>
185
+ <!-- Battery -->
186
+ <div class="icon battery"><svg viewBox="0 0 24 24"><path d="M17 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2v1h-2v-1H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12zm1 2H5v8h13V8z"/></svg></div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- Timer overlay -->
191
+ <div class="timer">
192
+ <div class="hourglass">
193
+ <svg viewBox="0 0 24 24" fill="#ffffff"><path d="M6 2h12v4a6 6 0 0 1-3 5.2V13a6 6 0 0 1 3 5.2V22H6v-3.8A6 6 0 0 1 9 13v-1.8A6 6 0 0 1 6 6V2zm2 2v2a4 4 0 0 0 4 4 4 4 0 0 0 4-4V4H8zm8 16v-2a4 4 0 0 0-4-4 4 4 0 0 0-4 4v2h8z"/></svg>
194
+ </div>
195
+ <div>27:24</div>
196
+ </div>
197
+
198
+ <!-- First row of apps -->
199
+ <div class="apps row1">
200
+ <!-- Play Store -->
201
+ <div class="app">
202
+ <div class="app-icon">
203
+ <div class="glyph play"></div>
204
+ </div>
205
+ <div class="label">Play Store</div>
206
+ </div>
207
+ <!-- Gmail with badge -->
208
+ <div class="app">
209
+ <div class="app-icon">
210
+ <div class="glyph gmail"></div>
211
+ <div class="badge"></div>
212
+ </div>
213
+ <div class="label">Gmail</div>
214
+ </div>
215
+ <!-- Photos with badge -->
216
+ <div class="app">
217
+ <div class="app-icon">
218
+ <div class="glyph photos">
219
+ <div class="petal p1"></div>
220
+ <div class="petal p2"></div>
221
+ <div class="petal p3"></div>
222
+ <div class="petal p4"></div>
223
+ <div class="photos-center"></div>
224
+ </div>
225
+ <div class="badge"></div>
226
+ </div>
227
+ <div class="label">Photos</div>
228
+ </div>
229
+ <!-- YouTube with badge -->
230
+ <div class="app">
231
+ <div class="app-icon">
232
+ <div class="glyph yt"><div class="yt-body"></div></div>
233
+ <div class="badge"></div>
234
+ </div>
235
+ <div class="label">YouTube</div>
236
+ </div>
237
+ </div>
238
+
239
+ <!-- Second row of apps (dock row above search) -->
240
+ <div class="apps row2">
241
+ <!-- Phone -->
242
+ <div class="app">
243
+ <div class="app-icon">
244
+ <div class="glyph phone">
245
+ <svg viewBox="0 0 24 24">
246
+ <path d="M6.6 10.8a13 13 0 0 0 6.6 6.6l2.2-2.2a1.2 1.2 0 0 1 1.2-.3c1 .3 2 .5 3 .6a1.2 1.2 0 0 1 1 1.2v3.2a1.2 1.2 0 0 1-1.2 1.2A17 17 0 0 1 3 6.2 1.2 1.2 0 0 1 4.2 5h3.2c.6 0 1.1.4 1.2 1 0 1 .3 2 .6 3 .1.4 0 .9-.3 1.2L6.6 10.8z"/>
247
+ </svg>
248
+ </div>
249
+ </div>
250
+ <div class="label">Phone</div>
251
+ </div>
252
+ <!-- Messages -->
253
+ <div class="app">
254
+ <div class="app-icon">
255
+ <div class="glyph chat">
256
+ <svg viewBox="0 0 24 24">
257
+ <path d="M4 4h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2z"/>
258
+ </svg>
259
+ </div>
260
+ </div>
261
+ <div class="label">Messages</div>
262
+ </div>
263
+ <!-- Chrome -->
264
+ <div class="app">
265
+ <div class="app-icon">
266
+ <div class="glyph chrome">
267
+ <div class="ring"></div>
268
+ <div class="center"></div>
269
+ </div>
270
+ </div>
271
+ <div class="label">Chrome</div>
272
+ </div>
273
+ <!-- Camera -->
274
+ <div class="app">
275
+ <div class="app-icon">
276
+ <div class="glyph cam">
277
+ <svg viewBox="0 0 24 24">
278
+ <path d="M4 7h4l1.5-2H14l1.5 2H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2zm8 3a5 5 0 1 0 0 10 5 5 0 0 0 0-10z"/>
279
+ </svg>
280
+ </div>
281
+ </div>
282
+ <div class="label">Camera</div>
283
+ </div>
284
+ </div>
285
+
286
+ <!-- Search bar -->
287
+ <div class="search">
288
+ <div class="g-logo"></div>
289
+ <div class="spacer"></div>
290
+ <div class="pill-icon" title="Voice">
291
+ <svg viewBox="0 0 24 24"><path d="M12 3a3 3 0 0 1 3 3v5a3 3 0 1 1-6 0V6a3 3 0 0 1 3-3zm-1 14.9V21h2v-3.1a6.5 6.5 0 0 0 5-6.3h-2a4.5 4.5 0 1 1-9 0H5a6.5 6.5 0 0 0 6 6.3z"/></svg>
292
+ </div>
293
+ <div class="pill-icon" title="Lens">
294
+ <svg viewBox="0 0 24 24"><path d="M9 3h6l6 6v6l-6 6H9l-6-6V9l6-6zm3 4a5 5 0 1 0 0 10 5 5 0 0 0 0-10z"/></svg>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Bottom navigation pill -->
299
+ <div class="nav-pill"></div>
300
+ </div>
301
+ </body>
302
+ </html>
code/14705/14705_1.html ADDED
@@ -0,0 +1,274 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Timer UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #111916; color: #E7F1E7;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; right: 0;
17
+ height: 120px; padding: 0 36px;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ color: #D9E5D9; font-size: 42px; letter-spacing: 0.5px;
20
+ }
21
+ .status-icons { display: flex; gap: 24px; align-items: center; }
22
+ .status-dot { width: 14px; height: 14px; background: #CFE5CF; border-radius: 50%; opacity: 0.8; }
23
+ .icon-box {
24
+ width: 40px; height: 40px; border-radius: 8px;
25
+ border: 2px solid #CFE5CF22; display: inline-flex; align-items: center; justify-content: center;
26
+ }
27
+
28
+ /* Header */
29
+ .page-title {
30
+ position: absolute; top: 160px; left: 48px;
31
+ font-size: 68px; font-weight: 500;
32
+ }
33
+ .kebab {
34
+ position: absolute; top: 160px; right: 36px; width: 60px; height: 60px;
35
+ display: flex; align-items: center; justify-content: center; opacity: 0.8;
36
+ }
37
+ .kebab svg circle { fill: #D9E5D9; }
38
+
39
+ /* Timer Card */
40
+ .card {
41
+ position: absolute; left: 36px; right: 36px; top: 260px;
42
+ height: 1350px; background: #17211B; border-radius: 60px;
43
+ box-shadow: 0 8px 20px rgba(0,0,0,0.35);
44
+ }
45
+ .card-header {
46
+ display: flex; align-items: center; justify-content: space-between;
47
+ padding: 56px 56px 0 56px; font-size: 64px; font-weight: 500;
48
+ }
49
+ .close-pill {
50
+ width: 88px; height: 88px; border-radius: 50%; background: #1E2A22;
51
+ display: flex; align-items: center; justify-content: center; border: 2px solid #294033;
52
+ }
53
+ .close-pill svg { width: 40px; height: 40px; }
54
+ .timer-area {
55
+ position: relative; width: 100%; height: 920px; margin-top: 20px;
56
+ display: flex; align-items: center; justify-content: center;
57
+ }
58
+ .ring {
59
+ width: 780px; height: 780px; border-radius: 50%;
60
+ background:
61
+ conic-gradient(#78B87B 0deg, #78B87B 290deg, #3A4A3F 290deg, #3A4A3F 360deg);
62
+ position: relative;
63
+ filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
64
+ }
65
+ .ring::after {
66
+ content: ""; position: absolute; top: 26px; left: 26px;
67
+ width: 728px; height: 728px; border-radius: 50%; background: #17211B;
68
+ }
69
+ .time-text {
70
+ position: absolute; text-align: center; width: 780px;
71
+ font-size: 180px; font-weight: 600; color: #EAF4E9;
72
+ }
73
+ .refresh {
74
+ position: absolute; top: 560px; left: 50%;
75
+ transform: translateX(-50%);
76
+ width: 76px; height: 76px;
77
+ }
78
+ /* Action buttons */
79
+ .action-row {
80
+ position: absolute; bottom: 70px; left: 56px; right: 56px;
81
+ display: flex; gap: 48px; align-items: center; justify-content: center;
82
+ }
83
+ .pill {
84
+ width: 360px; height: 160px; border-radius: 90px;
85
+ display: flex; align-items: center; justify-content: center;
86
+ font-size: 60px; font-weight: 500;
87
+ }
88
+ .pill.addmin { background: #243328; color: #DDEBDD; box-shadow: inset 0 -6px 0 rgba(0,0,0,0.25); }
89
+ .pill.pause {
90
+ background: #B9E3ED; color: #173235; box-shadow: inset 0 -6px 0 rgba(0,0,0,0.25);
91
+ gap: 26px;
92
+ }
93
+ .pause-icon { width: 36px; height: 60px; display: inline-flex; gap: 12px; }
94
+ .pause-icon span { width: 16px; height: 60px; background: #18363A; border-radius: 6px; }
95
+
96
+ /* Big add button */
97
+ .big-add {
98
+ position: absolute; top: 1660px; left: 50%; transform: translateX(-50%);
99
+ width: 300px; height: 300px; border-radius: 50%;
100
+ background: #A7E7A5; color: #0E1A12;
101
+ display: flex; align-items: center; justify-content: center;
102
+ box-shadow: 0 14px 24px rgba(0,0,0,0.35);
103
+ border: 4px solid #9EDC9B;
104
+ font-size: 120px; line-height: 0;
105
+ }
106
+
107
+ /* Bottom navigation */
108
+ .bottom-nav {
109
+ position: absolute; bottom: 120px; left: 0; right: 0;
110
+ height: 280px; background: #17211B; border-top: 2px solid #1E2A22;
111
+ display: flex; align-items: center; justify-content: space-around;
112
+ color: #DDEBDD;
113
+ }
114
+ .nav-item {
115
+ width: 170px; text-align: center; font-size: 42px; opacity: 0.85;
116
+ }
117
+ .nav-icon { width: 80px; height: 80px; margin: 0 auto 18px auto; opacity: 0.9; }
118
+ .active .nav-wrap {
119
+ width: 160px; height: 90px; margin: 0 auto 18px auto; border-radius: 46px;
120
+ background: #233228; display: flex; align-items: center; justify-content: center; border: 2px solid #2C3E31;
121
+ }
122
+ .label { font-size: 40px; color: #CFE5CF; }
123
+ .inactive .label { color: #CFE5CFB0; }
124
+
125
+ /* Gesture pill */
126
+ .gesture {
127
+ position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
128
+ width: 360px; height: 16px; border-radius: 12px; background: #EAEAEA;
129
+ opacity: 0.85;
130
+ }
131
+ </style>
132
+ </head>
133
+ <body>
134
+ <div id="render-target">
135
+
136
+ <!-- Status bar -->
137
+ <div class="status-bar">
138
+ <div>3:15</div>
139
+ <div class="status-icons">
140
+ <div class="icon-box">
141
+ <svg width="28" height="28" viewBox="0 0 24 24">
142
+ <rect x="4" y="6" width="16" height="12" rx="2" fill="#CFE5CF"></rect>
143
+ </svg>
144
+ </div>
145
+ <div class="icon-box">
146
+ <svg width="28" height="28" viewBox="0 0 24 24">
147
+ <polygon points="5,4 19,12 5,20" fill="#CFE5CF"></polygon>
148
+ </svg>
149
+ </div>
150
+ <div class="icon-box">
151
+ <svg width="28" height="28" viewBox="0 0 24 24">
152
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#CFE5CF" stroke-width="2"></circle>
153
+ <path d="M12 6v6l4 2" stroke="#CFE5CF" stroke-width="2" fill="none" stroke-linecap="round"></path>
154
+ </svg>
155
+ </div>
156
+ <div class="icon-box">
157
+ <svg width="28" height="28" viewBox="0 0 24 24">
158
+ <path d="M6 8h12v8H6z" fill="#CFE5CF"></path>
159
+ </svg>
160
+ </div>
161
+ <div class="status-dot"></div>
162
+ <svg width="34" height="34" viewBox="0 0 24 24">
163
+ <path d="M12 3v2M12 19v2M4 12H2M22 12h-2M5 5l-2-2M21 21l-2-2M5 19l-2 2M21 3l-2 2" stroke="#CFE5CF" stroke-width="2"></path>
164
+ </svg>
165
+ <svg width="34" height="34" viewBox="0 0 24 24">
166
+ <path d="M4 10l8-7 8 7v9a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2z" fill="none" stroke="#CFE5CF" stroke-width="2"></path>
167
+ <rect x="9" y="13" width="6" height="5" fill="#CFE5CF"></rect>
168
+ </svg>
169
+ <svg width="34" height="34" viewBox="0 0 24 24">
170
+ <path d="M6 8h12v8H6z" fill="none" stroke="#CFE5CF" stroke-width="2"></path>
171
+ <path d="M20 5l2 2M2 5l2 2" stroke="#CFE5CF" stroke-width="2" stroke-linecap="round"></path>
172
+ </svg>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Title and menu -->
177
+ <div class="page-title">Timer</div>
178
+ <div class="kebab">
179
+ <svg width="12" height="48" viewBox="0 0 6 24">
180
+ <circle cx="3" cy="4" r="2"></circle>
181
+ <circle cx="3" cy="12" r="2"></circle>
182
+ <circle cx="3" cy="20" r="2"></circle>
183
+ </svg>
184
+ </div>
185
+
186
+ <!-- Timer Card -->
187
+ <div class="card">
188
+ <div class="card-header">
189
+ <div>30m Timer</div>
190
+ <div class="close-pill">
191
+ <svg viewBox="0 0 24 24">
192
+ <path d="M6 6l12 12M18 6L6 18" stroke="#CFE5CF" stroke-width="2" stroke-linecap="round"></path>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+
197
+ <div class="timer-area">
198
+ <div class="ring"></div>
199
+ <div class="time-text">26:53</div>
200
+ <div class="refresh">
201
+ <svg viewBox="0 0 24 24">
202
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#78B87B" stroke-width="2"></circle>
203
+ <path d="M12 5l2 2-2 2M12 19l-2-2 2-2" stroke="#78B87B" stroke-width="2" fill="none" stroke-linecap="round"></path>
204
+ </svg>
205
+ </div>
206
+ </div>
207
+
208
+ <div class="action-row">
209
+ <div class="pill addmin">+1:00</div>
210
+ <div class="pill pause">
211
+ <div class="pause-icon"><span></span><span></span></div>
212
+ </div>
213
+ </div>
214
+ </div>
215
+
216
+ <!-- Big add timer button -->
217
+ <div class="big-add">+</div>
218
+
219
+ <!-- Bottom Navigation -->
220
+ <div class="bottom-nav">
221
+ <div class="nav-item inactive">
222
+ <div class="nav-icon">
223
+ <svg viewBox="0 0 24 24">
224
+ <path d="M6 7l2-2M16 7l2-2" stroke="#CFE5CF" stroke-width="2" stroke-linecap="round"></path>
225
+ <circle cx="12" cy="13" r="7" fill="none" stroke="#CFE5CF" stroke-width="2"></circle>
226
+ <path d="M12 10v4l3 2" stroke="#CFE5CF" stroke-width="2" stroke-linecap="round" fill="none"></path>
227
+ </svg>
228
+ </div>
229
+ <div class="label">Alarm</div>
230
+ </div>
231
+ <div class="nav-item inactive">
232
+ <div class="nav-icon">
233
+ <svg viewBox="0 0 24 24">
234
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#CFE5CF" stroke-width="2"></circle>
235
+ <path d="M12 8v5l4 2" stroke="#CFE5CF" stroke-width="2" stroke-linecap="round"></path>
236
+ </svg>
237
+ </div>
238
+ <div class="label">Clock</div>
239
+ </div>
240
+ <div class="nav-item active">
241
+ <div class="nav-wrap">
242
+ <svg class="nav-icon" viewBox="0 0 24 24">
243
+ <path d="M7 4h10v2H7zM10 7h4v10h-4zM7 19h10v2H7z" fill="#CFE5CF"></path>
244
+ </svg>
245
+ </div>
246
+ <div class="label">Timer</div>
247
+ </div>
248
+ <div class="nav-item inactive">
249
+ <div class="nav-icon">
250
+ <svg viewBox="0 0 24 24">
251
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#CFE5CF" stroke-width="2"></circle>
252
+ <path d="M12 8v8M8 12h8" stroke="#CFE5CF" stroke-width="2" stroke-linecap="round"></path>
253
+ </svg>
254
+ </div>
255
+ <div class="label">Stopwatch</div>
256
+ </div>
257
+ <div class="nav-item inactive">
258
+ <div class="nav-icon">
259
+ <svg viewBox="0 0 24 24">
260
+ <rect x="3" y="10" width="18" height="7" rx="2" fill="none" stroke="#CFE5CF" stroke-width="2"></rect>
261
+ <rect x="3" y="7" width="8" height="3" fill="#CFE5CF"></rect>
262
+ <rect x="15" y="7" width="6" height="3" fill="#CFE5CF"></rect>
263
+ </svg>
264
+ </div>
265
+ <div class="label">Bedtime</div>
266
+ </div>
267
+ </div>
268
+
269
+ <!-- Gesture pill -->
270
+ <div class="gesture"></div>
271
+
272
+ </div>
273
+ </body>
274
+ </html>
code/14705/14705_2.html ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Timer UI</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #0d1210;
13
+ border-radius: 36px; /* subtle rounding like a device screen */
14
+ box-shadow: 0 20px 60px rgba(0,0,0,0.35);
15
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
16
+ color: #E9EFE9;
17
+ }
18
+
19
+ /* Header */
20
+ .header {
21
+ position: absolute;
22
+ top: 160px; left: 64px;
23
+ font-size: 64px;
24
+ font-weight: 500;
25
+ letter-spacing: 0.5px;
26
+ }
27
+ .menu-dots {
28
+ position: absolute;
29
+ top: 170px; right: 40px;
30
+ width: 16px;
31
+ display: flex; flex-direction: column; gap: 8px;
32
+ align-items: center;
33
+ }
34
+ .menu-dots span {
35
+ width: 6px; height: 6px; border-radius: 50%;
36
+ background: #cfd6cf;
37
+ opacity: 0.9;
38
+ }
39
+
40
+ /* Time display */
41
+ .time-display {
42
+ position: absolute;
43
+ top: 360px; left: 0; right: 0;
44
+ display: flex; justify-content: center; align-items: baseline;
45
+ gap: 48px;
46
+ }
47
+ .time-block .num {
48
+ font-size: 156px; line-height: 1;
49
+ color: #9da39c;
50
+ font-weight: 500;
51
+ }
52
+ .time-block .unit {
53
+ font-size: 52px; color: #8d928b; margin-left: 8px;
54
+ position: relative; top: -12px;
55
+ letter-spacing: 1px;
56
+ }
57
+
58
+ /* Keypad */
59
+ .keypad {
60
+ position: absolute;
61
+ top: 820px; left: 0; right: 0;
62
+ display: grid;
63
+ grid-template-columns: repeat(3, 1fr);
64
+ justify-items: center;
65
+ row-gap: 56px; column-gap: 0;
66
+ padding: 0 100px;
67
+ }
68
+ .key {
69
+ width: 250px; height: 250px;
70
+ border-radius: 50%;
71
+ background: #121714;
72
+ border: 1px solid #1f2621;
73
+ display: flex; align-items: center; justify-content: center;
74
+ color: #eef3ee; font-size: 88px; font-weight: 500;
75
+ box-sizing: border-box;
76
+ }
77
+ .key.backspace {
78
+ background: #2f4336;
79
+ border-color: #2f4336;
80
+ }
81
+ .key svg {
82
+ width: 84px; height: 60px;
83
+ }
84
+
85
+ /* Bottom navigation */
86
+ .bottom-nav {
87
+ position: absolute;
88
+ bottom: 120px; left: 0; right: 0;
89
+ height: 280px;
90
+ background: #141a16;
91
+ border-top: 1px solid #1f2621;
92
+ display: flex; align-items: center; justify-content: space-around;
93
+ padding: 20px 40px 60px;
94
+ box-sizing: border-box;
95
+ }
96
+ .nav-item {
97
+ display: flex; flex-direction: column; align-items: center; gap: 18px;
98
+ color: #cfd6cf;
99
+ font-size: 34px;
100
+ }
101
+ .nav-icon {
102
+ width: 80px; height: 80px;
103
+ display: flex; align-items: center; justify-content: center;
104
+ }
105
+ .nav-icon svg { width: 70px; height: 70px; }
106
+ .selected {
107
+ color: #e9efe9;
108
+ }
109
+ .selected .pill {
110
+ width: 180px; height: 90px;
111
+ background: #2f4336;
112
+ border-radius: 50px;
113
+ display: flex; align-items: center; justify-content: center;
114
+ }
115
+ .selected .pill svg { width: 64px; height: 64px; }
116
+
117
+ /* Gesture bar */
118
+ .gesture {
119
+ position: absolute;
120
+ bottom: 36px; left: 50%;
121
+ transform: translateX(-50%);
122
+ width: 420px; height: 16px;
123
+ background: #e9efe9;
124
+ border-radius: 10px;
125
+ opacity: 0.9;
126
+ }
127
+ </style>
128
+ </head>
129
+ <body>
130
+ <div id="render-target">
131
+ <!-- Header -->
132
+ <div class="header">Timer</div>
133
+ <div class="menu-dots"><span></span><span></span><span></span></div>
134
+
135
+ <!-- Time -->
136
+ <div class="time-display">
137
+ <div class="time-block"><span class="num">00</span><span class="unit">h</span></div>
138
+ <div class="time-block"><span class="num">00</span><span class="unit">m</span></div>
139
+ <div class="time-block"><span class="num">00</span><span class="unit">s</span></div>
140
+ </div>
141
+
142
+ <!-- Keypad -->
143
+ <div class="keypad">
144
+ <div class="key">1</div>
145
+ <div class="key">2</div>
146
+ <div class="key">3</div>
147
+
148
+ <div class="key">4</div>
149
+ <div class="key">5</div>
150
+ <div class="key">6</div>
151
+
152
+ <div class="key">7</div>
153
+ <div class="key">8</div>
154
+ <div class="key">9</div>
155
+
156
+ <div class="key">00</div>
157
+ <div class="key">0</div>
158
+ <div class="key backspace">
159
+ <svg viewBox="0 0 48 36" xmlns="http://www.w3.org/2000/svg">
160
+ <path d="M14 18l8-10h18a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H22l-8-10z" fill="none" stroke="#EEF3EE" stroke-width="3" stroke-linejoin="round"/>
161
+ <path d="M30 12l8 12M38 12l-8 12" stroke="#EEF3EE" stroke-width="3" stroke-linecap="round"/>
162
+ </svg>
163
+ </div>
164
+ </div>
165
+
166
+ <!-- Bottom Navigation -->
167
+ <div class="bottom-nav">
168
+ <div class="nav-item">
169
+ <div class="nav-icon">
170
+ <svg viewBox="0 0 48 48">
171
+ <circle cx="24" cy="26" r="12" fill="none" stroke="#cfd6cf" stroke-width="3"/>
172
+ <path d="M10 12l6 6M38 12l-6 6" stroke="#cfd6cf" stroke-width="3" stroke-linecap="round"/>
173
+ </svg>
174
+ </div>
175
+ <div>Alarm</div>
176
+ </div>
177
+
178
+ <div class="nav-item">
179
+ <div class="nav-icon">
180
+ <svg viewBox="0 0 48 48">
181
+ <circle cx="24" cy="24" r="16" fill="none" stroke="#cfd6cf" stroke-width="3"/>
182
+ <path d="M24 24V14M24 24H34" stroke="#cfd6cf" stroke-width="3" stroke-linecap="round"/>
183
+ </svg>
184
+ </div>
185
+ <div>Clock</div>
186
+ </div>
187
+
188
+ <div class="nav-item selected">
189
+ <div class="pill">
190
+ <svg viewBox="0 0 48 48">
191
+ <path d="M16 10h16M16 38h16M18 14l12 10-12 10" fill="none" stroke="#e9efe9" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
192
+ </svg>
193
+ </div>
194
+ <div>Timer</div>
195
+ </div>
196
+
197
+ <div class="nav-item">
198
+ <div class="nav-icon">
199
+ <svg viewBox="0 0 48 48">
200
+ <circle cx="24" cy="26" r="14" fill="none" stroke="#cfd6cf" stroke-width="3"/>
201
+ <path d="M24 10v6M18 6h12" stroke="#cfd6cf" stroke-width="3" stroke-linecap="round"/>
202
+ </svg>
203
+ </div>
204
+ <div>Stopwatch</div>
205
+ </div>
206
+
207
+ <div class="nav-item">
208
+ <div class="nav-icon">
209
+ <svg viewBox="0 0 48 48">
210
+ <rect x="8" y="24" width="32" height="12" rx="2" fill="none" stroke="#cfd6cf" stroke-width="3"/>
211
+ <rect x="8" y="18" width="10" height="6" rx="2" fill="none" stroke="#cfd6cf" stroke-width="3"/>
212
+ </svg>
213
+ </div>
214
+ <div>Bedtime</div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Gesture bar -->
219
+ <div class="gesture"></div>
220
+ </div>
221
+ </body>
222
+ </html>
code/14706/14706_0.html ADDED
@@ -0,0 +1,356 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Mobile UI - Home</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Roboto, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #0b0b0f;
15
+ color: #eaeaea;
16
+ }
17
+
18
+ /* Subtle top gradient header aura */
19
+ .top-gradient {
20
+ position: absolute;
21
+ left: 0; top: 0;
22
+ width: 1080px; height: 420px;
23
+ background: radial-gradient(110% 75% at 30% -10%, rgba(155,129,255,0.75) 0%, rgba(92,71,170,0.55) 30%, rgba(32,26,58,0.45) 55%, rgba(11,11,15,0) 100%);
24
+ pointer-events: none;
25
+ }
26
+
27
+ /* Faux status bar */
28
+ .status {
29
+ height: 64px;
30
+ padding: 0 32px;
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: space-between;
34
+ font-size: 28px;
35
+ color: #ffffff;
36
+ opacity: 0.9;
37
+ }
38
+ .status .right { display: flex; gap: 22px; align-items: center; }
39
+ .dot { width: 8px; height: 8px; border-radius: 50%; background: #cfcfe0; display: inline-block; }
40
+
41
+ /* Header */
42
+ .header {
43
+ padding: 28px 36px 10px 36px;
44
+ display: flex;
45
+ align-items: center;
46
+ justify-content: space-between;
47
+ }
48
+ .header-left { display: flex; align-items: center; gap: 22px; }
49
+ .avatar {
50
+ width: 72px; height: 72px; border-radius: 50%;
51
+ background: linear-gradient(135deg, #9a8cff, #6e82ff);
52
+ display: inline-flex; align-items: center; justify-content: center;
53
+ color: #101014; font-weight: 700;
54
+ }
55
+ .title { font-size: 46px; font-weight: 700; letter-spacing: 0.2px; }
56
+ .header-icons { display: flex; gap: 30px; align-items: center; }
57
+ .icon-btn { width: 54px; height: 54px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; color: #d9d9e8; }
58
+
59
+ svg { width: 36px; height: 36px; fill: currentColor; }
60
+
61
+ /* Category chips */
62
+ .chips {
63
+ padding: 14px 24px;
64
+ display: flex;
65
+ gap: 18px;
66
+ overflow: hidden;
67
+ }
68
+ .chip {
69
+ flex: 0 0 auto;
70
+ min-width: 150px;
71
+ height: 96px;
72
+ border-radius: 20px;
73
+ background: #17171d;
74
+ color: #c9c9d6;
75
+ display: flex; align-items: center; justify-content: center;
76
+ gap: 14px;
77
+ padding: 0 22px;
78
+ }
79
+ .chip .circle {
80
+ width: 56px; height: 56px; border-radius: 50%;
81
+ background: #252531; display: inline-flex; align-items: center; justify-content: center;
82
+ }
83
+ .chip.active {
84
+ background: #2d2b45;
85
+ color: #aab0ff;
86
+ box-shadow: inset 0 0 0 2px rgba(138,122,255,0.35);
87
+ }
88
+
89
+ /* Promo card */
90
+ .promo {
91
+ margin: 22px 28px 24px 28px;
92
+ height: 310px;
93
+ border-radius: 26px;
94
+ background: radial-gradient(120% 120% at 20% 10%, #4a2c2e 0%, #3a2527 45%, #2a1b1e 70%, #1f1619 100%);
95
+ border: 1px solid rgba(255,255,255,0.06);
96
+ color: #f6e9e9;
97
+ position: relative;
98
+ padding: 36px;
99
+ }
100
+ .promo h3 { margin: 0 0 18px 0; font-size: 42px; font-weight: 700; }
101
+ .promo .cta { margin-top: 8px; font-size: 30px; color: #ffe0ef; display: inline-flex; align-items: center; gap: 12px; }
102
+ .promo .img {
103
+ position: absolute; right: 24px; bottom: 16px;
104
+ width: 340px; height: 220px;
105
+ background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 18px;
106
+ color: #757575; display: flex; align-items: center; justify-content: center;
107
+ }
108
+
109
+ /* Ad card */
110
+ .ad {
111
+ margin: 0 28px 28px 28px;
112
+ background: #111114;
113
+ border-radius: 26px;
114
+ border: 1px solid #2b2b32;
115
+ display: flex; align-items: center;
116
+ padding: 26px;
117
+ gap: 24px;
118
+ }
119
+ .ad .thumb {
120
+ width: 92px; height: 92px; border-radius: 18px; background: #ffd24d; color: #3b2b00;
121
+ display: flex; align-items: center; justify-content: center; font-weight: 800;
122
+ }
123
+ .ad .text { flex: 1; }
124
+ .ad .title { font-size: 36px; font-weight: 700; color: #f0f0f2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
125
+ .ad .sub { margin-top: 4px; font-size: 26px; color: #a7a7b6; }
126
+ .kebab { width: 20px; height: 20px; color: #bfbfd0; }
127
+
128
+ /* Section headers */
129
+ .section {
130
+ padding: 16px 34px 0 34px;
131
+ color: #eaeaf4;
132
+ }
133
+ .section h4 { margin: 14px 0 10px 0; font-size: 34px; font-weight: 700; }
134
+ .section .sub { color: #a7a7b6; font-size: 28px; }
135
+
136
+ /* Right side view toggles */
137
+ .view-toggles {
138
+ position: absolute; right: 34px; top: 1060px;
139
+ display: flex; flex-direction: column; gap: 22px;
140
+ color: #c7c7de;
141
+ }
142
+ .view-icon { width: 64px; height: 64px; border-radius: 16px; background: #16161c; display: flex; align-items: center; justify-content: center; }
143
+
144
+ /* Document item */
145
+ .doc-item {
146
+ margin: 24px 28px;
147
+ display: flex; align-items: center; gap: 22px;
148
+ padding: 18px 0;
149
+ }
150
+ .doc-icon {
151
+ width: 80px; height: 80px; border-radius: 12px; background: #e0e6ff; color: #0b3ea7; display: flex; align-items: center; justify-content: center; font-weight: 800;
152
+ border: 1px solid #bfc8ff;
153
+ }
154
+ .doc-text { flex: 1; }
155
+ .doc-title { font-size: 38px; font-weight: 700; color: #ffffff; }
156
+ .doc-sub { margin-top: 6px; color: #a5a5b7; font-size: 26px; }
157
+ .doc-actions { display: flex; gap: 28px; align-items: center; color: #aeb0c8; }
158
+
159
+ /* Floating Create button */
160
+ .fab {
161
+ position: absolute;
162
+ right: 40px;
163
+ bottom: 290px;
164
+ height: 132px; width: 360px;
165
+ border-radius: 66px;
166
+ background: linear-gradient(135deg, #6e7bff 0%, #a46aff 100%);
167
+ color: #0e0e16; font-weight: 800; font-size: 40px;
168
+ display: flex; align-items: center; justify-content: center; gap: 18px;
169
+ box-shadow: 0 12px 30px rgba(112, 98, 255, 0.4);
170
+ }
171
+ .fab .plus {
172
+ width: 64px; height: 64px; border-radius: 50%; background: rgba(14,14,22,0.15);
173
+ display: flex; align-items: center; justify-content: center; color: #0e0e16;
174
+ }
175
+
176
+ /* Bottom navigation */
177
+ .bottom-nav {
178
+ position: absolute; bottom: 118px; left: 0; width: 100%; height: 130px;
179
+ border-top: 1px solid #181820;
180
+ background: rgba(10,10,14,0.9);
181
+ display: flex; align-items: center; justify-content: space-around;
182
+ }
183
+ .tab {
184
+ width: 200px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #aeb1cc;
185
+ font-size: 26px;
186
+ }
187
+ .tab svg { width: 40px; height: 40px; }
188
+ .tab.active { color: #7c86ff; }
189
+ .tab .dot-badge {
190
+ position: absolute; width: 14px; height: 14px; border-radius: 50%; background: #7c86ff; margin-top: -46px; margin-left: 46px;
191
+ }
192
+
193
+ /* Gesture bar */
194
+ .gesture {
195
+ position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
196
+ width: 360px; height: 10px; border-radius: 6px; background: #e6e6eb; opacity: 0.9;
197
+ }
198
+ </style>
199
+ </head>
200
+ <body>
201
+ <div id="render-target">
202
+ <div class="top-gradient"></div>
203
+
204
+ <!-- Status bar -->
205
+ <div class="status">
206
+ <div>8:59</div>
207
+ <div class="right">
208
+ <span class="dot"></span>
209
+ <span>14°</span>
210
+ <span>10°</span>
211
+ <span class="dot"></span>
212
+ <span>🔔</span>
213
+ <span>📶</span>
214
+ <span>🔋</span>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Header -->
219
+ <div class="header">
220
+ <div class="header-left">
221
+ <div class="avatar">•</div>
222
+ <div class="title">Home</div>
223
+ </div>
224
+ <div class="header-icons">
225
+ <div class="icon-btn" title="Premium">
226
+ <svg viewBox="0 0 24 24"><path d="M12 2l4 6-4 4-4-4 4-6zm0 10l8 10H4l8-10z"/></svg>
227
+ </div>
228
+ <div class="icon-btn" title="Notifications">
229
+ <svg viewBox="0 0 24 24"><path d="M12 22a2 2 0 0 0 2-2H10a2 2 0 0 0 2 2zm7-6V11a7 7 0 1 0-14 0v5L3 18v2h18v-2l-2-2z"/></svg>
230
+ </div>
231
+ <div class="icon-btn" title="Files">
232
+ <svg viewBox="0 0 24 24"><path d="M4 6a2 2 0 0 1 2-2h5l3 3h6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6z"/></svg>
233
+ </div>
234
+ <div class="icon-btn" title="Search">
235
+ <svg viewBox="0 0 24 24"><path d="M10 18a8 8 0 1 1 5.3-14l5.7 5.7-2.1 2.1-4.8-4.8A6 6 0 1 0 10 18z"/></svg>
236
+ </div>
237
+ </div>
238
+ </div>
239
+
240
+ <!-- Category chips -->
241
+ <div class="chips">
242
+ <div class="chip active">
243
+ <div class="circle">
244
+ <svg viewBox="0 0 24 24"><path d="M12 8V4h2v6H7V8h5zM6 13h12v7H6z"/></svg>
245
+ </div>
246
+ <div>Recent</div>
247
+ </div>
248
+ <div class="chip">
249
+ <div class="circle">
250
+ <svg viewBox="0 0 24 24"><path d="M12 7l9 9H3l9-9zm0-4L2 13h20L12 3z"/></svg>
251
+ </div>
252
+ <div>Scans</div>
253
+ </div>
254
+ <div class="chip">
255
+ <div class="circle">
256
+ <svg viewBox="0 0 24 24"><path d="M12 17l-5 3 1.9-5.6L4 9l5.9-.5L12 3l2.1 5.5L20 9l-4.9 5.4L17 20z"/></svg>
257
+ </div>
258
+ <div>Favorites</div>
259
+ </div>
260
+ <div class="chip">
261
+ <div class="circle">
262
+ <svg viewBox="0 0 24 24"><path d="M6 2h9l3 3v15a2 2 0 0 1-2 2H6V2zm9 3V2l3 3h-3zM8 7h8v2H8zM8 11h8v2H8zM8 15h6v2H8z"/></svg>
263
+ </div>
264
+ <div>PDF</div>
265
+ </div>
266
+ <div class="chip">
267
+ <div class="circle">
268
+ <svg viewBox="0 0 24 24"><path d="M4 3h12l4 4v14a2 2 0 0 1-2 2H4V3zm12 1.5V7h3.5L16 4.5zM8 10h6a3 3 0 0 1 0 6H8v-6zm2 2v2h4a1 1 0 0 0 0-2h-4z"/></svg>
269
+ </div>
270
+ <div>Word</div>
271
+ </div>
272
+ <div class="chip">
273
+ <div class="circle">
274
+ <svg viewBox="0 0 24 24"><path d="M5 4h14v16H5zM7 6h10v2H7zm0 4h10v2H7zm0 4h6v2H7z"/></svg>
275
+ </div>
276
+ <div>Notes</div>
277
+ </div>
278
+ </div>
279
+
280
+ <!-- Promo card -->
281
+ <div class="promo">
282
+ <h3>Scan and share your documents easily</h3>
283
+ <div class="cta">
284
+ <svg viewBox="0 0 24 24" style="width:30px;height:30px;"><path d="M4 5h4l2-2h4l2 2h4v14H4V5zm8 3a4 4 0 1 1 0 8 4 4 0 0 1 0-8z"/></svg>
285
+ Try scanning
286
+ <svg viewBox="0 0 24 24" style="width:28px;height:28px;"><path d="M12 4l8 8-8 8v-6H4v-4h8V4z"/></svg>
287
+ </div>
288
+ <div class="img">[IMG: Document Illustrations]</div>
289
+ </div>
290
+
291
+ <!-- Ad card -->
292
+ <div class="ad">
293
+ <div class="thumb">📣</div>
294
+ <div class="text">
295
+ <div class="title">High Performance With Best-In-Class ...</div>
296
+ <div class="sub">Ad · Cost-effective transport solution to helps bus...</div>
297
+ </div>
298
+ <div class="kebab">
299
+ <svg viewBox="0 0 24 24"><path d="M12 5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 9a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 14zm0 9a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 23z"/></svg>
300
+ </div>
301
+ </div>
302
+
303
+ <!-- Section headers -->
304
+ <div class="section">
305
+ <h4>Recent</h4>
306
+ <div class="sub">Today</div>
307
+ </div>
308
+
309
+ <!-- Right view toggles -->
310
+ <div class="view-toggles">
311
+ <div class="view-icon" title="Grid">
312
+ <svg viewBox="0 0 24 24"><path d="M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm10 0h8v8h-8v-8z"/></svg>
313
+ </div>
314
+ <div class="view-icon" title="List">
315
+ <svg viewBox="0 0 24 24"><path d="M4 6h16v2H4zM4 11h16v2H4zM4 16h16v2H4z"/></svg>
316
+ </div>
317
+ </div>
318
+
319
+ <!-- Document item -->
320
+ <div class="doc-item">
321
+ <div class="doc-icon">W</div>
322
+ <div class="doc-text">
323
+ <div class="doc-title">Document</div>
324
+ <div class="doc-sub">OneDrive · Personal · Documents</div>
325
+ </div>
326
+ <div class="doc-actions">
327
+ <svg viewBox="0 0 24 24"><path d="M12 3l4 4h-3v7h-2V7H8l4-4zm-7 14h14v2H5z"/></svg>
328
+ <svg viewBox="0 0 24 24"><path d="M12 5a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 9a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 14zm0 9a2 2 0 1 1 .001-4.001A2 2 0 0 1 12 23z"/></svg>
329
+ </div>
330
+ </div>
331
+
332
+ <!-- Floating action button -->
333
+ <div class="fab">
334
+ <div class="plus">
335
+ <svg viewBox="0 0 24 24"><path d="M11 4h2v16h-2zM4 11h16v2H4z"/></svg>
336
+ </div>
337
+ Create
338
+ </div>
339
+
340
+ <!-- Bottom navigation -->
341
+ <div class="bottom-nav">
342
+ <div class="tab active">
343
+ <svg viewBox="0 0 24 24"><path d="M12 3l10 9h-3v9h-6v-6H11v6H5v-9H2l10-9z"/></svg>
344
+ <div>Home</div>
345
+ </div>
346
+ <div class="tab" style="position:relative;">
347
+ <span class="dot-badge"></span>
348
+ <svg viewBox="0 0 24 24"><path d="M4 4h16v6H4V4zm0 8h7v8H4v-8zm9 0h7v8h-7v-8z"/></svg>
349
+ <div>Apps</div>
350
+ </div>
351
+ </div>
352
+
353
+ <div class="gesture"></div>
354
+ </div>
355
+ </body>
356
+ </html>
code/14706/14706_1.html ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1">
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #FFFFFF;
14
+ border-radius: 0;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 90px;
24
+ background: #0F0F0F;
25
+ color: #FFFFFF;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 28px;
29
+ font-size: 34px;
30
+ letter-spacing: 0.5px;
31
+ }
32
+ .sb-left { display: flex; align-items: center; gap: 22px; }
33
+ .sb-right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
34
+
35
+ /* App bar */
36
+ .app-bar {
37
+ position: absolute;
38
+ top: 90px;
39
+ left: 0;
40
+ width: 1080px;
41
+ height: 120px;
42
+ background: #1E1E1E;
43
+ color: #FFFFFF;
44
+ display: flex;
45
+ align-items: center;
46
+ padding: 0 28px;
47
+ }
48
+ .app-title { font-size: 44px; font-weight: 600; margin-left: 18px; }
49
+ .app-actions { margin-left: auto; display: flex; align-items: center; gap: 36px; }
50
+
51
+ /* Ad banner */
52
+ .ad-banner {
53
+ position: absolute;
54
+ top: 210px;
55
+ left: 0;
56
+ width: 1080px;
57
+ height: 170px;
58
+ background: #4A445A;
59
+ display: flex;
60
+ align-items: center;
61
+ padding: 0 28px;
62
+ color: #FFFFFF;
63
+ }
64
+ .ad-img {
65
+ width: 110px;
66
+ height: 110px;
67
+ background: #E0E0E0;
68
+ border: 1px solid #BDBDBD;
69
+ display: flex;
70
+ justify-content: center;
71
+ align-items: center;
72
+ color: #757575;
73
+ font-size: 26px;
74
+ }
75
+ .ad-texts {
76
+ margin-left: 24px;
77
+ display: flex;
78
+ flex-direction: column;
79
+ }
80
+ .ad-title {
81
+ font-size: 38px;
82
+ color: #FFFFFF;
83
+ white-space: nowrap;
84
+ overflow: hidden;
85
+ text-overflow: ellipsis;
86
+ max-width: 700px;
87
+ }
88
+ .ad-sub {
89
+ margin-top: 6px;
90
+ font-size: 28px;
91
+ color: #CFCFCF;
92
+ }
93
+ .ad-actions {
94
+ margin-left: auto;
95
+ display: flex;
96
+ align-items: center;
97
+ gap: 36px;
98
+ }
99
+
100
+ /* Document content */
101
+ .doc-content {
102
+ position: absolute;
103
+ top: 380px;
104
+ left: 0;
105
+ width: 1080px;
106
+ bottom: 220px; /* leaves space for bottom bar */
107
+ background: #FFFFFF;
108
+ padding: 70px 48px;
109
+ box-sizing: border-box;
110
+ }
111
+ .doc-line {
112
+ font-size: 56px;
113
+ color: #111111;
114
+ }
115
+
116
+ /* Bottom tools bar */
117
+ .bottom-bar {
118
+ position: absolute;
119
+ bottom: 0;
120
+ left: 0;
121
+ width: 1080px;
122
+ height: 220px;
123
+ background: #1E1E1E;
124
+ color: #FFFFFF;
125
+ display: flex;
126
+ align-items: center;
127
+ justify-content: space-around;
128
+ padding: 22px 28px 40px;
129
+ box-sizing: border-box;
130
+ }
131
+ .tool {
132
+ width: 180px;
133
+ text-align: center;
134
+ }
135
+ .tool svg { display: block; margin: 0 auto 12px; }
136
+ .tool-label { font-size: 26px; color: #DADADA; }
137
+
138
+ /* Gesture nav pill */
139
+ .nav-pill {
140
+ position: absolute;
141
+ bottom: 16px;
142
+ left: 50%;
143
+ transform: translateX(-50%);
144
+ width: 190px;
145
+ height: 10px;
146
+ background: #FFFFFF;
147
+ border-radius: 8px;
148
+ opacity: 0.9;
149
+ }
150
+
151
+ /* Generic icon styling */
152
+ .icon { fill: none; stroke: #FFFFFF; stroke-width: 2.5; }
153
+ .icon-fill { fill: #FFFFFF; }
154
+ </style>
155
+ </head>
156
+ <body>
157
+ <div id="render-target">
158
+
159
+ <!-- Status Bar -->
160
+ <div class="status-bar">
161
+ <div class="sb-left">
162
+ <span>8:59</span>
163
+ <!-- Bell icon -->
164
+ <svg width="30" height="30" viewBox="0 0 24 24" class="icon">
165
+ <path d="M12 3c-3 0-5 2-5 5v3c0 .9-.4 1.7-1 2.3L5 14h14l-.9-1.7c-.6-.6-1.1-1.4-1.1-2.3V8c0-3-2-5-5-5"/>
166
+ <path d="M9 17a3 3 0 0 0 6 0"/>
167
+ </svg>
168
+ <span>14° 10° •</span>
169
+ </div>
170
+ <div class="sb-right">
171
+ <!-- Sound off icon -->
172
+ <svg width="30" height="30" viewBox="0 0 24 24" class="icon">
173
+ <path d="M4 10v4h3l5 4V6L7 10H4z"/>
174
+ <path d="M16 9l4 6M20 9l-4 6"/>
175
+ </svg>
176
+ <!-- WiFi icon -->
177
+ <svg width="30" height="30" viewBox="0 0 24 24" class="icon">
178
+ <path d="M2 9c5-4 15-4 20 0"/>
179
+ <path d="M5 12c4-3 10-3 14 0"/>
180
+ <path d="M8 15c3-2 5-2 8 0"/>
181
+ <circle cx="12" cy="18" r="1.7" class="icon-fill"></circle>
182
+ </svg>
183
+ <!-- Battery icon -->
184
+ <svg width="40" height="30" viewBox="0 0 28 16" class="icon">
185
+ <rect x="1" y="3" width="22" height="10" rx="2" ry="2" stroke="#FFFFFF"></rect>
186
+ <rect x="3" y="5" width="16" height="6" fill="#FFFFFF"></rect>
187
+ <rect x="23.5" y="6" width="3" height="4" rx="1" ry="1" fill="#FFFFFF"></rect>
188
+ </svg>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- App Bar -->
193
+ <div class="app-bar">
194
+ <!-- Back arrow -->
195
+ <svg width="44" height="44" viewBox="0 0 24 24" class="icon">
196
+ <path d="M15 18l-6-6 6-6"/>
197
+ </svg>
198
+ <div class="app-title">Document</div>
199
+ <div class="app-actions">
200
+ <!-- Search icon -->
201
+ <svg width="44" height="44" viewBox="0 0 24 24" class="icon">
202
+ <circle cx="11" cy="11" r="6"></circle>
203
+ <path d="M20 20l-4.5-4.5"/>
204
+ </svg>
205
+ <!-- More/overflow icon -->
206
+ <svg width="44" height="44" viewBox="0 0 24 24" class="icon-fill">
207
+ <circle cx="12" cy="5" r="2" fill="#FFFFFF"></circle>
208
+ <circle cx="12" cy="12" r="2" fill="#FFFFFF"></circle>
209
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF"></circle>
210
+ </svg>
211
+ </div>
212
+ </div>
213
+
214
+ <!-- Ad Banner -->
215
+ <div class="ad-banner">
216
+ <div class="ad-img">[IMG: Puma logo]</div>
217
+ <div class="ad-texts">
218
+ <div class="ad-title">Women's PUMA DARE TO W...</div>
219
+ <div class="ad-sub">Ad • Rs.3,599.00</div>
220
+ </div>
221
+ <div class="ad-actions">
222
+ <!-- Vertical dots -->
223
+ <svg width="40" height="40" viewBox="0 0 24 24" class="icon-fill">
224
+ <circle cx="12" cy="5" r="2" fill="#FFFFFF"></circle>
225
+ <circle cx="12" cy="12" r="2" fill="#FFFFFF"></circle>
226
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF"></circle>
227
+ </svg>
228
+ <!-- Close X -->
229
+ <svg width="44" height="44" viewBox="0 0 24 24" class="icon">
230
+ <path d="M5 5l14 14M19 5L5 19"/>
231
+ </svg>
232
+ </div>
233
+ </div>
234
+
235
+ <!-- Document Content -->
236
+ <div class="doc-content">
237
+ <div class="doc-line">Just keep dancing</div>
238
+ </div>
239
+
240
+ <!-- Bottom Tools Bar -->
241
+ <div class="bottom-bar">
242
+ <div class="tool">
243
+ <!-- Print Layout icon -->
244
+ <svg width="60" height="60" viewBox="0 0 24 24" class="icon">
245
+ <rect x="5" y="3" width="14" height="10" rx="1"></rect>
246
+ <rect x="7" y="13" width="10" height="8" rx="1"></rect>
247
+ </svg>
248
+ <div class="tool-label">Print Layout</div>
249
+ </div>
250
+ <div class="tool">
251
+ <!-- Headings icon -->
252
+ <svg width="60" height="60" viewBox="0 0 24 24" class="icon">
253
+ <path d="M4 5h6M4 10h8M4 15h10M4 20h12"/>
254
+ </svg>
255
+ <div class="tool-label">Headings</div>
256
+ </div>
257
+ <div class="tool">
258
+ <!-- Edit pencil icon -->
259
+ <svg width="60" height="60" viewBox="0 0 24 24" class="icon">
260
+ <path d="M4 17l1 3 3-1 9-9-3-3-9 9z"/>
261
+ <path d="M14 5l3 3"/>
262
+ </svg>
263
+ <div class="tool-label">Edit</div>
264
+ </div>
265
+ <div class="tool">
266
+ <!-- Share icon -->
267
+ <svg width="60" height="60" viewBox="0 0 24 24" class="icon">
268
+ <circle cx="6" cy="12" r="2"></circle>
269
+ <circle cx="18" cy="6" r="2"></circle>
270
+ <circle cx="18" cy="18" r="2"></circle>
271
+ <path d="M8 12l8-6M8 12l8 6"/>
272
+ </svg>
273
+ <div class="tool-label">Share</div>
274
+ </div>
275
+ <div class="tool">
276
+ <!-- Read Aloud icon -->
277
+ <svg width="60" height="60" viewBox="0 0 24 24" class="icon">
278
+ <path d="M5 17V7l6 4v6l-6-4z"/>
279
+ <path d="M15 8c2 2 2 6 0 8M17 6c3 3 3 9 0 12"/>
280
+ </svg>
281
+ <div class="tool-label">Read Aloud</div>
282
+ </div>
283
+ </div>
284
+
285
+ <!-- Navigation pill -->
286
+ <div class="nav-pill"></div>
287
+
288
+ </div>
289
+ </body>
290
+ </html>
code/14707/14707_0.html ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Product Listing - Recliner 1 Seater</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px; position: relative; overflow: hidden;
11
+ background: #ffffff;
12
+ color: #2c2c2c;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ height: 140px; background: #bdbdbd; color: #fff;
18
+ display: flex; align-items: center; padding: 0 36px; font-weight: 600;
19
+ font-size: 44px;
20
+ }
21
+ .status-icons { margin-left: auto; display: flex; gap: 24px; align-items: center; }
22
+ .dot { width: 14px; height: 14px; background: #fff; border-radius: 50%; opacity: 0.8; }
23
+
24
+ /* App bar */
25
+ .app-bar {
26
+ height: 160px; background: #ffffff; display: flex; align-items: center;
27
+ padding: 0 36px; border-bottom: 1px solid #e6e6e6;
28
+ }
29
+ .left { display: flex; align-items: center; gap: 28px; }
30
+ .title { font-size: 46px; letter-spacing: 1px; color: #222; }
31
+ .actions { margin-left: auto; display: flex; gap: 48px; align-items: center; }
32
+ .icon { width: 56px; height: 56px; fill: none; stroke: #222; stroke-width: 36; }
33
+
34
+ /* Results header */
35
+ .results {
36
+ background: #f3f5f6; padding: 28px 36px;
37
+ }
38
+ .results p { margin: 16px 0; font-size: 40px; color: #2c6672; }
39
+
40
+ /* Grid */
41
+ .list-area { background: #f3f5f6; height: calc(2400px - 140px - 160px - 120px - 180px); overflow: hidden; }
42
+ .grid {
43
+ display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
44
+ padding: 16px 24px 0 24px;
45
+ }
46
+ .card {
47
+ background: #fff; border: 1px solid #e1e1e1; border-radius: 14px; overflow: hidden;
48
+ box-shadow: 0 1px 0 rgba(0,0,0,0.03);
49
+ }
50
+ .img-wrap { position: relative; }
51
+ .placeholder {
52
+ height: 420px; background: #E0E0E0; border-bottom: 1px solid #BDBDBD;
53
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 36px;
54
+ }
55
+ .heart {
56
+ position: absolute; top: 16px; right: 16px; width: 72px; height: 72px;
57
+ border-radius: 50%; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
58
+ border: 1px solid #dcdcdc;
59
+ }
60
+ .heart svg { width: 40px; height: 40px; stroke: #6c6c6c; stroke-width: 38; fill: none; }
61
+
62
+ .ribbon {
63
+ position: absolute; top: 16px; left: 0; background: #f57c00; color: #fff;
64
+ padding: 12px 22px; font-size: 34px; font-weight: 700; border-top-right-radius: 6px; border-bottom-right-radius: 6px;
65
+ }
66
+ .ribbon:after {
67
+ content: ""; position: absolute; right: -18px; top: 0;
68
+ border-top: 24px solid #f57c00; border-bottom: 24px solid transparent; border-left: 18px solid #f57c00;
69
+ }
70
+ .assured {
71
+ position: absolute; right: 16px; bottom: 16px; background: #ff8a3d; color: #fff;
72
+ font-size: 26px; padding: 8px 14px; border-radius: 40px; border: 2px solid #fff; font-weight: 700;
73
+ }
74
+
75
+ .content { padding: 22px; }
76
+ .name {
77
+ font-size: 36px; line-height: 46px; color: #1e1e1e; margin: 8px 0 8px 0;
78
+ }
79
+ .brand { color: #7a7a7a; font-size: 30px; margin-bottom: 12px; }
80
+ .price-row { display: flex; gap: 14px; align-items: baseline; margin: 6px 0; }
81
+ .old { color: #8d8d8d; text-decoration: line-through; font-size: 32px; }
82
+ .new { color: #1f6c7b; font-weight: 800; font-size: 36px; }
83
+ .emi { color: #6c6c6c; font-size: 30px; margin: 8px 0 18px 0; }
84
+ .compare {
85
+ width: 100%; height: 84px; border: 2px solid #f58a3f; background: #fff; color: #f58a3f;
86
+ font-size: 34px; font-weight: 700; border-radius: 12px;
87
+ }
88
+
89
+ /* Bottom bar */
90
+ .bottom-bar {
91
+ position: absolute; left: 0; right: 0; bottom: 86px; height: 160px; background: #ffffff;
92
+ border-top: 1px solid #e5e5e5; display: flex; align-items: center; justify-content: space-around;
93
+ }
94
+ .bottom-item { display: flex; align-items: center; gap: 18px; color: #1f5560; font-weight: 700; font-size: 36px; }
95
+ .list-ic, .filter-ic { width: 60px; height: 60px; stroke: #1f5560; stroke-width: 36; fill: none; }
96
+
97
+ /* Gesture pill */
98
+ .gesture {
99
+ position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
100
+ width: 300px; height: 16px; background: #000; border-radius: 10px;
101
+ }
102
+ </style>
103
+ </head>
104
+ <body>
105
+ <div id="render-target">
106
+
107
+ <!-- Status Bar -->
108
+ <div class="status-bar">
109
+ 10:01
110
+ <div class="status-icons">
111
+ <div class="dot"></div>
112
+ <div class="dot"></div>
113
+ <div class="dot"></div>
114
+ </div>
115
+ </div>
116
+
117
+ <!-- App Bar -->
118
+ <div class="app-bar">
119
+ <div class="left">
120
+ <svg class="icon" viewBox="0 0 100 100">
121
+ <path d="M10 20h80M10 50h80M10 80h80" />
122
+ </svg>
123
+ <div class="title">RECLINER 1 SEATER</div>
124
+ </div>
125
+ <div class="actions">
126
+ <svg class="icon" viewBox="0 0 100 100">
127
+ <circle cx="42" cy="42" r="28"></circle>
128
+ <path d="M66 66l22 22"></path>
129
+ </svg>
130
+ <svg class="icon" viewBox="0 0 100 100">
131
+ <path d="M20 35h60l-8 42H28z"></path>
132
+ <circle cx="38" cy="86" r="6"></circle>
133
+ <circle cx="66" cy="86" r="6"></circle>
134
+ </svg>
135
+ <svg class="icon" viewBox="0 0 100 100">
136
+ <circle cx="50" cy="32" r="18"></circle>
137
+ <path d="M16 86c8-18 60-18 68 0" />
138
+ </svg>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Results line -->
143
+ <div class="results">
144
+ <p>322 results found for product 'recliner 1 seater'</p>
145
+ </div>
146
+
147
+ <!-- Product grid -->
148
+ <div class="list-area">
149
+ <div class="grid">
150
+
151
+ <!-- Card 1 -->
152
+ <div class="card">
153
+ <div class="img-wrap">
154
+ <div class="ribbon">35% Off</div>
155
+ <div class="heart">
156
+ <svg viewBox="0 0 100 100">
157
+ <path d="M50 84C28 66 18 56 18 40a16 16 0 0 1 30-8 16 16 0 0 1 34 8c0 16-10 26-32 44z"></path>
158
+ </svg>
159
+ </div>
160
+ <div class="placeholder">[IMG: Brown Recliner Chair]</div>
161
+ </div>
162
+ <div class="content">
163
+ <div class="name">Robbie Leather One Seater Manual Recliner in Brown...</div>
164
+ <div class="brand">By Durian</div>
165
+ <div class="price-row">
166
+ <div class="old">₹98,200</div>
167
+ <div class="new">₹63,830</div>
168
+ </div>
169
+ <div class="emi">EMI ₹3,065</div>
170
+ <button class="compare">Compare</button>
171
+ </div>
172
+ </div>
173
+
174
+ <!-- Card 2 -->
175
+ <div class="card">
176
+ <div class="img-wrap">
177
+ <div class="ribbon" style="background:#ff7f2a;">66% Off</div>
178
+ <div class="heart">
179
+ <svg viewBox="0 0 100 100">
180
+ <path d="M50 84C28 66 18 56 18 40a16 16 0 0 1 30-8 16 16 0 0 1 34 8c0 16-10 26-32 44z"></path>
181
+ </svg>
182
+ </div>
183
+ <div class="placeholder">[IMG: Leatherette Recliner]</div>
184
+ <div class="assured">ASSURED</div>
185
+ </div>
186
+ <div class="content">
187
+ <div class="name">Lebowski Leatherette One Seater Manual Recliner...</div>
188
+ <div class="brand">By LazeOn</div>
189
+ <div class="price-row">
190
+ <div class="old">₹48,499</div>
191
+ <div class="new">₹16,489</div>
192
+ </div>
193
+ <div class="emi">EMI ₹792</div>
194
+ <button class="compare">Compare</button>
195
+ </div>
196
+ </div>
197
+
198
+ <!-- Card 3 -->
199
+ <div class="card">
200
+ <div class="img-wrap">
201
+ <div class="ribbon" style="background:#ff7f2a;">66% Off</div>
202
+ <div class="heart">
203
+ <svg viewBox="0 0 100 100">
204
+ <path d="M50 84C28 66 18 56 18 40a16 16 0 0 1 30-8 16 16 0 0 1 34 8c0 16-10 26-32 44z"></path>
205
+ </svg>
206
+ </div>
207
+ <div class="placeholder">[IMG: Blue Fabric Recliner]</div>
208
+ <div class="assured">ASSURED</div>
209
+ </div>
210
+ <div class="content">
211
+ <div class="name">Lebowski Fabric One Seater Manual Recliner in Cobalt...</div>
212
+ <div class="brand">By LazeOn</div>
213
+ <div class="price-row">
214
+ <div class="old">₹48,499</div>
215
+ <div class="new">₹16,489</div>
216
+ </div>
217
+ <div class="emi">EMI ₹792</div>
218
+ <button class="compare">Compare</button>
219
+ </div>
220
+ </div>
221
+
222
+ <!-- Card 4 -->
223
+ <div class="card">
224
+ <div class="img-wrap">
225
+ <div class="ribbon" style="background:#ff7a2b;">47% Off</div>
226
+ <div class="heart">
227
+ <svg viewBox="0 0 100 100">
228
+ <path d="M50 84C28 66 18 56 18 40a16 16 0 0 1 30-8 16 16 0 0 1 34 8c0 16-10 26-32 44z"></path>
229
+ </svg>
230
+ </div>
231
+ <div class="placeholder">[IMG: Brown Manual Recliner]</div>
232
+ </div>
233
+ <div class="content">
234
+ <div class="name">Griffin One Seater Manual Recliner in Seina Brown...</div>
235
+ <div class="brand">By LazeOn</div>
236
+ <div class="price-row">
237
+ <div class="old">₹53,799</div>
238
+ <div class="new">₹28,513</div>
239
+ </div>
240
+ <div class="emi">EMI ₹1,369</div>
241
+ <button class="compare">Compare</button>
242
+ </div>
243
+ </div>
244
+
245
+ </div>
246
+ </div>
247
+
248
+ <!-- Bottom action bar -->
249
+ <div class="bottom-bar">
250
+ <div class="bottom-item">
251
+ <svg class="list-ic" viewBox="0 0 100 100">
252
+ <path d="M18 26h64M18 50h64M18 74h64"></path>
253
+ </svg>
254
+ LIST
255
+ </div>
256
+ <div class="bottom-item">
257
+ <svg class="filter-ic" viewBox="0 0 100 100">
258
+ <path d="M16 22h68L58 54v22L42 84V54z"></path>
259
+ </svg>
260
+ FILTER
261
+ </div>
262
+ </div>
263
+
264
+ <div class="gesture"></div>
265
+ </div>
266
+ </body>
267
+ </html>
code/14707/14707_1.html ADDED
@@ -0,0 +1,354 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Compare Products UI</title>
6
+ <style>
7
+ body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
8
+ #render-target {
9
+ width: 1080px;
10
+ height: 2400px;
11
+ position: relative;
12
+ overflow: hidden;
13
+ background: #ffffff;
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ /* Status bar */
18
+ .status-bar {
19
+ position: absolute;
20
+ top: 0;
21
+ left: 0;
22
+ width: 1080px;
23
+ height: 130px;
24
+ background: #BDBDBD;
25
+ color: #ffffff;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 40px;
29
+ font-size: 40px;
30
+ box-sizing: border-box;
31
+ }
32
+ .status-right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ gap: 26px;
36
+ align-items: center;
37
+ }
38
+ .icon-dot {
39
+ width: 16px; height: 16px; background: #fff; border-radius: 50%;
40
+ display: inline-block;
41
+ }
42
+
43
+ /* App bar */
44
+ .app-bar {
45
+ position: absolute;
46
+ top: 130px;
47
+ left: 0;
48
+ width: 1080px;
49
+ height: 160px;
50
+ background: #ffffff;
51
+ border-bottom: 2px solid #e6e6e6;
52
+ display: flex;
53
+ align-items: center;
54
+ padding: 0 34px;
55
+ box-sizing: border-box;
56
+ color: #333;
57
+ }
58
+ .back-icon {
59
+ width: 64px; height: 64px; margin-right: 24px;
60
+ }
61
+ .title {
62
+ font-size: 52px;
63
+ font-weight: 600;
64
+ letter-spacing: 1px;
65
+ }
66
+
67
+ /* Content layout */
68
+ .content {
69
+ position: absolute;
70
+ top: 290px;
71
+ left: 0;
72
+ width: 1080px;
73
+ height: 1990px;
74
+ box-sizing: border-box;
75
+ display: grid;
76
+ grid-template-columns: 620px 4px 456px;
77
+ }
78
+ .divider-vert {
79
+ background: #e6e6e6;
80
+ }
81
+
82
+ /* Left column */
83
+ .left-col {
84
+ padding: 36px;
85
+ box-sizing: border-box;
86
+ }
87
+ .product-title {
88
+ font-size: 44px;
89
+ line-height: 1.2;
90
+ color: #333;
91
+ font-weight: 600;
92
+ margin-bottom: 24px;
93
+ }
94
+ .img-placeholder {
95
+ background: #E0E0E0;
96
+ border: 1px solid #BDBDBD;
97
+ color: #757575;
98
+ display: flex;
99
+ justify-content: center;
100
+ align-items: center;
101
+ text-align: center;
102
+ }
103
+ .thumb-large {
104
+ width: 548px;
105
+ height: 520px;
106
+ font-size: 32px;
107
+ }
108
+ .section-line {
109
+ width: 548px;
110
+ height: 2px;
111
+ background: #e6e6e6;
112
+ margin: 26px 0;
113
+ }
114
+ .label {
115
+ font-size: 34px;
116
+ font-weight: 700;
117
+ color: #5a5a5a;
118
+ letter-spacing: 1px;
119
+ text-transform: uppercase;
120
+ margin-bottom: 12px;
121
+ }
122
+ .price {
123
+ font-size: 56px;
124
+ font-weight: 700;
125
+ color: #4d4d4d;
126
+ margin-bottom: 6px;
127
+ }
128
+ .value {
129
+ font-size: 40px;
130
+ color: #8a8a8a;
131
+ margin-bottom: 18px;
132
+ }
133
+ .dimensions-img {
134
+ width: 548px;
135
+ height: 330px;
136
+ border-radius: 10px;
137
+ font-size: 28px;
138
+ }
139
+
140
+ /* Right column */
141
+ .right-col {
142
+ background: #f5f5f5;
143
+ padding: 30px;
144
+ box-sizing: border-box;
145
+ }
146
+ .right-title {
147
+ font-size: 40px;
148
+ font-weight: 700;
149
+ color: #3d3d3d;
150
+ margin-bottom: 20px;
151
+ }
152
+ .card {
153
+ background: #fff;
154
+ border: 1px solid #ddd;
155
+ border-radius: 12px;
156
+ padding: 18px;
157
+ display: grid;
158
+ grid-template-columns: 170px 1fr;
159
+ gap: 18px;
160
+ align-items: center;
161
+ margin-bottom: 26px;
162
+ box-sizing: border-box;
163
+ }
164
+ .card .thumb {
165
+ width: 170px; height: 120px;
166
+ background: #E0E0E0;
167
+ border: 1px solid #BDBDBD;
168
+ color: #757575;
169
+ display: flex; justify-content: center; align-items: center;
170
+ font-size: 22px; text-align: center;
171
+ }
172
+ .card .title {
173
+ font-size: 34px;
174
+ font-weight: 600;
175
+ color: #444;
176
+ line-height: 1.2;
177
+ }
178
+ .card .price {
179
+ font-size: 40px;
180
+ font-weight: 800;
181
+ color: #000;
182
+ margin-top: 6px;
183
+ }
184
+
185
+ /* Bottom gesture bar */
186
+ .bottom-bar {
187
+ position: absolute;
188
+ bottom: 0;
189
+ left: 0;
190
+ width: 1080px;
191
+ height: 120px;
192
+ background: #000;
193
+ display: flex;
194
+ justify-content: center;
195
+ align-items: center;
196
+ }
197
+ .pill {
198
+ width: 200px; height: 16px; background: #fff; border-radius: 10px;
199
+ }
200
+ </style>
201
+ </head>
202
+ <body>
203
+ <div id="render-target">
204
+
205
+ <!-- Status bar -->
206
+ <div class="status-bar">
207
+ <div>10:08</div>
208
+ <div class="status-right">
209
+ <span>☁️</span>
210
+ <span>✓</span>
211
+ <span>🕘</span>
212
+ <span class="icon-dot"></span>
213
+ <span>📶</span>
214
+ <span>🔋</span>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- App bar -->
219
+ <div class="app-bar">
220
+ <svg class="back-icon" viewBox="0 0 24 24">
221
+ <path d="M15.5 19L8 12l7.5-7" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
222
+ </svg>
223
+ <div class="title">COMPARE</div>
224
+ </div>
225
+
226
+ <!-- Content -->
227
+ <div class="content">
228
+ <!-- Left column -->
229
+ <div class="left-col">
230
+ <div class="product-title">Lebowski Leatherette One Seater Manual Recliner in E...</div>
231
+ <div class="img-placeholder thumb-large">[IMG: Recliner product photo]</div>
232
+
233
+ <div class="section-line"></div>
234
+ <div class="label">PRICE</div>
235
+ <div class="price">₹16,489</div>
236
+
237
+ <div class="section-line"></div>
238
+ <div class="label">DIMENSIONS</div>
239
+ <div class="img-placeholder dimensions-img">[IMG: Dimensions chart]</div>
240
+
241
+ <div class="section-line"></div>
242
+ <div class="label">WITH STORAGE</div>
243
+ <div class="value">no</div>
244
+
245
+ <div class="section-line"></div>
246
+ <div class="label">WHEELS</div>
247
+ <div class="value">No</div>
248
+
249
+ <div class="section-line"></div>
250
+ <div class="label">MATERIAL</div>
251
+ <div class="value">Variant Specific</div>
252
+
253
+ <div class="section-line"></div>
254
+ <div class="label">PRIMARY ROOM</div>
255
+ <div class="value">Living Room</div>
256
+
257
+ <div class="section-line"></div>
258
+ <div class="label">RECLINER MECHANISM</div>
259
+ <div class="value">Manual</div>
260
+
261
+ <div class="section-line"></div>
262
+ <div class="label">WARRANTY IN MONTHS</div>
263
+ <div class="value">12</div>
264
+ </div>
265
+
266
+ <!-- Vertical divider -->
267
+ <div class="divider-vert"></div>
268
+
269
+ <!-- Right column -->
270
+ <div class="right-col">
271
+ <div class="right-title">Choose second product to compare</div>
272
+
273
+ <div class="card">
274
+ <div class="thumb">[IMG: Grey fabric sofa set]</div>
275
+ <div>
276
+ <div class="title">Emila Fabric Three Seater Motorize...</div>
277
+ <div class="price">₹99,991</div>
278
+ </div>
279
+ </div>
280
+
281
+ <div class="card">
282
+ <div class="thumb">[IMG: Brown leatherette sofa]</div>
283
+ <div>
284
+ <div class="title">Raphael Leatherette Three...</div>
285
+ <div class="price">₹42,399</div>
286
+ </div>
287
+ </div>
288
+
289
+ <div class="card">
290
+ <div class="thumb">[IMG: Brown one seater recliner]</div>
291
+ <div>
292
+ <div class="title">Avalon Fabric One Seater Manual R...</div>
293
+ <div class="price">₹17,267</div>
294
+ </div>
295
+ </div>
296
+
297
+ <div class="card">
298
+ <div class="thumb">[IMG: Blue one seater recliner]</div>
299
+ <div>
300
+ <div class="title">Emila One Seater Motorized Reclin...</div>
301
+ <div class="price">₹51,947</div>
302
+ </div>
303
+ </div>
304
+
305
+ <div class="card">
306
+ <div class="thumb">[IMG: Blue fabric recliner]</div>
307
+ <div>
308
+ <div class="title">Lebowski Fabric One Seater Man...</div>
309
+ <div class="price">₹16,489</div>
310
+ </div>
311
+ </div>
312
+
313
+ <div class="card">
314
+ <div class="thumb">[IMG: Maroon leatherette recliner]</div>
315
+ <div>
316
+ <div class="title">Griffin Leatherette One Seater Man...</div>
317
+ <div class="price">₹28,513</div>
318
+ </div>
319
+ </div>
320
+
321
+ <div class="card">
322
+ <div class="thumb">[IMG: Two seater leatherette recliner]</div>
323
+ <div>
324
+ <div class="title">Coleman Leatherette Two...</div>
325
+ <div class="price">₹66,959</div>
326
+ </div>
327
+ </div>
328
+
329
+ <div class="card">
330
+ <div class="thumb">[IMG: Light grey two seater sofa]</div>
331
+ <div>
332
+ <div class="title">Emila Fabric Two Seater Motorize...</div>
333
+ <div class="price">₹87,811</div>
334
+ </div>
335
+ </div>
336
+
337
+ <div class="card">
338
+ <div class="thumb">[IMG: Blue fabric recliner]</div>
339
+ <div>
340
+ <div class="title">Lebowski Fabric One Seater Man...</div>
341
+ <div class="price">₹16,489</div>
342
+ </div>
343
+ </div>
344
+ </div>
345
+ </div>
346
+
347
+ <!-- Bottom gesture bar -->
348
+ <div class="bottom-bar">
349
+ <div class="pill"></div>
350
+ </div>
351
+
352
+ </div>
353
+ </body>
354
+ </html>
code/14707/14707_2.html ADDED
@@ -0,0 +1,262 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Compare Recliners</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Arial, sans-serif; color: #333; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+ /* Top system status bar */
15
+ .status-bar {
16
+ height: 130px; background: #cfcfcf; color: #fff;
17
+ display: flex; align-items: center; justify-content: space-between;
18
+ padding: 0 40px; box-sizing: border-box; font-weight: 600; letter-spacing: 0.5px;
19
+ }
20
+ .status-left { display: flex; align-items: center; gap: 20px; color: #ffffff; }
21
+ .status-right { display: flex; align-items: center; gap: 24px; }
22
+ .status-icon {
23
+ width: 28px; height: 28px; border-radius: 50%; background: #e9e9e9; border: 1px solid #bdbdbd;
24
+ }
25
+
26
+ /* App bar */
27
+ .app-bar {
28
+ height: 120px; border-bottom: 1px solid #e0e0e0; background: #ffffff;
29
+ display: flex; align-items: center; gap: 20px; padding: 0 36px; box-sizing: border-box;
30
+ }
31
+ .app-title { font-size: 40px; font-weight: 700; letter-spacing: 0.5px; }
32
+ .back-btn { width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; }
33
+
34
+ /* Main content layout */
35
+ .content {
36
+ display: flex; height: calc(2400px - 130px - 120px - 120px);
37
+ }
38
+ .left-col {
39
+ width: 660px; box-sizing: border-box; padding: 30px 36px 40px 36px;
40
+ border-right: 2px solid #e6e6e6;
41
+ }
42
+ .right-col {
43
+ width: 420px; box-sizing: border-box; padding: 28px;
44
+ background: #f5f5f5;
45
+ }
46
+
47
+ /* Left column styles */
48
+ .product-title {
49
+ font-size: 36px; font-weight: 700; color: #444; line-height: 1.25; margin-bottom: 24px;
50
+ }
51
+ .img-placeholder {
52
+ background: #E0E0E0; border: 1px solid #BDBDBD; display: flex; justify-content: center; align-items: center;
53
+ color: #757575; font-size: 26px; text-align: center;
54
+ }
55
+ .divider {
56
+ height: 2px; background: #e3e3e3; margin: 26px 0;
57
+ }
58
+ .section-title {
59
+ font-size: 26px; font-weight: 800; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
60
+ }
61
+ .price-value {
62
+ font-size: 44px; font-weight: 700; color: #757575; margin-top: 6px;
63
+ }
64
+ .spec-row { margin: 12px 0 16px 0; }
65
+ .spec-label { font-size: 28px; font-weight: 800; color: #666; text-transform: uppercase; }
66
+ .spec-value { font-size: 34px; color: #9a9a9a; margin-top: 8px; }
67
+
68
+ /* Right column styles */
69
+ .sidebar-title {
70
+ font-size: 32px; font-weight: 800; color: #555; margin: 8px 0 22px;
71
+ }
72
+ .card {
73
+ background: #ffffff; border: 1px solid #dedede; border-radius: 10px;
74
+ display: flex; gap: 16px; padding: 16px; margin-bottom: 22px; align-items: center;
75
+ box-shadow: 0 2px 0 rgba(0,0,0,0.03);
76
+ }
77
+ .card .thumb {
78
+ width: 170px; height: 130px;
79
+ }
80
+ .card .meta { flex: 1; }
81
+ .card .meta .name {
82
+ font-size: 26px; color: #666; line-height: 1.2; margin-bottom: 8px; overflow: hidden;
83
+ }
84
+ .card .price {
85
+ font-size: 34px; font-weight: 800; color: #0a4fa5;
86
+ }
87
+
88
+ /* Bottom navigation bar */
89
+ .nav-bar {
90
+ height: 120px; background: #000000; display: flex; align-items: center; justify-content: center;
91
+ }
92
+ .home-pill {
93
+ width: 180px; height: 12px; background: #ffffff; opacity: 0.9; border-radius: 8px;
94
+ }
95
+ </style>
96
+ </head>
97
+ <body>
98
+ <div id="render-target">
99
+ <!-- Status Bar -->
100
+ <div class="status-bar">
101
+ <div class="status-left">
102
+ <div style="font-size: 38px; color:#fff;">10:09</div>
103
+ <div class="status-icon"></div>
104
+ <div class="status-icon"></div>
105
+ <div class="status-icon"></div>
106
+ <div class="status-icon"></div>
107
+ <div class="status-icon"></div>
108
+ </div>
109
+ <div class="status-right">
110
+ <div class="status-icon"></div>
111
+ <div class="status-icon"></div>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- App Bar -->
116
+ <div class="app-bar">
117
+ <div class="back-btn">
118
+ <svg width="40" height="40" viewBox="0 0 24 24">
119
+ <path d="M15 18l-6-6 6-6" fill="none" stroke="#333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
120
+ </svg>
121
+ </div>
122
+ <div class="app-title">COMPARE</div>
123
+ </div>
124
+
125
+ <!-- Main Content -->
126
+ <div class="content">
127
+ <!-- Left column: product details -->
128
+ <div class="left-col">
129
+ <div class="product-title">Lebowski Leatherette One Seater Manual Recliner in E...</div>
130
+
131
+ <div class="img-placeholder" style="width: 560px; height: 440px;">[IMG: Brown Leatherette Recliner in Room]</div>
132
+
133
+ <div class="divider"></div>
134
+ <div class="section-title">Price</div>
135
+ <div class="price-value">₹16,489</div>
136
+
137
+ <div class="divider"></div>
138
+ <div class="section-title">Dimensions</div>
139
+ <div class="img-placeholder" style="width: 560px; height: 260px;">[IMG: Recliner Dimensions Diagram]</div>
140
+
141
+ <div class="divider"></div>
142
+ <div class="spec-row">
143
+ <div class="spec-label">With Storage</div>
144
+ <div class="spec-value">no</div>
145
+ </div>
146
+
147
+ <div class="divider"></div>
148
+ <div class="spec-row">
149
+ <div class="spec-label">Wheels</div>
150
+ <div class="spec-value">No</div>
151
+ </div>
152
+
153
+ <div class="divider"></div>
154
+ <div class="spec-row">
155
+ <div class="spec-label">Material</div>
156
+ <div class="spec-value">Variant Specific</div>
157
+ </div>
158
+
159
+ <div class="divider"></div>
160
+ <div class="spec-row">
161
+ <div class="spec-label">Primary Room</div>
162
+ <div class="spec-value">Living Room</div>
163
+ </div>
164
+
165
+ <div class="divider"></div>
166
+ <div class="spec-row">
167
+ <div class="spec-label">Recliner Mechanism</div>
168
+ <div class="spec-value">Manual</div>
169
+ </div>
170
+
171
+ <div class="divider"></div>
172
+ <div class="spec-row">
173
+ <div class="spec-label">Warranty in Months</div>
174
+ <div class="spec-value">12</div>
175
+ </div>
176
+ </div>
177
+
178
+ <!-- Right column: product selector list -->
179
+ <div class="right-col">
180
+ <div class="sidebar-title">Choose second product to compare</div>
181
+
182
+ <div class="card">
183
+ <div class="img-placeholder thumb">[IMG: Brown Manual Recliner]</div>
184
+ <div class="meta">
185
+ <div class="name">Emila One Seater Motorized Recliner...</div>
186
+ <div class="price">₹17,267</div>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="card">
191
+ <div class="img-placeholder thumb">[IMG: Blue Fabric Recliner]</div>
192
+ <div class="meta">
193
+ <div class="name">Emila One Seater Motorized Recliner...</div>
194
+ <div class="price">₹51,947</div>
195
+ </div>
196
+ </div>
197
+
198
+ <div class="card">
199
+ <div class="img-placeholder thumb">[IMG: Navy Fabric Recliner]</div>
200
+ <div class="meta">
201
+ <div class="name">Lebowski Fabric One Seater Man...</div>
202
+ <div class="price">₹16,489</div>
203
+ </div>
204
+ </div>
205
+
206
+ <div class="card">
207
+ <div class="img-placeholder thumb">[IMG: Red Leatherette Recliner]</div>
208
+ <div class="meta">
209
+ <div class="name">Griffin Leatherette One Seater Man...</div>
210
+ <div class="price">₹28,513</div>
211
+ </div>
212
+ </div>
213
+
214
+ <div class="card">
215
+ <div class="img-placeholder thumb">[IMG: Brown Two Seater Recliner]</div>
216
+ <div class="meta">
217
+ <div class="name">Coleman Leatherette Two...</div>
218
+ <div class="price">₹66,959</div>
219
+ </div>
220
+ </div>
221
+
222
+ <div class="card">
223
+ <div class="img-placeholder thumb">[IMG: Light Grey Two Seater Recliner]</div>
224
+ <div class="meta">
225
+ <div class="name">Emila Fabric Two Seater Motorize...</div>
226
+ <div class="price">₹87,811</div>
227
+ </div>
228
+ </div>
229
+
230
+ <div class="card">
231
+ <div class="img-placeholder thumb">[IMG: Grey Fabric Recliner]</div>
232
+ <div class="meta">
233
+ <div class="name">Lebowski Fabric One Seater Man...</div>
234
+ <div class="price">₹16,489</div>
235
+ </div>
236
+ </div>
237
+
238
+ <div class="card">
239
+ <div class="img-placeholder thumb">[IMG: Brown Three Seater Recliner]</div>
240
+ <div class="meta">
241
+ <div class="name">Barnes Leatherette Three...</div>
242
+ <div class="price">₹64,295</div>
243
+ </div>
244
+ </div>
245
+
246
+ <div class="card">
247
+ <div class="img-placeholder thumb">[IMG: Brown Two Seater Recliner]</div>
248
+ <div class="meta">
249
+ <div class="name">Griffin Leatherette Two Seater Man...</div>
250
+ <div class="price">₹39,983</div>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- Bottom nav bar -->
257
+ <div class="nav-bar">
258
+ <div class="home-pill"></div>
259
+ </div>
260
+ </div>
261
+ </body>
262
+ </html>
code/14709/14709_0.html ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>My languages</title>
7
+ <style>
8
+ body { margin:0; padding:0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target{
10
+ position: relative;
11
+ overflow: hidden;
12
+ width:1080px;
13
+ height:2400px;
14
+ background:#141519;
15
+ color:#fff;
16
+ }
17
+
18
+ /* Top system/status bar */
19
+ .status-bar{
20
+ height:72px;
21
+ padding:0 28px;
22
+ display:flex;
23
+ align-items:center;
24
+ justify-content:space-between;
25
+ color:#fff;
26
+ font-size:32px;
27
+ letter-spacing:1px;
28
+ opacity:0.95;
29
+ }
30
+ .status-right{
31
+ display:flex;
32
+ gap:22px;
33
+ align-items:center;
34
+ }
35
+ .status-dot{ width:10px; height:10px; background:#fff; border-radius:50%; opacity:.85; }
36
+ .icon-wifi, .icon-battery{
37
+ width:42px; height:42px;
38
+ }
39
+
40
+ /* App header */
41
+ .app-bar{
42
+ height:120px;
43
+ background:#2b2e35;
44
+ display:flex;
45
+ align-items:center;
46
+ padding:0 24px;
47
+ }
48
+ .back-btn{
49
+ width:64px; height:64px; display:flex; align-items:center; justify-content:center;
50
+ margin-right:16px;
51
+ }
52
+ .app-title{
53
+ font-size:48px; font-weight:700;
54
+ }
55
+
56
+ /* Scrollable content area */
57
+ .content{
58
+ position: absolute;
59
+ top:192px; /* status + app bar */
60
+ bottom:180px; /* bottom nav height */
61
+ left:0; right:0;
62
+ overflow:auto;
63
+ padding:24px;
64
+ }
65
+
66
+ .card-current{
67
+ background:#1a1d22;
68
+ border:1px solid #2e3239;
69
+ border-radius:18px;
70
+ padding:28px;
71
+ display:flex;
72
+ align-items:center;
73
+ gap:28px;
74
+ margin-bottom:36px;
75
+ }
76
+ .flag{
77
+ width:120px; height:120px; border-radius:50%;
78
+ background:#E0E0E0; border:2px solid #BDBDBD;
79
+ color:#575757; display:flex; align-items:center; justify-content:center;
80
+ font-size:28px; text-align:center; padding:8px;
81
+ flex:0 0 auto;
82
+ }
83
+ .muted{
84
+ color:#8a8f98; font-size:28px; margin-bottom:6px;
85
+ }
86
+ .lang-title{
87
+ font-size:48px; font-weight:800; line-height:1.1;
88
+ }
89
+
90
+ .section-title{
91
+ color:#b0b5bd; font-weight:700; letter-spacing:2px;
92
+ font-size:30px; margin:28px 8px 16px;
93
+ }
94
+
95
+ .list-row{
96
+ background:#1d1f25;
97
+ border:1px solid #2f333a;
98
+ border-radius:22px;
99
+ padding:24px;
100
+ display:flex;
101
+ align-items:center;
102
+ gap:28px;
103
+ margin:0 8px 22px;
104
+ box-shadow: inset 0 0 0 2px rgba(255,255,255,0.02);
105
+ }
106
+ .row-text{
107
+ font-size:40px; font-weight:700;
108
+ }
109
+
110
+ /* Bottom navigation */
111
+ .bottom-nav{
112
+ position:absolute; left:0; right:0; bottom:0;
113
+ height:180px; background:#1a1d22; border-top:1px solid #2e3239;
114
+ display:flex; align-items:center; justify-content:space-around;
115
+ padding-bottom:22px;
116
+ }
117
+ .nav-item{
118
+ display:flex; flex-direction:column; align-items:center; gap:10px;
119
+ color:#b8bcc4; font-size:28px; font-weight:600;
120
+ }
121
+ .nav-item.active{ color:#ff7a27; }
122
+ .nav-icon{ width:56px; height:56px; }
123
+
124
+ /* Home indicator pill */
125
+ .home-indicator{
126
+ position:absolute; left:50%; transform:translateX(-50%);
127
+ bottom:18px; width:380px; height:10px; background:#d9d9de; border-radius:8px; opacity:.8;
128
+ }
129
+ </style>
130
+ </head>
131
+ <body>
132
+ <div id="render-target">
133
+ <!-- Top status bar -->
134
+ <div class="status-bar">
135
+ <div>8:29</div>
136
+ <div class="status-right">
137
+ <div class="status-dot"></div>
138
+ <div class="status-dot"></div>
139
+ <div class="status-dot"></div>
140
+ <div class="status-dot"></div>
141
+ <!-- simple wifi -->
142
+ <svg class="icon-wifi" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
143
+ <path d="M2 8c5-4 15-4 20 0"/>
144
+ <path d="M5 12c3-2 11-2 14 0"/>
145
+ <path d="M8 16c2-1 6-1 8 0"/>
146
+ <circle cx="12" cy="19" r="1.2" fill="#fff"/>
147
+ </svg>
148
+ <!-- simple battery -->
149
+ <svg class="icon-battery" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2">
150
+ <rect x="2" y="7" width="18" height="10" rx="2"></rect>
151
+ <rect x="4" y="9" width="12" height="6" fill="#fff" stroke="none"></rect>
152
+ <rect x="20.5" y="10" width="2" height="4" rx="1" fill="#fff" stroke="none"></rect>
153
+ </svg>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- App bar -->
158
+ <div class="app-bar">
159
+ <div class="back-btn">
160
+ <svg width="40" height="40" viewBox="0 0 24 24" fill="none" stroke="#cfd3db" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
161
+ <path d="M15 18l-6-6 6-6"></path>
162
+ </svg>
163
+ </div>
164
+ <div class="app-title">My languages</div>
165
+ </div>
166
+
167
+ <!-- Content -->
168
+ <div class="content">
169
+ <div class="card-current">
170
+ <div class="flag">[IMG: Mexico Flag]</div>
171
+ <div>
172
+ <div class="muted">Current learning language</div>
173
+ <div class="lang-title">Spanish (Latin<br>America)</div>
174
+ </div>
175
+ </div>
176
+
177
+ <div class="section-title">I SPEAK</div>
178
+ <div class="list-row" style="margin-bottom:42px;">
179
+ <div class="flag">[IMG: USA Flag]</div>
180
+ <div class="row-text">American English</div>
181
+ </div>
182
+
183
+ <div class="section-title">I WANT TO LEARN</div>
184
+
185
+ <div class="list-row" style="box-shadow:0 0 0 3px rgba(255,255,255,0.05) inset;">
186
+ <div class="flag">[IMG: Mexico Flag]</div>
187
+ <div class="row-text">Spanish (Latin America)</div>
188
+ </div>
189
+
190
+ <div class="list-row">
191
+ <div class="flag">[IMG: Spain Flag]</div>
192
+ <div class="row-text">Spanish (Spain)</div>
193
+ </div>
194
+
195
+ <div class="list-row">
196
+ <div class="flag">[IMG: France Flag]</div>
197
+ <div class="row-text">French</div>
198
+ </div>
199
+
200
+ <div class="list-row">
201
+ <div class="flag">[IMG: Italy Flag]</div>
202
+ <div class="row-text">Italian</div>
203
+ </div>
204
+
205
+ <div class="list-row" style="margin-bottom:120px;">
206
+ <div class="flag">[IMG: Germany Flag]</div>
207
+ <div class="row-text">German</div>
208
+ </div>
209
+ </div>
210
+
211
+ <!-- Bottom navigation -->
212
+ <div class="bottom-nav">
213
+ <div class="nav-item active">
214
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#ff7a27" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
215
+ <path d="M3 11l9-7 9 7"></path>
216
+ <path d="M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-7"></path>
217
+ </svg>
218
+ <div>Home</div>
219
+ </div>
220
+ <div class="nav-item">
221
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#b8bcc4" stroke-width="2">
222
+ <circle cx="12" cy="12" r="8"></circle>
223
+ <circle cx="12" cy="12" r="3" fill="#b8bcc4" stroke="none"></circle>
224
+ </svg>
225
+ <div>Review</div>
226
+ </div>
227
+ <div class="nav-item">
228
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#b8bcc4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
229
+ <rect x="3" y="7" width="7" height="7" rx="1"></rect>
230
+ <rect x="14" y="7" width="7" height="7" rx="1"></rect>
231
+ <rect x="8" y="15" width="8" height="5" rx="1"></rect>
232
+ </svg>
233
+ <div>Live</div>
234
+ </div>
235
+ <div class="nav-item">
236
+ <svg class="nav-icon" viewBox="0 0 24 24" fill="none" stroke="#b8bcc4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
237
+ <path d="M21 21L3 3"></path>
238
+ <circle cx="9" cy="9" r="7"></circle>
239
+ </svg>
240
+ <div>Explore</div>
241
+ </div>
242
+ <div class="home-indicator"></div>
243
+ </div>
244
+ </div>
245
+ </body>
246
+ </html>
code/14709/14709_1.html ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0" />
6
+ <title>Language App - Today</title>
7
+ <style>
8
+ :root{
9
+ --bg:#0f1114;
10
+ --panel:#1a1c21;
11
+ --panel-2:#202329;
12
+ --text:#f5f5f7;
13
+ --muted:#a3a7b3;
14
+ --muted-2:#8b90a0;
15
+ --accent:#ff8a4c;
16
+ --tab-muted:#808390;
17
+ --card-blue:#2c317f;
18
+ --border:#353844;
19
+ --green:#183a2e;
20
+ --green-text:#e7f6ee;
21
+ }
22
+ *{box-sizing:border-box}
23
+ body{margin:0;padding:0;background:transparent;font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;color:var(--text)}
24
+ #render-target{
25
+ position:relative; overflow:hidden;
26
+ width:1080px; height:2400px;
27
+ background:var(--bg);
28
+ border-radius:28px;
29
+ }
30
+ .page{padding:24px 40px 0}
31
+ /* Status bar */
32
+ .status{
33
+ display:flex; align-items:center; justify-content:space-between;
34
+ height:84px; color:#fff; font-weight:700; letter-spacing:0.3px;
35
+ }
36
+ .status .left, .status .right{display:flex; align-items:center; gap:18px}
37
+ .dot{width:6px;height:6px;border-radius:50%;background:#dcdfe6;opacity:.8}
38
+ .chip{width:12px;height:12px;border-radius:2px;background:#dcdfe6;opacity:.9}
39
+ .status svg{display:block}
40
+ /* Header */
41
+ .header{
42
+ position:relative;
43
+ margin-top:8px;
44
+ }
45
+ .hello{
46
+ font-size:88px; font-weight:800; line-height:1.05; margin:0;
47
+ }
48
+ .profile{
49
+ position:absolute; right:0; top:8px;
50
+ width:64px;height:64px;border-radius:50%;
51
+ border:2px solid var(--border); display:flex;align-items:center;justify-content:center;
52
+ opacity:.9;
53
+ }
54
+ /* Tabs */
55
+ .tabs{display:flex; gap:56px; margin-top:18px; font-weight:800}
56
+ .tab{padding:18px 0; color:var(--tab-muted); font-size:44px}
57
+ .tab.active{color:#fff; position:relative}
58
+ .tab.active::after{
59
+ content:""; position:absolute; left:0; bottom:0;
60
+ width:100%; height:8px; background:#fff; border-radius:8px;
61
+ }
62
+ .divider{height:2px;background:#2b2e36;margin-top:6px;margin-bottom:26px}
63
+ /* Goal card */
64
+ .goal{
65
+ background:var(--panel); border:2px solid #3a3d48;
66
+ height:140px; border-radius:24px; padding:24px 28px;
67
+ display:flex; align-items:center; gap:24px;
68
+ box-shadow:inset 0 0 0 6px #2a2d38;
69
+ }
70
+ .badge{
71
+ width:88px; height:88px; border-radius:50%;
72
+ display:flex;align-items:center;justify-content:center;
73
+ background:#E0E0E0; border:1px solid #BDBDBD; color:#757575; font-weight:700; font-size:24px;
74
+ }
75
+ .goal .text{
76
+ font-size:44px; font-weight:800; color:#e8e9ee;
77
+ }
78
+ /* Section titles */
79
+ .caption{color:var(--muted-2); font-size:34px; margin:34px 0 8px}
80
+ .section-title{font-size:66px; line-height:1.15; margin:0 0 26px; font-weight:900}
81
+ /* Large lesson card */
82
+ .lesson-large{
83
+ position:relative; overflow:hidden;
84
+ background:var(--card-blue); border-radius:40px;
85
+ padding:36px; height:720px;
86
+ }
87
+ .lesson-large .small{color:#d9dbef; font-size:40px; font-weight:700; opacity:.95}
88
+ .lesson-large .title{font-size:76px; line-height:1.18; font-weight:900; margin:12px 0 18px}
89
+ .illustration{
90
+ position:absolute; left:36px; bottom:36px;
91
+ width:560px; height:420px;
92
+ background:#E0E0E0; border:1px solid #BDBDBD; color:#757575;
93
+ display:flex;align-items:center;justify-content:center; border-radius:16px;
94
+ font-weight:700;
95
+ }
96
+ .cta{
97
+ position:absolute; right:44px; bottom:56px;
98
+ background:var(--accent); color:#fff; border:none;
99
+ font-size:46px; font-weight:800; padding:26px 38px; border-radius:18px;
100
+ box-shadow:0 8px 0 rgba(0,0,0,.18);
101
+ }
102
+ /* Small lesson grid */
103
+ .grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; margin-top:28px}
104
+ .card{
105
+ background:var(--card-blue); border-radius:30px; padding:28px; height:340px; position:relative;
106
+ color:#fff;
107
+ }
108
+ .lock{
109
+ position:absolute; top:22px; left:22px;
110
+ width:56px; height:56px; border-radius:50%; background:#23307a; display:flex;align-items:center;justify-content:center;
111
+ border:2px solid rgba(255,255,255,.18)
112
+ }
113
+ .card .small{color:#d9dbef; font-size:36px; font-weight:700}
114
+ .card .t{font-size:54px; font-weight:900; line-height:1.2; margin-top:10px}
115
+ /* Promo ribbon */
116
+ .promo{
117
+ margin:30px -40px 0;
118
+ background:var(--green); color:var(--green-text);
119
+ height:120px; display:flex; align-items:center; gap:22px; padding:0 40px;
120
+ border-top:2px solid #224c3a; border-bottom:2px solid #224c3a;
121
+ }
122
+ .promo .key{
123
+ width:64px;height:64px;border-radius:14px;background:#e86f2d;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900
124
+ }
125
+ .promo .msg{font-size:44px; font-weight:700}
126
+ /* Bottom nav */
127
+ .bottom-nav{
128
+ position:absolute; left:0; right:0; bottom:0;
129
+ height:220px; background:#121418; border-top:2px solid #23262e;
130
+ display:flex; align-items:center; justify-content:space-around;
131
+ padding-bottom:36px;
132
+ }
133
+ .nav-item{display:flex; flex-direction:column; align-items:center; gap:10px; color:#b9bdc8; font-size:34px; font-weight:700}
134
+ .nav-item.active{color:#ff8a4c}
135
+ .home-indicator{
136
+ position:absolute; left:50%; transform:translateX(-50%);
137
+ bottom:18px; width:280px; height:10px; border-radius:6px; background:#e8e9ed; opacity:.9;
138
+ }
139
+ /* Simple helpers */
140
+ .sr{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
141
+ </style>
142
+ </head>
143
+ <body>
144
+ <div id="render-target">
145
+ <div class="page">
146
+ <!-- Status bar -->
147
+ <div class="status">
148
+ <div class="left">
149
+ <div style="width:0"></div>
150
+ <div style="font-size:40px">8:30</div>
151
+ <div class="chip"></div>
152
+ <div class="chip"></div>
153
+ <div class="chip"></div>
154
+ <div class="chip"></div>
155
+ <div class="dot"></div>
156
+ </div>
157
+ <div class="right">
158
+ <!-- WiFi -->
159
+ <svg width="42" height="42" viewBox="0 0 24 24" fill="none">
160
+ <path d="M2 8c5-4 15-4 20 0M5 11c4-3 10-3 14 0M8 14c2-2 6-2 8 0M12 18h0" stroke="#e6e8ef" stroke-width="2" stroke-linecap="round"/>
161
+ <circle cx="12" cy="18" r="1.6" fill="#e6e8ef"/>
162
+ </svg>
163
+ <!-- Battery -->
164
+ <svg width="48" height="48" viewBox="0 0 28 28" fill="none">
165
+ <rect x="1" y="7" width="22" height="14" rx="3" stroke="#e6e8ef" stroke-width="2"/>
166
+ <rect x="4" y="10" width="16" height="8" rx="1.5" fill="#e6e8ef"/>
167
+ <rect x="24" y="11" width="3" height="6" rx="1" fill="#e6e8ef"/>
168
+ </svg>
169
+ </div>
170
+ </div>
171
+
172
+ <!-- Header -->
173
+ <div class="header">
174
+ <h1 class="hello">Hi, Michael</h1>
175
+ <div class="profile" aria-label="Profile">
176
+ <svg width="36" height="36" viewBox="0 0 24 24" fill="none">
177
+ <circle cx="12" cy="8" r="3" stroke="#e6e8ef" stroke-width="2"/>
178
+ <path d="M5 20c1-4 13-4 14 0" stroke="#e6e8ef" stroke-width="2" stroke-linecap="round"/>
179
+ </svg>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Tabs -->
184
+ <div class="tabs">
185
+ <div class="tab active">Today</div>
186
+ <div class="tab">Learning plan</div>
187
+ </div>
188
+ <div class="divider"></div>
189
+
190
+ <!-- Weekly goal callout -->
191
+ <div class="goal">
192
+ <div class="badge">IMG</div>
193
+ <div class="text">Set your weekly goal!</div>
194
+ </div>
195
+
196
+ <!-- Section intro -->
197
+ <div class="caption">Newcomer I (A1.1) - Unit 1</div>
198
+ <h2 class="section-title">Greet people and say goodbye</h2>
199
+
200
+ <!-- Main lesson card -->
201
+ <div class="lesson-large">
202
+ <div class="small">Lesson 1</div>
203
+ <div class="title">¡Mucho gusto! Part 1</div>
204
+
205
+ <div class="illustration">[IMG: Lesson Illustration]</div>
206
+ <button class="cta">Start lesson</button>
207
+ </div>
208
+
209
+ <!-- Smaller lessons -->
210
+ <div class="grid">
211
+ <div class="card">
212
+ <div class="lock">
213
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
214
+ <rect x="5" y="10" width="14" height="10" rx="2" stroke="#fff" stroke-opacity=".9" stroke-width="2"/>
215
+ <path d="M8 10V7a4 4 0 1 1 8 0v3" stroke="#fff" stroke-opacity=".9" stroke-width="2"/>
216
+ </svg>
217
+ </div>
218
+ <div class="small">Lesson 2</div>
219
+ <div class="t">¡Mucho gusto!<br/>Part 2</div>
220
+ </div>
221
+
222
+ <div class="card">
223
+ <div class="lock">
224
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
225
+ <rect x="5" y="10" width="14" height="10" rx="2" stroke="#fff" stroke-opacity=".9" stroke-width="2"/>
226
+ <path d="M8 10V7a4 4 0 1 1 8 0v3" stroke="#fff" stroke-opacity=".9" stroke-width="2"/>
227
+ </svg>
228
+ </div>
229
+ <div class="small">Lesson 3</div>
230
+ <div class="t">¡Mucho gusto!<br/>Part 3</div>
231
+ </div>
232
+
233
+ <div class="card">
234
+ <div class="lock">
235
+ <svg width="28" height="28" viewBox="0 0 24 24" fill="none">
236
+ <rect x="5" y="10" width="14" height="10" rx="2" stroke="#fff" stroke-opacity=".9" stroke-width="2"/>
237
+ <path d="M8 10V7a4 4 0 1 1 8 0v3" stroke="#fff" stroke-opacity=".9" stroke-width="2"/>
238
+ </svg>
239
+ </div>
240
+ <div class="small">Lesson 4</div>
241
+ <div class="t">¡Mucho gusto!<br/>Review</div>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- Promo ribbon -->
246
+ <div class="promo">
247
+ <div class="key">
248
+ <svg width="30" height="30" viewBox="0 0 24 24" fill="none">
249
+ <circle cx="8" cy="10" r="4" stroke="#fff" stroke-width="2"/>
250
+ <path d="M11 12l9 0M20 12v4M16 12v3" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
251
+ </svg>
252
+ </div>
253
+ <div class="msg">Unlock all Spanish courses</div>
254
+ </div>
255
+ </div>
256
+
257
+ <!-- Bottom navigation -->
258
+ <nav class="bottom-nav">
259
+ <div class="nav-item active">
260
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
261
+ <path d="M4 10l8-6 8 6v9a1 1 0 0 1-1 1h-4v-6H9v6H5a1 1 0 0 1-1-1v-9z" stroke="#ff8a4c" stroke-width="2" stroke-linejoin="round"/>
262
+ </svg>
263
+ <div>Home</div>
264
+ </div>
265
+ <div class="nav-item">
266
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
267
+ <circle cx="12" cy="12" r="9" stroke="#b9bdc8" stroke-width="2"/>
268
+ <circle cx="12" cy="12" r="3" fill="#b9bdc8"/>
269
+ </svg>
270
+ <div>Review</div>
271
+ </div>
272
+ <div class="nav-item">
273
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
274
+ <path d="M7 11a5 5 0 1 1 10 0v5H7v-5z" stroke="#b9bdc8" stroke-width="2"/>
275
+ <circle cx="12" cy="7" r="2" fill="#b9bdc8"/>
276
+ <path d="M5 20h14" stroke="#b9bdc8" stroke-width="2" stroke-linecap="round"/>
277
+ </svg>
278
+ <div>Live</div>
279
+ </div>
280
+ <div class="nav-item">
281
+ <svg width="56" height="56" viewBox="0 0 24 24" fill="none">
282
+ <path d="M12 3l2.5 6.5L21 12l-6.5 2.5L12 21l-2.5-6.5L3 12l6.5-2.5L12 3z" stroke="#b9bdc8" stroke-width="2" stroke-linejoin="round"/>
283
+ <circle cx="12" cy="12" r="2" fill="#b9bdc8"/>
284
+ </svg>
285
+ <div>Explore</div>
286
+ </div>
287
+ <div class="home-indicator"></div>
288
+ </nav>
289
+ </div>
290
+ </body>
291
+ </html>
code/14709/14709_2.html ADDED
@@ -0,0 +1,168 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Learning Tip Modal</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; }
9
+ #render-target {
10
+ width: 1080px;
11
+ height: 2400px;
12
+ position: relative;
13
+ overflow: hidden;
14
+ background: #151516;
15
+ color: #FFFFFF;
16
+ font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status {
21
+ position: absolute;
22
+ top: 0; left: 0; right: 0;
23
+ height: 180px;
24
+ background: #1B1C20;
25
+ padding: 40px 44px;
26
+ display: flex;
27
+ align-items: center;
28
+ justify-content: space-between;
29
+ color: #EDEDED;
30
+ }
31
+ .status .left {
32
+ display: flex;
33
+ align-items: center;
34
+ gap: 26px;
35
+ font-size: 46px;
36
+ letter-spacing: 0.5px;
37
+ }
38
+ .status .left .dots { color: #D9D9D9; font-size: 44px; }
39
+ .status .right {
40
+ display: flex;
41
+ align-items: center;
42
+ gap: 28px;
43
+ }
44
+ .status svg { width: 60px; height: 60px; stroke: #F1F1F1; fill: none; stroke-width: 2.4; }
45
+
46
+ /* Close button */
47
+ .close-btn {
48
+ position: absolute;
49
+ top: 220px;
50
+ right: 44px;
51
+ width: 76px; height: 76px;
52
+ display: flex; align-items: center; justify-content: center;
53
+ cursor: default;
54
+ }
55
+ .close-btn svg { width: 76px; height: 76px; stroke: #CFCFCF; stroke-width: 6; }
56
+
57
+ /* Main content */
58
+ .content {
59
+ position: absolute;
60
+ top: 520px;
61
+ left: 0; right: 0;
62
+ text-align: center;
63
+ padding: 0 90px;
64
+ }
65
+ .img-circle {
66
+ width: 260px; height: 260px;
67
+ margin: 0 auto 70px;
68
+ border-radius: 50%;
69
+ background: #E0E0E0;
70
+ border: 1px solid #BDBDBD;
71
+ display: flex; align-items: center; justify-content: center;
72
+ color: #757575;
73
+ font-size: 28px;
74
+ }
75
+ h1 {
76
+ margin: 10px 0 26px;
77
+ font-size: 96px;
78
+ font-weight: 800;
79
+ line-height: 1.1;
80
+ color: #FFFFFF;
81
+ letter-spacing: 0.5px;
82
+ }
83
+ .subtitle {
84
+ margin: 0 auto;
85
+ max-width: 880px;
86
+ font-size: 42px;
87
+ line-height: 62px;
88
+ color: #B8B8B8;
89
+ }
90
+
91
+ /* CTA */
92
+ .cta {
93
+ position: absolute;
94
+ left: 44px; right: 44px;
95
+ bottom: 190px;
96
+ height: 170px;
97
+ border-radius: 22px;
98
+ background: #FF7F45;
99
+ display: flex; align-items: center; justify-content: center;
100
+ color: #FFFFFF;
101
+ font-size: 56px;
102
+ font-weight: 700;
103
+ box-shadow: 0 8px 0 rgba(0,0,0,0.15) inset;
104
+ }
105
+
106
+ /* Home indicator */
107
+ .home-indicator {
108
+ position: absolute;
109
+ bottom: 68px;
110
+ left: 50%;
111
+ transform: translateX(-50%);
112
+ width: 300px; height: 14px;
113
+ background: #D1D1D1;
114
+ opacity: 0.7;
115
+ border-radius: 10px;
116
+ }
117
+ </style>
118
+ </head>
119
+ <body>
120
+ <div id="render-target">
121
+
122
+ <!-- Status bar -->
123
+ <div class="status">
124
+ <div class="left">
125
+ <span>8:31</span>
126
+ <span class="dots">• • • •</span>
127
+ </div>
128
+ <div class="right">
129
+ <!-- Wi-Fi icon -->
130
+ <svg viewBox="0 0 24 24" aria-hidden="true">
131
+ <path d="M2 9q10-6 20 0"></path>
132
+ <path d="M6 13q6-4 12 0"></path>
133
+ <path d="M10 17q2-2 4 0"></path>
134
+ <circle cx="12" cy="20" r="1.2" fill="#F1F1F1" stroke="none"></circle>
135
+ </svg>
136
+ <!-- Battery icon -->
137
+ <svg viewBox="0 0 24 24" aria-hidden="true">
138
+ <rect x="2" y="6" width="18" height="12" rx="2"></rect>
139
+ <rect x="20" y="10" width="2" height="4" rx="1" fill="none"></rect>
140
+ </svg>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- Close button -->
145
+ <div class="close-btn" aria-label="Close">
146
+ <svg viewBox="0 0 24 24">
147
+ <path d="M5 5L19 19"></path>
148
+ <path d="M19 5L5 19"></path>
149
+ </svg>
150
+ </div>
151
+
152
+ <!-- Main modal content -->
153
+ <div class="content">
154
+ <div class="img-circle">[IMG: Headphones Illustration]</div>
155
+ <h1>Learning Tip</h1>
156
+ <div class="subtitle">
157
+ Hear it loud and clear: turn up the volume or use headphones.
158
+ </div>
159
+ </div>
160
+
161
+ <!-- CTA button -->
162
+ <div class="cta">Got it!</div>
163
+
164
+ <!-- Home indicator -->
165
+ <div class="home-indicator"></div>
166
+ </div>
167
+ </body>
168
+ </html>
code/14710/14710_0.html ADDED
@@ -0,0 +1,313 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=1080, initial-scale=1.0">
6
+ <title>Mobile UI Mock</title>
7
+ <style>
8
+ body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }
9
+ #render-target {
10
+ width: 1080px; height: 2400px;
11
+ position: relative; overflow: hidden;
12
+ background: #1F2226; /* page background */
13
+ border-radius: 0;
14
+ box-shadow: none;
15
+ color: #E7E9EE;
16
+ }
17
+
18
+ /* Status bar */
19
+ .status-bar {
20
+ height: 120px;
21
+ padding: 0 36px;
22
+ display: flex;
23
+ align-items: center;
24
+ justify-content: space-between;
25
+ color: #E7E9EE;
26
+ font-size: 42px;
27
+ }
28
+ .status-left { font-weight: 600; letter-spacing: 1px; }
29
+ .status-right { display: flex; align-items: center; gap: 26px; }
30
+ .status-icon { display: inline-flex; align-items: center; justify-content: center; }
31
+ .status-icon svg { width: 46px; height: 46px; fill: none; stroke: #C9CDD3; stroke-width: 3; }
32
+
33
+ /* Content area */
34
+ .content {
35
+ position: absolute;
36
+ top: 120px;
37
+ left: 0;
38
+ right: 0;
39
+ bottom: 220px; /* space for bottom nav */
40
+ padding: 20px 24px 0 24px;
41
+ overflow: hidden;
42
+ }
43
+
44
+ .card {
45
+ background: #2A2D31;
46
+ border-radius: 28px;
47
+ box-shadow: 0 6px 18px rgba(0,0,0,0.35);
48
+ margin: 28px 12px;
49
+ padding: 40px 40px 38px 40px;
50
+ color: #F1F3F6;
51
+ }
52
+ .card-header {
53
+ display: flex;
54
+ align-items: center;
55
+ justify-content: space-between;
56
+ margin-bottom: 22px;
57
+ }
58
+ .card h2 {
59
+ margin: 0;
60
+ font-size: 48px;
61
+ font-weight: 700;
62
+ letter-spacing: 0.2px;
63
+ }
64
+ .close-btn {
65
+ background: transparent;
66
+ border: none;
67
+ padding: 8px;
68
+ cursor: pointer;
69
+ }
70
+ .close-btn svg { width: 42px; height: 42px; stroke: #C9CDD3; stroke-width: 4; }
71
+
72
+ .card-body {
73
+ display: flex;
74
+ align-items: flex-start;
75
+ justify-content: space-between;
76
+ gap: 24px;
77
+ }
78
+ .card-text {
79
+ flex: 1;
80
+ }
81
+ .card-text p {
82
+ margin: 0 0 26px 0;
83
+ font-size: 34px;
84
+ line-height: 1.5;
85
+ color: #B7BCC4;
86
+ }
87
+ .card-text a {
88
+ color: #8AB4F8;
89
+ font-size: 36px;
90
+ text-decoration: none;
91
+ }
92
+
93
+ .img-placeholder {
94
+ width: 250px;
95
+ height: 200px;
96
+ background: #E0E0E0;
97
+ border: 1px solid #BDBDBD;
98
+ border-radius: 16px;
99
+ display: flex;
100
+ justify-content: center;
101
+ align-items: center;
102
+ color: #757575;
103
+ font-size: 28px;
104
+ text-align: center;
105
+ }
106
+
107
+ /* Floating Action Button */
108
+ .fab {
109
+ position: absolute;
110
+ right: 56px;
111
+ bottom: 300px;
112
+ width: 140px;
113
+ height: 140px;
114
+ border-radius: 50%;
115
+ background: #3A3D41;
116
+ box-shadow: 0 10px 24px rgba(0,0,0,0.5);
117
+ display: flex;
118
+ align-items: center;
119
+ justify-content: center;
120
+ }
121
+ .fab .plus {
122
+ position: relative;
123
+ width: 56px;
124
+ height: 56px;
125
+ }
126
+ .fab .plus::before,
127
+ .fab .plus::after {
128
+ content: "";
129
+ position: absolute;
130
+ background: #FFFFFF;
131
+ border-radius: 6px;
132
+ }
133
+ .fab .plus::before {
134
+ width: 56px; height: 10px; left: 0; top: 23px;
135
+ }
136
+ .fab .plus::after {
137
+ width: 10px; height: 56px; left: 23px; top: 0;
138
+ }
139
+
140
+ /* Bottom navigation */
141
+ .bottom-nav {
142
+ position: absolute;
143
+ bottom: 0; left: 0; right: 0;
144
+ height: 200px;
145
+ background: #2B2E32;
146
+ border-top: 1px solid #3A3D41;
147
+ display: flex;
148
+ align-items: center;
149
+ justify-content: space-around;
150
+ padding-bottom: 18px;
151
+ }
152
+ .nav-item {
153
+ width: 180px;
154
+ display: flex;
155
+ flex-direction: column;
156
+ align-items: center;
157
+ gap: 18px;
158
+ color: #C5CBD3;
159
+ text-align: center;
160
+ }
161
+ .nav-item svg { width: 64px; height: 64px; stroke: #C5CBD3; fill: none; stroke-width: 3.5; }
162
+ .nav-item span { font-size: 30px; }
163
+ .nav-item.active span { color: #8AB4F8; font-weight: 600; }
164
+ .nav-item.active svg { stroke: #8AB4F8; }
165
+
166
+ /* Gesture bar (Android navigation pill) */
167
+ .gesture-bar {
168
+ position: absolute;
169
+ bottom: 208px;
170
+ left: 50%;
171
+ transform: translateX(-50%);
172
+ width: 290px;
173
+ height: 16px;
174
+ border-radius: 12px;
175
+ background: #EDEDED;
176
+ opacity: 0.85;
177
+ }
178
+ </style>
179
+ </head>
180
+ <body>
181
+ <div id="render-target">
182
+
183
+ <div class="status-bar">
184
+ <div class="status-left">5:16</div>
185
+ <div class="status-right">
186
+ <div class="status-icon">
187
+ <!-- Wi-Fi icon -->
188
+ <svg viewBox="0 0 24 24">
189
+ <path d="M2 8c5-4 15-4 20 0" />
190
+ <path d="M5 11c4-3 10-3 14 0" />
191
+ <path d="M8 14c3-2 7-2 10 0" />
192
+ <circle cx="12" cy="18" r="1.8" />
193
+ </svg>
194
+ </div>
195
+ <div class="status-icon">
196
+ <!-- Battery icon -->
197
+ <svg viewBox="0 0 24 24">
198
+ <rect x="2" y="6" width="18" height="12" rx="2" />
199
+ <rect x="21" y="9" width="2" height="6" rx="1" />
200
+ <rect x="4" y="8" width="12" height="8" fill="#C9CDD3" stroke="none"/>
201
+ </svg>
202
+ </div>
203
+ </div>
204
+ </div>
205
+
206
+ <div class="content">
207
+ <!-- Card 1 -->
208
+ <div class="card">
209
+ <div class="card-header">
210
+ <h2>Track your respiratory rate</h2>
211
+ <button class="close-btn" aria-label="Dismiss">
212
+ <svg viewBox="0 0 24 24">
213
+ <path d="M4 4 L20 20" />
214
+ <path d="M20 4 L4 20" />
215
+ </svg>
216
+ </button>
217
+ </div>
218
+ <div class="card-body">
219
+ <div class="card-text">
220
+ <p>Measuring your breathing can give you an understanding of your body’s wellbeing. Use your phone camera to take a reading.</p>
221
+ <a href="#">Get started</a>
222
+ </div>
223
+ <div class="img-placeholder">[IMG: Phone + stethoscope]</div>
224
+ </div>
225
+ </div>
226
+
227
+ <!-- Card 2 -->
228
+ <div class="card">
229
+ <div class="card-header">
230
+ <h2>Check your heart rate</h2>
231
+ <button class="close-btn" aria-label="Dismiss">
232
+ <svg viewBox="0 0 24 24">
233
+ <path d="M4 4 L20 20" />
234
+ <path d="M20 4 L4 20" />
235
+ </svg>
236
+ </button>
237
+ </div>
238
+ <div class="card-body">
239
+ <div class="card-text">
240
+ <p>Did you know things like dehydration can affect your heart rate? Measure yours at any time just using your phone.</p>
241
+ <a href="#">Get started</a>
242
+ </div>
243
+ <div class="img-placeholder">[IMG: Heart rate reading]</div>
244
+ </div>
245
+ </div>
246
+
247
+ <!-- Card 3 -->
248
+ <div class="card">
249
+ <div class="card-header">
250
+ <h2>Your sleep in Fit</h2>
251
+ <button class="close-btn" aria-label="Dismiss">
252
+ <svg viewBox="0 0 24 24">
253
+ <path d="M4 4 L20 20" />
254
+ <path d="M20 4 L4 20" />
255
+ </svg>
256
+ </button>
257
+ </div>
258
+ <div class="card-body">
259
+ <div class="card-text">
260
+ <p>Once you connect a sleep tracking app or device, you’ll start seeing sleep data after the first night</p>
261
+ <a href="#">Learn more</a>
262
+ </div>
263
+ <div class="img-placeholder">[IMG: Tent with sleeper]</div>
264
+ </div>
265
+ </div>
266
+ </div>
267
+
268
+ <!-- Floating Action Button -->
269
+ <div class="fab" aria-label="Add">
270
+ <div class="plus"></div>
271
+ </div>
272
+
273
+ <!-- Gesture bar -->
274
+ <div class="gesture-bar"></div>
275
+
276
+ <!-- Bottom Navigation -->
277
+ <div class="bottom-nav">
278
+ <div class="nav-item active">
279
+ <svg viewBox="0 0 24 24">
280
+ <circle cx="12" cy="12" r="8" />
281
+ <path d="M7 15a8 8 0 0 0 10 0" />
282
+ </svg>
283
+ <span>Home</span>
284
+ </div>
285
+ <div class="nav-item">
286
+ <svg viewBox="0 0 24 24">
287
+ <rect x="6" y="5" width="12" height="16" rx="2" />
288
+ <rect x="10" y="3" width="4" height="3" rx="1" />
289
+ <path d="M9 10h6M9 13h6M9 16h6" />
290
+ </svg>
291
+ <span>Journal</span>
292
+ </div>
293
+ <div class="nav-item">
294
+ <svg viewBox="0 0 24 24">
295
+ <path d="M5 7h14M5 12h14M5 17h14" />
296
+ <circle cx="7" cy="7" r="1.5" />
297
+ <circle cx="7" cy="12" r="1.5" />
298
+ <circle cx="7" cy="17" r="1.5" />
299
+ </svg>
300
+ <span>Browse</span>
301
+ </div>
302
+ <div class="nav-item">
303
+ <svg viewBox="0 0 24 24">
304
+ <circle cx="12" cy="8" r="4" />
305
+ <path d="M4 20c2-4 6-6 8-6s6 2 8 6" />
306
+ </svg>
307
+ <span>Profile</span>
308
+ </div>
309
+ </div>
310
+
311
+ </div>
312
+ </body>
313
+ </html>