File size: 11,809 Bytes
fa881a6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Search Suggestions UI</title>
<style>
  body { margin: 0; padding: 0; background: transparent; }
  #render-target {
    width: 1080px; height: 2400px; position: relative; overflow: hidden;
    background: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    color: #212121;
  }

  /* Status bar */
  .status-bar {
    position: absolute; top: 0; left: 0; width: 100%; height: 120px;
    background: #FFFFFF;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 36px;
    box-sizing: border-box;
  }
  .status-left { font-size: 40px; font-weight: 600; color: #111; }
  .status-right { display: flex; align-items: center; gap: 24px; }
  .sb-icon {
    width: 34px; height: 34px; border-radius: 50%; background: #C9C9C9;
  }
  .battery {
    display: flex; align-items: center; gap: 8px; font-size: 32px; color: #555;
  }
  .battery .cell {
    width: 42px; height: 24px; border: 2px solid #777; border-radius: 6px; position: relative;
  }
  .battery .cell::after {
    content: ""; position: absolute; right: 2px; top: 2px; bottom: 2px; width: 70%;
    background: #777; border-radius: 3px;
  }
  .battery .tip {
    width: 6px; height: 12px; background: #777; border-radius: 2px;
  }

  /* Top search area */
  .top-search {
    position: absolute; top: 128px; left: 24px; right: 24px; height: 140px;
    display: flex; align-items: center; gap: 24px;
  }
  .back-btn {
    width: 80px; height: 80px; display: flex; align-items: center; justify-content: center;
  }
  .search-pill {
    flex: 1; height: 120px; border: 6px solid #000; border-radius: 60px;
    display: flex; align-items: center; padding: 0 26px; box-sizing: border-box;
    gap: 16px; background: #FFFFFF;
  }
  .pill-text {
    flex: 1; font-size: 46px; color: #000000;
  }
  .pill-action {
    display: flex; align-items: center; gap: 16px;
  }
  .circle-btn {
    width: 72px; height: 72px; border-radius: 36px; display: flex; align-items: center; justify-content: center;
    background: #E0E0E0; border: 2px solid #BDBDBD;
  }
  .circle-dark {
    background: #000; border-color: #000;
  }
  .circle-btn svg { width: 40px; height: 40px; }

  /* Suggestions list */
  .suggestions {
    position: absolute; top: 300px; left: 0; right: 0; bottom: 980px;
    overflow: hidden;
  }
  .suggestion {
    display: flex; align-items: center; gap: 26px;
    padding: 36px 36px; box-sizing: border-box;
    border-bottom: 2px solid #EEEEEE;
  }
  .s-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  }
  .s-text {
    font-size: 44px; color: #333;
  }
  .s-text b { font-weight: 700; color: #000; }

  /* Keyboard */
  .keyboard {
    position: absolute; bottom: 64px; left: 0; width: 100%; height: 900px;
    background: #131A20; color: #E4E7EB;
    box-shadow: 0 -6px 16px rgba(0,0,0,0.15);
  }
  .kb-suggest {
    height: 110px; background: #0E151B; display: flex; align-items: center; gap: 22px;
    padding: 0 36px; box-sizing: border-box; font-size: 40px; color: #D0D6DC;
  }
  .kb-divider { color: #7C8793; }
  .kb-rows { padding: 24px 24px 0; box-sizing: border-box; }
  .kb-row { display: flex; justify-content: center; gap: 18px; margin-bottom: 22px; }
  .key {
    width: 84px; height: 112px; background: #1F2A33; border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    font-size: 46px; color: #DDE3EA;
  }
  .key.wide { width: 120px; }
  .key.xwide { width: 160px; }
  .key.space { flex: 1; height: 112px; }
  .key.green {
    background: #65E1B7; color: #0A0F13; font-weight: 700;
  }
  .key.circle {
    width: 120px; height: 120px; border-radius: 60px;
  }
  .kb-bottom { display: flex; align-items: center; gap: 18px; padding: 0 24px; }

  /* Bottom gesture bar */
  .gesture-bar {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    width: 280px; height: 10px; background: #EDEDED; border-radius: 8px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">8:51</div>
    <div class="status-right">
      <div class="sb-icon"></div>
      <div class="sb-icon"></div>
      <div class="sb-icon"></div>
      <div class="battery">
        <div class="cell"></div>
        <div class="tip"></div>
        <div style="font-weight:600;">95%</div>
      </div>
    </div>
  </div>

  <!-- Search Header -->
  <div class="top-search">
    <div class="back-btn">
      <svg viewBox="0 0 24 24" width="60" height="60">
        <path d="M15 19L8 12l7-7" stroke="#000" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <div class="search-pill">
      <div class="pill-text">mens sports shoes</div>
      <div class="pill-action">
        <div class="circle-btn">
          <svg viewBox="0 0 24 24">
            <path d="M6 6l12 12M18 6L6 18" stroke="#666" stroke-width="2.5" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="circle-btn circle-dark">
          <svg viewBox="0 0 24 24">
            <circle cx="11" cy="11" r="7" fill="none" stroke="#fff" stroke-width="2.5"/>
            <path d="M20 20l-4-4" stroke="#fff" stroke-width="2.5" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <!-- Suggestions -->
  <div class="suggestions">
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>for men</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes</div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>clearance</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>for men climbing</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>clearance 90 of</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>comfortable</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>waterproof</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>for women</b></div>
    </div>
    <div class="suggestion">
      <div class="s-icon">
        <svg viewBox="0 0 24 24" width="56" height="56">
          <circle cx="10" cy="10" r="7" fill="none" stroke="#777" stroke-width="2.5"/>
          <path d="M20 20l-5-5" stroke="#777" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="s-text">mens sports shoes <b>clearance high tops</b></div>
    </div>
  </div>

  <!-- Keyboard -->
  <div class="keyboard">
    <div class="kb-suggest">
      shoes <span class="kb-divider">|</span> shoestring <span class="kb-divider">|</span> 👟
      <div style="margin-left:auto;">
        <svg viewBox="0 0 24 24" width="44" height="44">
          <path d="M12 5v14M5 12h14" stroke="#9FB1C3" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
    </div>
    <div class="kb-rows">
      <div class="kb-row">
        <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>
      </div>
      <div class="kb-row">
        <div class="key wide">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 wide">l</div>
      </div>
      <div class="kb-row">
        <div class="key xwide">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>
        <div class="key xwide">
          <svg viewBox="0 0 24 24" width="44" height="44">
            <path d="M5 7l6 6 6-6" stroke="#DDE3EA" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
          </svg>
        </div>
      </div>
      <div class="kb-row kb-bottom">
        <div class="key circle green">?123</div>
        <div class="key">
          <svg viewBox="0 0 24 24" width="40" height="40">
            <circle cx="12" cy="12" r="3" fill="#DDE3EA"/>
          </svg>
        </div>
        <div class="key space"></div>
        <div class="key">
          <svg viewBox="0 0 24 24" width="44" height="44">
            <path d="M12 5v14M5 12h14" stroke="#DDE3EA" stroke-width="2.5" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="key xwide">
          <svg viewBox="0 0 24 24" width="44" height="44">
            <path d="M5 5h11l3 3v11H5z" fill="none" stroke="#DDE3EA" stroke-width="2"/>
            <path d="M14 9l-6 6M8 9h6v6" stroke="#DDE3EA" stroke-width="2" stroke-linecap="round"/>
          </svg>
        </div>
        <div class="key circle green">
          <svg viewBox="0 0 24 24" width="44" height="44">
            <circle cx="11" cy="11" r="7" fill="none" stroke="#0A0F13" stroke-width="2.5"/>
            <path d="M20 20l-4-4" stroke="#0A0F13" stroke-width="2.5" stroke-linecap="round"/>
          </svg>
        </div>
      </div>
    </div>
  </div>

  <!-- Gesture bar -->
  <div class="gesture-bar"></div>
</div>
</body>
</html>