yhzheng1031 commited on
Commit
79228d9
·
verified ·
1 Parent(s): 3e3ea9e

Upload folder using huggingface_hub

Browse files
Files changed (11) hide show
  1. 25_0.html +349 -0
  2. 25_1.html +348 -0
  3. 25_10.html +328 -0
  4. 25_2.html +328 -0
  5. 25_3.html +238 -0
  6. 25_4.html +315 -0
  7. 25_5.html +315 -0
  8. 25_6.html +349 -0
  9. 25_7.html +218 -0
  10. 25_8.html +395 -0
  11. 25_9.html +201 -0
25_0.html ADDED
@@ -0,0 +1,349 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Screen Mock</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ background: transparent;
12
+ font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
13
+ }
14
+ #render-target {
15
+ width: 1080px;
16
+ height: 2400px;
17
+ position: relative;
18
+ overflow: hidden;
19
+ background: #CFCFCF; /* outer canvas behind wallpaper */
20
+ }
21
+
22
+ /* Wallpaper placeholder covering entire screen */
23
+ .wallpaper {
24
+ position: absolute;
25
+ inset: 0;
26
+ background: #E0E0E0;
27
+ border: 1px solid #BDBDBD;
28
+ color: #757575;
29
+ display: flex;
30
+ justify-content: center;
31
+ align-items: center;
32
+ font-size: 34px;
33
+ letter-spacing: 0.5px;
34
+ }
35
+
36
+ /* Status bar */
37
+ .status-bar {
38
+ position: absolute;
39
+ top: 24px;
40
+ left: 28px;
41
+ right: 28px;
42
+ height: 64px;
43
+ display: flex;
44
+ align-items: center;
45
+ justify-content: space-between;
46
+ color: #FFFFFF;
47
+ z-index: 2;
48
+ font-size: 30px;
49
+ }
50
+ .status-right {
51
+ display: flex;
52
+ align-items: center;
53
+ gap: 22px;
54
+ }
55
+ .status-icon svg {
56
+ width: 40px;
57
+ height: 40px;
58
+ fill: none;
59
+ stroke: #FFFFFF;
60
+ stroke-width: 3;
61
+ }
62
+
63
+ /* Date & Weather */
64
+ .date {
65
+ position: absolute;
66
+ top: 260px;
67
+ left: 60px;
68
+ color: #FFFFFF;
69
+ font-size: 64px;
70
+ font-weight: 500;
71
+ z-index: 2;
72
+ text-shadow: 0 2px 4px rgba(0,0,0,0.25);
73
+ }
74
+ .weather {
75
+ position: absolute;
76
+ top: 348px;
77
+ left: 60px;
78
+ color: rgba(255,255,255,0.92);
79
+ font-size: 34px;
80
+ display: flex;
81
+ align-items: center;
82
+ gap: 16px;
83
+ z-index: 2;
84
+ text-shadow: 0 2px 4px rgba(0,0,0,0.25);
85
+ }
86
+ .weather svg {
87
+ width: 44px;
88
+ height: 44px;
89
+ }
90
+
91
+ /* App grid */
92
+ .icon-grid {
93
+ position: absolute;
94
+ left: 42px;
95
+ right: 42px;
96
+ top: 1360px;
97
+ display: grid;
98
+ grid-template-columns: repeat(4, 1fr);
99
+ grid-auto-rows: minmax(210px, auto);
100
+ row-gap: 170px;
101
+ z-index: 2;
102
+ }
103
+ .app {
104
+ display: flex;
105
+ flex-direction: column;
106
+ align-items: center;
107
+ }
108
+ .icon-circle {
109
+ width: 150px;
110
+ height: 150px;
111
+ border-radius: 50%;
112
+ background: #FFFFFF;
113
+ box-shadow: 0 6px 18px rgba(0,0,0,0.18);
114
+ display: flex;
115
+ align-items: center;
116
+ justify-content: center;
117
+ }
118
+ .icon-label {
119
+ margin-top: 26px;
120
+ font-size: 30px;
121
+ color: rgba(255,255,255,0.92);
122
+ text-shadow: 0 2px 4px rgba(0,0,0,0.25);
123
+ }
124
+
125
+ /* Dock search pill */
126
+ .dock {
127
+ position: absolute;
128
+ left: 80px;
129
+ right: 80px;
130
+ bottom: 170px;
131
+ height: 120px;
132
+ border-radius: 60px;
133
+ background: #2F2F2F;
134
+ z-index: 2;
135
+ display: flex;
136
+ align-items: center;
137
+ padding: 0 28px;
138
+ }
139
+ .dock-left {
140
+ display: flex;
141
+ align-items: center;
142
+ gap: 18px;
143
+ }
144
+ .dock-right {
145
+ margin-left: auto;
146
+ display: flex;
147
+ align-items: center;
148
+ gap: 28px;
149
+ }
150
+ .dock svg {
151
+ width: 56px;
152
+ height: 56px;
153
+ }
154
+
155
+ /* Gesture bar */
156
+ .gesture {
157
+ position: absolute;
158
+ bottom: 64px;
159
+ left: 420px;
160
+ width: 240px;
161
+ height: 12px;
162
+ border-radius: 6px;
163
+ background: rgba(255,255,255,0.55);
164
+ z-index: 2;
165
+ }
166
+ </style>
167
+ </head>
168
+ <body>
169
+ <div id="render-target">
170
+ <!-- Wallpaper placeholder -->
171
+ <div class="wallpaper">[IMG: Account page background]</div>
172
+
173
+ <!-- Status Bar -->
174
+ <div class="status-bar">
175
+ <div class="status-left">8:15</div>
176
+ <div class="status-right">
177
+ <!-- Signal bars -->
178
+ <span class="status-icon" title="Cell Signal">
179
+ <svg viewBox="0 0 24 24">
180
+ <rect x="2" y="14" width="3" height="8" fill="#FFFFFF"></rect>
181
+ <rect x="7" y="10" width="3" height="12" fill="#FFFFFF"></rect>
182
+ <rect x="12" y="6" width="3" height="16" fill="#FFFFFF"></rect>
183
+ <rect x="17" y="2" width="3" height="20" fill="#FFFFFF"></rect>
184
+ </svg>
185
+ </span>
186
+ <!-- Wi‑Fi -->
187
+ <span class="status-icon" title="Wi‑Fi">
188
+ <svg viewBox="0 0 24 24">
189
+ <path d="M2 8c5-4 15-4 20 0" stroke="#FFFFFF" stroke-linecap="round"></path>
190
+ <path d="M5 12c4-3 10-3 14 0" stroke="#FFFFFF" stroke-linecap="round"></path>
191
+ <path d="M8 16c3-2 5-2 8 0" stroke="#FFFFFF" stroke-linecap="round"></path>
192
+ <circle cx="12" cy="19" r="2" fill="#FFFFFF"></circle>
193
+ </svg>
194
+ </span>
195
+ <!-- Battery -->
196
+ <span class="status-icon" title="Battery">
197
+ <svg viewBox="0 0 28 18">
198
+ <rect x="1" y="2" width="22" height="14" rx="2" ry="2" stroke="#FFFFFF"></rect>
199
+ <rect x="24" y="6" width="3" height="6" rx="1" ry="1" fill="#FFFFFF"></rect>
200
+ <rect x="3" y="4" width="16" height="10" fill="#FFFFFF"></rect>
201
+ </svg>
202
+ </span>
203
+ </div>
204
+ </div>
205
+
206
+ <!-- Date & Weather -->
207
+ <div class="date">Fri, Jun 30</div>
208
+ <div class="weather">
209
+ <svg viewBox="0 0 48 48">
210
+ <path d="M4 18c5 4 15 4 20 0M8 26c4 3 12 3 16 0M12 34c3 2 9 2 12 0" stroke="#FFFFFF" stroke-width="3" stroke-linecap="round" fill="none"></path>
211
+ </svg>
212
+ <div>28°C · Today 33° · 5° · Fog</div>
213
+ </div>
214
+
215
+ <!-- App Grid -->
216
+ <div class="icon-grid">
217
+ <!-- Play Store -->
218
+ <div class="app">
219
+ <div class="icon-circle">
220
+ <svg viewBox="0 0 64 64">
221
+ <!-- Simple Play Store-like kite -->
222
+ <polygon points="10,10 46,32 10,54" fill="#34A853"></polygon>
223
+ <polygon points="10,10 30,22 46,10" fill="#4285F4"></polygon>
224
+ <polygon points="10,54 30,42 46,54" fill="#FBBC04"></polygon>
225
+ <polygon points="30,22 30,42 46,32" fill="#EA4335"></polygon>
226
+ </svg>
227
+ </div>
228
+ <div class="icon-label">Play Store</div>
229
+ </div>
230
+
231
+ <!-- Gmail -->
232
+ <div class="app">
233
+ <div class="icon-circle">
234
+ <svg viewBox="0 0 64 64">
235
+ <rect x="10" y="18" width="44" height="28" rx="4" ry="4" fill="#FFFFFF" stroke="#BDBDBD"></rect>
236
+ <path d="M12 20 L32 36 L52 20" stroke-width="6" stroke-linecap="round" fill="none" stroke="#EA4335"></path>
237
+ <path d="M12 46 L12 24 L32 40 L52 24 L52 46" stroke-width="6" stroke-linecap="round" fill="none" stroke="#34A853"></path>
238
+ <path d="M12 24 L32 40 L52 24" stroke-width="6" stroke-linecap="round" fill="none" stroke="#FBBC04"></path>
239
+ <path d="M12 24 L32 40 L52 24" stroke-width="6" stroke-linecap="round" fill="none" stroke="#4285F4" opacity="0.8"></path>
240
+ </svg>
241
+ </div>
242
+ <div class="icon-label">Gmail</div>
243
+ </div>
244
+
245
+ <!-- Photos -->
246
+ <div class="app">
247
+ <div class="icon-circle">
248
+ <svg viewBox="0 0 64 64">
249
+ <circle cx="24" cy="24" r="12" fill="#EA4335"></circle>
250
+ <circle cx="40" cy="24" r="12" fill="#FBBC04"></circle>
251
+ <circle cx="24" cy="40" r="12" fill="#34A853"></circle>
252
+ <circle cx="40" cy="40" r="12" fill="#4285F4"></circle>
253
+ </svg>
254
+ </div>
255
+ <div class="icon-label">Photos</div>
256
+ </div>
257
+
258
+ <!-- YouTube -->
259
+ <div class="app">
260
+ <div class="icon-circle">
261
+ <svg viewBox="0 0 64 64">
262
+ <rect x="14" y="18" width="36" height="28" rx="6" ry="6" fill="#FF0000"></rect>
263
+ <polygon points="28,24 28,40 42,32" fill="#FFFFFF"></polygon>
264
+ </svg>
265
+ </div>
266
+ <div class="icon-label">YouTube</div>
267
+ </div>
268
+
269
+ <!-- Phone -->
270
+ <div class="app">
271
+ <div class="icon-circle">
272
+ <svg viewBox="0 0 64 64">
273
+ <path d="M20 18c4 0 6 6 6 6s-4 4-4 6c2 6 12 12 18 14 2-2 6-4 6-4s6 2 6 6c-1 4-8 6-12 6-18-4-28-18-30-32 0-4 2-10 6-12 4 0 4 4 4 4z" fill="#1A73E8"></path>
274
+ </svg>
275
+ </div>
276
+ <div class="icon-label">Play Store</div>
277
+ </div>
278
+
279
+ <!-- Messages -->
280
+ <div class="app">
281
+ <div class="icon-circle">
282
+ <svg viewBox="0 0 64 64">
283
+ <rect x="12" y="14" width="40" height="30" rx="10" ry="10" fill="#4285F4"></rect>
284
+ <rect x="20" y="38" width="14" height="10" rx="5" ry="5" fill="#FFFFFF"></rect>
285
+ </svg>
286
+ </div>
287
+ <div class="icon-label">Gmail</div>
288
+ </div>
289
+
290
+ <!-- Chrome -->
291
+ <div class="app">
292
+ <div class="icon-circle">
293
+ <svg viewBox="0 0 64 64">
294
+ <circle cx="32" cy="32" r="28" fill="#EA4335"></circle>
295
+ <path d="M32 32 L54 32 A22 22 0 0 1 20 54" fill="#FBBC04"></path>
296
+ <path d="M32 32 L20 54 A22 22 0 0 1 10 20" fill="#34A853"></path>
297
+ <circle cx="32" cy="32" r="12" fill="#4285F4" stroke="#FFFFFF" stroke-width="3"></circle>
298
+ </svg>
299
+ </div>
300
+ <div class="icon-label">Photos</div>
301
+ </div>
302
+
303
+ <!-- Camera -->
304
+ <div class="app">
305
+ <div class="icon-circle">
306
+ <svg viewBox="0 0 64 64">
307
+ <rect x="12" y="20" width="40" height="26" rx="6" ry="6" fill="#FFFFFF" stroke="#9E9E9E" stroke-width="3"></rect>
308
+ <rect x="20" y="12" width="12" height="8" rx="3" ry="3" fill="#9E9E9E"></rect>
309
+ <circle cx="32" cy="33" r="10" fill="#4285F4"></circle>
310
+ </svg>
311
+ </div>
312
+ <div class="icon-label">YouTube</div>
313
+ </div>
314
+ </div>
315
+
316
+ <!-- Dock Search -->
317
+ <div class="dock">
318
+ <div class="dock-left">
319
+ <!-- Google G simplified -->
320
+ <svg viewBox="0 0 64 64">
321
+ <circle cx="32" cy="32" r="26" fill="#FFFFFF"></circle>
322
+ <path d="M32 16a16 16 0 1 0 11.3 27.3" stroke="#4285F4" stroke-width="6" fill="none"></path>
323
+ <path d="M32 16a16 16 0 0 1 11 4" stroke="#EA4335" stroke-width="6" fill="none"></path>
324
+ <path d="M43 20a16 16 0 0 1 0 24" stroke="#FBBC04" stroke-width="6" fill="none"></path>
325
+ <path d="M32 48a16 16 0 0 1-11-4" stroke="#34A853" stroke-width="6" fill="none"></path>
326
+ </svg>
327
+ </div>
328
+ <div class="dock-right">
329
+ <!-- Mic -->
330
+ <svg viewBox="0 0 64 64">
331
+ <rect x="26" y="16" width="12" height="24" rx="6" ry="6" fill="#FFFFFF"></rect>
332
+ <path d="M16 30c0 10 8 18 16 18s16-8 16-18" stroke="#FFFFFF" stroke-width="4" fill="none"></path>
333
+ <rect x="30" y="48" width="4" height="8" fill="#FFFFFF"></rect>
334
+ <rect x="26" y="56" width="12" height="4" rx="2" ry="2" fill="#FFFFFF"></rect>
335
+ </svg>
336
+ <!-- Camera/Lens -->
337
+ <svg viewBox="0 0 64 64">
338
+ <rect x="12" y="20" width="40" height="26" rx="10" ry="10" fill="#FFFFFF"></rect>
339
+ <circle cx="32" cy="33" r="9" fill="#4285F4"></circle>
340
+ <rect x="22" y="12" width="14" height="8" rx="4" ry="4" fill="#EA4335"></rect>
341
+ </svg>
342
+ </div>
343
+ </div>
344
+
345
+ <!-- Gesture bar -->
346
+ <div class="gesture"></div>
347
+ </div>
348
+ </body>
349
+ </html>
25_1.html ADDED
@@ -0,0 +1,348 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>UI Mock - Advertisement</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: #f3f5f6;
14
+ }
15
+
16
+ /* Top system/status bar */
17
+ .status-bar {
18
+ position: absolute;
19
+ top: 0;
20
+ left: 0;
21
+ width: 1080px;
22
+ height: 90px;
23
+ background: #000;
24
+ }
25
+
26
+ /* App header behind the ad */
27
+ .app-header {
28
+ position: absolute;
29
+ top: 90px;
30
+ left: 0;
31
+ width: 1080px;
32
+ height: 220px;
33
+ background: #eef0f2;
34
+ }
35
+ .header-content {
36
+ position: absolute;
37
+ left: 40px;
38
+ top: 40px;
39
+ width: 1000px;
40
+ height: 140px;
41
+ display: flex;
42
+ align-items: center;
43
+ gap: 26px;
44
+ }
45
+ .avatar {
46
+ position: relative;
47
+ width: 96px;
48
+ height: 96px;
49
+ border-radius: 50%;
50
+ background: #c9e4d7;
51
+ color: #31755c;
52
+ display: flex;
53
+ align-items: center;
54
+ justify-content: center;
55
+ font-weight: bold;
56
+ font-size: 44px;
57
+ }
58
+ .avatar .dot {
59
+ position: absolute;
60
+ right: -2px;
61
+ top: -2px;
62
+ width: 26px;
63
+ height: 26px;
64
+ background: #e74c3c;
65
+ border-radius: 50%;
66
+ border: 3px solid #eef0f2;
67
+ }
68
+ .search-pill {
69
+ flex: 1;
70
+ height: 96px;
71
+ border: 2px solid #c7c7c7;
72
+ border-radius: 48px;
73
+ background: #fff;
74
+ display: flex;
75
+ align-items: center;
76
+ padding: 0 30px;
77
+ gap: 24px;
78
+ box-sizing: border-box;
79
+ }
80
+ .search-pill .pill-text {
81
+ flex: 1;
82
+ color: #333;
83
+ font-size: 38px;
84
+ }
85
+ .icon-btn {
86
+ width: 52px;
87
+ height: 52px;
88
+ border-radius: 26px;
89
+ background: #f2f2f2;
90
+ display: flex;
91
+ align-items: center;
92
+ justify-content: center;
93
+ border: 1px solid #d7d7d7;
94
+ }
95
+ .svg-icon { width: 36px; height: 36px; }
96
+
97
+ /* Small top banner ad */
98
+ .banner {
99
+ position: absolute;
100
+ top: 190px;
101
+ left: 90px;
102
+ width: 900px;
103
+ height: 140px;
104
+ background: #fff;
105
+ border-radius: 28px;
106
+ box-shadow: 0 8px 24px rgba(0,0,0,0.15);
107
+ display: flex;
108
+ align-items: center;
109
+ padding: 0 26px;
110
+ gap: 22px;
111
+ }
112
+ .banner .img {
113
+ width: 96px;
114
+ height: 96px;
115
+ background: #E0E0E0;
116
+ border: 1px solid #BDBDBD;
117
+ border-radius: 20px;
118
+ display: flex;
119
+ align-items: center;
120
+ justify-content: center;
121
+ color: #757575;
122
+ font-size: 22px;
123
+ }
124
+ .banner .text-wrap {
125
+ flex: 1;
126
+ line-height: 1.2;
127
+ }
128
+ .banner .title {
129
+ font-size: 38px;
130
+ color: #111;
131
+ font-weight: 600;
132
+ }
133
+ .banner .subtitle {
134
+ font-size: 34px;
135
+ color: #4a4a4a;
136
+ }
137
+ .banner .arrow {
138
+ width: 44px;
139
+ height: 44px;
140
+ }
141
+
142
+ /* Main advertisement card */
143
+ .ad-card {
144
+ position: absolute;
145
+ top: 420px;
146
+ left: 40px;
147
+ width: 1000px;
148
+ height: 1730px;
149
+ background: #ffffff;
150
+ border-radius: 28px;
151
+ box-shadow: 0 12px 36px rgba(0,0,0,0.12);
152
+ }
153
+ .ad-card .label {
154
+ text-align: center;
155
+ font-size: 36px;
156
+ color: #666;
157
+ padding-top: 26px;
158
+ }
159
+ .ad-card .content-row {
160
+ display: flex;
161
+ align-items: center;
162
+ gap: 40px;
163
+ padding: 80px 80px 40px 80px;
164
+ }
165
+ .app-icon {
166
+ width: 200px;
167
+ height: 200px;
168
+ background: #E0E0E0;
169
+ border: 1px solid #BDBDBD;
170
+ border-radius: 28px;
171
+ display: flex;
172
+ align-items: center;
173
+ justify-content: center;
174
+ color: #757575;
175
+ font-size: 24px;
176
+ }
177
+ .ad-text {
178
+ flex: 1;
179
+ }
180
+ .ad-title {
181
+ font-size: 64px;
182
+ color: #222;
183
+ font-weight: 600;
184
+ margin-bottom: 18px;
185
+ }
186
+ .installed {
187
+ display: flex;
188
+ align-items: center;
189
+ gap: 16px;
190
+ }
191
+ .installed .check {
192
+ width: 42px;
193
+ height: 42px;
194
+ }
195
+ .installed .installed-text {
196
+ font-size: 36px;
197
+ color: #2f8a3b;
198
+ font-weight: 600;
199
+ }
200
+
201
+ /* Loading spinner */
202
+ .spinner-wrap {
203
+ width: 100%;
204
+ display: flex;
205
+ justify-content: center;
206
+ margin-top: 120px;
207
+ margin-bottom: 120px;
208
+ }
209
+ .spinner {
210
+ width: 120px;
211
+ height: 120px;
212
+ border: 10px solid #e5e5e5;
213
+ border-top-color: #bdbdbd;
214
+ border-radius: 50%;
215
+ animation: spin 1.2s linear infinite;
216
+ }
217
+ @keyframes spin { to { transform: rotate(360deg); } }
218
+
219
+ .ad-description {
220
+ width: 860px;
221
+ margin: 0 auto;
222
+ text-align: center;
223
+ color: #8a8a8a;
224
+ font-size: 36px;
225
+ line-height: 1.5;
226
+ }
227
+
228
+ .cta {
229
+ position: absolute;
230
+ bottom: 120px;
231
+ left: 90px;
232
+ width: 820px;
233
+ height: 120px;
234
+ background: #2f6f38;
235
+ border-radius: 18px;
236
+ display: flex;
237
+ align-items: center;
238
+ justify-content: center;
239
+ color: #fff;
240
+ font-size: 48px;
241
+ font-weight: 700;
242
+ letter-spacing: 1px;
243
+ }
244
+
245
+ .info {
246
+ position: absolute;
247
+ bottom: 34px;
248
+ left: 26px;
249
+ width: 42px;
250
+ height: 42px;
251
+ border-radius: 21px;
252
+ border: 1px solid #bfcad3;
253
+ color: #83a2c2;
254
+ display: flex;
255
+ align-items: center;
256
+ justify-content: center;
257
+ font-weight: bold;
258
+ }
259
+
260
+ /* Bottom home indicator */
261
+ .home-indicator {
262
+ position: absolute;
263
+ bottom: 28px;
264
+ left: 50%;
265
+ transform: translateX(-50%);
266
+ width: 240px;
267
+ height: 12px;
268
+ background: #111;
269
+ border-radius: 8px;
270
+ opacity: 0.18;
271
+ }
272
+ </style>
273
+ </head>
274
+ <body>
275
+ <div id="render-target">
276
+
277
+ <div class="status-bar"></div>
278
+
279
+ <div class="app-header">
280
+ <div class="header-content">
281
+ <div class="avatar">C<div class="dot"></div></div>
282
+ <div class="search-pill">
283
+ <svg class="svg-icon" viewBox="0 0 24 24">
284
+ <circle cx="10" cy="10" r="7" stroke="#666" stroke-width="2" fill="none"></circle>
285
+ <line x1="15" y1="15" x2="22" y2="22" stroke="#666" stroke-width="2"></line>
286
+ </svg>
287
+ <div class="pill-text">Operation Mayfair (2023)</div>
288
+ <div class="icon-btn">
289
+ <svg class="svg-icon" viewBox="0 0 24 24">
290
+ <path d="M3 11h18M6 6h12M8 16h8" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"></path>
291
+ </svg>
292
+ </div>
293
+ <div class="icon-btn">
294
+ <svg class="svg-icon" viewBox="0 0 24 24">
295
+ <path d="M4 6h16M4 12h16M4 18h16" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"></path>
296
+ </svg>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+
302
+ <!-- Small banner ad -->
303
+ <div class="banner">
304
+ <div class="img">[IMG: TeraBox Icon]</div>
305
+ <div class="text-wrap">
306
+ <div class="title">Continue to app</div>
307
+ <div class="subtitle">TeraBox</div>
308
+ </div>
309
+ <svg class="arrow" viewBox="0 0 24 24">
310
+ <path d="M9 5l7 7-7 7" fill="none" stroke="#2d7cf3" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
311
+ </svg>
312
+ </div>
313
+
314
+ <!-- Main advertisement card -->
315
+ <div class="ad-card">
316
+ <div class="label">Advertisement</div>
317
+
318
+ <div class="content-row">
319
+ <div class="app-icon">[IMG: EatSure App Icon]</div>
320
+ <div class="ad-text">
321
+ <div class="ad-title">EatSure: Food Delivery</div>
322
+ <div class="installed">
323
+ <svg class="check" viewBox="0 0 24 24">
324
+ <path d="M20 6l-11 11-5-5" fill="none" stroke="#2f8a3b" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"></path>
325
+ </svg>
326
+ <div class="installed-text">Installed</div>
327
+ </div>
328
+ </div>
329
+ </div>
330
+
331
+ <div class="spinner-wrap">
332
+ <div class="spinner"></div>
333
+ </div>
334
+
335
+ <div class="ad-description">
336
+ Get Exclusive Deals on Eatsure<br>
337
+ Order your favourite food and get free Dishes, free Delivery, flat 40% off* &amp; much more!
338
+ </div>
339
+
340
+ <div class="cta">Open</div>
341
+
342
+ <div class="info">i</div>
343
+ </div>
344
+
345
+ <div class="home-indicator"></div>
346
+ </div>
347
+ </body>
348
+ </html>
25_10.html ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>File Manager 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: #FFFFFF; color: #222;
13
+ 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: 110px; display: flex; align-items: center; justify-content: space-between;
20
+ padding: 0 40px; font-size: 36px; color: #333;
21
+ }
22
+ .status-right { display: flex; align-items: center; gap: 24px; }
23
+ .status-icon svg { width: 40px; height: 40px; }
24
+
25
+ /* Selection header */
26
+ .selection-header {
27
+ position: absolute; top: 110px; left: 0; right: 0;
28
+ height: 120px; display: flex; align-items: center; justify-content: space-between;
29
+ padding: 0 40px; border-bottom: 1px solid #E9E9EF;
30
+ }
31
+ .selection-header .link { color: #5A63F2; font-size: 36px; }
32
+ .selection-title { font-weight: 600; font-size: 40px; color: #111; }
33
+
34
+ /* Tabs */
35
+ .tabs {
36
+ position: absolute; top: 230px; left: 0; right: 0;
37
+ height: 106px; display: flex; align-items: flex-end; gap: 40px;
38
+ padding: 0 40px; border-bottom: 1px solid #E9E9EF;
39
+ }
40
+ .tab { font-size: 34px; color: #777; padding-bottom: 20px; }
41
+ .tab.active { color: #222; position: relative; }
42
+ .tab.active::after {
43
+ content: ""; position: absolute; left: 0; bottom: 0;
44
+ width: 60px; height: 6px; background: #5A63F2; border-radius: 3px;
45
+ }
46
+
47
+ /* Sort row */
48
+ .sort-row {
49
+ position: absolute; top: 336px; left: 0; right: 0;
50
+ height: 92px; display: flex; align-items: center; gap: 18px;
51
+ padding: 0 40px; color: #666; font-size: 32px;
52
+ }
53
+ .sort-row svg { width: 40px; height: 40px; }
54
+
55
+ /* List area */
56
+ .list {
57
+ position: absolute; top: 428px; left: 0; right: 0; bottom: 220px;
58
+ overflow: hidden; padding-bottom: 24px;
59
+ }
60
+ .list-row {
61
+ display: flex; align-items: center; justify-content: space-between;
62
+ padding: 28px 40px; border-bottom: 1px solid #EFEFF4;
63
+ }
64
+ .list-row.selected { background: #EAF3FF; }
65
+ .left {
66
+ display: flex; align-items: center;
67
+ }
68
+ .icon-box {
69
+ width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
70
+ margin-right: 26px;
71
+ }
72
+ .item-text h3 { margin: 0; font-size: 40px; font-weight: 600; color: #222; }
73
+ .item-text .meta { margin-top: 6px; font-size: 28px; color: #8A8A99; }
74
+
75
+ .check { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
76
+
77
+ /* Vault row look */
78
+ .vault .item-text h3 { font-weight: 500; color: #52525B; }
79
+
80
+ /* Promo card */
81
+ .promo {
82
+ margin: 40px auto 0 auto; width: 800px;
83
+ padding: 30px 24px; border: 1px solid #D8F3ED; border-radius: 14px;
84
+ display: flex; align-items: center; gap: 20px;
85
+ color: #19BFA2; background: #F9FFFE;
86
+ }
87
+ .promo .sub { margin: 4px 0 0; font-size: 28px; color: #8AA4A1; }
88
+
89
+ /* Bottom action bar */
90
+ .bottom-bar {
91
+ position: absolute; bottom: 0; left: 0; right: 0;
92
+ height: 200px; background: #5A63F2; color: #fff;
93
+ display: flex; align-items: center; justify-content: space-around;
94
+ }
95
+ .action {
96
+ display: flex; flex-direction: column; align-items: center; gap: 16px;
97
+ font-size: 28px;
98
+ }
99
+ .action svg { width: 56px; height: 56px; fill: none; stroke: #fff; stroke-width: 2.5; }
100
+
101
+ /* Gesture pill */
102
+ .gesture-pill {
103
+ position: absolute; bottom: 220px; left: 50%;
104
+ transform: translateX(-50%);
105
+ width: 320px; height: 12px; background: #BDBDBD; border-radius: 30px;
106
+ }
107
+ </style>
108
+ </head>
109
+ <body>
110
+ <div id="render-target">
111
+
112
+ <!-- Status bar -->
113
+ <div class="status-bar">
114
+ <div class="time">8:19</div>
115
+ <div class="status-right">
116
+ <div class="status-icon">
117
+ <!-- Wifi -->
118
+ <svg viewBox="0 0 24 24">
119
+ <path d="M2 8c5-4 15-4 20 0" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"/>
120
+ <path d="M5 11c4-3 10-3 14 0" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"/>
121
+ <path d="M9 14c3-2 5-2 8 0" stroke="#555" stroke-width="2" fill="none" stroke-linecap="round"/>
122
+ <circle cx="12" cy="18" r="2" fill="#555"/>
123
+ </svg>
124
+ </div>
125
+ <div class="status-icon">
126
+ <!-- Battery -->
127
+ <svg viewBox="0 0 26 24">
128
+ <rect x="2" y="5" width="18" height="14" rx="2" stroke="#555" fill="none" stroke-width="2"/>
129
+ <rect x="5" y="8" width="12" height="8" fill="#555"/>
130
+ <rect x="21" y="9" width="3" height="6" rx="1" fill="#555"/>
131
+ </svg>
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <!-- Selection header -->
137
+ <div class="selection-header">
138
+ <div class="link">Cancel</div>
139
+ <div class="selection-title">1 file(s) selected</div>
140
+ <div class="link">Select All</div>
141
+ </div>
142
+
143
+ <!-- Tabs -->
144
+ <div class="tabs">
145
+ <div class="tab active">All</div>
146
+ <div class="tab">Offline</div>
147
+ </div>
148
+
149
+ <!-- Sort row -->
150
+ <div class="sort-row">
151
+ <svg viewBox="0 0 24 24">
152
+ <path d="M4 6h12M4 12h8M4 18h4" stroke="#8A8A99" stroke-width="2" stroke-linecap="round"/>
153
+ </svg>
154
+ <span>Sort by time</span>
155
+ </div>
156
+
157
+ <!-- List -->
158
+ <div class="list">
159
+
160
+ <!-- Personal Vault -->
161
+ <div class="list-row vault">
162
+ <div class="left">
163
+ <div class="icon-box">
164
+ <svg viewBox="0 0 24 24">
165
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="#BFC5CE"/>
166
+ <circle cx="12" cy="12" r="3" fill="#9AA2AD"/>
167
+ <rect x="11.2" y="10.8" width="1.6" height="3" fill="#fff"/>
168
+ </svg>
169
+ </div>
170
+ <div class="item-text">
171
+ <h3>Personal Vault</h3>
172
+ </div>
173
+ </div>
174
+ <div style="width:44px;"></div>
175
+ </div>
176
+
177
+ <!-- password file - selected -->
178
+ <div class="list-row selected">
179
+ <div class="left">
180
+ <div class="icon-box">
181
+ <!-- Folder -->
182
+ <svg viewBox="0 0 24 24">
183
+ <path d="M3 7h7l2 2h9v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z" fill="#F3C74E"/>
184
+ <path d="M3 7h7l2 2H3z" fill="#E9B94A"/>
185
+ </svg>
186
+ </div>
187
+ <div class="item-text">
188
+ <h3>password file</h3>
189
+ <div class="meta">2023-06-28 15:09</div>
190
+ </div>
191
+ </div>
192
+ <div class="check">
193
+ <!-- Selected check -->
194
+ <svg viewBox="0 0 24 24">
195
+ <circle cx="12" cy="12" r="11" fill="#5A63F2"/>
196
+ <path d="M6 12l4 4 8-8" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
197
+ </svg>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- plant -->
202
+ <div class="list-row">
203
+ <div class="left">
204
+ <div class="icon-box">
205
+ <!-- Cloud -->
206
+ <svg viewBox="0 0 24 24">
207
+ <path d="M6 18h10a4 4 0 0 0 0-8 5 5 0 0 0-9-1 4 4 0 0 0-1 9z" fill="#D5DAE0"/>
208
+ </svg>
209
+ </div>
210
+ <div class="item-text">
211
+ <h3>plant</h3>
212
+ <div class="meta">2023-06-28 14:11 74.34KB</div>
213
+ </div>
214
+ </div>
215
+ <div class="check">
216
+ <!-- Unchecked circle -->
217
+ <svg viewBox="0 0 24 24">
218
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#C9CBD4" stroke-width="2"/>
219
+ </svg>
220
+ </div>
221
+ </div>
222
+
223
+ <!-- white tree -->
224
+ <div class="list-row">
225
+ <div class="left">
226
+ <div class="icon-box">
227
+ <!-- Cloud -->
228
+ <svg viewBox="0 0 24 24">
229
+ <path d="M6 18h10a4 4 0 0 0 0-8 5 5 0 0 0-9-1 4 4 0 0 0-1 9z" fill="#D5DAE0"/>
230
+ </svg>
231
+ </div>
232
+ <div class="item-text">
233
+ <h3>white tree</h3>
234
+ <div class="meta">2023-06-28 14:11 256.12KB</div>
235
+ </div>
236
+ </div>
237
+ <div class="check">
238
+ <svg viewBox="0 0 24 24">
239
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#C9CBD4" stroke-width="2"/>
240
+ </svg>
241
+ </div>
242
+ </div>
243
+
244
+ <!-- PDF -->
245
+ <div class="list-row">
246
+ <div class="left">
247
+ <div class="icon-box">
248
+ <!-- PDF document icon -->
249
+ <svg viewBox="0 0 24 24">
250
+ <rect x="3" y="3" width="18" height="18" rx="3" fill="#E85C5C"/>
251
+ <path d="M8 9h8M8 12h8M8 15h6" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
252
+ </svg>
253
+ </div>
254
+ <div class="item-text">
255
+ <h3>TeraBoxQuickStartGuide.pdf</h3>
256
+ <div class="meta">2023-06-28 14:08 1.17KB</div>
257
+ </div>
258
+ </div>
259
+ <div class="check">
260
+ <svg viewBox="0 0 24 24">
261
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#C9CBD4" stroke-width="2"/>
262
+ </svg>
263
+ </div>
264
+ </div>
265
+
266
+ <!-- Promo card -->
267
+ <div class="promo">
268
+ <svg viewBox="0 0 24 24" width="42" height="42">
269
+ <path d="M12 3l7 4v6c0 5-3 7-7 8-4-1-7-3-7-8V7l7-4z" fill="#3CD3C5"/>
270
+ </svg>
271
+ <div>
272
+ <div style="font-size:34px; color:#29C2AE;">Safeguard your data</div>
273
+ <div class="sub">TeraBox values your data privacy</div>
274
+ </div>
275
+ </div>
276
+
277
+ </div>
278
+
279
+ <!-- Gesture pill -->
280
+ <div class="gesture-pill"></div>
281
+
282
+ <!-- Bottom action bar -->
283
+ <div class="bottom-bar">
284
+ <div class="action">
285
+ <svg viewBox="0 0 24 24">
286
+ <path d="M12 3v12" />
287
+ <path d="M7 10l5 5 5-5" />
288
+ <rect x="5" y="18" width="14" height="2" rx="1" />
289
+ </svg>
290
+ <div>Download</div>
291
+ </div>
292
+ <div class="action">
293
+ <svg viewBox="0 0 24 24">
294
+ <circle cx="6" cy="8" r="2" />
295
+ <circle cx="18" cy="6" r="2" />
296
+ <circle cx="18" cy="18" r="2" />
297
+ <path d="M7.8 9.2L16.2 6.8M7.8 9.8L16.2 16.2" />
298
+ </svg>
299
+ <div>Share</div>
300
+ </div>
301
+ <div class="action">
302
+ <svg viewBox="0 0 24 24">
303
+ <path d="M5 7h14" />
304
+ <path d="M8 7v12h8V7" />
305
+ <rect x="10" y="3" width="4" height="2" />
306
+ </svg>
307
+ <div>Delete</div>
308
+ </div>
309
+ <div class="action">
310
+ <svg viewBox="0 0 24 24">
311
+ <rect x="4" y="4" width="16" height="16" rx="3" />
312
+ <path d="M12 7v10" />
313
+ </svg>
314
+ <div>Rename</div>
315
+ </div>
316
+ <div class="action">
317
+ <svg viewBox="0 0 24 24">
318
+ <circle cx="5" cy="12" r="2" />
319
+ <circle cx="12" cy="12" r="2" />
320
+ <circle cx="19" cy="12" r="2" />
321
+ </svg>
322
+ <div>More</div>
323
+ </div>
324
+ </div>
325
+
326
+ </div>
327
+ </body>
328
+ </html>
25_2.html ADDED
@@ -0,0 +1,328 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mobile UI Mock</title>
6
+ <style>
7
+ body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
8
+ #render-target {
9
+ width:1080px; height:2400px;
10
+ position:relative; overflow:hidden;
11
+ background:#FFFFFF;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height:90px;
17
+ padding:0 36px;
18
+ display:flex; align-items:center; justify-content:space-between;
19
+ color:#2D2D2D; font-size:34px;
20
+ }
21
+ .status-icons { display:flex; gap:26px; align-items:center; }
22
+ .icon-square { width:34px; height:34px; background:#808080; border-radius:6px; }
23
+ .battery {
24
+ width:44px; height:26px; border:3px solid #333; border-radius:6px; position:relative;
25
+ }
26
+ .battery::after { content:""; position:absolute; right:-10px; top:8px; width:6px; height:10px; background:#333; border-radius:2px; }
27
+ .battery .lev { position:absolute; left:3px; top:3px; right:3px; bottom:3px; background:#333; border-radius:3px; }
28
+
29
+ /* App header with avatar + search */
30
+ .app-header {
31
+ padding:16px 36px 20px;
32
+ display:flex; align-items:center; gap:24px;
33
+ }
34
+ .avatar {
35
+ width:96px; height:96px; border-radius:50%;
36
+ background:#4CAF50; color:#fff; font-weight:700; font-size:44px;
37
+ display:flex; align-items:center; justify-content:center; position:relative;
38
+ }
39
+ .avatar .dot { position:absolute; right:4px; top:4px; width:22px; height:22px; background:#E74C3C; border-radius:50%; border:2px solid #fff; }
40
+ .avatar .badge { position:absolute; right:-8px; bottom:-8px; width:34px; height:34px; border-radius:50%; background:#E0E0E0; color:#666; font-size:20px; display:flex; align-items:center; justify-content:center; border:1px solid #C9C9C9; }
41
+ .search-pill {
42
+ flex:1; height:84px; border:4px solid #000; border-radius:42px;
43
+ display:flex; align-items:center; padding:0 28px; gap:22px;
44
+ }
45
+ .search-pill .keyword { flex:1; font-size:36px; color:#111; }
46
+ .top-actions { display:flex; align-items:center; gap:26px; }
47
+ .svg-icon { width:42px; height:42px; }
48
+
49
+ /* Tabs */
50
+ .tabs { display:flex; gap:40px; padding:10px 36px 0; font-size:34px; color:#333; }
51
+ .tab.active { font-weight:600; position:relative; }
52
+ .tab.active::after {
53
+ content:""; position:absolute; left:0; bottom:-16px; width:70px; height:6px; background:#6C63FF; border-radius:3px;
54
+ }
55
+
56
+ /* Sort row */
57
+ .sort-row { display:flex; align-items:center; gap:18px; color:#777; font-size:32px; padding:28px 36px 18px; }
58
+ .sort-row .sort-icon { width:42px; height:42px; }
59
+
60
+ /* List */
61
+ .list { padding:0 0; }
62
+ .item {
63
+ display:flex; align-items:center; gap:28px;
64
+ padding:26px 36px;
65
+ border-top:1px solid #F0F0F0;
66
+ }
67
+ .item:first-child { border-top:none; }
68
+ .item-icon {
69
+ width:72px; height:72px; display:flex; align-items:center; justify-content:center;
70
+ background:#F3F3F3; border-radius:16px; border:1px solid #E0E0E0;
71
+ }
72
+ .item .texts { flex:1; }
73
+ .title { font-size:36px; color:#222; font-weight:600; margin-bottom:6px; }
74
+ .subtitle { font-size:28px; color:#8A8A8A; }
75
+ .trailing {
76
+ width:46px; height:46px; border:2px solid #DADADA; border-radius:50%;
77
+ }
78
+
79
+ /* Safeguard card */
80
+ .safe-card {
81
+ margin:46px auto 0;
82
+ width:880px;
83
+ text-align:center;
84
+ }
85
+ .safe-icon {
86
+ width:64px; height:64px; border-radius:50%;
87
+ border:2px solid #37C7AC; color:#37C7AC;
88
+ display:inline-flex; align-items:center; justify-content:center;
89
+ margin-bottom:10px;
90
+ }
91
+ .safe-title { color:#2FD1B4; font-size:38px; font-weight:600; }
92
+ .safe-desc { color:#9A9A9A; font-size:30px; margin-top:6px; }
93
+
94
+ /* Floating elements */
95
+ .float-plus {
96
+ position:absolute; right:46px; bottom:210px;
97
+ width:120px; height:120px; border-radius:60px;
98
+ background:#000; color:#fff;
99
+ display:flex; align-items:center; justify-content:center;
100
+ box-shadow:0 10px 20px rgba(0,0,0,0.2);
101
+ font-size:70px; line-height:0;
102
+ }
103
+ .float-bubble {
104
+ position:absolute; left:96px; bottom:380px;
105
+ width:130px; height:130px; border-radius:65px;
106
+ background:#E0E0E0; border:1px solid #BDBDBD;
107
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:26px; text-align:center; padding:10px;
108
+ }
109
+ .float-bubble .close-x {
110
+ position:absolute; right:-6px; top:-6px; width:36px; height:36px; border-radius:50%;
111
+ background:#D0D0D0; color:#666; border:1px solid #BEBEBE;
112
+ display:flex; align-items:center; justify-content:center; font-size:22px;
113
+ }
114
+
115
+ /* Bottom nav */
116
+ .bottom-nav {
117
+ position:absolute; left:0; right:0; bottom:90px;
118
+ height:140px; border-top:1px solid #EFEFEF;
119
+ display:flex; align-items:center; justify-content:space-around;
120
+ background:#FFFFFF;
121
+ }
122
+ .nav-item { display:flex; flex-direction:column; align-items:center; gap:12px; color:#000; font-size:24px; }
123
+ .nav-icon { width:64px; height:64px; }
124
+ .nav-dot { position:absolute; right:220px; bottom:190px; width:18px; height:18px; background:#FF4D4D; border-radius:50%; border:2px solid #FFF; }
125
+
126
+ /* Gesture bar */
127
+ .gesture {
128
+ position:absolute; left:50%; transform:translateX(-50%);
129
+ bottom:24px; width:300px; height:12px; border-radius:8px; background:#BEBEBE;
130
+ }
131
+ </style>
132
+ </head>
133
+ <body>
134
+ <div id="render-target">
135
+
136
+ <!-- Status bar -->
137
+ <div class="status-bar">
138
+ <div>8:16</div>
139
+ <div class="status-icons">
140
+ <div class="icon-square"></div>
141
+ <div class="icon-square"></div>
142
+ <div class="icon-square"></div>
143
+ <div style="width:14px; height:14px; background:#808080; border-radius:50%;"></div>
144
+ <svg class="svg-icon" viewBox="0 0 24 24"><path d="M17 7h-2v2h2V7zm-4 0H7v2h6V7zm8 2a1 1 0 0 0-1-1h-2v2h2a1 1 0 0 0 1-1zM5 11h14v2H5v-2zm12 4h-2v2h2v-2zm-4 0H7v2h6v-2z" fill="#555"/></svg>
145
+ <div class="battery"><div class="lev"></div></div>
146
+ </div>
147
+ </div>
148
+
149
+ <!-- App header -->
150
+ <div class="app-header">
151
+ <div class="avatar">
152
+ C
153
+ <div class="dot"></div>
154
+ <div class="badge">P</div>
155
+ </div>
156
+ <div class="search-pill">
157
+ <div class="keyword">Circle Vattam (2022)</div>
158
+ <!-- search icon -->
159
+ <svg class="svg-icon" viewBox="0 0 24 24">
160
+ <circle cx="10" cy="10" r="6" stroke="#111" stroke-width="2" fill="none"></circle>
161
+ <path d="M14.5 14.5L20 20" stroke="#111" stroke-width="2" stroke-linecap="round"></path>
162
+ </svg>
163
+ </div>
164
+ <div class="top-actions">
165
+ <!-- filter icon -->
166
+ <svg class="svg-icon" viewBox="0 0 24 24">
167
+ <path d="M3 5h18l-7 8v6l-4-2v-4L3 5z" fill="#111"></path>
168
+ </svg>
169
+ <!-- sort icon -->
170
+ <svg class="svg-icon" viewBox="0 0 24 24">
171
+ <path d="M7 5l-3 3h6L7 5zm10 14l3-3h-6l3 3zM4 12h16v2H4z" fill="#111"></path>
172
+ </svg>
173
+ </div>
174
+ </div>
175
+
176
+ <!-- Tabs -->
177
+ <div class="tabs">
178
+ <div class="tab active">All</div>
179
+ <div class="tab">Offline</div>
180
+ </div>
181
+
182
+ <!-- Sort row -->
183
+ <div class="sort-row">
184
+ <svg class="sort-icon" viewBox="0 0 24 24">
185
+ <path d="M6 3v14M6 3l-3 3M6 3l3 3M18 21V7M18 21l-3-3M18 21l3-3" stroke="#777" stroke-width="2" stroke-linecap="round"></path>
186
+ </svg>
187
+ <div>Sort by time</div>
188
+ </div>
189
+
190
+ <!-- List -->
191
+ <div class="list">
192
+
193
+ <div class="item">
194
+ <div class="item-icon">
195
+ <!-- safe icon -->
196
+ <svg width="48" height="48" viewBox="0 0 24 24">
197
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="#BFC4CB"></rect>
198
+ <circle cx="12" cy="12" r="3" fill="#9AA0A6"></circle>
199
+ <rect x="19" y="9" width="2" height="6" fill="#9AA0A6"></rect>
200
+ </svg>
201
+ </div>
202
+ <div class="texts">
203
+ <div class="title" style="font-weight:600;">Personal Vault</div>
204
+ </div>
205
+ <div class="trailing"></div>
206
+ </div>
207
+
208
+ <div class="item">
209
+ <div class="item-icon">
210
+ <!-- folder icon -->
211
+ <svg width="48" height="48" viewBox="0 0 24 24">
212
+ <path d="M3 7h7l2 2h9v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z" fill="#F2C94C" stroke="#D9A53A" stroke-width="1"></path>
213
+ </svg>
214
+ </div>
215
+ <div class="texts">
216
+ <div class="title">password file</div>
217
+ <div class="subtitle">2023-06-28 15:09</div>
218
+ </div>
219
+ <div class="trailing"></div>
220
+ </div>
221
+
222
+ <div class="item">
223
+ <div class="item-icon">
224
+ <!-- cloud icon -->
225
+ <svg width="48" height="48" viewBox="0 0 24 24">
226
+ <path d="M7 17h9a4 4 0 0 0 0-8 6 6 0 0 0-11 2 3 3 0 0 0 2 6z" fill="#C8D0D8"></path>
227
+ </svg>
228
+ </div>
229
+ <div class="texts">
230
+ <div class="title">plant</div>
231
+ <div class="subtitle">2023-06-28 14:11 74.34KB</div>
232
+ </div>
233
+ <div class="trailing"></div>
234
+ </div>
235
+
236
+ <div class="item">
237
+ <div class="item-icon">
238
+ <!-- cloud icon -->
239
+ <svg width="48" height="48" viewBox="0 0 24 24">
240
+ <path d="M7 17h9a4 4 0 0 0 0-8 6 6 0 0 0-11 2 3 3 0 0 0 2 6z" fill="#C8D0D8"></path>
241
+ </svg>
242
+ </div>
243
+ <div class="texts">
244
+ <div class="title">white tree</div>
245
+ <div class="subtitle">2023-06-28 14:11 256.12KB</div>
246
+ </div>
247
+ <div class="trailing"></div>
248
+ </div>
249
+
250
+ <div class="item">
251
+ <div class="item-icon">
252
+ <!-- pdf icon -->
253
+ <svg width="48" height="48" viewBox="0 0 24 24">
254
+ <path d="M6 3h9l3 3v15H6z" fill="#F16D6D"></path>
255
+ <path d="M15 3v4h4" fill="#ffbfbf"></path>
256
+ <path d="M8 12h8M8 15h8M8 18h8" stroke="#fff" stroke-width="1.6"></path>
257
+ </svg>
258
+ </div>
259
+ <div class="texts">
260
+ <div class="title">TeraBoxQuickStartGuide.pdf</div>
261
+ <div class="subtitle">2023-06-28 14:08 1.17KB</div>
262
+ </div>
263
+ <div class="trailing"></div>
264
+ </div>
265
+
266
+ </div>
267
+
268
+ <!-- Safeguard card -->
269
+ <div class="safe-card">
270
+ <div class="safe-icon">
271
+ <svg width="34" height="34" viewBox="0 0 24 24">
272
+ <path d="M12 3l8 4v6c0 5-8 8-8 8s-8-3-8-8V7l8-4z" fill="none" stroke="#37C7AC" stroke-width="2"></path>
273
+ <path d="M9 12l2 2 4-4" stroke="#37C7AC" stroke-width="2" stroke-linecap="round"></path>
274
+ </svg>
275
+ </div>
276
+ <div class="safe-title">Safeguard your data</div>
277
+ <div class="safe-desc">TeraBox values your data privacy</div>
278
+ </div>
279
+
280
+ <!-- Floating bubble (image placeholder) -->
281
+ <div class="float-bubble">
282
+ [IMG: VS sticker]
283
+ <div class="close-x">x</div>
284
+ </div>
285
+
286
+ <!-- Floating plus -->
287
+ <div class="float-plus">+</div>
288
+
289
+ <!-- Bottom navigation -->
290
+ <div class="bottom-nav">
291
+ <div class="nav-item">
292
+ <svg class="nav-icon" viewBox="0 0 24 24">
293
+ <path d="M3 11l9-7 9 7v9H3v-9zM9 20v-6h6v6" fill="none" stroke="#000" stroke-width="2" stroke-linejoin="round"></path>
294
+ </svg>
295
+ </div>
296
+ <div class="nav-item">
297
+ <svg class="nav-icon" viewBox="0 0 24 24">
298
+ <path d="M3 7h7l2 2h9v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z" fill="none" stroke="#000" stroke-width="2"></path>
299
+ </svg>
300
+ </div>
301
+ <div class="nav-item">
302
+ <svg class="nav-icon" viewBox="0 0 24 24">
303
+ <rect x="3" y="5" width="18" height="14" rx="3" fill="none" stroke="#000" stroke-width="2"></rect>
304
+ <path d="M7 15l4-5 4 6" stroke="#000" stroke-width="2" fill="none"></path>
305
+ <circle cx="9" cy="9" r="1.5" fill="#000"></circle>
306
+ </svg>
307
+ </div>
308
+ <div class="nav-item">
309
+ <svg class="nav-icon" viewBox="0 0 24 24">
310
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#000" stroke-width="2"></circle>
311
+ <path d="M10 8l6 4-6 4V8z" fill="#000"></path>
312
+ </svg>
313
+ </div>
314
+ <div class="nav-item" style="position:relative;">
315
+ <svg class="nav-icon" viewBox="0 0 24 24">
316
+ <circle cx="12" cy="12" r="9" fill="none" stroke="#000" stroke-width="2"></circle>
317
+ <circle cx="15" cy="9" r="2" fill="#000"></circle>
318
+ </svg>
319
+ </div>
320
+ <div class="nav-dot"></div>
321
+ </div>
322
+
323
+ <!-- Gesture bar -->
324
+ <div class="gesture"></div>
325
+
326
+ </div>
327
+ </body>
328
+ </html>
25_3.html ADDED
@@ -0,0 +1,238 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>File Manager UI</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:28px; box-shadow: 0 0 0 rgba(0,0,0,0);
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ height:100px; padding:0 40px; display:flex; align-items:center; justify-content:space-between;
17
+ color:#333; font-size:34px;
18
+ }
19
+ .status-icons { display:flex; align-items:center; gap:24px; color:#555; }
20
+ .status-icons svg { width:40px; height:40px; }
21
+
22
+ /* Selection header */
23
+ .selection-bar {
24
+ height:120px; display:flex; align-items:center; justify-content:space-between;
25
+ padding:0 40px; border-bottom:1px solid #eee;
26
+ }
27
+ .selection-left, .selection-right { font-size:40px; color:#5662ff; }
28
+ .selection-title { font-size:44px; color:#111; font-weight:600; }
29
+
30
+ /* Tabs */
31
+ .tabs { padding:26px 40px 0 40px; }
32
+ .tab-row { display:flex; gap:40px; font-size:36px; color:#777; }
33
+ .tab { padding-bottom:18px; }
34
+ .tab.active { color:#111; font-weight:600; position:relative; }
35
+ .tab.active::after {
36
+ content:""; position:absolute; left:0; bottom:0; width:70px; height:6px; background:#5662ff; border-radius:3px;
37
+ }
38
+ .divider { height:1px; background:#eee; margin-top:22px; }
39
+
40
+ /* Sort */
41
+ .sort-row { display:flex; align-items:center; gap:18px; color:#666; font-size:34px; padding:24px 40px; }
42
+ .sort-row svg { width:40px; height:40px; }
43
+
44
+ /* List */
45
+ .list { }
46
+ .item {
47
+ display:flex; align-items:center;
48
+ padding:30px 40px; gap:28px; border-bottom:1px solid #f0f0f0;
49
+ }
50
+ .item.bg-selected { background:#e9f0ff; }
51
+ .icon-box {
52
+ width:84px; height:84px; border-radius:20px; background:#eef1f6; display:flex; align-items:center; justify-content:center;
53
+ border:1px solid #dfe3ea;
54
+ }
55
+ .icon-box.folder { background:#ffec9c; border-color:#e1d07a; }
56
+ .icon-box.pdf { background:#ffd1d1; border-color:#f0b4b4; }
57
+ .text-block { flex:1; }
58
+ .title { font-size:40px; color:#111; }
59
+ .subtitle { font-size:30px; color:#8a8a8a; margin-top:6px; }
60
+ .check {
61
+ width:50px; height:50px; display:flex; align-items:center; justify-content:center;
62
+ }
63
+ .check svg { width:50px; height:50px; }
64
+
65
+ /* Info card */
66
+ .info-card {
67
+ margin:40px auto 0; width:920px; text-align:center; color:#54c0b8;
68
+ }
69
+ .info-card .line1 { font-size:40px; font-weight:600; }
70
+ .info-card .line2 { font-size:32px; color:#9aa0a6; margin-top:14px; }
71
+
72
+ /* Bottom action bar */
73
+ .bottom-bar {
74
+ position:absolute; left:0; right:0; bottom:90px; height:220px;
75
+ background:#5a61ff; display:flex; align-items:center; justify-content:space-around; color:#fff;
76
+ }
77
+ .b-action { display:flex; flex-direction:column; align-items:center; gap:20px; }
78
+ .b-action svg { width:64px; height:64px; fill:#fff; }
79
+ .b-label { font-size:32px; }
80
+
81
+ /* gesture bar */
82
+ .gesture {
83
+ position:absolute; left:50%; transform:translateX(-50%);
84
+ bottom:24px; width:260px; height:12px; background:#bdbdbd; border-radius:10px;
85
+ }
86
+ </style>
87
+ </head>
88
+ <body>
89
+ <div id="render-target">
90
+ <!-- Status bar -->
91
+ <div class="status-bar">
92
+ <div>8:16</div>
93
+ <div class="status-icons">
94
+ <!-- simple dot -->
95
+ <div style="width:12px; height:12px; background:#777; border-radius:50%;"></div>
96
+ <!-- WiFi -->
97
+ <svg viewBox="0 0 24 24"><path d="M2 8c5-4 15-4 20 0l-2 2c-4-3-12-3-16 0L2 8zm4 5c3-2 9-2 12 0l-2 2c-2-1-6-1-8 0l-2-2zm4 5l2 2 2-2-2-2-2 2z" fill="#666"/></svg>
98
+ <!-- Battery -->
99
+ <svg viewBox="0 0 28 24"><rect x="1" y="5" width="22" height="14" rx="2" ry="2" fill="#666"/><rect x="3" y="7" width="18" height="10" fill="#fff"/><rect x="23" y="9" width="3" height="6" fill="#666"/></svg>
100
+ </div>
101
+ </div>
102
+
103
+ <!-- Selection bar -->
104
+ <div class="selection-bar">
105
+ <div class="selection-left">Cancel</div>
106
+ <div class="selection-title">1 file(s) selected</div>
107
+ <div class="selection-right">Select All</div>
108
+ </div>
109
+
110
+ <!-- Tabs -->
111
+ <div class="tabs">
112
+ <div class="tab-row">
113
+ <div class="tab active">All</div>
114
+ <div class="tab">Offline</div>
115
+ </div>
116
+ <div class="divider"></div>
117
+ </div>
118
+
119
+ <!-- Sort row -->
120
+ <div class="sort-row">
121
+ <svg viewBox="0 0 24 24"><path d="M4 6h16v2H4V6zm0 5h12v2H4v-2zm0 5h8v2H4v-2z" fill="#888"/></svg>
122
+ <div>Sort by time</div>
123
+ </div>
124
+
125
+ <!-- List -->
126
+ <div class="list">
127
+ <!-- Personal Vault -->
128
+ <div class="item">
129
+ <div class="icon-box">
130
+ <!-- Vault icon -->
131
+ <svg viewBox="0 0 24 24"><rect x="4" y="6" width="16" height="12" rx="2" fill="#8ca3c0"/><circle cx="12" cy="12" r="3" fill="#556b8d"/></svg>
132
+ </div>
133
+ <div class="text-block">
134
+ <div class="title">Personal Vault</div>
135
+ </div>
136
+ <div class="check"></div>
137
+ </div>
138
+
139
+ <!-- password file (selected) -->
140
+ <div class="item bg-selected">
141
+ <div class="icon-box folder">
142
+ <!-- folder icon -->
143
+ <svg viewBox="0 0 24 24"><path d="M3 6h7l2 2h9v10a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z" fill="#f5c84c"/></svg>
144
+ </div>
145
+ <div class="text-block">
146
+ <div class="title">password file</div>
147
+ <div class="subtitle">2023-06-28 15:09</div>
148
+ </div>
149
+ <div class="check">
150
+ <!-- selected check -->
151
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="11" fill="#5662ff"/><path d="M6 12l3 3 7-7" stroke="#fff" stroke-width="2.5" fill="none" stroke-linecap="round"/></svg>
152
+ </div>
153
+ </div>
154
+
155
+ <!-- plant -->
156
+ <div class="item">
157
+ <div class="icon-box">
158
+ <!-- cloud icon -->
159
+ <svg viewBox="0 0 24 24"><path d="M6 16h10a4 4 0 0 0 0-8h-1a6 6 0 0 0-11 2 3 3 0 0 0 2 6z" fill="#c9ced6"/></svg>
160
+ </div>
161
+ <div class="text-block">
162
+ <div class="title">plant</div>
163
+ <div class="subtitle">2023-06-28 14:11 74.34KB</div>
164
+ </div>
165
+ <div class="check">
166
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
167
+ </div>
168
+ </div>
169
+
170
+ <!-- white tree -->
171
+ <div class="item">
172
+ <div class="icon-box">
173
+ <!-- cloud icon -->
174
+ <svg viewBox="0 0 24 24"><path d="M6 16h10a4 4 0 0 0 0-8h-1a6 6 0 0 0-11 2 3 3 0 0 0 2 6z" fill="#c9ced6"/></svg>
175
+ </div>
176
+ <div class="text-block">
177
+ <div class="title">white tree</div>
178
+ <div class="subtitle">2023-06-28 14:11 256.12KB</div>
179
+ </div>
180
+ <div class="check">
181
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
182
+ </div>
183
+ </div>
184
+
185
+ <!-- pdf file -->
186
+ <div class="item">
187
+ <div class="icon-box pdf">
188
+ <!-- pdf icon -->
189
+ <svg viewBox="0 0 24 24"><rect x="4" y="3" width="16" height="18" rx="2" fill="#e86a6a"/><path d="M8 9h8M8 12h8M8 15h6" stroke="#fff" stroke-width="2"/></svg>
190
+ </div>
191
+ <div class="text-block">
192
+ <div class="title">TeraBoxQuickStartGuide.pdf</div>
193
+ <div class="subtitle">2023-06-28 14:08 1.17KB</div>
194
+ </div>
195
+ <div class="check">
196
+ <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#cfcfcf" stroke-width="2"/></svg>
197
+ </div>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- Information card -->
202
+ <div class="info-card">
203
+ <div style="display:flex; justify-content:center; align-items:center; gap:14px;">
204
+ <svg viewBox="0 0 24 24" width="48" height="48"><path d="M12 2l8 4v6c0 5-3.5 9-8 10-4.5-1-8-5-8-10V6l8-4z" fill="#54c0b8"/><circle cx="12" cy="12" r="3" fill="#fff"/></svg>
205
+ <div class="line1">Safeguard your data</div>
206
+ </div>
207
+ <div class="line2">TeraBox values your data privacy</div>
208
+ </div>
209
+
210
+ <!-- Bottom action bar -->
211
+ <div class="bottom-bar">
212
+ <div class="b-action">
213
+ <svg viewBox="0 0 24 24"><path d="M12 4v8l-3-3-2 2 6 6 6-6-2-2-3 3V4h-2zM5 20h14v2H5v-2z" fill="#fff"/></svg>
214
+ <div class="b-label">Download</div>
215
+ </div>
216
+ <div class="b-action">
217
+ <svg viewBox="0 0 24 24"><circle cx="6" cy="12" r="3"/><circle cx="18" cy="6" r="3"/><circle cx="18" cy="18" r="3"/><path d="M8.5 10.5l7-3M8.5 13.5l7 3" stroke="#fff" stroke-width="2" fill="none"/></svg>
218
+ <div class="b-label">Share</div>
219
+ </div>
220
+ <div class="b-action">
221
+ <svg viewBox="0 0 24 24"><path d="M6 7h12l-1 14H7L6 7zm2-3h8l1 3H7l1-3z" fill="#fff"/></svg>
222
+ <div class="b-label">Delete</div>
223
+ </div>
224
+ <div class="b-action">
225
+ <svg viewBox="0 0 24 24"><rect x="5" y="5" width="14" height="14" rx="2" fill="#fff"/><path d="M8 8h8v2H8zm0 4h8v2H8zm0 4h6v2H8z" fill="#5a61ff"/></svg>
226
+ <div class="b-label">Rename</div>
227
+ </div>
228
+ <div class="b-action">
229
+ <svg viewBox="0 0 24 24"><circle cx="6" cy="12" r="2" fill="#fff"/><circle cx="12" cy="12" r="2" fill="#fff"/><circle cx="18" cy="12" r="2" fill="#fff"/></svg>
230
+ <div class="b-label">More</div>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- gesture bar -->
235
+ <div class="gesture"></div>
236
+ </div>
237
+ </body>
238
+ </html>
25_4.html ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>File Manager Share Sheet 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; height: 2400px; position: relative; overflow: hidden;
11
+ background: #F6F7FA;
12
+ }
13
+
14
+ /* Status bar */
15
+ .status-bar {
16
+ position: absolute; top: 0; left: 0; right: 0; height: 96px; padding: 0 36px;
17
+ color: #ffffff;
18
+ }
19
+ .status-inner {
20
+ display: flex; align-items: center; justify-content: space-between; height: 100%;
21
+ }
22
+ .status-time { font-size: 42px; font-weight: 600; }
23
+ .status-icons { display: flex; align-items: center; gap: 26px; }
24
+ .icon { display: inline-block; }
25
+
26
+ /* Header */
27
+ .header {
28
+ position: absolute; top: 96px; left: 0; right: 0; height: 120px; display: flex; align-items: center;
29
+ padding: 0 36px; color: #222; background: transparent;
30
+ }
31
+ .header .left { color: #3B56F6; font-size: 40px; }
32
+ .header .title { flex: 1; text-align: center; font-size: 44px; font-weight: 600; color: #111; }
33
+ .header .right { color: #3B56F6; font-size: 40px; font-weight: 600; }
34
+
35
+ /* Tabs */
36
+ .tabs {
37
+ position: absolute; top: 216px; left: 0; right: 0; height: 100px; display: flex; align-items: flex-end;
38
+ padding: 0 36px; gap: 36px;
39
+ }
40
+ .tab { font-size: 36px; color: #777; padding-bottom: 22px; }
41
+ .tab.active { color: #1f4ffb; position: relative; }
42
+ .tab.active::after {
43
+ content: ""; position: absolute; bottom: 8px; left: 0; width: 56px; height: 6px; background: #1f4ffb; border-radius: 3px;
44
+ }
45
+
46
+ /* Sort row */
47
+ .sort-row {
48
+ position: absolute; top: 316px; left: 0; right: 0; height: 84px; display: flex; align-items: center;
49
+ padding: 0 36px; gap: 18px; color: #667; font-size: 32px;
50
+ }
51
+
52
+ /* File list container */
53
+ .list {
54
+ position: absolute; top: 400px; left: 0; right: 0; bottom: 980px; overflow: hidden; padding: 0 12px;
55
+ }
56
+ .item {
57
+ display: flex; align-items: center; padding: 26px 24px; border-radius: 16px; margin: 6px 24px;
58
+ background: #ffffff;
59
+ }
60
+ .item.selected { background: #EAF3FF; }
61
+ .file-icon {
62
+ width: 88px; height: 88px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 18px;
63
+ display: flex; align-items: center; justify-content: center; color: #757575; font-size: 20px; text-align: center; margin-right: 28px;
64
+ }
65
+ .item .content { flex: 1; }
66
+ .item .title { font-size: 38px; color: #222; }
67
+ .item .subtitle { font-size: 30px; color: #8A8A8A; margin-top: 8px; }
68
+ .select-indicator {
69
+ width: 52px; height: 52px; border-radius: 50%; border: 3px solid #C9CED6;
70
+ }
71
+ .select-indicator.checked {
72
+ border-color: #2E63F6; background: #2E63F6; box-shadow: inset 0 0 0 10px #2E63F6;
73
+ }
74
+
75
+ /* Dim overlay (faint) behind share sheet */
76
+ .dim {
77
+ position: absolute; inset: 0; background: rgba(0,0,0,0.06);
78
+ }
79
+
80
+ /* Share sheet */
81
+ .sheet {
82
+ position: absolute; left: 0; right: 0; bottom: 0; height: 980px; background: #ffffff;
83
+ border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
84
+ }
85
+ .sheet .grabber {
86
+ position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
87
+ width: 120px; height: 10px; background: #D7DBE3; border-radius: 5px;
88
+ }
89
+ .sheet-header {
90
+ height: 120px; display: flex; align-items: center; justify-content: center; position: relative; color: #222;
91
+ font-size: 40px; font-weight: 600;
92
+ }
93
+ .sheet-header .close {
94
+ position: absolute; right: 28px; top: 34px; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
95
+ }
96
+ .share-icons, .share-small {
97
+ display: flex; justify-content: space-between; padding: 0 64px; margin-top: 8px;
98
+ }
99
+ .share-item {
100
+ width: 172px; display: flex; flex-direction: column; align-items: center;
101
+ }
102
+ .circle {
103
+ width: 132px; height: 132px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
104
+ }
105
+ .label { margin-top: 18px; font-size: 28px; color: #333; text-align: center; }
106
+ .circle.green { background: #25D366; }
107
+ .circle.messenger { background: #0084FF; }
108
+ .circle.facebook { background: #1877F2; }
109
+ .circle.telegram { background: #2FA3E5; }
110
+ .circle.more { background: #ECEFF3; }
111
+ .circle.gray { background: #F2F4F7; border: 1px solid #E1E6ED; }
112
+ .sheet-footer {
113
+ margin: 40px 64px 0; padding: 26px 32px; border-radius: 22px; border: 1px solid #E3E6EA; font-size: 32px; color: #333; display: flex; align-items: center; justify-content: space-between;
114
+ background: #FAFBFC;
115
+ }
116
+
117
+ /* Bottom navigation bar indicator */
118
+ .nav-pill {
119
+ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 300px; height: 14px; background: #C9CCD3; border-radius: 7px;
120
+ }
121
+ </style>
122
+ </head>
123
+ <body>
124
+ <div id="render-target">
125
+ <!-- Status Bar -->
126
+ <div class="status-bar">
127
+ <div class="status-inner">
128
+ <div class="status-time">8:17</div>
129
+ <div class="status-icons">
130
+ <!-- Simple inline SVG icons -->
131
+ <svg class="icon" width="44" height="44" viewBox="0 0 24 24">
132
+ <rect x="2" y="7" width="3" height="10" fill="#fff"/>
133
+ <rect x="7" y="5" width="3" height="12" fill="#fff" opacity="0.8"/>
134
+ <rect x="12" y="3" width="3" height="14" fill="#fff" opacity="0.6"/>
135
+ <rect x="17" y="1" width="3" height="16" fill="#fff" opacity="0.4"/>
136
+ </svg>
137
+ <svg class="icon" width="44" height="44" viewBox="0 0 24 24">
138
+ <path d="M2 16c3-6 17-6 20 0" stroke="#fff" stroke-width="2" fill="none"/>
139
+ <path d="M5 12c2-3 12-3 14 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.6"/>
140
+ <path d="M8 8c2-1 6-1 8 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.4"/>
141
+ </svg>
142
+ <svg class="icon" width="50" height="44" viewBox="0 0 28 24">
143
+ <rect x="4" y="6" width="18" height="12" rx="2" ry="2" stroke="#fff" stroke-width="2" fill="none"/>
144
+ <rect x="22" y="9" width="3" height="6" fill="#fff"/>
145
+ </svg>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ <!-- Header -->
151
+ <div class="header">
152
+ <div class="left">Cancel</div>
153
+ <div class="title">1 file(s) selected</div>
154
+ <div class="right">Select All</div>
155
+ </div>
156
+
157
+ <!-- Tabs -->
158
+ <div class="tabs">
159
+ <div class="tab active">All</div>
160
+ <div class="tab">Offline</div>
161
+ </div>
162
+
163
+ <!-- Sort by row -->
164
+ <div class="sort-row">
165
+ <svg width="42" height="42" viewBox="0 0 24 24">
166
+ <path d="M4 6h16M4 12h12M4 18h8" stroke="#97A0AD" stroke-width="2" stroke-linecap="round"/>
167
+ </svg>
168
+ <span>Sort by time</span>
169
+ </div>
170
+
171
+ <!-- File list -->
172
+ <div class="list">
173
+ <div class="item">
174
+ <div class="file-icon">[IMG: Vault]</div>
175
+ <div class="content">
176
+ <div class="title">Personal Vault</div>
177
+ </div>
178
+ <div class="select-indicator"></div>
179
+ </div>
180
+
181
+ <div class="item selected">
182
+ <div class="file-icon">[IMG: Folder]</div>
183
+ <div class="content">
184
+ <div class="title">password file</div>
185
+ <div class="subtitle">2023-06-28 15:09</div>
186
+ </div>
187
+ <div class="select-indicator checked"></div>
188
+ </div>
189
+
190
+ <div class="item">
191
+ <div class="file-icon">[IMG: Cloud]</div>
192
+ <div class="content">
193
+ <div class="title">plant</div>
194
+ <div class="subtitle">2023-06-28 14:11 74.34KB</div>
195
+ </div>
196
+ <div class="select-indicator"></div>
197
+ </div>
198
+
199
+ <div class="item">
200
+ <div class="file-icon">[IMG: Cloud]</div>
201
+ <div class="content">
202
+ <div class="title">white tree</div>
203
+ <div class="subtitle">2023-06-28 14:11 256.12KB</div>
204
+ </div>
205
+ <div class="select-indicator"></div>
206
+ </div>
207
+
208
+ <div class="item">
209
+ <div class="file-icon">[IMG: PDF Icon]</div>
210
+ <div class="content">
211
+ <div class="title">TeraBoxQuickStartGuide.pdf</div>
212
+ <div class="subtitle">2023-06-28 14:08 1.17KB</div>
213
+ </div>
214
+ <div class="select-indicator"></div>
215
+ </div>
216
+ </div>
217
+
218
+ <!-- Dim overlay -->
219
+ <div class="dim"></div>
220
+
221
+ <!-- Share Sheet -->
222
+ <div class="sheet">
223
+ <div class="grabber"></div>
224
+ <div class="sheet-header">Share
225
+ <div class="close">
226
+ <svg width="48" height="48" viewBox="0 0 24 24">
227
+ <path d="M6 6l12 12M18 6L6 18" stroke="#99A1AF" stroke-width="2" stroke-linecap="round"/>
228
+ </svg>
229
+ </div>
230
+ </div>
231
+
232
+ <!-- Main share icons -->
233
+ <div class="share-icons" style="margin-top: 10px;">
234
+ <div class="share-item">
235
+ <div class="circle green">
236
+ <svg width="68" height="68" viewBox="0 0 24 24">
237
+ <path d="M6 18l2-4a6 6 0 1 1 4 1" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
238
+ </svg>
239
+ </div>
240
+ <div class="label">Whatsapp</div>
241
+ </div>
242
+ <div class="share-item">
243
+ <div class="circle messenger">
244
+ <svg width="68" height="68" viewBox="0 0 24 24">
245
+ <path d="M5 19l3-3 3 2 4-5 4 3V7a6 6 0 0 0-6-6H9A6 6 0 0 0 3 7v7" fill="#fff" opacity="0.0"/>
246
+ <path d="M6 15l4-3 3 2 4-5" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
247
+ </svg>
248
+ </div>
249
+ <div class="label">Messenger</div>
250
+ </div>
251
+ <div class="share-item">
252
+ <div class="circle facebook">
253
+ <svg width="60" height="60" viewBox="0 0 24 24">
254
+ <path d="M14 8h3V5h-3c-2 0-3 1-3 3v2H9v3h2v6h3v-6h3l1-3h-4V8c0-.6.4-1 1-1z" fill="#fff"/>
255
+ </svg>
256
+ </div>
257
+ <div class="label">Facebook</div>
258
+ </div>
259
+ <div class="share-item">
260
+ <div class="circle telegram">
261
+ <svg width="60" height="60" viewBox="0 0 24 24">
262
+ <path d="M3 12l18-8-5 16-6-4-3 3 1-5z" fill="#fff"/>
263
+ </svg>
264
+ </div>
265
+ <div class="label">Telegram</div>
266
+ </div>
267
+ <div class="share-item">
268
+ <div class="circle more">
269
+ <svg width="64" height="64" viewBox="0 0 24 24">
270
+ <circle cx="6" cy="12" r="2" fill="#7B8799"/>
271
+ <circle cx="12" cy="12" r="2" fill="#7B8799"/>
272
+ <circle cx="18" cy="12" r="2" fill="#7B8799"/>
273
+ </svg>
274
+ </div>
275
+ <div class="label">More</div>
276
+ </div>
277
+ </div>
278
+
279
+ <!-- Secondary share options -->
280
+ <div class="share-small" style="margin-top: 40px;">
281
+ <div class="share-item" style="width: 220px;">
282
+ <div class="circle gray">
283
+ <svg width="56" height="56" viewBox="0 0 24 24">
284
+ <path d="M10 14a4 4 0 0 1 0-4l6-6 4 4-6 6a4 4 0 0 1-4 0z" fill="#7B889A"/>
285
+ <path d="M4 20l6-6" stroke="#7B889A" stroke-width="2" stroke-linecap="round"/>
286
+ </svg>
287
+ </div>
288
+ <div class="label">Copy link</div>
289
+ </div>
290
+ <div class="share-item" style="width: 220px;">
291
+ <div class="circle gray">
292
+ <svg width="56" height="56" viewBox="0 0 24 24">
293
+ <path d="M4 5h16v14H4z" stroke="#7B889A" stroke-width="2" fill="none"/>
294
+ <path d="M4 5l8 7 8-7" stroke="#7B889A" stroke-width="2" fill="none"/>
295
+ </svg>
296
+ </div>
297
+ <div class="label">Email</div>
298
+ </div>
299
+ <div style="width: 220px;"></div>
300
+ <div style="width: 220px;"></div>
301
+ <div style="width: 220px;"></div>
302
+ </div>
303
+
304
+ <div class="sheet-footer">
305
+ <span>Permanent validity, Public link</span>
306
+ <svg width="40" height="40" viewBox="0 0 24 24">
307
+ <path d="M9 6l6 6-6 6" stroke="#9AA0AB" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
308
+ </svg>
309
+ </div>
310
+ </div>
311
+
312
+ <div class="nav-pill"></div>
313
+ </div>
314
+ </body>
315
+ </html>
25_5.html ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>File Share UI</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: #F7F8FA; border-radius: 38px; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
12
+ color: #1c1c1c;
13
+ }
14
+ /* Status bar */
15
+ .status-bar {
16
+ height: 100px; padding: 0 30px; display: flex; align-items: center; justify-content: space-between;
17
+ color: #111; font-weight: 600; font-size: 34px; background: rgba(0,0,0,0.04);
18
+ }
19
+ .status-icons { display: flex; align-items: center; gap: 26px; }
20
+ .icon { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; }
21
+ /* Top actions */
22
+ .top-bar {
23
+ height: 120px; background: #ffffff; border-bottom: 1px solid #e3e6ea;
24
+ display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center;
25
+ padding: 0 36px; font-size: 38px;
26
+ }
27
+ .top-bar .left { color: #3b3b3b; }
28
+ .top-bar .center { text-align: center; font-weight: 700; color: #222; }
29
+ .top-bar .right { text-align: right; color: #2F5DE2; font-weight: 600; }
30
+ /* Tabs */
31
+ .tabs { display: flex; gap: 40px; padding: 26px 34px 10px; background: #fff; border-bottom: 1px solid #e9edf2; }
32
+ .tab { font-size: 34px; color: #6b6f76; position: relative; padding-bottom: 16px; }
33
+ .tab.active { color: #2F5DE2; font-weight: 700; }
34
+ .tab.active::after { content:""; position:absolute; left:0; right:0; bottom:0; height:6px; background:#2F5DE2; border-radius:6px; }
35
+ /* Sort row */
36
+ .sort-row { display:flex; align-items:center; gap:18px; padding: 24px 34px; background:#fff; color:#5a6069; font-size:32px; border-bottom:1px solid #eef1f5; }
37
+ /* File list */
38
+ .list { background:#fff; }
39
+ .item { display:flex; align-items:center; padding: 30px 34px; border-bottom:1px solid #f0f2f6; }
40
+ .item.selected { background:#EDF3FF; }
41
+ .item .thumb {
42
+ width: 86px; height: 86px; border-radius: 16px; margin-right: 26px; display:flex; align-items:center; justify-content:center;
43
+ background:#FFE082; color:#7A5900; font-weight:700; font-size:28px;
44
+ }
45
+ .item .thumb.cloud { background:#E0E0E0; color:#616161; }
46
+ .item .thumb.vault { background:#DADDE2; color:#4b5563; }
47
+ .item .thumb.pdf { background:#FFCDD2; color:#c62828; }
48
+ .item .content { flex:1; }
49
+ .item .title { font-size:36px; color:#212529; font-weight:700; }
50
+ .item .meta { font-size:28px; color:#81858C; margin-top:8px; }
51
+ .item .end { width:60px; display:flex; align-items:center; justify-content:flex-end; }
52
+ /* Bottom sheet */
53
+ .sheet {
54
+ position:absolute; left:0; right:0; bottom:0; height: 900px; background:#15171A; color:#E7EAEE;
55
+ border-top-left-radius: 28px; border-top-right-radius: 28px; box-shadow: 0 -10px 26px rgba(0,0,0,0.35);
56
+ padding: 24px 36px;
57
+ }
58
+ .sheet .handle { width: 140px; height: 12px; background:#2A2E33; border-radius:12px; margin: 10px auto 24px; }
59
+ .sheet .share-text { font-size:32px; line-height: 1.5; margin: 16px 0 24px; color:#E7EAEE; }
60
+ .sheet .actions { display:flex; gap:28px; margin-bottom: 34px; }
61
+ .pill-btn {
62
+ border:1px solid #304050; border-radius:18px; height:82px; padding: 0 28px; display:flex; align-items:center; gap:18px;
63
+ color:#DCE2E8; font-size:32px; background:#1B1E22;
64
+ }
65
+ /* Contact chip */
66
+ .contact { display:flex; align-items:center; gap:18px; margin: 16px 0 28px; }
67
+ .avatar {
68
+ width:92px; height:92px; border-radius:50%; background:#E0E0E0; border:1px solid #BDBDBD;
69
+ display:flex; align-items:center; justify-content:center; color:#757575; font-weight:700; font-size:40px; position:relative;
70
+ }
71
+ .avatar .badge {
72
+ position:absolute; right:-6px; bottom:-6px; width:34px; height:34px; border-radius:8px; background:#E0E0E0; border:1px solid #BDBDBD;
73
+ display:flex; align-items:center; justify-content:center; color:#757575; font-size:16px;
74
+ }
75
+ .contact .name { color:#C8CDD3; font-size:30px; }
76
+ /* Share targets row */
77
+ .targets { display:flex; align-items:flex-end; gap:24px; position:absolute; left:20px; right:20px; bottom:120px; }
78
+ .target {
79
+ width:180px; display:flex; flex-direction:column; align-items:center; gap:12px;
80
+ }
81
+ .target .circle {
82
+ width:160px; height:160px; border-radius:30px; background:#2A2E33; border:1px solid #39414A; display:flex; align-items:center; justify-content:center;
83
+ color:#D0D6DC; font-size:26px; text-align:center; padding:10px;
84
+ }
85
+ .target .label { color:#A9B0B7; font-size:26px; text-align:center; }
86
+ /* Link bubble + tooltip */
87
+ .link-bubble {
88
+ position:absolute; left:14px; bottom:280px; background:#2A2E33; color:#D0D6DC; border:1px solid #39414A;
89
+ border-radius:26px; padding:20px; width:420px; font-size:26px; line-height:1.35;
90
+ display:flex; gap:14px; align-items:center;
91
+ }
92
+ .link-bubble .mini { width:60px; height:60px; border-radius:16px; background:#1F2327; border:1px solid #3A414A; display:flex; align-items:center; justify-content:center; }
93
+ .tooltip {
94
+ position:absolute; left:160px; bottom:420px; background:#2A2E33; color:#D0D6DC; border:1px solid #39414A;
95
+ border-radius:26px; padding:16px 22px; font-size:26px;
96
+ }
97
+ /* Gesture bar */
98
+ .gesture { position:absolute; left:0; right:0; bottom:28px; display:flex; justify-content:center; }
99
+ .gesture .bar { width: 280px; height: 10px; background:#C9CDD2; border-radius:10px; }
100
+ /* Simple icon colors */
101
+ .blue { color:#2F5DE2; }
102
+ .svg { width:42px; height:42px; }
103
+ </style>
104
+ </head>
105
+ <body>
106
+ <div id="render-target">
107
+ <!-- Status bar -->
108
+ <div class="status-bar">
109
+ <div>8:17</div>
110
+ <div class="status-icons">
111
+ <!-- simple tiny icons -->
112
+ <svg class="svg" viewBox="0 0 24 24"><rect x="2" y="6" width="20" height="12" rx="2" fill="#555"/></svg>
113
+ <svg class="svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#777"/></svg>
114
+ <svg class="svg" viewBox="0 0 24 24"><path d="M2 20h20M4 16h16M6 12h12M8 8h8" stroke="#666" stroke-width="2" fill="none"/></svg>
115
+ <svg class="svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="2" fill="#666"/><circle cx="20" cy="12" r="2" fill="#666"/><circle cx="4" cy="12" r="2" fill="#666"/></svg>
116
+ <svg class="svg" viewBox="0 0 24 24"><path d="M3 18h18" stroke="#000" stroke-width="2"/><path d="M3 6h18" stroke="#000" stroke-width="2"/></svg>
117
+ <svg class="svg" viewBox="0 0 24 24"><path d="M5 18h14" stroke="#000" stroke-width="3"/></svg>
118
+ </div>
119
+ </div>
120
+
121
+ <!-- Top bar -->
122
+ <div class="top-bar">
123
+ <div class="left">Cancel</div>
124
+ <div class="center">1 file(s) selected</div>
125
+ <div class="right">Select All</div>
126
+ </div>
127
+
128
+ <!-- Tabs -->
129
+ <div class="tabs">
130
+ <div class="tab active">All</div>
131
+ <div class="tab">Offline</div>
132
+ </div>
133
+
134
+ <!-- Sort row -->
135
+ <div class="sort-row">
136
+ <svg class="svg" viewBox="0 0 24 24">
137
+ <path d="M4 6h16M7 12h10M10 18h4" stroke="#6b6f76" stroke-width="2" fill="none" stroke-linecap="round"/>
138
+ </svg>
139
+ <div>Sort by time</div>
140
+ </div>
141
+
142
+ <!-- File list -->
143
+ <div class="list">
144
+ <div class="item">
145
+ <div class="thumb vault">
146
+ <!-- vault icon -->
147
+ <svg viewBox="0 0 24 24" class="svg">
148
+ <rect x="4" y="6" width="16" height="12" rx="2" fill="#777"/>
149
+ <circle cx="12" cy="12" r="3" fill="#555"/>
150
+ </svg>
151
+ </div>
152
+ <div class="content">
153
+ <div class="title">Personal Vault</div>
154
+ <div class="meta">Secure area</div>
155
+ </div>
156
+ <div class="end"></div>
157
+ </div>
158
+
159
+ <div class="item selected">
160
+ <div class="thumb">
161
+ <!-- folder icon -->
162
+ <svg viewBox="0 0 24 24" class="svg">
163
+ <path d="M3 7h7l2 2h9v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7z" fill="#7A5900"/>
164
+ </svg>
165
+ </div>
166
+ <div class="content">
167
+ <div class="title">password file</div>
168
+ <div class="meta">2023-06-28 15:09</div>
169
+ </div>
170
+ <div class="end">
171
+ <!-- check circle -->
172
+ <svg viewBox="0 0 24 24" class="svg">
173
+ <circle cx="12" cy="12" r="11" fill="#2F5DE2"/>
174
+ <path d="M7 12l3 3 7-7" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/>
175
+ </svg>
176
+ </div>
177
+ </div>
178
+
179
+ <div class="item">
180
+ <div class="thumb cloud">
181
+ <!-- cloud icon -->
182
+ <svg viewBox="0 0 24 24" class="svg">
183
+ <path d="M7 16h10a3 3 0 0 0 0-6h-1a5 5 0 0 0-9 2H6a3 3 0 0 0 1 4z" fill="#616161"/>
184
+ </svg>
185
+ </div>
186
+ <div class="content">
187
+ <div class="title">plant</div>
188
+ <div class="meta">2023-06-28 14:11 74.34KB</div>
189
+ </div>
190
+ <div class="end">
191
+ <svg viewBox="0 0 24 24" class="svg">
192
+ <circle cx="12" cy="12" r="10" stroke="#C8CDD3" stroke-width="2" fill="none"/>
193
+ </svg>
194
+ </div>
195
+ </div>
196
+
197
+ <div class="item">
198
+ <div class="thumb cloud">
199
+ <svg viewBox="0 0 24 24" class="svg">
200
+ <path d="M7 16h10a3 3 0 0 0 0-6h-1a5 5 0 0 0-9 2H6a3 3 0 0 0 1 4z" fill="#616161"/>
201
+ </svg>
202
+ </div>
203
+ <div class="content">
204
+ <div class="title">white tree</div>
205
+ <div class="meta">2023-06-28 14:11 256.12KB</div>
206
+ </div>
207
+ <div class="end">
208
+ <svg viewBox="0 0 24 24" class="svg">
209
+ <circle cx="12" cy="12" r="10" stroke="#C8CDD3" stroke-width="2" fill="none"/>
210
+ </svg>
211
+ </div>
212
+ </div>
213
+
214
+ <div class="item">
215
+ <div class="thumb pdf">
216
+ <!-- pdf icon -->
217
+ <svg viewBox="0 0 24 24" class="svg">
218
+ <rect x="4" y="4" width="14" height="16" rx="2" fill="#c62828"/>
219
+ <path d="M18 4v5h4" stroke="#c62828" stroke-width="2" fill="none"/>
220
+ </svg>
221
+ </div>
222
+ <div class="content">
223
+ <div class="title">TeraBoxQuickStartGuide.pdf</div>
224
+ <div class="meta">2023-06-28 14:08 1.17KB</div>
225
+ </div>
226
+ <div class="end">
227
+ <svg viewBox="0 0 24 24" class="svg">
228
+ <circle cx="12" cy="12" r="10" stroke="#C8CDD3" stroke-width="2" fill="none"/>
229
+ </svg>
230
+ </div>
231
+ </div>
232
+ </div>
233
+
234
+ <!-- Bottom sheet -->
235
+ <div class="sheet">
236
+ <div class="handle"></div>
237
+ <div class="share-text">
238
+ Hi, I am using TeraBox to share "password file" with you. Come and take a look! https://teraboxapp.com/s/1X8O3...
239
+ </div>
240
+ <div class="actions">
241
+ <div class="pill-btn">
242
+ <svg viewBox="0 0 24 24" class="svg">
243
+ <rect x="4" y="6" width="16" height="12" rx="2" stroke="#9FB4C8" fill="none" stroke-width="2"/>
244
+ <line x1="8" y1="10" x2="16" y2="10" stroke="#9FB4C8" stroke-width="2"/>
245
+ <line x1="8" y1="14" x2="14" y2="14" stroke="#9FB4C8" stroke-width="2"/>
246
+ </svg>
247
+ <span>Copy</span>
248
+ </div>
249
+ <div class="pill-btn">
250
+ <svg viewBox="0 0 24 24" class="svg">
251
+ <path d="M4 12h16M12 4v16" stroke="#9FB4C8" stroke-width="2"/>
252
+ </svg>
253
+ <span>Nearby</span>
254
+ </div>
255
+ </div>
256
+
257
+ <div class="contact">
258
+ <div class="avatar">C
259
+ <div class="badge">[G]</div>
260
+ </div>
261
+ <div class="name">dbwscratch • test.id10@g...</div>
262
+ </div>
263
+
264
+ <!-- Share targets -->
265
+ <div class="targets">
266
+ <div class="target">
267
+ <div class="circle">https://teraboxapp.com/s/1X8O3S...</div>
268
+ <div class="label">Link</div>
269
+ </div>
270
+ <div class="target">
271
+ <div class="circle">
272
+ <svg viewBox="0 0 24 24" class="svg">
273
+ <path d="M12 5l7 7-7 7-7-7z" fill="#D0D6DC"/>
274
+ </svg>
275
+ </div>
276
+ <div class="label">Share</div>
277
+ </div>
278
+ <div class="target">
279
+ <div class="circle">
280
+ <svg viewBox="0 0 24 24" class="svg">
281
+ <rect x="4" y="4" width="16" height="16" rx="3" stroke="#D0D6DC" stroke-width="2" fill="none"/>
282
+ <rect x="8" y="8" width="8" height="8" fill="#D0D6DC"/>
283
+ </svg>
284
+ </div>
285
+ <div class="label">Messages</div>
286
+ </div>
287
+ <div class="target">
288
+ <div class="circle">
289
+ <svg viewBox="0 0 24 24" class="svg">
290
+ <circle cx="12" cy="12" r="10" fill="#1877F2"/>
291
+ <path d="M7 17l3-7 3 3 4-4-3 8z" fill="#fff"/>
292
+ </svg>
293
+ </div>
294
+ <div class="label">Facebook News Feed</div>
295
+ </div>
296
+ </div>
297
+
298
+ <!-- Link bubble + tooltip -->
299
+ <div class="link-bubble">
300
+ <div class="mini">
301
+ <svg viewBox="0 0 24 24" class="svg"><path d="M5 12h14M12 5v14" stroke="#AEB6BE" stroke-width="2"/></svg>
302
+ </div>
303
+ <div>https://teraboxapp.com/s/1X8O3S_Rcctu45P...</div>
304
+ <div class="mini">
305
+ <svg viewBox="0 0 24 24" class="svg"><path d="M6 12h12M12 6v12" stroke="#AEB6BE" stroke-width="2"/></svg>
306
+ </div>
307
+ </div>
308
+ <div class="tooltip">Link has been copied to pasteboard</div>
309
+
310
+ <!-- Gesture bar within sheet area -->
311
+ <div class="gesture"><div class="bar"></div></div>
312
+ </div>
313
+ </div>
314
+ </body>
315
+ </html>
25_6.html ADDED
@@ -0,0 +1,349 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>File Select & Share</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: #F7F7FA;
12
+ color: #222;
13
+ }
14
+
15
+ /* Status bar */
16
+ .status-bar {
17
+ position: absolute; top: 0; left: 0; width: 100%; height: 96px;
18
+ display: flex; align-items: center; justify-content: space-between;
19
+ padding: 0 32px; color: #fff; background: rgba(0,0,0,0.25);
20
+ font-size: 36px; letter-spacing: 0.5px;
21
+ }
22
+ .status-icons { display: flex; align-items: center; gap: 24px; }
23
+
24
+ /* Header (selection) */
25
+ .selection-header {
26
+ position: absolute; top: 96px; left: 0; right: 0; height: 120px;
27
+ display: flex; align-items: center;
28
+ padding: 0 32px; background: #FFFFFF;
29
+ border-bottom: 1px solid #E4E6EB;
30
+ font-size: 40px;
31
+ }
32
+ .selection-header .title { flex: 1; text-align: center; font-weight: 600; }
33
+ .selection-header .left { color: #666; }
34
+ .selection-header .right { color: #2451FF; font-weight: 600; }
35
+
36
+ /* Tabs */
37
+ .tabs {
38
+ position: absolute; top: 216px; left: 0; right: 0; height: 96px;
39
+ background: #FFFFFF; display: flex; align-items: center; padding: 0 32px;
40
+ border-bottom: 1px solid #E4E6EB;
41
+ font-size: 36px;
42
+ }
43
+ .tab { margin-right: 40px; color: #666; }
44
+ .tab.active { color: #2451FF; position: relative; }
45
+ .tab.active::after {
46
+ content: ""; position: absolute; left: 0; right: 0; bottom: -32px;
47
+ height: 6px; background: #2451FF; border-radius: 3px;
48
+ }
49
+
50
+ /* Sort row */
51
+ .sort-row {
52
+ position: absolute; top: 312px; left: 0; right: 0; height: 96px;
53
+ background: #FFFFFF; display: flex; align-items: center; padding: 0 32px;
54
+ color: #5A5A5A; font-size: 34px; gap: 16px; border-bottom: 1px solid #E4E6EB;
55
+ }
56
+
57
+ /* File list */
58
+ .list {
59
+ position: absolute; top: 408px; left: 0; right: 0; bottom: 900px;
60
+ overflow: hidden; /* not scroll for static mock */
61
+ background: #FFFFFF;
62
+ }
63
+ .file-row {
64
+ display: grid; grid-template-columns: 120px 1fr 120px;
65
+ align-items: center; padding: 24px 32px; height: 170px; border-bottom: 1px solid #F0F0F3;
66
+ }
67
+ .file-row.selected { background: #EAF2FF; }
68
+ .file-name { font-size: 40px; font-weight: 600; color: #222; }
69
+ .file-meta { font-size: 30px; color: #8A8A8A; margin-top: 8px; }
70
+ .file-icon { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; }
71
+ .select-dot { display: flex; align-items: center; justify-content: center; }
72
+
73
+ /* Share sheet */
74
+ .share-sheet {
75
+ position: absolute; left: 0; right: 0; bottom: 0;
76
+ height: 900px; background: #1C1C1E; color: #fff;
77
+ border-top-left-radius: 40px; border-top-right-radius: 40px;
78
+ box-shadow: 0 -12px 24px rgba(0,0,0,0.35);
79
+ padding: 24px 40px;
80
+ }
81
+ .drag-handle {
82
+ width: 120px; height: 12px; background: #3A3A3C; border-radius: 6px; margin: 12px auto 24px;
83
+ }
84
+ .share-text {
85
+ font-size: 36px; line-height: 1.45; color: #EDEDED; margin-top: 12px;
86
+ }
87
+ .btn-row { display: flex; gap: 28px; margin: 32px 0; }
88
+ .action-btn {
89
+ flex: 0 0 260px; height: 96px; border: 2px solid #3855FF;
90
+ border-radius: 18px; display: flex; align-items: center; justify-content: center;
91
+ gap: 16px; color: #DDE3FF; font-size: 36px; background: rgba(56,85,255,0.12);
92
+ }
93
+
94
+ .account {
95
+ display: flex; align-items: center; gap: 24px; margin: 14px 0 24px;
96
+ }
97
+ .avatar-placeholder {
98
+ width: 116px; height: 116px; background: #E0E0E0; border: 1px solid #BDBDBD;
99
+ border-radius: 58px; display: flex; align-items: center; justify-content: center; color: #757575;
100
+ font-size: 24px; text-align: center; padding: 8px;
101
+ position: relative;
102
+ }
103
+ .badge {
104
+ position: absolute; right: -4px; bottom: -4px; width: 44px; height: 44px;
105
+ background: #F0F0F0; border: 1px solid #C9C9C9; border-radius: 50%;
106
+ display: flex; align-items: center; justify-content: center; font-size: 22px; color: #666;
107
+ }
108
+ .account-text { color: #D7D7D7; font-size: 34px; }
109
+ .apps {
110
+ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 24px;
111
+ }
112
+ .app {
113
+ display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
114
+ }
115
+ .app-icon {
116
+ width: 140px; height: 140px; border-radius: 70px; background: #2B2B2E;
117
+ display: flex; align-items: center; justify-content: center;
118
+ }
119
+ .app-label { font-size: 30px; text-align: center; color: #EDEDED; }
120
+ .app-sub { font-size: 26px; color: #BEBEBE; margin-top: -8px; }
121
+
122
+ /* Home pill */
123
+ .home-pill {
124
+ position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
125
+ width: 220px; height: 12px; background: #FFFFFF; border-radius: 6px;
126
+ opacity: 0.9;
127
+ }
128
+ /* Utility SVG colors */
129
+ .blue { fill: #2451FF; }
130
+ .grey { fill: #B0BEC5; }
131
+ .yellow { fill: #F5C54B; }
132
+
133
+ </style>
134
+ </head>
135
+ <body>
136
+ <div id="render-target">
137
+
138
+ <!-- Status Bar -->
139
+ <div class="status-bar">
140
+ <div>8:18</div>
141
+ <div class="status-icons">
142
+ <!-- simple icons -->
143
+ <svg width="40" height="40" viewBox="0 0 24 24">
144
+ <circle cx="12" cy="12" r="10" stroke="#fff" stroke-width="2" fill="none"></circle>
145
+ <path d="M7 12l3 3 7-7" stroke="#fff" stroke-width="2" fill="none"></path>
146
+ </svg>
147
+ <svg width="40" height="40" viewBox="0 0 24 24">
148
+ <path d="M2 18c3-4 6-6 10-6s7 2 10 6" stroke="#fff" stroke-width="2" fill="none"></path>
149
+ <path d="M6 18c2-3 4-4 6-4s4 1 6 4" stroke="#fff" stroke-width="2" fill="none"></path>
150
+ </svg>
151
+ <svg width="40" height="40" viewBox="0 0 24 24">
152
+ <rect x="2" y="7" width="16" height="10" rx="2" stroke="#fff" stroke-width="2" fill="none"></rect>
153
+ <rect x="19" y="10" width="2" height="4" fill="#fff"></rect>
154
+ </svg>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Selection header -->
159
+ <div class="selection-header">
160
+ <div class="left">Cancel</div>
161
+ <div class="title">1 file(s) selected</div>
162
+ <div class="right">Select All</div>
163
+ </div>
164
+
165
+ <!-- Tabs -->
166
+ <div class="tabs">
167
+ <div class="tab active">All</div>
168
+ <div class="tab">Offline</div>
169
+ </div>
170
+
171
+ <!-- Sort -->
172
+ <div class="sort-row">
173
+ <svg width="36" height="36" viewBox="0 0 24 24">
174
+ <path d="M4 6h16M4 12h12M4 18h8" stroke="#666" stroke-width="2" fill="none" stroke-linecap="round"></path>
175
+ </svg>
176
+ <div>Sort by time</div>
177
+ </div>
178
+
179
+ <!-- File list -->
180
+ <div class="list">
181
+ <!-- Personal Vault -->
182
+ <div class="file-row">
183
+ <div class="file-icon">
184
+ <svg width="72" height="72" viewBox="0 0 24 24">
185
+ <rect x="3" y="5" width="18" height="14" rx="2" fill="#C2C8D0"></rect>
186
+ <circle cx="12" cy="12" r="4" fill="#9AA3AD"></circle>
187
+ <circle cx="12" cy="12" r="1.5" fill="#707A84"></circle>
188
+ </svg>
189
+ </div>
190
+ <div>
191
+ <div class="file-name">Personal Vault</div>
192
+ <div class="file-meta"> </div>
193
+ </div>
194
+ <div class="select-dot">
195
+ <svg width="56" height="56" viewBox="0 0 24 24">
196
+ <circle cx="12" cy="12" r="10" stroke="#C9CED8" stroke-width="2" fill="none"></circle>
197
+ </svg>
198
+ </div>
199
+ </div>
200
+
201
+ <!-- password file (selected) -->
202
+ <div class="file-row selected">
203
+ <div class="file-icon">
204
+ <svg width="84" height="84" viewBox="0 0 24 24">
205
+ <path d="M3 7h7l2 2h9v10H3z" fill="#F5C54B"></path>
206
+ </svg>
207
+ </div>
208
+ <div>
209
+ <div class="file-name">password file</div>
210
+ <div class="file-meta">2023-06-28 15:09</div>
211
+ </div>
212
+ <div class="select-dot">
213
+ <svg width="56" height="56" viewBox="0 0 24 24">
214
+ <circle cx="12" cy="12" r="10" fill="#2451FF"></circle>
215
+ <path d="M7 12l3 3 7-7" stroke="#fff" stroke-width="2" fill="none"></path>
216
+ </svg>
217
+ </div>
218
+ </div>
219
+
220
+ <!-- plant -->
221
+ <div class="file-row">
222
+ <div class="file-icon">
223
+ <svg width="84" height="84" viewBox="0 0 24 24">
224
+ <path d="M6 16h10a5 5 0 0 0 0-10c-.9 0-1.7.2-2.3.6A7 7 0 0 0 6 12a4 4 0 0 0 0 4z" fill="#C2C8D0"></path>
225
+ </svg>
226
+ </div>
227
+ <div>
228
+ <div class="file-name">plant</div>
229
+ <div class="file-meta">2023-06-28 14:11 74.34KB</div>
230
+ </div>
231
+ <div class="select-dot">
232
+ <svg width="56" height="56" viewBox="0 0 24 24">
233
+ <circle cx="12" cy="12" r="10" stroke="#C9CED8" stroke-width="2" fill="none"></circle>
234
+ </svg>
235
+ </div>
236
+ </div>
237
+
238
+ <!-- white tree -->
239
+ <div class="file-row">
240
+ <div class="file-icon">
241
+ <svg width="84" height="84" viewBox="0 0 24 24">
242
+ <path d="M6 16h10a5 5 0 0 0 0-10c-.9 0-1.7.2-2.3.6A7 7 0 0 0 6 12a4 4 0 0 0 0 4z" fill="#C2C8D0"></path>
243
+ </svg>
244
+ </div>
245
+ <div>
246
+ <div class="file-name">white tree</div>
247
+ <div class="file-meta">2023-06-28 14:11 256.12KB</div>
248
+ </div>
249
+ <div class="select-dot">
250
+ <svg width="56" height="56" viewBox="0 0 24 24">
251
+ <circle cx="12" cy="12" r="10" stroke="#C9CED8" stroke-width="2" fill="none"></circle>
252
+ </svg>
253
+ </div>
254
+ </div>
255
+
256
+ <!-- PDF -->
257
+ <div class="file-row">
258
+ <div class="file-icon">
259
+ <svg width="84" height="84" viewBox="0 0 24 24">
260
+ <path d="M6 3h9l5 5v13H6z" fill="#EF5350"></path>
261
+ <path d="M15 3v5h5" fill="#FFCDD2"></path>
262
+ </svg>
263
+ </div>
264
+ <div>
265
+ <div class="file-name">TeraBoxQuickStartGuide.pdf</div>
266
+ <div class="file-meta">2023-06-28 14:08 1.17KB</div>
267
+ </div>
268
+ <div class="select-dot">
269
+ <svg width="56" height="56" viewBox="0 0 24 24">
270
+ <circle cx="12" cy="12" r="10" stroke="#C9CED8" stroke-width="2" fill="none"></circle>
271
+ </svg>
272
+ </div>
273
+ </div>
274
+ </div>
275
+
276
+ <!-- Share Sheet -->
277
+ <div class="share-sheet">
278
+ <div class="drag-handle"></div>
279
+ <div class="share-text">
280
+ Hi, I am using TeraBox to share "password file" with you. Come and take a look! https://teraboxapp.com/s/1X8O3...
281
+ </div>
282
+
283
+ <div class="btn-row">
284
+ <div class="action-btn">
285
+ <svg width="30" height="30" viewBox="0 0 24 24">
286
+ <rect x="5" y="5" width="10" height="10" rx="2" stroke="#DDE3FF" stroke-width="2" fill="none"></rect>
287
+ <rect x="9" y="9" width="10" height="10" rx="2" stroke="#DDE3FF" stroke-width="2" fill="none"></rect>
288
+ </svg>
289
+ <span>Copy</span>
290
+ </div>
291
+ <div class="action-btn">
292
+ <svg width="32" height="32" viewBox="0 0 24 24">
293
+ <path d="M5 7l6 6-6 6" stroke="#DDE3FF" stroke-width="2" fill="none" stroke-linecap="round"></path>
294
+ <path d="M19 7l-6 6 6 6" stroke="#DDE3FF" stroke-width="2" fill="none" stroke-linecap="round"></path>
295
+ </svg>
296
+ <span>Nearby</span>
297
+ </div>
298
+ </div>
299
+
300
+ <div class="account">
301
+ <div class="avatar-placeholder">[IMG: User Avatar]
302
+ <div class="badge">M</div>
303
+ </div>
304
+ <div class="account-text">dbwscratch.test.id10@g...</div>
305
+ </div>
306
+
307
+ <div class="apps">
308
+ <div class="app">
309
+ <div class="app-icon" style="background:#D32F2F;">
310
+ <svg width="72" height="72" viewBox="0 0 24 24">
311
+ <path d="M2 18l10-12 10 12" stroke="#fff" stroke-width="2" fill="none"></path>
312
+ </svg>
313
+ </div>
314
+ <div class="app-label">Gmail</div>
315
+ </div>
316
+ <div class="app">
317
+ <div class="app-icon" style="background:#2E7D32;">
318
+ <svg width="72" height="72" viewBox="0 0 24 24">
319
+ <polygon points="12,3 3,21 21,21" fill="#fff" opacity="0.85"></polygon>
320
+ </svg>
321
+ </div>
322
+ <div class="app-label">Drive</div>
323
+ </div>
324
+ <div class="app">
325
+ <div class="app-icon" style="background:#2962FF;">
326
+ <svg width="72" height="72" viewBox="0 0 24 24">
327
+ <rect x="3" y="7" width="18" height="10" rx="5" fill="#fff"></rect>
328
+ </svg>
329
+ </div>
330
+ <div class="app-label">Messages</div>
331
+ </div>
332
+ <div class="app">
333
+ <div class="app-icon" style="background:#1877F2;">
334
+ <svg width="72" height="72" viewBox="0 0 24 24">
335
+ <path d="M14 22v-7h3l1-4h-4V8c0-1 1-2 2-2h2V3h-3a5 5 0 0 0-5 5v3H8v4h3v7z" fill="#fff"></path>
336
+ </svg>
337
+ </div>
338
+ <div class="app-label">Facebook</div>
339
+ <div class="app-sub">News Feed</div>
340
+ </div>
341
+ </div>
342
+ </div>
343
+
344
+ <!-- Home Pill -->
345
+ <div class="home-pill"></div>
346
+
347
+ </div>
348
+ </body>
349
+ </html>
25_7.html ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Mobile Gmail Compose Mock</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: #121212; color: #FFFFFF;
11
+ }
12
+
13
+ /* Status bar */
14
+ .status-bar {
15
+ position: absolute; top: 0; left: 0; width: 1080px; height: 90px;
16
+ display: flex; align-items: center; justify-content: space-between;
17
+ padding: 0 32px; box-sizing: border-box; color: #EAEAEA;
18
+ font-size: 34px;
19
+ }
20
+ .status-icons { display: flex; align-items: center; gap: 24px; }
21
+ .icon { display: inline-flex; align-items: center; justify-content: center; }
22
+
23
+ /* App bar */
24
+ .appbar {
25
+ position: absolute; top: 90px; left: 0; width: 1080px; height: 160px;
26
+ display: flex; align-items: center; justify-content: space-between;
27
+ padding: 0 28px; box-sizing: border-box;
28
+ border-bottom: 1px solid #2A2A2A;
29
+ }
30
+ .appbar-left { display: flex; align-items: center; gap: 24px; }
31
+ .title { font-size: 48px; font-weight: 500; letter-spacing: 0.2px; }
32
+
33
+ .actions { display: flex; align-items: center; gap: 36px; }
34
+ .action-icon svg { width: 56px; height: 56px; fill: none; stroke: #EAEAEA; stroke-width: 4; }
35
+
36
+ /* Form rows */
37
+ .composer {
38
+ position: absolute; top: 250px; left: 0; width: 1080px;
39
+ box-sizing: border-box;
40
+ }
41
+ .row {
42
+ padding: 28px 36px; box-sizing: border-box;
43
+ border-bottom: 1px solid #2A2A2A;
44
+ }
45
+ .row .label { color: #9E9E9E; font-size: 28px; margin-bottom: 12px; }
46
+ .row .value { font-size: 34px; color: #FFFFFF; }
47
+ .row.to .value { display: flex; align-items: center; justify-content: space-between; }
48
+ .placeholder { color: #777777; font-size: 34px; }
49
+
50
+ /* Body text area */
51
+ .body-area {
52
+ padding: 28px 36px 36px 36px; box-sizing: border-box;
53
+ color: #FFFFFF; font-size: 40px; line-height: 64px;
54
+ min-height: 820px;
55
+ }
56
+ .link { color: #8AB4F8; }
57
+
58
+ /* Keyboard mock */
59
+ .keyboard {
60
+ position: absolute; bottom: 60px; left: 0; width: 1080px; height: 950px;
61
+ background: #1B1B1B; border-top: 1px solid #2A2A2A; box-sizing: border-box;
62
+ }
63
+ .kb-top {
64
+ height: 120px; display: flex; align-items: center; gap: 36px;
65
+ padding: 0 26px; box-sizing: border-box; color: #D0D0D0;
66
+ }
67
+ .kb-top .pill {
68
+ height: 72px; padding: 0 22px; border-radius: 16px; background: #2A2A2A;
69
+ display: inline-flex; align-items: center; justify-content: center; font-size: 30px;
70
+ }
71
+
72
+ .keys-row {
73
+ display: grid; gap: 12px; padding: 14px 18px; box-sizing: border-box;
74
+ }
75
+ .keys-row.row1 { grid-template-columns: repeat(10, 1fr); }
76
+ .keys-row.row2 { grid-template-columns: repeat(9, 1fr); padding-left: 80px; padding-right: 80px; }
77
+ .keys-row.row3 { grid-template-columns: 1.3fr repeat(7, 1fr) 1.5fr; padding-left: 36px; padding-right: 36px; }
78
+ .keys-row.row4 { grid-template-columns: 1.5fr 1fr 1fr 5fr 1fr 2fr; padding-left: 18px; padding-right: 18px; }
79
+
80
+ .key {
81
+ height: 120px; border-radius: 22px; background: #2A2A2A; color: #E0E0E0;
82
+ display: flex; align-items: center; justify-content: center; font-size: 40px; user-select: none;
83
+ border: 1px solid #3A3A3A;
84
+ }
85
+ .key.small { font-size: 34px; }
86
+ .key.icon { font-size: 30px; color: #B0B0B0; }
87
+
88
+ /* Navigation pill */
89
+ .nav-pill {
90
+ position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
91
+ width: 300px; height: 10px; background: #EDEDED; border-radius: 8px;
92
+ }
93
+ </style>
94
+ </head>
95
+ <body>
96
+ <div id="render-target">
97
+
98
+ <!-- Status Bar -->
99
+ <div class="status-bar">
100
+ <div>8:18</div>
101
+ <div class="status-icons">
102
+ <!-- Signal -->
103
+ <svg class="icon" width="38" height="38" viewBox="0 0 24 24">
104
+ <path d="M3 18h2M6 14h2M9 10h2M12 6h2" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round"/>
105
+ </svg>
106
+ <!-- Wi-Fi -->
107
+ <svg class="icon" width="38" height="38" viewBox="0 0 24 24">
108
+ <path d="M2 8c5-4 15-4 20 0M5 12c3-2 11-2 14 0M9 16c2-1 4-1 6 0" stroke="#EAEAEA" stroke-width="2" fill="none" stroke-linecap="round"/>
109
+ <circle cx="12" cy="19" r="1.6" fill="#EAEAEA"/>
110
+ </svg>
111
+ <!-- Battery -->
112
+ <svg class="icon" width="52" height="38" viewBox="0 0 30 18">
113
+ <rect x="1" y="2" width="24" height="14" rx="2" stroke="#EAEAEA" stroke-width="2" fill="none"/>
114
+ <rect x="3" y="4" width="18" height="10" rx="1" fill="#EAEAEA"/>
115
+ <rect x="26" y="6" width="3" height="6" rx="1" fill="#EAEAEA"/>
116
+ </svg>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- App Bar -->
121
+ <div class="appbar">
122
+ <div class="appbar-left">
123
+ <!-- Back Arrow -->
124
+ <svg width="56" height="56" viewBox="0 0 24 24">
125
+ <path d="M15 5L7 12l8 7" stroke="#FFFFFF" stroke-width="2.6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
126
+ </svg>
127
+ <div class="title">Compose</div>
128
+ </div>
129
+ <div class="actions">
130
+ <div class="action-icon">
131
+ <!-- Paperclip -->
132
+ <svg viewBox="0 0 24 24">
133
+ <path d="M7 13l7-7a4 4 0 0 1 6 6l-9 9a6 6 0 0 1-9-9l8-8" stroke="#EAEAEA" stroke-width="2.2" fill="none" stroke-linecap="round"/>
134
+ </svg>
135
+ </div>
136
+ <div class="action-icon">
137
+ <!-- Send -->
138
+ <svg viewBox="0 0 24 24">
139
+ <path d="M3 12l18-9-6 9 6 9-18-9z" fill="#EAEAEA"/>
140
+ </svg>
141
+ </div>
142
+ <div class="action-icon">
143
+ <!-- More (vertical dots) -->
144
+ <svg viewBox="0 0 24 24">
145
+ <circle cx="12" cy="5" r="2.2" fill="#EAEAEA"/>
146
+ <circle cx="12" cy="12" r="2.2" fill="#EAEAEA"/>
147
+ <circle cx="12" cy="19" r="2.2" fill="#EAEAEA"/>
148
+ </svg>
149
+ </div>
150
+ </div>
151
+ </div>
152
+
153
+ <!-- Composer Fields -->
154
+ <div class="composer">
155
+ <div class="row">
156
+ <div class="label">From</div>
157
+ <div class="value">dbwscratch.test.id10@gmail.com</div>
158
+ </div>
159
+ <div class="row to">
160
+ <div class="label">To</div>
161
+ <div class="value">
162
+ <span style="color:#777;"> </span>
163
+ <!-- Chevron down -->
164
+ <svg width="44" height="44" viewBox="0 0 24 24">
165
+ <path d="M5 9l7 7 7-7" stroke="#CFCFCF" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
166
+ </svg>
167
+ </div>
168
+ </div>
169
+ <div class="row">
170
+ <div class="label">Subject</div>
171
+ <div class="placeholder">Subject</div>
172
+ </div>
173
+
174
+ <div class="body-area">
175
+ Hi, I am using TeraBox to share "password file"<br>
176
+ with you. Come and take a look!<br>
177
+ <span class="link">https://teraboxapp.com/s/1X8O3S_Rcctu45PCtmxqktw</span>
178
+ </div>
179
+ </div>
180
+
181
+ <!-- Keyboard -->
182
+ <div class="keyboard">
183
+ <div class="kb-top">
184
+ <div class="pill">GIF</div>
185
+ <div class="pill">🙂</div>
186
+ <div class="pill">⚙️</div>
187
+ <div class="pill">G↔️</div>
188
+ <div class="pill">🎨</div>
189
+ <div class="pill">🎤</div>
190
+ </div>
191
+
192
+ <div class="keys-row row1">
193
+ <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>
194
+ <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>
195
+ </div>
196
+ <div class="keys-row row2">
197
+ <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>
198
+ <div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
199
+ </div>
200
+ <div class="keys-row row3">
201
+ <div class="key small">⇧</div>
202
+ <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>
203
+ <div class="key small">⌫</div>
204
+ </div>
205
+ <div class="keys-row row4">
206
+ <div class="key small">?123</div>
207
+ <div class="key small">@</div>
208
+ <div class="key small">🙂</div>
209
+ <div class="key">space</div>
210
+ <div class="key small">.</div>
211
+ <div class="key small">↵</div>
212
+ </div>
213
+ </div>
214
+
215
+ <div class="nav-pill"></div>
216
+ </div>
217
+ </body>
218
+ </html>
25_8.html ADDED
@@ -0,0 +1,395 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Compose Screen Mock</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: #121212;
15
+ color: #EDEDED;
16
+ font-family: Arial, Helvetica, sans-serif;
17
+ }
18
+
19
+ /* Status bar */
20
+ .status-bar {
21
+ position: absolute;
22
+ top: 0;
23
+ left: 0;
24
+ height: 90px;
25
+ width: 100%;
26
+ display: flex;
27
+ align-items: center;
28
+ padding: 0 28px;
29
+ color: #EDEDED;
30
+ font-size: 40px;
31
+ }
32
+ .sb-right {
33
+ margin-left: auto;
34
+ display: flex;
35
+ align-items: center;
36
+ gap: 26px;
37
+ }
38
+ .icon-sb { width: 48px; height: 48px; opacity: 0.9; }
39
+
40
+ /* Header */
41
+ .header {
42
+ position: absolute;
43
+ top: 90px;
44
+ left: 0;
45
+ width: 100%;
46
+ height: 150px;
47
+ border-bottom: 1px solid #2A2A2A;
48
+ display: flex;
49
+ align-items: center;
50
+ padding: 0 24px;
51
+ }
52
+ .back-btn {
53
+ width: 100px;
54
+ height: 100px;
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ margin-right: 6px;
59
+ }
60
+ .header-title {
61
+ font-size: 70px;
62
+ font-weight: 600;
63
+ letter-spacing: 0.5px;
64
+ }
65
+ .header-actions {
66
+ margin-left: auto;
67
+ display: flex;
68
+ align-items: center;
69
+ gap: 36px;
70
+ }
71
+ .header-icon {
72
+ width: 74px;
73
+ height: 74px;
74
+ display: inline-flex;
75
+ align-items: center;
76
+ justify-content: center;
77
+ }
78
+
79
+ /* Fields area */
80
+ .content {
81
+ position: absolute;
82
+ top: 240px;
83
+ left: 0;
84
+ width: 100%;
85
+ }
86
+ .field-row {
87
+ display: flex;
88
+ align-items: center;
89
+ padding: 22px 32px;
90
+ border-bottom: 1px solid #1E1E1E;
91
+ min-height: 120px;
92
+ }
93
+ .field-label {
94
+ width: 120px;
95
+ color: #9E9E9E;
96
+ font-size: 40px;
97
+ }
98
+ .field-value {
99
+ font-size: 46px;
100
+ line-height: 1.2;
101
+ }
102
+ .chevron {
103
+ margin-left: auto;
104
+ width: 60px;
105
+ height: 60px;
106
+ opacity: 0.9;
107
+ }
108
+
109
+ /* Suggestion item */
110
+ .suggestion {
111
+ display: flex;
112
+ align-items: center;
113
+ gap: 28px;
114
+ padding: 26px 32px;
115
+ border-bottom: 1px solid #1E1E1E;
116
+ }
117
+ .avatar-placeholder {
118
+ width: 96px;
119
+ height: 96px;
120
+ background: #E0E0E0;
121
+ border: 1px solid #BDBDBD;
122
+ color: #757575;
123
+ display: flex;
124
+ justify-content: center;
125
+ align-items: center;
126
+ border-radius: 50%;
127
+ font-size: 24px;
128
+ }
129
+ .suggest-text {
130
+ display: flex;
131
+ flex-direction: column;
132
+ }
133
+ .suggest-name {
134
+ font-size: 46px;
135
+ }
136
+ .suggest-email {
137
+ font-size: 34px;
138
+ color: #9E9E9E;
139
+ margin-top: 6px;
140
+ }
141
+
142
+ /* Keyboard */
143
+ .keyboard {
144
+ position: absolute;
145
+ left: 0;
146
+ bottom: 0;
147
+ width: 100%;
148
+ height: 900px;
149
+ background: #1A1A1A;
150
+ border-top: 1px solid #2A2A2A;
151
+ padding: 18px 22px 36px 22px;
152
+ box-sizing: border-box;
153
+ }
154
+ .kb-toolbar {
155
+ height: 110px;
156
+ display: flex;
157
+ align-items: center;
158
+ gap: 26px;
159
+ color: #CFCFCF;
160
+ }
161
+ .kb-tool {
162
+ width: 88px;
163
+ height: 88px;
164
+ border-radius: 18px;
165
+ background: #2B2B2B;
166
+ border: 1px solid #3A3A3A;
167
+ display: flex;
168
+ align-items: center;
169
+ justify-content: center;
170
+ }
171
+ .kb-tool-text {
172
+ padding: 0 18px;
173
+ height: 88px;
174
+ display: flex;
175
+ align-items: center;
176
+ border-radius: 18px;
177
+ background: #2B2B2B;
178
+ border: 1px solid #3A3A3A;
179
+ font-size: 34px;
180
+ }
181
+
182
+ .kb-row {
183
+ margin-top: 18px;
184
+ display: flex;
185
+ justify-content: center;
186
+ gap: 14px;
187
+ }
188
+ .key {
189
+ height: 120px;
190
+ min-width: 86px;
191
+ padding: 0 22px;
192
+ border-radius: 22px;
193
+ background: #2B2B2B;
194
+ border: 1px solid #3A3A3A;
195
+ color: #D7D7D7;
196
+ font-size: 50px;
197
+ display: flex;
198
+ align-items: center;
199
+ justify-content: center;
200
+ }
201
+ .key-wide { min-width: 160px; }
202
+ .space {
203
+ flex: 1;
204
+ min-width: 420px;
205
+ height: 120px;
206
+ border-radius: 22px;
207
+ background: #2B2B2B;
208
+ border: 1px solid #3A3A3A;
209
+ color: #BDBDBD;
210
+ font-size: 40px;
211
+ display: flex;
212
+ align-items: center;
213
+ justify-content: center;
214
+ }
215
+ .enter {
216
+ min-width: 120px;
217
+ height: 120px;
218
+ border-radius: 22px;
219
+ background: #A6B1C1;
220
+ border: 1px solid #A6B1C1;
221
+ color: #121212;
222
+ font-weight: 600;
223
+ }
224
+
225
+ /* Home indicator */
226
+ .home-indicator {
227
+ position: absolute;
228
+ bottom: 12px;
229
+ left: 50%;
230
+ transform: translateX(-50%);
231
+ width: 360px;
232
+ height: 10px;
233
+ background: #EDEDED;
234
+ border-radius: 8px;
235
+ opacity: 0.9;
236
+ }
237
+ </style>
238
+ </head>
239
+ <body>
240
+ <div id="render-target">
241
+
242
+ <!-- Status bar -->
243
+ <div class="status-bar">
244
+ <div>8:18</div>
245
+ <div class="sb-right">
246
+ <!-- Simple status icons -->
247
+ <svg class="icon-sb" viewBox="0 0 24 24">
248
+ <rect x="2" y="8" width="20" height="8" rx="2" ry="2" fill="#EDEDED"></rect>
249
+ <rect x="22" y="10" width="2" height="4" fill="#EDEDED"></rect>
250
+ </svg>
251
+ <svg class="icon-sb" viewBox="0 0 24 24">
252
+ <path d="M2 18h2a8 8 0 0 1 16 0h2A10 10 0 0 0 2 18z" fill="#EDEDED"></path>
253
+ <circle cx="12" cy="18" r="2" fill="#121212"></circle>
254
+ </svg>
255
+ <svg class="icon-sb" viewBox="0 0 24 24">
256
+ <path d="M4 18l16-12v12H4z" fill="#EDEDED"></path>
257
+ </svg>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- Header -->
262
+ <div class="header">
263
+ <div class="back-btn">
264
+ <svg width="60" height="60" viewBox="0 0 24 24">
265
+ <path d="M15 6l-6 6 6 6" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
266
+ </svg>
267
+ </div>
268
+ <div class="header-title">Compose</div>
269
+ <div class="header-actions">
270
+ <div class="header-icon">
271
+ <!-- paperclip -->
272
+ <svg width="56" height="56" viewBox="0 0 24 24">
273
+ <path d="M7 13l7-7a3 3 0 1 1 4 4l-8 8a5 5 0 1 1-7-7l9-9" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"></path>
274
+ </svg>
275
+ </div>
276
+ <div class="header-icon">
277
+ <!-- send -->
278
+ <svg width="56" height="56" viewBox="0 0 24 24">
279
+ <path d="M3 20l18-8L3 4l4 6 8 2-8 2-4 6z" fill="#EDEDED"></path>
280
+ </svg>
281
+ </div>
282
+ <div class="header-icon">
283
+ <!-- more (vertical dots) -->
284
+ <svg width="56" height="56" viewBox="0 0 24 24">
285
+ <circle cx="12" cy="5" r="2" fill="#EDEDED"></circle>
286
+ <circle cx="12" cy="12" r="2" fill="#EDEDED"></circle>
287
+ <circle cx="12" cy="19" r="2" fill="#EDEDED"></circle>
288
+ </svg>
289
+ </div>
290
+ </div>
291
+ </div>
292
+
293
+ <!-- Content fields -->
294
+ <div class="content">
295
+ <div class="field-row">
296
+ <div class="field-label">From</div>
297
+ <div class="field-value">dbwscratch.test.id10@gmail.com</div>
298
+ </div>
299
+
300
+ <div class="field-row">
301
+ <div class="field-label">To</div>
302
+ <div class="field-value">dbwscratch.test.id9@gmail.com</div>
303
+ <svg class="chevron" viewBox="0 0 24 24">
304
+ <path d="M6 9l6 6 6-6" stroke="#EDEDED" stroke-width="2" fill="none" stroke-linecap="round"></path>
305
+ </svg>
306
+ </div>
307
+
308
+ <div class="suggestion">
309
+ <div class="avatar-placeholder">[IMG: Avatar]</div>
310
+ <div class="suggest-text">
311
+ <div class="suggest-name">dbwscratch.test.id9@gmail.com</div>
312
+ <div class="suggest-email">dbwscratch.test.id9@gmail.com</div>
313
+ </div>
314
+ </div>
315
+ </div>
316
+
317
+ <!-- Keyboard -->
318
+ <div class="keyboard">
319
+ <div class="kb-toolbar">
320
+ <div class="kb-tool">
321
+ <svg width="40" height="40" viewBox="0 0 24 24">
322
+ <rect x="3" y="3" width="7" height="7" fill="#CFCFCF"></rect>
323
+ <rect x="14" y="3" width="7" height="7" fill="#CFCFCF"></rect>
324
+ <rect x="3" y="14" width="7" height="7" fill="#CFCFCF"></rect>
325
+ <rect x="14" y="14" width="7" height="7" fill="#CFCFCF"></rect>
326
+ </svg>
327
+ </div>
328
+ <div class="kb-tool">
329
+ <svg width="40" height="40" viewBox="0 0 24 24">
330
+ <circle cx="12" cy="8" r="4" fill="#CFCFCF"></circle>
331
+ <path d="M4 20a8 8 0 0 1 16 0" stroke="#CFCFCF" stroke-width="2" fill="none"></path>
332
+ </svg>
333
+ </div>
334
+ <div class="kb-tool-text">GIF</div>
335
+ <div class="kb-tool">
336
+ <svg width="40" height="40" viewBox="0 0 24 24">
337
+ <path d="M12 3l9 9-9 9-9-9 9-9z" stroke="#CFCFCF" stroke-width="2" fill="none"></path>
338
+ <circle cx="12" cy="12" r="3" fill="#CFCFCF"></circle>
339
+ </svg>
340
+ </div>
341
+ <div class="kb-tool">
342
+ <svg width="40" height="40" viewBox="0 0 24 24">
343
+ <path d="M6 6h12v12H6z" stroke="#CFCFCF" stroke-width="2" fill="none"></path>
344
+ <path d="M8 12h8" stroke="#CFCFCF" stroke-width="2"></path>
345
+ <path d="M12 8v8" stroke="#CFCFCF" stroke-width="2"></path>
346
+ </svg>
347
+ </div>
348
+ <div class="kb-tool">
349
+ <svg width="40" height="40" viewBox="0 0 24 24">
350
+ <path d="M4 12l7-7v5h9v4h-9v5z" fill="#CFCFCF"></path>
351
+ </svg>
352
+ </div>
353
+ </div>
354
+
355
+ <!-- Key rows -->
356
+ <div class="kb-row">
357
+ <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>
358
+ </div>
359
+ <div class="kb-row">
360
+ <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>
361
+ </div>
362
+ <div class="kb-row">
363
+ <div class="key-wide key">⇧</div>
364
+ <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>
365
+ <div class="key-wide key">
366
+ <svg width="42" height="42" viewBox="0 0 24 24">
367
+ <path d="M5 12h14M14 7l5 5-5 5" stroke="#D7D7D7" stroke-width="2" fill="none" stroke-linecap="round"></path>
368
+ </svg>
369
+ </div>
370
+ </div>
371
+ <div class="kb-row">
372
+ <div class="key-wide key">?123</div>
373
+ <div class="key">@</div>
374
+ <div class="key-wide key">
375
+ <svg width="42" height="42" viewBox="0 0 24 24">
376
+ <circle cx="12" cy="12" r="9" stroke="#D7D7D7" stroke-width="2" fill="none"></circle>
377
+ <circle cx="9.5" cy="10" r="1.5" fill="#D7D7D7"></circle>
378
+ <circle cx="14.5" cy="10" r="1.5" fill="#D7D7D7"></circle>
379
+ </svg>
380
+ </div>
381
+ <div class="space">space</div>
382
+ <div class="key">.</div>
383
+ <div class="enter">
384
+ <svg width="42" height="42" viewBox="0 0 24 24">
385
+ <path d="M4 12h12v-4l4 4-4 4v-4H4z" fill="#121212"></path>
386
+ </svg>
387
+ </div>
388
+ </div>
389
+ </div>
390
+
391
+ <!-- Home indicator -->
392
+ <div class="home-indicator"></div>
393
+ </div>
394
+ </body>
395
+ </html>
25_9.html ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>UI Mock</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;
11
+ position: relative; overflow: hidden;
12
+ background: #ffffff;
13
+ }
14
+
15
+ /* Top system bar */
16
+ .status-bar {
17
+ position: absolute; top: 0; left: 0; right: 0;
18
+ height: 70px; background: #000;
19
+ }
20
+
21
+ /* Header */
22
+ .header {
23
+ position: absolute; top: 70px; left: 0; right: 0;
24
+ height: 170px; background: #ffffff;
25
+ border-bottom: 1px solid #e5e5e5;
26
+ }
27
+ .header .title {
28
+ position: absolute; top: 20px; left: 0; right: 0;
29
+ text-align: center; font-weight: 700; font-size: 48px; color: #222;
30
+ }
31
+ .header .cancel, .header .select-all {
32
+ position: absolute; top: 22px; font-size: 40px; color: #6A5AE0;
33
+ }
34
+ .header .cancel { left: 30px; }
35
+ .header .select-all { right: 30px; }
36
+ .tabs {
37
+ position: absolute; bottom: 12px; left: 30px; right: 30px; height: 70px;
38
+ display: flex; align-items: flex-end; gap: 40px;
39
+ }
40
+ .tab {
41
+ font-size: 36px; color: #666; padding-bottom: 12px;
42
+ }
43
+ .tab.active { color: #3F51B5; border-bottom: 4px solid #3F51B5; }
44
+ .sort-row {
45
+ position: absolute; top: 240px; left: 30px; right: 30px;
46
+ height: 70px; color: #777; display: flex; align-items: center; gap: 16px;
47
+ font-size: 34px;
48
+ }
49
+ .sort-icon {
50
+ width: 36px; height: 36px;
51
+ }
52
+
53
+ /* TeraBox banner */
54
+ .terabox-banner {
55
+ position: absolute; top: 280px; left: 40px; width: 1000px; height: 160px;
56
+ background: #ffffff; border-radius: 24px; box-shadow: 0 8px 18px rgba(0,0,0,0.12);
57
+ display: flex; align-items: center; padding: 20px 28px; gap: 24px;
58
+ border: 1px solid #e6e6e6;
59
+ }
60
+ .img-placeholder {
61
+ background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
62
+ display: flex; justify-content: center; align-items: center;
63
+ font-size: 28px; text-align: center;
64
+ }
65
+ .terabox-icon { width: 96px; height: 96px; border-radius: 20px; }
66
+ .banner-texts { flex: 1; }
67
+ .banner-title { font-size: 34px; color: #333; }
68
+ .banner-sub { font-size: 40px; font-weight: 700; color: #111; margin-top: 8px; }
69
+ .chevron {
70
+ width: 40px; height: 40px;
71
+ }
72
+
73
+ /* Advertisement section */
74
+ .ad-label {
75
+ position: absolute; top: 460px; left: 0; right: 0;
76
+ text-align: center; color: #666; font-size: 36px;
77
+ }
78
+ .ad-card {
79
+ position: absolute; top: 520px; left: 30px; width: 1020px; height: 1640px;
80
+ background: #ffffff; border-radius: 36px; box-shadow: 0 10px 20px rgba(0,0,0,0.08);
81
+ border: 1px solid #eaeaea;
82
+ }
83
+ .ad-banner {
84
+ position: absolute; top: 22px; left: 22px; right: 22px; height: 420px;
85
+ }
86
+ .center-area {
87
+ position: absolute; top: 500px; left: 0; right: 0;
88
+ display: flex; flex-direction: column; align-items: center;
89
+ }
90
+ .app-icon {
91
+ width: 220px; height: 220px; border-radius: 44px;
92
+ }
93
+ .app-name {
94
+ margin-top: 60px; font-size: 110px; font-weight: 700; color: #111;
95
+ }
96
+ .rating-row {
97
+ margin-top: 40px; display: flex; align-items: center; gap: 26px;
98
+ color: #8E8E93; font-size: 52px;
99
+ }
100
+ .star {
101
+ width: 44px; height: 44px;
102
+ }
103
+ .installed-row {
104
+ margin-top: 36px; display: flex; align-items: center; gap: 18px;
105
+ color: #2E7D32; font-size: 46px; font-weight: 600;
106
+ }
107
+ .check {
108
+ width: 52px; height: 52px;
109
+ }
110
+ .open-btn {
111
+ margin-top: 90px; width: 900px; height: 120px; border-radius: 60px;
112
+ background: #2E7D32; color: #fff; font-size: 52px; font-weight: 700;
113
+ display: flex; justify-content: center; align-items: center;
114
+ box-shadow: 0 8px 16px rgba(46,125,50,0.35);
115
+ }
116
+
117
+ /* Bottom area */
118
+ .info-icon-wrap {
119
+ position: absolute; bottom: 130px; left: 38px;
120
+ }
121
+ .info-icon { width: 44px; height: 44px; }
122
+ .gesture-bar {
123
+ position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%);
124
+ width: 320px; height: 12px; background: #000; border-radius: 24px;
125
+ }
126
+ </style>
127
+ </head>
128
+ <body>
129
+ <div id="render-target">
130
+ <div class="status-bar"></div>
131
+
132
+ <div class="header">
133
+ <div class="title">1 file(s) selected</div>
134
+ <div class="cancel">Cancel</div>
135
+ <div class="select-all">Select All</div>
136
+
137
+ <div class="tabs">
138
+ <div class="tab active">All</div>
139
+ <div class="tab">Offline</div>
140
+ </div>
141
+ </div>
142
+
143
+ <div class="sort-row">
144
+ <svg class="sort-icon" viewBox="0 0 24 24">
145
+ <path d="M3 6h14v2H3V6zm0 5h10v2H3v-2zm0 5h6v2H3v-2z" fill="#777"/>
146
+ </svg>
147
+ <span>Sort by time</span>
148
+ </div>
149
+
150
+ <!-- TeraBox banner -->
151
+ <div class="terabox-banner">
152
+ <div class="img-placeholder terabox-icon">[IMG: TeraBox Icon]</div>
153
+ <div class="banner-texts">
154
+ <div class="banner-title">Continue to app</div>
155
+ <div class="banner-sub">TeraBox</div>
156
+ </div>
157
+ <svg class="chevron" viewBox="0 0 24 24">
158
+ <path d="M9 6l6 6-6 6" stroke="#5E6EFF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
159
+ </svg>
160
+ </div>
161
+
162
+ <!-- Advertisement -->
163
+ <div class="ad-label">Advertisement</div>
164
+ <div class="ad-card">
165
+ <div class="img-placeholder ad-banner">[IMG: Booking.com promotional banner]</div>
166
+
167
+ <div class="center-area">
168
+ <div class="img-placeholder app-icon">[IMG: Booking app icon]</div>
169
+ <div class="app-name">Booking.com</div>
170
+
171
+ <div class="rating-row">
172
+ <span style="color:#333;">4.7</span>
173
+ <svg class="star" viewBox="0 0 24 24">
174
+ <path d="M12 2l3 6 6 .9-4.5 4.2 1.2 6-5.7-3.2-5.7 3.2 1.2-6L3 8.9 9 8l3-6z" fill="#FFB300"/>
175
+ </svg>
176
+ <span>FREE</span>
177
+ </div>
178
+
179
+ <div class="installed-row">
180
+ <svg class="check" viewBox="0 0 24 24">
181
+ <path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z" fill="#2E7D32"/>
182
+ </svg>
183
+ <span>Installed</span>
184
+ </div>
185
+
186
+ <div class="open-btn">Open</div>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="info-icon-wrap">
191
+ <svg class="info-icon" viewBox="0 0 24 24">
192
+ <circle cx="12" cy="12" r="10" fill="#7F8C8D"/>
193
+ <rect x="11" y="10" width="2" height="7" fill="#fff"/>
194
+ <circle cx="12" cy="7" r="1.5" fill="#fff"/>
195
+ </svg>
196
+ </div>
197
+
198
+ <div class="gesture-bar"></div>
199
+ </div>
200
+ </body>
201
+ </html>