| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Refine Results - Mobile Filter</title> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width:1440px; height:3120px; position:relative; overflow:hidden; |
| background:#ffffff; |
| } |
| |
| |
| .status-bar { |
| position:absolute; top:0; left:0; width:100%; height:120px; |
| padding:0 50px; box-sizing:border-box; |
| display:flex; align-items:center; justify-content:space-between; |
| color:#1c1c1c; font-size:48px; |
| } |
| .sb-left, .sb-right { display:flex; align-items:center; gap:30px; } |
| .dot { width:18px; height:18px; background:#1c1c1c; border-radius:50%; display:inline-block; } |
| .sb-icon { |
| width:46px; height:46px; border:2px solid #1c1c1c; border-radius:6px; |
| display:inline-block; |
| } |
| .search-icon { |
| width:46px; height:46px; border-radius:50%; border:2px solid #1c1c1c; |
| position:relative; |
| } |
| .search-icon::after{ |
| content:""; position:absolute; width:18px; height:4px; background:#1c1c1c; |
| right:-6px; bottom:6px; transform:rotate(40deg); |
| } |
| .wifi-icon { width:48px; height:36px; position:relative; } |
| .wifi-icon:before, .wifi-icon:after { |
| content:""; position:absolute; left:0; right:0; margin:auto; border:3px solid #333; border-radius:50%; |
| } |
| .wifi-icon:before { width:48px; height:36px; top:0; } |
| .wifi-icon:after { width:28px; height:20px; top:8px; } |
| .battery { |
| width:80px; height:40px; border:3px solid #333; border-radius:6px; position:relative; |
| } |
| .battery:after { content:""; position:absolute; right:-12px; top:8px; width:12px; height:24px; background:#333; border-radius:2px; } |
| .battery .level { position:absolute; left:6px; top:6px; right:16px; bottom:6px; background:#333; } |
| |
| |
| .header { |
| position:absolute; top:120px; left:0; width:100%; height:140px; |
| display:flex; align-items:center; justify-content:space-between; |
| padding:0 50px; box-sizing:border-box; |
| border-bottom:1px solid #eee; |
| } |
| .link-clear { |
| font-size:52px; letter-spacing:2px; color:#111; font-weight:700; |
| } |
| .title { |
| font-size:56px; letter-spacing:4px; color:#111; font-weight:700; |
| } |
| .close { |
| width:80px; height:80px; border:4px solid #000; border-radius:50%; |
| display:flex; align-items:center; justify-content:center; font-size:56px; font-weight:bold; color:#000; |
| } |
| |
| |
| .content { position:absolute; top:260px; left:0; right:0; bottom:200px; overflow-y:auto; padding:0 50px 240px; box-sizing:border-box; } |
| .section { margin-top:70px; } |
| .section-title { |
| font-size:56px; color:#1a1a1a; font-weight:700; margin-bottom:36px; display:flex; align-items:center; gap:20px; |
| } |
| .count-pill { |
| background:#000; color:#fff; font-size:40px; padding:8px 22px; border-radius:12px; font-weight:700; |
| } |
| |
| |
| .chips { display:flex; flex-wrap:wrap; gap:30px; } |
| .chip { |
| padding:26px 46px; border:3px solid #cfcfcf; border-radius:16px; |
| color:#777; background:#f8f8f8; font-size:48px; letter-spacing:1px; |
| } |
| .chip.selected { border-color:#000; border-width:4px; color:#000; background:#fff; } |
| .chip.disabled { color:#bbb; border-color:#e5e5e5; background:#fafafa; } |
| |
| |
| .bottom-bar { |
| position:absolute; left:0; right:0; bottom:0; height:160px; background:#000; |
| color:#fff; display:flex; align-items:center; justify-content:space-between; |
| padding:0 60px; box-sizing:border-box; |
| } |
| .bottom-bar .result-text { font-size:56px; letter-spacing:3px; font-weight:800; } |
| .arrow { |
| width:70px; height:70px; border-right:8px solid #fff; border-top:8px solid #fff; transform:rotate(45deg); |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="sb-left"> |
| <div>2:22</div> |
| <div class="sb-icon"></div> |
| <div class="search-icon"></div> |
| <div style="font-weight:bold;">B</div> |
| <div class="dot"></div> |
| <div class="dot" style="opacity:0.6;"></div> |
| </div> |
| <div class="sb-right"> |
| <div class="wifi-icon"></div> |
| <div class="battery"><div class="level"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="link-clear">CLEAR ALL</div> |
| <div class="title">REFINE RESULTS</div> |
| <div class="close">×</div> |
| </div> |
|
|
| |
| <div class="content"> |
| |
| <div class="section"> |
| <div class="section-title">Size</div> |
| <div class="chips"> |
| <div class="chip">6</div> |
| <div class="chip">7</div> |
| <div class="chip">7.5</div> |
| <div class="chip">8</div> |
| <div class="chip">8.5</div> |
| <div class="chip">9</div> |
| <div class="chip">9.5</div> |
| <div class="chip">10</div> |
| <div class="chip">10.5</div> |
|
|
| <div class="chip">11</div> |
| <div class="chip">11.5</div> |
| <div class="chip">12</div> |
| <div class="chip">13</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Collection <span class="count-pill">1</span></div> |
| <div class="chips"> |
| <div class="chip">ULTRABOOST</div> |
| <div class="chip">ADIZERO</div> |
| <div class="chip">ADILETTE</div> |
| <div class="chip selected">NMD</div> |
|
|
| <div class="chip">SUPERSTAR</div> |
| <div class="chip">FORUM</div> |
| <div class="chip">STAN SMITH</div> |
| <div class="chip">PREDATOR</div> |
| <div class="chip">X</div> |
|
|
| <div class="chip">SAMBA</div> |
| <div class="chip">GAZELLE</div> |
| <div class="chip">RIVALRY</div> |
| <div class="chip">OZ</div> |
| <div class="chip">CAMPUS</div> |
|
|
| <div class="chip">COPA</div> |
| <div class="chip">ADIFORM</div> |
| <div class="chip">FREE HIKER</div> |
| <div class="chip">XPLR</div> |
| <div class="chip">ICON</div> |
|
|
| <div class="chip">LITE RACER</div> |
| <div class="chip">NIZZA</div> |
| <div class="chip">4DFWD</div> |
| <div class="chip">DURAMO</div> |
|
|
| <div class="chip">ADVENTURE</div> |
| <div class="chip">RETROPY</div> |
| <div class="chip">AVRYN</div> |
| <div class="chip">SWIFT</div> |
| <div class="chip">RDY</div> |
|
|
| <div class="chip">TRAE</div> |
| <div class="chip">AFTERBURNER</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Features <span class="count-pill">1</span></div> |
| <div class="chips"> |
| <div class="chip selected">STRETCH</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Technology</div> |
| <div class="chips"> |
| <div class="chip disabled">BOOST</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-bar"> |
| <div class="result-text">1 RESULT</div> |
| <div class="arrow"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |