| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1440, initial-scale=1.0"> |
| <title>Product Reviews - Mobile UI</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1440px; |
| height: 3120px; |
| position: relative; |
| overflow: hidden; |
| background: #ffffff; |
| font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; |
| color: #212121; |
| } |
| |
| |
| .status-bar { |
| height: 140px; |
| background: #E0E0E0; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| font-size: 40px; |
| color: #4F4F4F; |
| letter-spacing: 1px; |
| } |
| .status-icons { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .status-dot { |
| width: 16px; height: 16px; background: #BDBDBD; border-radius: 50%; |
| } |
| |
| |
| .app-header { |
| height: 160px; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| box-sizing: border-box; |
| background: #fff; |
| border-bottom: 1px solid #EEEEEE; |
| } |
| .left-actions, .right-actions { |
| display: flex; |
| align-items: center; |
| } |
| .left-actions { gap: 24px; } |
| .right-actions { margin-left: auto; gap: 40px; } |
| .icon { |
| width: 64px; |
| height: 64px; |
| stroke: #222; |
| fill: none; |
| stroke-width: 2.5; |
| } |
| |
| |
| .content { |
| padding: 24px 40px 240px; |
| box-sizing: border-box; |
| } |
| .section { |
| padding: 24px 8px; |
| } |
| .title-lg { |
| font-size: 58px; |
| font-weight: 700; |
| margin: 18px 0 10px; |
| } |
| .subtitle { |
| font-size: 42px; |
| color: #616161; |
| margin: 6px 0 18px; |
| } |
| .meta { |
| display: flex; |
| align-items: center; |
| gap: 14px; |
| font-size: 36px; |
| color: #4F4F4F; |
| } |
| .meta .verified { |
| width: 44px; height: 44px; border-radius: 50%; |
| background: #14C671; |
| display: inline-flex; align-items: center; justify-content: center; |
| } |
| .meta .verified svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 4; } |
| |
| .vote-row { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| margin: 18px 0; |
| color: #757575; |
| font-size: 34px; |
| } |
| .vote-icon { |
| width: 52px; height: 52px; |
| stroke: #9E9E9E; fill: none; stroke-width: 2.4; |
| } |
| .report { |
| margin-left: auto; |
| font-size: 38px; |
| color: #757575; |
| } |
| .divider { |
| height: 1px; |
| background: #E0E0E0; |
| margin: 24px 0; |
| } |
| |
| |
| .review { |
| position: relative; |
| padding: 24px 0 8px; |
| } |
| .rating-badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 14px; |
| background: #E9F2FF; |
| color: #1A73E8; |
| padding: 12px 18px; |
| border-radius: 12px; |
| font-weight: 700; |
| font-size: 36px; |
| width: fit-content; |
| } |
| .rating-badge .star { |
| color: #FFC107; |
| font-weight: 800; |
| } |
| .review-title { |
| font-size: 44px; |
| font-weight: 600; |
| color: #424242; |
| margin: 6px 0 14px; |
| } |
| .review-text { |
| font-size: 42px; |
| color: #424242; |
| line-height: 1.35; |
| margin: 14px 0 12px; |
| } |
| |
| |
| .view-all { |
| margin: 36px 0 26px; |
| background: #F1F9FF; |
| color: #0B69C7; |
| text-align: center; |
| font-weight: 700; |
| font-size: 44px; |
| padding: 40px 24px; |
| border-radius: 28px; |
| border: 1px solid #D9ECFF; |
| } |
| |
| |
| .compare-header { |
| display: flex; |
| align-items: center; |
| padding: 32px 0; |
| gap: 24px; |
| } |
| .compare-title { |
| font-size: 46px; |
| font-weight: 800; |
| color: #3D3D3D; |
| letter-spacing: 0.5px; |
| } |
| .rule { |
| flex: 1; |
| height: 1px; |
| background: #E0E0E0; |
| margin-left: 30px; |
| } |
| .chev { |
| width: 36px; height: 36px; stroke: #9E9E9E; fill: none; stroke-width: 3; |
| } |
| |
| |
| .compare-strip { |
| width: 100%; |
| background: #F6FAFF; |
| border-radius: 24px; |
| padding: 40px 30px; |
| box-sizing: border-box; |
| display: flex; |
| gap: 30px; |
| overflow: hidden; |
| } |
| .img-ph { |
| flex: 1 1 30%; |
| min-width: 360px; |
| height: 420px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; |
| font-size: 34px; |
| border-radius: 12px; |
| } |
| |
| |
| .sticky-cta { |
| position: absolute; |
| left: 24px; |
| right: 24px; |
| bottom: 120px; |
| background: #ffffff; |
| border-radius: 28px; |
| box-shadow: 0 14px 40px rgba(0,0,0,0.12); |
| padding: 24px; |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .like-box { |
| width: 180px; height: 120px; |
| border-radius: 24px; |
| border: 2px solid #D3E3FF; |
| display: flex; align-items: center; justify-content: center; |
| background: #FAFDFF; |
| } |
| .like-icon { width: 64px; height: 64px; stroke: #0B69C7; fill: none; stroke-width: 2.8; } |
| .add-btn { |
| flex: 1; |
| height: 120px; |
| background: #FFE100; |
| border-radius: 22px; |
| display: flex; align-items: center; justify-content: center; |
| font-weight: 800; |
| font-size: 48px; |
| letter-spacing: 1px; |
| color: #212121; |
| gap: 24px; |
| } |
| .cart-icon { width: 64px; height: 64px; stroke: #212121; fill: none; stroke-width: 2.6; } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 32px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 340px; height: 12px; background: #000; |
| border-radius: 8px; opacity: 0.28; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| 1:25 |
| <div class="status-icons"> |
| <span>◌ ◌ ◌</span> |
| <span class="status-dot"></span> |
| <span style="font-size:44px;">📶</span> |
| <span style="font-size:44px;">🔋</span> |
| </div> |
| </div> |
|
|
| |
| <div class="app-header"> |
| <div class="left-actions"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M15 4 L7 12 L15 20" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <div class="right-actions"> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7"></circle> |
| <line x1="16.5" y1="16.5" x2="22" y2="22"></line> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.3-8.5-7.5C1.4 11.3 2 7.7 5 6.5c2.1-.8 3.9.4 5 2 1.1-1.6 2.9-2.8 5-2 3 .2 3.6 4.8 1.5 7C18 16.7 12 21 12 21z"></path> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="9" cy="20" r="1.6" fill="none"></circle> |
| <circle cx="18" cy="20" r="1.6" fill="none"></circle> |
| <path d="M2 4h2l2 12h12l2-9H6" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
|
|
| |
| <div class="section"> |
| <div class="title-lg">Very Good</div> |
| <div class="subtitle">Excellent</div> |
| <div class="meta"> |
| <span class="verified"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 12l3 3 9-9" fill="none"></path> |
| </svg> |
| </span> |
| <span>SINGH (India) | 14-11-2023</span> |
| <span class="report">Report</span> |
| </div> |
| <div class="vote-row"> |
| |
| <svg class="vote-icon" viewBox="0 0 24 24"> |
| <path d="M2 11h4v9H2zM7 11h3l3-5h2v14H7z" stroke-linejoin="round"></path> |
| </svg> |
| <span>0</span> |
| |
| <svg class="vote-icon" viewBox="0 0 24 24"> |
| <path d="M2 4h4v9H2zM7 13h3l3 5h2V4H7z" stroke-linejoin="round"></path> |
| </svg> |
| <span>0</span> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="review"> |
| <div class="rating-badge"> |
| <span>5</span> <span class="star">★</span> |
| </div> |
| <div class="review-title">Product Experience (2 to 8 weeks)</div> |
| <div class="review-text">Good n comfortable and nice collection</div> |
| <div class="meta"> |
| <span class="verified"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 12l3 3 9-9" fill="none"></path> |
| </svg> |
| </span> |
| <span>SANGEETA (India) | 14-11-2023</span> |
| <span class="report">Report</span> |
| </div> |
| <div class="vote-row"> |
| <svg class="vote-icon" viewBox="0 0 24 24"> |
| <path d="M2 11h4v9H2zM7 11h3l3-5h2v14H7z" stroke-linejoin="round"></path> |
| </svg> |
| <span>0</span> |
| <svg class="vote-icon" viewBox="0 0 24 24"> |
| <path d="M2 4h4v9H2zM7 13h3l3 5h2V4H7z" stroke-linejoin="round"></path> |
| </svg> |
| <span>0</span> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="review"> |
| <div class="rating-badge"> |
| <span>5</span> <span class="star">★</span> |
| </div> |
| <div class="review-title">Product Experience (2 to 8 weeks)</div> |
| <div class="review-text">Nice product</div> |
| <div class="meta"> |
| <span class="verified"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 12l3 3 9-9" fill="none"></path> |
| </svg> |
| </span> |
| <span>Santhosh Kumar (India) | 14-11-2023</span> |
| <span class="report">Report</span> |
| </div> |
| <div class="vote-row"> |
| <svg class="vote-icon" viewBox="0 0 24 24"> |
| <path d="M2 11h4v9H2zM7 11h3l3-5h2v14H7z" stroke-linejoin="round"></path> |
| </svg> |
| <span>0</span> |
| <svg class="vote-icon" viewBox="0 0 24 24"> |
| <path d="M2 4h4v9H2zM7 13h3l3 5h2V4H7z" stroke-linejoin="round"></path> |
| </svg> |
| <span>0</span> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="view-all">View all 19358 Reviews</div> |
|
|
| |
| <div class="compare-header"> |
| <div class="compare-title">COMPARE PRODUCTS</div> |
| <div class="rule"></div> |
| <svg class="chev" viewBox="0 0 24 24"> |
| <path d="M8 10l4 4 4-4" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
|
|
| <div class="compare-strip"> |
| <div class="img-ph">[IMG: Grey Running Shoe]</div> |
| <div class="img-ph">[IMG: Black Sports Shoe]</div> |
| <div class="img-ph">[IMG: Blue Casual Sneaker]</div> |
| </div> |
| </div> |
|
|
| |
| <div class="sticky-cta"> |
| <div class="like-box"> |
| <svg class="like-icon" viewBox="0 0 24 24"> |
| <path d="M12 21s-6-4.3-8.5-7.5C1.4 11.3 2 7.7 5 6.5c2.1-.8 3.9.4 5 2 1.1-1.6 2.9-2.8 5-2 3 .2 3.6 4.8 1.5 7C18 16.7 12 21 12 21z"></path> |
| <line x1="18" y1="6" x2="20" y2="4"></line> |
| </svg> |
| </div> |
| <div class="add-btn"> |
| ADD TO CART |
| <svg class="cart-icon" viewBox="0 0 24 24"> |
| <circle cx="9" cy="20" r="1.6" fill="none"></circle> |
| <circle cx="18" cy="20" r="1.6" fill="none"></circle> |
| <path d="M2 4h2l2 12h12l2-9H6" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |