| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Search - Berlin</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #1f2937; } |
| #render-target { |
| width: 1080px; height: 2400px; position: relative; overflow: hidden; |
| background: #ffffff; border-radius: 32px; |
| } |
| |
| |
| .status-bar { |
| position: absolute; top: 0; left: 0; right: 0; |
| height: 84px; padding: 0 36px; |
| display: flex; align-items: center; justify-content: space-between; |
| color: #111827; font-weight: 600; font-size: 38px; |
| } |
| .status-icons { display: flex; gap: 26px; align-items: center; } |
| .icon { width: 44px; height: 44px; } |
| |
| |
| .search-area { |
| position: absolute; top: 104px; left: 0; right: 0; |
| padding: 0 36px; |
| display: flex; align-items: center; gap: 24px; |
| } |
| .back-btn { |
| width: 72px; height: 72px; border-radius: 36px; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .search-input { |
| flex: 1; height: 100px; |
| border: 3px solid #1e88e5; border-radius: 50px; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 32px; font-size: 44px; color: #111827; |
| } |
| .search-input .text { letter-spacing: 0.2px; } |
| .clear-btn { |
| width: 72px; height: 72px; border-radius: 36px; |
| border: 2px solid #bdbdbd; display: flex; align-items: center; justify-content: center; |
| color: #374151; |
| } |
| |
| |
| .results { |
| position: absolute; top: 236px; left: 0; right: 0; |
| padding: 12px 36px 0; |
| } |
| .result { |
| display: flex; gap: 32px; align-items: center; |
| padding: 32px 0; |
| border-bottom: 1px solid rgba(0,0,0,0.06); |
| } |
| .result:last-child { border-bottom: none; } |
| .lead-icon { |
| width: 120px; height: 120px; border-radius: 28px; |
| background: #f1f3f5; display: flex; align-items: center; justify-content: center; |
| border: 1px solid #e1e5ea; |
| } |
| .result .title { |
| font-size: 44px; font-weight: 700; color: #1f2937; margin-bottom: 10px; |
| } |
| .result .subtitle { |
| font-size: 34px; color: #6b7280; |
| } |
| |
| |
| .keyboard { |
| position: absolute; left: 0; right: 0; bottom: 72px; |
| height: 860px; background: #f2effa; border-top-left-radius: 26px; border-top-right-radius: 26px; |
| box-shadow: 0 -6px 16px rgba(0,0,0,0.06); |
| padding: 26px 26px 20px; |
| } |
| .suggestions { |
| display: flex; align-items: center; gap: 24px; margin-bottom: 22px; |
| } |
| .sugg-icon { |
| width: 72px; height: 72px; border-radius: 18px; background: #b7e2a7; display: flex; align-items: center; justify-content: center; |
| } |
| .chip { |
| height: 70px; padding: 0 26px; border-radius: 20px; |
| background: #ffffff; border: 1px solid #e5e7eb; color: #1f2937; font-size: 34px; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .sugg-spacer { flex: 1; } |
| .mic { |
| width: 72px; height: 72px; border-radius: 36px; background: #ffffff; border: 1px solid #e5e7eb; |
| display: flex; align-items: center; justify-content: center; |
| } |
| |
| .rows { display: flex; flex-direction: column; gap: 18px; } |
| .row { display: flex; gap: 16px; justify-content: center; } |
| .key { |
| width: 92px; height: 120px; border-radius: 26px; |
| background: #ffffff; border: 1px solid #e6e8ef; color: #1f2937; font-size: 44px; font-weight: 500; |
| display: flex; align-items: center; justify-content: center; |
| box-shadow: 0 2px 0 #e6e8ef inset; |
| } |
| .key.pink { background: #f8d7e6; border-color: #f2c4d8; } |
| .key.green { background: #b7e2a7; border-color: #a2d792; } |
| .key.wide { width: 480px; } |
| .key.mid { width: 150px; } |
| .row.space-row { padding: 0 18px; } |
| |
| |
| .home-indicator { |
| position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); |
| width: 220px; height: 12px; border-radius: 8px; background: #cfcfcf; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:50</div> |
| <div class="status-icons"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M2 8c5-4 15-4 20 0" fill="none" stroke="#374151" stroke-width="2" stroke-linecap="round"/> |
| <path d="M5 12c4-3 10-3 14 0" fill="none" stroke="#374151" stroke-width="2" stroke-linecap="round"/> |
| <circle cx="12" cy="17" r="2" fill="#374151"/> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#374151" stroke-width="2"/> |
| <rect x="4" y="8" width="12" height="8" rx="1" fill="#374151"/> |
| <rect x="20" y="9" width="2" height="6" rx="1" fill="#374151"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="search-area"> |
| <div class="back-btn"> |
| <svg width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M15 5l-7 7 7 7" fill="none" stroke="#374151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="search-input"> |
| <div class="text">Berlin</div> |
| <div class="clear-btn"> |
| <svg width="36" height="36" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10" fill="none" stroke="#9ca3af" stroke-width="2"/> |
| <path d="M8 8l8 8M16 8l-8 8" stroke="#6b7280" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="results"> |
|
|
| <div class="result"> |
| <div class="lead-icon"> |
| |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <rect x="6" y="4" width="12" height="16" rx="2" fill="none" stroke="#0f172a" stroke-width="2"/> |
| <rect x="9" y="7" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="12.5" y="7" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="9" y="11" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="12.5" y="11" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="10.5" y="16" width="3" height="4" fill="#0f172a"/> |
| </svg> |
| </div> |
| <div> |
| <div class="title">The Berlin</div> |
| <div class="subtitle">Property • Gandhinagar, Gujarat</div> |
| </div> |
| </div> |
|
|
| <div class="result"> |
| <div class="lead-icon"> |
| |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <path d="M12 3C8.1 3 5 6.1 5 10c0 4.8 7 10 7 10s7-5.2 7-10c0-3.9-3.1-7-7-7z" fill="none" stroke="#0f172a" stroke-width="2"/> |
| <circle cx="12" cy="10" r="3" fill="#0f172a"/> |
| </svg> |
| </div> |
| <div> |
| <div class="title">Berlin</div> |
| <div class="subtitle">City • Berlin, Germany • 495 Properties</div> |
| </div> |
| </div> |
|
|
| <div class="result"> |
| <div class="lead-icon"> |
| |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <path d="M12 3C8.1 3 5 6.1 5 10c0 4.8 7 10 7 10s7-5.2 7-10c0-3.9-3.1-7-7-7z" fill="none" stroke="#0f172a" stroke-width="2"/> |
| <circle cx="12" cy="10" r="3" fill="#0f172a"/> |
| </svg> |
| </div> |
| <div> |
| <div class="title">Berling</div> |
| <div class="subtitle">City • Berling, France</div> |
| </div> |
| </div> |
|
|
| <div class="result"> |
| <div class="lead-icon"> |
| |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <rect x="6" y="4" width="12" height="16" rx="2" fill="none" stroke="#0f172a" stroke-width="2"/> |
| <rect x="9" y="7" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="12.5" y="7" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="9" y="11" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="12.5" y="11" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="10.5" y="16" width="3" height="4" fill="#0f172a"/> |
| </svg> |
| </div> |
| <div> |
| <div class="title">Hotel Q! Berlin</div> |
| <div class="subtitle">Property • Berlin, Germany</div> |
| </div> |
| </div> |
|
|
| <div class="result"> |
| <div class="lead-icon"> |
| |
| <svg width="72" height="72" viewBox="0 0 24 24"> |
| <rect x="6" y="4" width="12" height="16" rx="2" fill="none" stroke="#0f172a" stroke-width="2"/> |
| <rect x="9" y="7" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="12.5" y="7" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="9" y="11" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="12.5" y="11" width="2.5" height="2.5" fill="#0f172a"/> |
| <rect x="10.5" y="16" width="3" height="4" fill="#0f172a"/> |
| </svg> |
| </div> |
| <div> |
| <div class="title">Berlin Heritage Inn</div> |
| <div class="subtitle">Property • Berlin (OH), United States</div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="keyboard"> |
| <div class="suggestions"> |
| <div class="sugg-icon"> |
| <svg width="36" height="36" viewBox="0 0 24 24"> |
| <rect x="4" y="6" width="16" height="12" rx="2" fill="none" stroke="#1f2937" stroke-width="2"/> |
| <path d="M7 9h10M7 12h7" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="chip">Berlin</div> |
| <div class="chip">Berliner</div> |
| <div class="chip">Berl in</div> |
| <div class="sugg-spacer"></div> |
| <div class="mic"> |
| <svg width="32" height="32" viewBox="0 0 24 24"> |
| <rect x="9" y="3" width="6" height="10" rx="3" fill="#1f2937"/> |
| <path d="M5 11c0 4 3.5 6 7 6s7-2 7-6" fill="none" stroke="#1f2937" stroke-width="2"/> |
| <path d="M12 17v4" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/> |
| <path d="M9 21h6" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="rows"> |
| <div class="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="row"> |
| <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> |
| <div class="key pink"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <path d="M4 4l16 16M20 4L4 20" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="row"> |
| <div class="key pink"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <path d="M6 18l-3-3 3-3" stroke="#1f2937" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <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> |
| <div class="key pink"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <path d="M6 6h9l3 3v9a3 3 0 0 1-3 3H6" fill="none" stroke="#1f2937" stroke-width="2"/> |
| <path d="M10 15l4-4M14 15l-4-4" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="row space-row"> |
| <div class="key pink mid">?123</div> |
| <div class="key mid">,</div> |
| <div class="key mid"> |
| <svg width="36" height="36" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="4" fill="#1f2937"/> |
| </svg> |
| </div> |
| <div class="key wide"></div> |
| <div class="key mid">.</div> |
| <div class="key green mid"> |
| <svg width="36" height="36" viewBox="0 0 24 24"> |
| <path d="M5 12h10M11 6l6 6-6 6" fill="none" stroke="#1f2937" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |