| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1440, initial-scale=1.0"> |
| <title>Refine Results - Filters</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1440px; |
| height: 3120px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| border-radius: 24px; |
| box-shadow: 0 8px 24px rgba(0,0,0,0.08); |
| } |
| |
| |
| .status-bar { |
| height: 120px; |
| padding: 0 48px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #222; |
| font-size: 44px; |
| } |
| .status-left, .status-right { display: flex; align-items: center; } |
| .status-left span { margin-right: 28px; } |
| .icon { |
| width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; margin-right: 28px; |
| } |
| .icon svg { width: 36px; height: 36px; } |
| .dot { width: 18px; height: 18px; border-radius: 50%; background:#111; display:inline-block; margin-left: 18px; } |
| |
| |
| .top-actions { |
| padding: 30px 48px 10px 48px; |
| color: #111; |
| font-size: 42px; |
| letter-spacing: 1px; |
| } |
| .clear-link { color: #111; font-weight: 600; } |
| .header { |
| border-bottom: 1px solid #eee; |
| padding: 24px 48px 32px 48px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .title { |
| font-size: 64px; |
| font-weight: 700; |
| letter-spacing: 2px; |
| color: #111; |
| } |
| .close-btn { |
| width: 72px; height: 72px; border: 2px solid #111; border-radius: 50%; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .close-btn:after { |
| content: "×"; |
| font-size: 56px; line-height: 1; color: #111; |
| } |
| |
| |
| .content { padding: 24px 48px 220px 48px; } |
| .section { margin-top: 40px; } |
| .section-title { |
| font-size: 56px; font-weight: 700; color: #222; margin-bottom: 26px; |
| } |
| |
| |
| .chips { display: flex; flex-wrap: wrap; } |
| .chip { |
| font-size: 42px; |
| padding: 24px 30px; |
| border: 2px solid #dcdcdc; |
| border-radius: 16px; |
| color: #4a4a4a; |
| margin: 18px 18px 0 0; |
| background: #fafafa; |
| display: inline-flex; |
| align-items: center; |
| } |
| .chip .swatch { |
| width: 44px; |
| height: 44px; |
| border-radius: 6px; |
| margin-left: 22px; |
| border: 1px solid #bdbdbd; |
| } |
| |
| |
| .footer-cta { |
| position: absolute; |
| left: 48px; |
| right: 48px; |
| bottom: 140px; |
| height: 160px; |
| background: #000; |
| border-radius: 8px; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 48px; |
| } |
| .footer-cta span { |
| color: #fff; font-size: 56px; letter-spacing: 4px; font-weight: 700; |
| } |
| .footer-cta .arrow svg { width: 72px; height: 72px; fill: none; stroke: #fff; stroke-width: 12; } |
| |
| |
| .home-indicator { |
| position: absolute; bottom: 60px; left: 50%; |
| transform: translateX(-50%); |
| width: 420px; height: 16px; border-radius: 16px; background: #888; |
| opacity: 0.45; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <span>2:21</span> |
| <div class="icon" title="Lock"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M7 10V7a5 5 0 0 1 10 0v3h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h1zm2 0h6V7a3 3 0 0 0-6 0v3z" fill="#111"/> |
| </svg> |
| </div> |
| <div class="icon" title="Search"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2" fill="none"/> |
| <line x1="16.5" y1="16.5" x2="22" y2="22" stroke="#111" stroke-width="2"/> |
| </svg> |
| </div> |
| <span style="font-weight:700">B</span> |
| <span class="dot"></span> |
| </div> |
| <div class="status-right"> |
| <div class="icon" title="WiFi"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 8c5-5 15-5 20 0M6 12c3-3 9-3 12 0M10 16c2-2 6-2 8 0" stroke="#111" stroke-width="2" fill="none"/> |
| <circle cx="12" cy="20" r="2" fill="#111"/> |
| </svg> |
| </div> |
| <div class="icon" title="Battery"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="1" y="6" width="18" height="12" rx="2" stroke="#111" stroke-width="2" fill="none"/> |
| <rect x="3" y="8" width="12" height="8" fill="#111"/> |
| <rect x="20" y="9" width="3" height="6" rx="1" fill="#111"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="top-actions"> |
| <span class="clear-link">CLEAR ALL</span> |
| </div> |
| <div class="header"> |
| <div class="title">REFINE RESULTS</div> |
| <div class="close-btn" aria-label="Close"></div> |
| </div> |
|
|
| |
| <div class="content"> |
| |
| <div class="chips" style="margin-top: 16px; margin-bottom: 20px;"> |
| <div class="chip" style="padding: 26px 34px;">SALE</div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Size</div> |
| <div class="chips"> |
| <div class="chip">3.5</div> |
| <div class="chip">4</div> |
| <div class="chip">4.5</div> |
| <div class="chip">5</div> |
| <div class="chip">5.5</div> |
| <div class="chip">6</div> |
| <div class="chip">6.5</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">12.5</div> |
| <div class="chip">13</div> |
| <div class="chip">13.5</div> |
| <div class="chip">14</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Discount</div> |
| <div class="chips"> |
| <div class="chip">UP TO 20%</div> |
| <div class="chip">20–30%</div> |
| <div class="chip">30–40%</div> |
| <div class="chip">40% OR MORE</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Color</div> |
| <div class="chips"> |
| <div class="chip">BLACK<div class="swatch" style="background:#000;"></div></div> |
| <div class="chip">WHITE<div class="swatch" style="background:#f7f7f7;"></div></div> |
| <div class="chip">GREY<div class="swatch" style="background:#9e9e9e;"></div></div> |
| <div class="chip">BLUE<div class="swatch" style="background:#2c6ea6;"></div></div> |
|
|
| <div class="chip">RED<div class="swatch" style="background:#c62828;"></div></div> |
| <div class="chip">GREEN<div class="swatch" style="background:#66bb6a;"></div></div> |
| <div class="chip">BEIGE<div class="swatch" style="background:#d7c6a5;"></div></div> |
| <div class="chip">BROWN<div class="swatch" style="background:#8d6e63;"></div></div> |
|
|
| <div class="chip">ORANGE<div class="swatch" style="background:#f57c00;"></div></div> |
| <div class="chip">TURQUOISE<div class="swatch" style="background:#4fb3bf;"></div></div> |
| <div class="chip">YELLOW<div class="swatch" style="background:#ffeb3b;"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Features</div> |
| <div class="chips"> |
| <div class="chip">CUSHIONING</div> |
| <div class="chip">WATERPROOF</div> |
| <div class="chip">WATER-RESISTANT</div> |
| <div class="chip">STRETCH</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <div class="section-title">Technology</div> |
| </div> |
| </div> |
|
|
| |
| <div class="footer-cta"> |
| <span>100 RESULTS</span> |
| <div class="arrow"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 12h12M13 6l6 6-6 6" /> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |