| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>Formal Shoes Listing</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; |
| box-sizing: border-box; |
| } |
| |
| |
| .status-bar { |
| height: 90px; |
| padding: 0 32px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 36px; |
| color: #222; |
| } |
| .status-right svg { width: 32px; height: 32px; margin-left: 16px; } |
| |
| |
| .header { |
| display: flex; |
| align-items: center; |
| padding: 10px 28px 0 28px; |
| } |
| .back-btn { |
| width: 68px; |
| height: 68px; |
| border-radius: 34px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| margin-right: 18px; |
| } |
| .back-btn svg { width: 42px; height: 42px; } |
| .search-bar { |
| flex: 1; |
| height: 100px; |
| border: 3px solid #000; |
| border-radius: 50px; |
| display: flex; |
| align-items: center; |
| padding: 0 24px; |
| box-sizing: border-box; |
| } |
| .search-text { |
| font-size: 40px; |
| color: #222; |
| flex: 1; |
| } |
| .search-actions { |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| } |
| .circle-icon { |
| width: 68px; |
| height: 68px; |
| border: 2px solid #999; |
| border-radius: 34px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .circle-icon svg { width: 34px; height: 34px; } |
| |
| |
| .chip-row { |
| padding: 18px 28px 0 28px; |
| display: flex; |
| flex-wrap: wrap; |
| gap: 16px; |
| } |
| .chip { |
| background: #EFEFEF; |
| color: #333; |
| border-radius: 34px; |
| padding: 18px 26px; |
| font-size: 32px; |
| display: inline-flex; |
| align-items: center; |
| gap: 12px; |
| border: 1px solid #DDDDDD; |
| } |
| .chip svg { width: 32px; height: 32px; } |
| |
| |
| .promo { |
| margin: 22px 0 0 0; |
| padding: 24px 28px; |
| background: #FFEBD9; |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| font-size: 34px; |
| } |
| .promo-item { |
| display: inline-flex; |
| align-items: center; |
| color: #1A8E2E; |
| gap: 12px; |
| white-space: nowrap; |
| } |
| .promo-divider { |
| width: 2px; |
| height: 36px; |
| background: #E0C8B4; |
| } |
| .promo svg { width: 32px; height: 32px; } |
| |
| |
| .product-grid { |
| padding: 26px 30px 120px 30px; |
| display: grid; |
| grid-template-columns: repeat(2, 1fr); |
| grid-gap: 30px; |
| } |
| .card { |
| background: #fff; |
| border-radius: 8px; |
| } |
| .image { |
| position: relative; |
| width: 100%; |
| height: 420px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| } |
| |
| |
| .deal-banner { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| right: 0; |
| height: 64px; |
| display: flex; |
| overflow: hidden; |
| border-top-left-radius: 4px; |
| border-top-right-radius: 4px; |
| } |
| .deal-left { |
| background: #0B0B0B; |
| color: #fff; |
| width: 48%; |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| padding: 0 16px; |
| font-size: 30px; |
| } |
| .deal-right { |
| background: #E11919; |
| color: #fff; |
| flex: 1; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-weight: bold; |
| font-size: 30px; |
| } |
| .card-content { |
| padding: 14px 10px 16px 10px; |
| } |
| .title { |
| font-size: 32px; |
| line-height: 40px; |
| color: #111; |
| margin-bottom: 8px; |
| } |
| .stock-row { |
| font-size: 32px; |
| margin-bottom: 10px; |
| } |
| .stock-row .low { color: #FF7A00; } |
| .stock-row .install { color: #6F6F6F; margin-left: 10px; } |
| .rating { |
| font-size: 34px; |
| color: #000; |
| margin-bottom: 12px; |
| } |
| .price-row { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 36px; |
| } |
| .price-left { |
| display: flex; |
| align-items: center; |
| gap: 12px; |
| } |
| .price { |
| color: #FF7A00; |
| font-weight: bold; |
| } |
| .sold { |
| color: #777; |
| font-size: 32px; |
| } |
| .cart-btn { |
| width: 94px; |
| height: 94px; |
| border-radius: 47px; |
| border: 3px solid #222; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .cart-btn svg { width: 46px; height: 46px; } |
| |
| |
| .floating-cart { |
| position: absolute; |
| right: 42px; |
| top: 1320px; |
| width: 160px; |
| height: 160px; |
| border-radius: 80px; |
| background: #23C323; |
| color: #fff; |
| box-shadow: 0 8px 16px rgba(0,0,0,0.15); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| flex-direction: column; |
| border: 8px solid #fff; |
| text-align: center; |
| } |
| .floating-cart .label { |
| font-size: 36px; |
| font-weight: bold; |
| margin-top: 6px; |
| } |
| .floating-cart .sub { |
| background: #09B009; |
| font-size: 28px; |
| padding: 6px 12px; |
| border-radius: 20px; |
| margin-top: 6px; |
| } |
| .floating-cart svg { width: 44px; height: 44px; } |
| |
| |
| .gesture { |
| position: absolute; |
| bottom: 24px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 300px; |
| height: 14px; |
| background: #DADADA; |
| border-radius: 7px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:54</div> |
| <div class="status-right"> |
| <svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="none" stroke="#666" stroke-width="2"/></svg> |
| <svg viewBox="0 0 24 24"><path d="M3 12h18" stroke="#666" stroke-width="2"/></svg> |
| <svg viewBox="0 0 24 24"><rect x="5" y="5" width="14" height="14" fill="none" stroke="#666" stroke-width="2"/></svg> |
| <svg viewBox="0 0 24 24"><path d="M3 12l9 9 9-9-9-9-9 9z" fill="none" stroke="#666" stroke-width="2"/></svg> |
| <span style="font-size:32px; margin-left:12px;">96%</span> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M15 6l-6 6 6 6" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="search-bar"> |
| <div class="search-text">42-size formal shoes</div> |
| <div class="search-actions"> |
| <div class="circle-icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5l14 14M19 5L5 19" stroke="#666" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="circle-icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="5" fill="none" stroke="#333" stroke-width="2"/> |
| <line x1="15" y1="15" x2="21" y2="21" stroke="#333" stroke-width="2"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="chip-row"> |
| <div class="chip"> |
| <svg viewBox="0 0 24 24"><path d="M3 21h18M6 21V3h4v18M14 21V8h4v13" stroke="#666" stroke-width="2"/></svg> |
| <span>Filters</span> |
| </div> |
| <div class="chip"> |
| <span>Sort by</span> |
| <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" stroke="#666" stroke-width="2" fill="none"/></svg> |
| </div> |
| <div class="chip"> |
| <span>Category</span> |
| <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" stroke="#666" stroke-width="2" fill="none"/></svg> |
| </div> |
| <div class="chip"> |
| <span>Size</span> |
| <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" stroke="#666" stroke-width="2" fill="none"/></svg> |
| </div> |
| <div class="chip"> |
| <span>Color</span> |
| <svg viewBox="0 0 24 24"><path d="M7 10l5 5 5-5" stroke="#666" stroke-width="2" fill="none"/></svg> |
| </div> |
| </div> |
|
|
| |
| <div class="promo"> |
| <div class="promo-item"> |
| <svg viewBox="0 0 24 24"><path d="M9 21l6-9H9l6-9" fill="none" stroke="#1A8E2E" stroke-width="2"/></svg> |
| <span>Free shipping</span> |
| </div> |
| <div class="promo-divider"></div> |
| <div class="promo-item"> |
| <svg viewBox="0 0 24 24"><path d="M9 21l6-9H9l6-9" fill="none" stroke="#1A8E2E" stroke-width="2"/></svg> |
| <span>Price adjustment within 30 days</span> |
| </div> |
| </div> |
|
|
| |
| <div class="chip-row"> |
| <div class="chip"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7h7l-5.5 4 2.5 7-7-4.5-7 4.5 2.5-7L2 9h7z" fill="#333"/></svg> |
| <span>Deals</span> |
| </div> |
| <div class="chip">Under $26</div> |
| <div class="chip">β
β
β
β
β & up</div> |
| <div class="chip">60% off or more</div> |
| </div> |
|
|
| |
| <div class="product-grid"> |
|
|
| |
| <div class="card"> |
| <div class="image">[IMG: Men's premium leather formal shoes] |
| <div class="deal-banner"> |
| <div class="deal-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#fff"/></svg> |
| <span>Lightning Deal</span> |
| </div> |
| <div class="deal-right">Ends in 04:35:53</div> |
| </div> |
| </div> |
| <div class="card-content"> |
| <div class="title">LAORENTOU Men's Premium Leather Dress Shoes...</div> |
| <div class="stock-row"><span class="low">Only 16 Left</span> <span class="install">$15.39/wk x 4</span></div> |
| <div class="rating">β
β
β
β
β
<span style="color:#333;">(388)</span></div> |
| <div class="price-row"> |
| <div class="price-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#FF6A00"/></svg> |
| <span class="price">$61.55</span> |
| <span class="sold">1 sold</span> |
| </div> |
| <div class="cart-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 6h3l2 10h9l2-8H7" fill="none" stroke="#111" stroke-width="2"/> |
| <circle cx="10" cy="20" r="1.5" fill="#111"/> |
| <circle cx="17" cy="20" r="1.5" fill="#111"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="image">[IMG: Men's wing tip formal shoes] |
| <div class="deal-banner"> |
| <div class="deal-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#fff"/></svg> |
| <span>Lightning Deal</span> |
| </div> |
| <div class="deal-right">Ends in 04:35:53</div> |
| </div> |
| </div> |
| <div class="card-content"> |
| <div class="title">LAORENTOU Men's Wing Tip Premium Dress Shoes...</div> |
| <div class="stock-row"><span class="low">Only 2 Left</span> <span class="install">$16.09/wk x 4</span></div> |
| <div class="rating">β
β
β
β
β
<span style="color:#333;">(388)</span></div> |
| <div class="price-row"> |
| <div class="price-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#FF6A00"/></svg> |
| <span class="price">$64.34</span> |
| <span class="sold">2 sold</span> |
| </div> |
| <div class="cart-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 6h3l2 10h9l2-8H7" fill="none" stroke="#111" stroke-width="2"/> |
| <circle cx="10" cy="20" r="1.5" fill="#111"/> |
| <circle cx="17" cy="20" r="1.5" fill="#111"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="image">[IMG: Men's dress shoes black] |
| <div class="deal-banner"> |
| <div class="deal-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#fff"/></svg> |
| <span>Lightning Deal</span> |
| </div> |
| <div class="deal-right">Ends in 04:35:53</div> |
| </div> |
| </div> |
| <div class="card-content"> |
| <div class="title">LAORENTOU Men's Dress Shoes, Classic Lace-up...</div> |
| <div class="stock-row"><span class="low">Almost sold out</span> <span class="install">$14.29/wk x 4</span></div> |
| <div class="rating">β
β
β
β
β
<span style="color:#333;">(388)</span></div> |
| <div class="price-row"> |
| <div class="price-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#FF6A00"/></svg> |
| <span class="price">$57.14</span> |
| <span class="sold">13 sold</span> |
| </div> |
| <div class="cart-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 6h3l2 10h9l2-8H7" fill="none" stroke="#111" stroke-width="2"/> |
| <circle cx="10" cy="20" r="1.5" fill="#111"/> |
| <circle cx="17" cy="20" r="1.5" fill="#111"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="image">[IMG: Men's genuine leather shoes brown] |
| <div class="deal-banner"> |
| <div class="deal-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#fff"/></svg> |
| <span>Lightning Deal</span> |
| </div> |
| <div class="deal-right">Ends in 04:35:53</div> |
| </div> |
| </div> |
| <div class="card-content"> |
| <div class="title">LAORENTOU Men's Genuine Leather Oxfords...</div> |
| <div class="stock-row"><span class="low">Only 12 Left</span> <span class="install">$16.31/wk x 4</span></div> |
| <div class="rating">β
β
β
β
β
<span style="color:#333;">(388)</span></div> |
| <div class="price-row"> |
| <div class="price-left"> |
| <svg viewBox="0 0 24 24"><path d="M12 2l3 7H8l4 13-1-8h6z" fill="#FF6A00"/></svg> |
| <span class="price">$65.24</span> |
| <span class="sold">5 sold</span> |
| </div> |
| <div class="cart-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 6h3l2 10h9l2-8H7" fill="none" stroke="#111" stroke-width="2"/> |
| <circle cx="10" cy="20" r="1.5" fill="#111"/> |
| <circle cx="17" cy="20" r="1.5" fill="#111"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="floating-cart"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 6h3l2 10h9l2-8H7" fill="none" stroke="#fff" stroke-width="2"/> |
| <circle cx="10" cy="20" r="1.5" fill="#fff"/> |
| <circle cx="17" cy="20" r="1.5" fill="#fff"/> |
| </svg> |
| <div class="label">Cart</div> |
| <div class="sub">Free Shipping</div> |
| </div> |
|
|
| |
| <div class="gesture"></div> |
|
|
| </div> |
| </body> |
| </html> |