| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Party Wear - Grid</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| height: 96px; |
| background: #fff; |
| padding: 0 40px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| box-sizing: border-box; |
| } |
| .status-left { |
| font-size: 34px; |
| font-weight: 600; |
| color: #222; |
| } |
| .status-right { |
| display: flex; |
| gap: 18px; |
| align-items: center; |
| } |
| .status-dot { |
| width: 18px; |
| height: 18px; |
| background: #333; |
| border-radius: 50%; |
| opacity: 0.85; |
| } |
| .status-icon { |
| width: 40px; |
| height: 24px; |
| border: 3px solid #333; |
| border-radius: 4px; |
| position: relative; |
| } |
| .status-icon::after { |
| content: ""; |
| position: absolute; |
| right: -8px; |
| top: 6px; |
| width: 6px; |
| height: 12px; |
| background: #333; |
| border-radius: 1px; |
| } |
| |
| |
| .header { |
| height: 160px; |
| padding: 0 40px; |
| box-sizing: border-box; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| border-bottom: 1px solid #eee; |
| background: #fff; |
| } |
| .header-left { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .title { |
| font-size: 48px; |
| letter-spacing: 1px; |
| font-weight: 700; |
| } |
| .header-actions { |
| display: flex; |
| gap: 36px; |
| align-items: center; |
| } |
| .icon-btn { |
| width: 56px; |
| height: 56px; |
| } |
| .icon { |
| width: 56px; |
| height: 56px; |
| } |
| |
| |
| .content { |
| position: absolute; |
| top: 256px; |
| left: 0; |
| right: 0; |
| bottom: 96px; |
| overflow-y: auto; |
| -webkit-overflow-scrolling: touch; |
| padding: 36px 40px 24px; |
| box-sizing: border-box; |
| } |
| .grid { |
| display: grid; |
| grid-template-columns: repeat(2, 1fr); |
| column-gap: 36px; |
| row-gap: 44px; |
| } |
| .card { |
| width: 100%; |
| } |
| .img-box { |
| width: 100%; |
| height: 540px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 30px; |
| text-align: center; |
| position: relative; |
| } |
| .badge { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 64px; |
| background: #3d3d3d; |
| color: #fff; |
| font-size: 28px; |
| letter-spacing: 1px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-weight: 700; |
| } |
| .price-row { |
| margin-top: 22px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .price { |
| font-weight: 800; |
| font-size: 42px; |
| } |
| .wish { |
| width: 46px; |
| height: 46px; |
| } |
| .desc { |
| margin-top: 12px; |
| font-size: 30px; |
| line-height: 40px; |
| color: #444; |
| display: -webkit-box; |
| -webkit-line-clamp: 2; |
| -webkit-box-orient: vertical; |
| overflow: hidden; |
| } |
| |
| |
| .gesture { |
| position: absolute; |
| left: 50%; |
| transform: translateX(-50%); |
| bottom: 28px; |
| width: 200px; |
| height: 14px; |
| background: #CFCFCF; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| <div class="status-bar"> |
| <div class="status-left">8:56</div> |
| <div class="status-right"> |
| <div class="status-dot"></div> |
| <div class="status-dot" style="opacity:0.5"></div> |
| <div class="status-dot" style="opacity:0.3"></div> |
| <div class="status-icon"></div> |
| </div> |
| </div> |
|
|
| <div class="header"> |
| <div class="header-left"> |
| <svg class="icon" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M15 18l-6-6 6-6"></path> |
| </svg> |
| <div class="title">PARTY WEAR</div> |
| </div> |
| <div class="header-actions"> |
| <svg class="icon-btn" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| <svg class="icon-btn" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <circle cx="11" cy="11" r="7"></circle> |
| <path d="M20 20l-3.5-3.5"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="content"> |
| <div class="grid"> |
| |
| <div class="card"> |
| <div class="img-box">[IMG: Fashion outfit in dark scene]</div> |
| <div class="price-row"> |
| <div class="price">£19.00</div> |
| <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| </div> |
| <div class="desc">ASOS DESIGN hotfix bralet in black</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-box">[IMG: Silver metallic skirt]</div> |
| <div class="price-row"> |
| <div class="price">£48.00</div> |
| <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| </div> |
| <div class="desc">4th & Reckless metallic maxi skirt in silver</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-box"> |
| <div class="badge">SELLING FAST</div> |
| [IMG: Black heels with flower corsage] |
| </div> |
| <div class="price-row"> |
| <div class="price">£30.00</div> |
| <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| </div> |
| <div class="desc">ASOS DESIGN Nahlia corsage barely there heeled...</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-box">[IMG: Column maxi skirt with high split]</div> |
| <div class="price-row"> |
| <div class="price">£26.00</div> |
| <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| </div> |
| <div class="desc">ASOS DESIGN column maxi skirt with lace split detail in ...</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-box">[IMG: Silver short-sleeve top close-up]</div> |
| <div class="price-row"> |
| <div class="price">£—</div> |
| <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| </div> |
| <div class="desc">Metallic top with notch neckline</div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="img-box">[IMG: Silver sparkle wrap top]</div> |
| <div class="price-row"> |
| <div class="price">£—</div> |
| <svg class="wish" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"> |
| <path d="M12 21s-8-7.5-8-12.5C4 6 6 4 8.5 4c1.7 0 3.1.9 3.5 2.2C12.4 4.9 13.8 4 15.5 4 18 4 20 6 20 8.5 20 13.5 12 21 12 21z"></path> |
| </svg> |
| </div> |
| <div class="desc">ASOS DESIGN glitter wrap top</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |