| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Mobile UI Render</title> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; position:relative; overflow:hidden; |
| background:#FAFAFA; border-radius:0; |
| } |
| |
| |
| .status-bar { |
| height:120px; background:#EDEDED; color:#2E2E2E; |
| display:flex; align-items:center; justify-content:space-between; |
| padding:0 40px; font-weight:600; font-size:42px; |
| } |
| .status-right { display:flex; align-items:center; gap:26px; } |
| .status-icon { width:42px; height:42px; border-radius:8px; background:#CFCFCF; } |
| .battery { |
| width:84px; height:42px; border:2px solid #787878; border-radius:8px; position:relative; |
| } |
| .battery::after { content:""; position:absolute; right:-12px; top:12px; width:8px; height:18px; background:#787878; border-radius:2px; } |
| .battery-fill { position:absolute; left:4px; top:4px; bottom:4px; width:60%; background:#66BB6A; border-radius:6px; } |
| |
| |
| .search-wrap { padding:24px 24px 12px 24px; background:#FFFFFF; } |
| .search-bar { |
| height:120px; border-radius:24px; background:#F3F6F8; border:1px solid #D6DEE3; |
| display:flex; align-items:center; padding:0 28px; gap:24px; |
| } |
| .icon-btn { |
| width:72px; height:72px; border-radius:36px; display:flex; align-items:center; justify-content:center; |
| background:#FFFFFF; border:1px solid #D0D7DC; |
| } |
| .search-input { |
| flex:1; font-size:44px; color:#2E3A43; |
| } |
| .search-input .hint { color:#7A8894; } |
| .mic-btn { width:90px; height:90px; border-radius:45px; background:#CDEBFA; display:flex; align-items:center; justify-content:center; border:1px solid #98D4EE; } |
| |
| |
| .content { padding:12px 24px 0 24px; } |
| .section-title { |
| font-size:48px; font-weight:800; color:#2B2B2B; letter-spacing:1px; margin:20px 8px; |
| } |
| .title-row { display:flex; align-items:center; gap:16px; } |
| .trend-pill { |
| display:inline-flex; align-items:center; padding:26px 28px; margin:16px 0; |
| font-size:36px; color:#1F2933; background:#FFFFFF; border:1px solid #D7D7D7; border-radius:18px; |
| width:100%; |
| } |
| |
| |
| .cards { display:flex; gap:24px; } |
| .card { |
| flex:1; min-width:0; background:#FFFFFF; border:1px solid #DADADA; border-radius:16px; overflow:hidden; |
| } |
| .card-img { |
| height:340px; background:#E0E0E0; border-bottom:1px solid #BDBDBD; |
| display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px; |
| position:relative; |
| } |
| .badge { |
| position:absolute; left:12px; top:12px; padding:10px 16px; font-size:28px; font-weight:700; |
| color:#FFFFFF; background:#4CAF50; border-radius:24px; |
| } |
| .card-body { padding:18px; font-size:34px; color:#374151; } |
| |
| |
| .keyboard { |
| position:absolute; left:0; right:0; bottom:0; |
| height:980px; background:#121212; color:#FFFFFF; border-top:1px solid #2A2A2A; |
| padding-top:22px; |
| } |
| .kb-tools { display:flex; align-items:center; gap:42px; padding:0 36px 22px 36px; } |
| .kb-tool { |
| width:76px; height:76px; border-radius:18px; background:#1E1E1E; |
| border:1px solid #2D2D2D; display:flex; align-items:center; justify-content:center; |
| } |
| |
| .kb-rows { padding:12px 18px; } |
| .kb-row { display:flex; justify-content:space-between; gap:14px; margin:18px 0; } |
| .key { |
| flex:1; height:120px; border-radius:18px; background:#222; border:1px solid #333; |
| display:flex; align-items:center; justify-content:center; font-size:58px; color:#F2F2F2; |
| } |
| .key.small { flex:0 0 120px; } |
| .key.wide { flex:2; } |
| .bottom-bar { display:flex; align-items:center; gap:16px; padding:10px 24px; } |
| .space { flex:1; height:120px; border-radius:18px; background:#222; border:1px solid #333; display:flex; align-items:center; justify-content:center; font-size:40px; color:#BDBDBD; } |
| .search-cta { |
| width:140px; height:140px; border-radius:70px; background:#B6F2F2; display:flex; align-items:center; justify-content:center; border:1px solid #8FE1E1; |
| } |
| |
| |
| svg { width:44px; height:44px; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:35</div> |
| <div class="status-right"> |
| <div class="status-icon"></div> |
| <div class="status-icon"></div> |
| <div class="status-icon"></div> |
| <div class="battery"><div class="battery-fill"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="search-wrap"> |
| <div class="search-bar"> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M15 18L9 12l6-6" stroke="#263238" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="search-input"> |
| <span class="hint">Search for "</span><span style="color:#2F6AA2; font-weight:700;">Runni</span><span class="hint">"</span> |
| </div> |
| <div class="mic-btn"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 14a3 3 0 0 0 3-3V7a3 3 0 1 0-6 0v4a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0M12 19v3" stroke="#0B6E99" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="title-row"> |
| <div class="section-title" style="margin:16px 0;">TRENDING SEARCHES</div> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 17l6-6 4 4 6-8" stroke="#2F6AA2" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
|
|
| <div class="trend-pill">Easy Adjust Hiking Pole - Mt100 Comfort Black</div> |
| <div class="trend-pill">Easy Adjust Hiking Pole - Mt100 Comfort Black</div> |
| <div class="trend-pill">Hiking Pole - Mt100 Ergonomic Green</div> |
| <div class="trend-pill">Ultra Compact Trekking Pole - Mt900 Black</div> |
| <div class="trend-pill">Ultra Compact Trekking Pole - Mt900 Black</div> |
|
|
| <div class="section-title" style="margin:36px 4px;">TRENDING NEAR YOU</div> |
| <div class="cards"> |
| <div class="card"> |
| <div class="card-img"> |
| <div class="badge">ECO DESIGN</div> |
| [IMG: Grey Outdoor Jacket] |
| </div> |
| <div class="card-body">Men’s Outdoor Jacket</div> |
| </div> |
| <div class="card"> |
| <div class="card-img">[IMG: Navy Sports Shorts]</div> |
| <div class="card-body">Lightweight Sports Shorts</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="keyboard"> |
| <div class="kb-tools"> |
| <div class="kb-tool"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 3h8v8H3zM13 3h8v8h-8zM3 13h8v8H3zM13 13h8v8h-8z" fill="#BDBDBD"/> |
| </svg> |
| </div> |
| <div class="kb-tool"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9" fill="none" stroke="#BDBDBD" stroke-width="2"/> |
| <circle cx="9" cy="10" r="1.5" fill="#BDBDBD"/> |
| <circle cx="15" cy="10" r="1.5" fill="#BDBDBD"/> |
| <path d="M8 15c2 2 6 2 8 0" stroke="#BDBDBD" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="kb-tool"> |
| |
| <span style="font-weight:800; color:#BDBDBD; font-size:30px;">GIF</span> |
| </div> |
| <div class="kb-tool"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 5h8v6H3zM13 5h8v14h-8zM5 17h6" stroke="#BDBDBD" stroke-width="2" fill="none"/> |
| </svg> |
| </div> |
| <div class="kb-tool"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm9 4l-2-1 1-2-2-2-2 1-1-2h-4l-1 2-2-1-2 2 1 2-2 1v4l2 1-1 2 2 2 2-1 1 2h4l1-2 2 1 2-2-1-2 2-1v-4z" fill="#BDBDBD"/> |
| </svg> |
| </div> |
| <div class="kb-tool"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3a9 9 0 0 0-9 9c0 5 4 9 9 9h4a3 3 0 0 0 0-6h-2a2 2 0 1 1 0-4h2a3 3 0 1 0 0-6h-4z" fill="#BDBDBD"/> |
| </svg> |
| </div> |
| <div class="kb-tool"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 14a3 3 0 0 0 3-3V7a3 3 0 1 0-6 0v4a3 3 0 0 0 3 3zm5-3a5 5 0 0 1-10 0M12 19v3" stroke="#BDBDBD" stroke-width="2" fill="none" 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">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="kb-row"> |
| <div class="key small">⇧</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 small"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 18l-4-6 4-6h11a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H6zM11 9l4 4-4 4" stroke="#F2F2F2" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| </div> |
| |
| <div class="bottom-bar"> |
| <div class="key small">?123</div> |
| <div class="key small">,</div> |
| <div class="space">space</div> |
| <div class="key small">.</div> |
| <div class="search-cta"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="6" stroke="#0E5A61" stroke-width="2" fill="none"/> |
| <path d="M16 16l5 5" stroke="#0E5A61" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |