| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Select destination 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: #111; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #000; |
| color: #fff; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| box-sizing: border-box; |
| font-size: 36px; |
| letter-spacing: 0.5px; |
| } |
| .status-spacer { flex: 1; } |
| .status-icons { |
| display: flex; |
| gap: 20px; |
| align-items: center; |
| } |
| .status-dot { |
| width: 28px; height: 28px; border-radius: 50%; background: #fff; opacity: 0.9; |
| } |
| .status-battery { |
| width: 36px; height: 22px; border: 3px solid #fff; border-radius: 4px; position: relative; |
| } |
| .status-battery::after { |
| content: ""; position: absolute; right: -8px; top: 6px; width: 6px; height: 10px; background: #fff; border-radius: 2px; |
| } |
| |
| |
| .app-header { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 100%; |
| background: #fff; |
| box-sizing: border-box; |
| padding: 28px 32px 20px 32px; |
| } |
| .header-row { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .title { |
| font-size: 52px; |
| font-weight: 700; |
| color: #222; |
| } |
| .icon-btn { |
| width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; |
| } |
| |
| |
| .search-wrap { |
| margin-top: 24px; |
| padding: 0 32px; |
| box-sizing: border-box; |
| } |
| .search-field { |
| width: 1016px; |
| height: 112px; |
| background: #F1F3F5; |
| border: 1px solid #E5E7EB; |
| border-radius: 56px; |
| display: flex; |
| align-items: center; |
| padding: 0 28px; |
| box-sizing: border-box; |
| gap: 22px; |
| } |
| .search-placeholder { |
| flex: 1; |
| font-size: 34px; |
| color: #6B7280; |
| } |
| |
| |
| .choose-row { |
| margin-top: 30px; |
| padding: 0 32px; |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| box-sizing: border-box; |
| } |
| .choose-text { |
| font-size: 36px; |
| color: #2F6EF7; |
| font-weight: 600; |
| } |
| .divider { |
| margin: 22px 32px 0 32px; |
| height: 2px; |
| background: #E5E7EB; |
| } |
| |
| |
| .content-area { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 100%; |
| height: 1200px; |
| |
| } |
| |
| |
| .keyboard { |
| position: absolute; |
| bottom: 54px; |
| left: 0; |
| width: 100%; |
| height: 980px; |
| background: #1E1E1E; |
| box-sizing: border-box; |
| padding: 22px 26px 28px 26px; |
| display: flex; |
| flex-direction: column; |
| gap: 18px; |
| } |
| |
| .kbd-top-actions { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 12px; |
| } |
| .action-btn { |
| width: 100px; height: 100px; border-radius: 50%; |
| background: #2A2A2A; border: 1px solid #3A3A3A; |
| display: flex; align-items: center; justify-content: center; color: #EEE; font-size: 34px; font-weight: 700; |
| } |
| |
| .keys { |
| display: flex; flex-direction: column; gap: 18px; padding-top: 8px; |
| } |
| .row { |
| display: flex; justify-content: center; gap: 16px; |
| } |
| .key { |
| height: 120px; min-width: 90px; padding: 0 16px; |
| background: #2A2A2A; border: 1px solid #3A3A3A; border-radius: 24px; |
| color: #EAEAEA; font-size: 44px; display: flex; align-items: center; justify-content: center; |
| } |
| .key.wide { min-width: 140px; } |
| .key.space { flex: 1; min-width: 360px; } |
| .key.light { |
| background: #CCE0F9; color: #0A2540; border-color: #BBD3F3; |
| } |
| |
| .kbd-bottom-row { |
| display: flex; gap: 16px; padding: 0 20px; |
| } |
| |
| |
| .home-pill { |
| position: absolute; |
| bottom: 12px; left: 50%; transform: translateX(-50%); |
| width: 220px; height: 12px; background: #DADADA; border-radius: 8px; |
| } |
| |
| |
| svg { display: block; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:32</div> |
| <div class="status-spacer"></div> |
| <div class="status-icons"> |
| <div class="status-dot"></div> |
| <div class="status-dot" style="opacity:0.7;"></div> |
| <div class="status-dot" style="opacity:0.7;"></div> |
| <div class="status-battery"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-header"> |
| <div class="header-row"> |
| <div class="icon-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M5 5 L19 19 M19 5 L5 19" stroke="#111" stroke-width="2.5" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="title">Select destination</div> |
| </div> |
|
|
| <div class="search-wrap"> |
| <div class="search-field"> |
| |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7" stroke="#7B7F86" stroke-width="2" fill="none"></circle> |
| <path d="M15.5 15.5 L22 22" stroke="#7B7F86" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| <div class="search-placeholder">Location, landmark, or property</div> |
| |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <rect x="8" y="4" width="8" height="12" rx="4" fill="#6B7280"></rect> |
| <path d="M6 11 C6 15 9 17 12 17 C15 17 18 15 18 11" stroke="#6B7280" stroke-width="2" fill="none"></path> |
| <path d="M12 17 L12 21" stroke="#6B7280" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="choose-row"> |
| |
| <svg width="54" height="54" viewBox="0 0 24 24"> |
| <path d="M12 2 C8 2 5 5 5 9 C5 13 12 22 12 22 C12 22 19 13 19 9 C19 5 16 2 12 2 Z" stroke="#6B7280" stroke-width="1.8" fill="none"></path> |
| <circle cx="12" cy="9" r="2.8" fill="#6B7280"></circle> |
| </svg> |
| <div class="choose-text">Choose on map</div> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="content-area"></div> |
|
|
| |
| <div class="keyboard"> |
| <div class="kbd-top-actions"> |
| <div class="action-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <rect x="3" y="3" width="7" height="7" fill="#EAEAEA"></rect> |
| <rect x="14" y="3" width="7" height="7" fill="#EAEAEA"></rect> |
| <rect x="3" y="14" width="7" height="7" fill="#EAEAEA"></rect> |
| <rect x="14" y="14" width="7" height="7" fill="#EAEAEA"></rect> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9" fill="none" stroke="#EEE" stroke-width="2"></circle> |
| <circle cx="9" cy="10" r="1.8" fill="#EEE"></circle> |
| <circle cx="15" cy="10" r="1.8" fill="#EEE"></circle> |
| <path d="M8 15 C10 17 14 17 16 15" stroke="#EEE" stroke-width="2" fill="none" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="action-btn">GIF</div> |
| <div class="action-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="8" stroke="#EEE" stroke-width="2" fill="none"></circle> |
| <circle cx="12" cy="12" r="2.5" fill="#EEE"></circle> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <text x="6" y="16" font-size="12" fill="#EEE" font-weight="700">G</text> |
| <text x="14" y="16" font-size="12" fill="#EEE">文</text> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 3 C6 3 4 8 8 10 C9 11 9 12 8 13 C7 14 8.5 16 11 16 C14 16 18 14 18 10 C18 6 15 3 12 3 Z" fill="#EEE"></path> |
| <circle cx="9" cy="9" r="1.2" fill="#1E1E1E"></circle> |
| <circle cx="12" cy="8" r="1.2" fill="#1E1E1E"></circle> |
| <circle cx="15" cy="10" r="1.2" fill="#1E1E1E"></circle> |
| </svg> |
| </div> |
| <div class="action-btn"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <rect x="8" y="4" width="8" height="12" rx="4" fill="#EEE"></rect> |
| <path d="M6 11 C6 15 9 17 12 17 C15 17 18 15 18 11" stroke="#EEE" stroke-width="2" fill="none"></path> |
| <path d="M12 17 L12 21" stroke="#EEE" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="keys"> |
| <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> |
| <div class="row"> |
| <div class="key wide"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <path d="M12 5 L6 11 H10 V19 H14 V11 H18 Z" fill="#EAEAEA"></path> |
| </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 wide"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M20 7 H9 L4 12 L9 17 H20 V7 Z" fill="#EAEAEA"></path> |
| <path d="M12 10 L15 12 L12 14" stroke="#1E1E1E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="kbd-bottom-row"> |
| <div class="key wide">?123</div> |
| <div class="key wide">,</div> |
| <div class="key wide"> |
| <svg width="34" height="34" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9" stroke="#EAEAEA" stroke-width="2" fill="none"></circle> |
| <path d="M12 7 L12 13" stroke="#EAEAEA" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="key space"></div> |
| <div class="key wide">.</div> |
| <div class="key wide light"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7" stroke="#0A2540" stroke-width="2" fill="none"></circle> |
| <path d="M15.5 15.5 L22 22" stroke="#0A2540" stroke-width="2" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="home-pill"></div> |
| </div> |
| </body> |
| </html> |