AndroidCode / code /10153 /10153_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
15.2 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Standing Desk - Results</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #222; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #fff;
}
/* Top gradient header */
.top-gradient {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 340px;
background: linear-gradient(180deg, #8ed9d4 0%, #bfeee6 100%);
}
/* Status bar */
.status-bar {
position: absolute;
top: 14px;
left: 24px;
right: 24px;
height: 44px;
display: flex;
align-items: center;
justify-content: space-between;
color: #1b1b1b;
font-weight: 600;
font-size: 36px;
opacity: 0.9;
}
.status-icons {
display: flex;
gap: 18px;
align-items: center;
}
.status-dot { width: 10px; height: 10px; background:#1b1b1b; border-radius:50%; opacity:0.7; }
/* App bar */
.app-bar {
position: absolute;
top: 84px;
left: 18px;
right: 18px;
display: flex;
align-items: center;
gap: 18px;
}
.back-btn {
width: 72px;
height: 72px;
border-radius: 36px;
display: grid;
place-items: center;
color: #1f2a2a;
}
.search-box {
flex: 1;
background: #fff;
border-radius: 24px;
box-shadow: 0 2px 0 rgba(0,0,0,0.08), 0 6px 18px rgba(0,0,0,0.08);
height: 92px;
display: flex;
align-items: center;
padding: 0 28px;
gap: 16px;
}
.search-input {
flex: 1;
font-size: 38px;
color: #222;
}
.search-input span { color: #606060; }
.scan-btn {
width: 64px; height: 64px; border-radius: 16px; background: #f4f7f8; display: grid; place-items: center;
}
/* Location strip */
.location-strip {
position: absolute;
top: 196px;
left: 0;
right: 0;
padding: 18px 28px 24px;
color: #0b3c3a;
}
.location-pill {
display: inline-flex;
align-items: center;
gap: 16px;
background: rgba(255,255,255,0.75);
border-radius: 22px;
padding: 18px 22px;
font-size: 30px;
color: #0f403e;
}
/* Scrollable content */
.content {
position: absolute;
top: 340px;
left: 0;
right: 0;
bottom: 150px; /* leave space for nav bar */
overflow-y: auto;
background: #fff;
}
/* Chips row */
.chips {
display: flex;
align-items: center;
gap: 16px;
padding: 18px 22px;
border-bottom: 1px solid #e9eef0;
}
.chip {
display: inline-flex;
align-items: center;
gap: 12px;
background: #eef6f7;
color: #0c4b4a;
padding: 18px 22px;
border-radius: 16px;
font-size: 28px;
border: 1px solid #d9e8ea;
}
.chip.outline {
background: #fff;
border-color: #e2e7ea;
color: #222;
}
.toggle {
width: 78px; height: 42px; background: #e9ecef; border-radius: 21px; position: relative; }
.toggle::after {
content: ""; position: absolute; width: 38px; height: 38px; top: 2px; left: 2px; background: #fff; border-radius: 50%; box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.chip .x { color:#3c7e80; background:#d7eef0; border-radius: 10px; padding: 0 8px; }
/* Section heading */
.section {
padding: 24px 28px 10px;
}
.section h2 {
margin: 0 0 8px;
font-size: 40px;
font-weight: 700;
}
.muted { color: #6e7478; font-size: 26px; }
/* Horizontal product teasers */
.teasers {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 22px;
padding: 12px 22px 24px;
}
.teaser {
background: #fff;
border: 1px solid #e6eaed;
border-radius: 14px;
padding: 14px;
}
.img-ph {
width: 100%;
height: 220px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
border-radius: 10px;
}
.deal-badge {
display: inline-block;
background: #a63a15;
color: #fff;
padding: 8px 12px;
border-radius: 8px;
font-size: 26px;
margin-top: 12px;
}
.price {
font-size: 46px;
font-weight: 700;
margin: 6px 0 0;
}
.strike { color:#7b8b8f; text-decoration: line-through; margin-left: 8px; font-size: 28px; }
.save { color:#607d89; font-size: 26px; }
/* Divider text */
.divider-note {
padding: 18px 28px;
color: #6e7478;
font-size: 26px;
border-top: 10px solid #f1f3f4;
}
/* Large product card */
.product-card {
margin: 16px 22px 0;
background: #fff;
border: 1px solid #e6eaed;
border-radius: 18px;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
padding: 18px;
display: grid;
grid-template-columns: 320px 1fr;
gap: 22px;
}
.product-card .img-square {
width: 320px; height: 320px;
}
.sponsored { color:#6e7478; font-size: 26px; margin-bottom: 6px; }
.title {
font-size: 34px;
line-height: 1.25;
margin: 0 0 8px;
font-weight: 600;
}
.rating-row { display:flex; align-items:center; gap: 10px; margin: 6px 0; }
.stars { color:#f59f00; display:flex; gap: 4px; }
.badge {
display:inline-block;
background:#f7e7bf;
color:#8a5e00;
padding: 6px 10px;
border-radius: 8px;
font-size: 26px;
margin: 6px 0 12px;
}
.price-row { display:flex; align-items:flex-end; gap: 16px; margin: 4px 0; }
.coupon {
display:inline-block;
background:#d9f2d1;
color:#0a6d1f;
padding: 6px 12px;
border-radius: 8px;
font-size: 26px;
margin-top: 8px;
}
.prime-row { display:flex; align-items:center; gap: 10px; color:#0c4b4a; font-size: 28px; margin-top: 10px; }
/* Bottom navigation */
.bottom-nav {
position: absolute;
left: 0; right: 0; bottom: 40px;
height: 140px;
background: #fff;
border-top: 1px solid #e6eaed;
display: grid;
grid-template-columns: repeat(5, 1fr);
align-items: center;
text-align: center;
font-size: 26px;
}
.nav-item { color:#283133; }
.nav-item.active { color:#0a736c; font-weight: 700; }
.nav-icon {
width: 48px; height: 48px; margin: 0 auto 6px; display:block;
}
.home-indicator {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 16px;
width: 360px;
height: 12px;
background: #c7c9cc;
border-radius: 8px;
}
/* Utilities */
.row { display:flex; align-items:center; gap: 12px; }
</style>
</head>
<body>
<div id="render-target">
<div class="top-gradient"></div>
<!-- Status bar -->
<div class="status-bar">
<div>1:04</div>
<div class="status-icons">
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
<div class="status-dot"></div>
</div>
</div>
<!-- App bar with back and search -->
<div class="app-bar">
<div class="back-btn" aria-label="Back">
<svg width="36" height="36" viewBox="0 0 24 24" fill="#0b3c3a" xmlns="http://www.w3.org/2000/svg">
<path d="M14.7 4.3a1 1 0 0 1 0 1.4L9.4 11l5.3 5.3a1 1 0 1 1-1.4 1.4L7 11.7a1 1 0 0 1 0-1.4l6.9-6a1 1 0 0 1 .8-.3z"/>
</svg>
</div>
<div class="search-box">
<div class="search-input"><span>standing desk</span></div>
<div class="scan-btn">
<svg width="28" height="28" viewBox="0 0 24 24" fill="#0b3c3a"><path d="M3 7V5h4V3H1v6h2zm14-4v2h4v2h2V3h-6zM1 17v4h6v-2H3v-2H1zm22 0h-2v2h-2v2h4v-4z"/></svg>
</div>
</div>
</div>
<!-- Location -->
<div class="location-strip">
<div class="location-pill">
<svg width="28" height="28" viewBox="0 0 24 24" fill="#0a5d5a"><path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/></svg>
Delivering to Delhi 110001 - Update location
<svg width="18" height="18" viewBox="0 0 24 24" fill="#0a5d5a"><path d="M7 10l5 5 5-5H7z"/></svg>
</div>
</div>
<!-- Scrollable content -->
<div class="content">
<!-- Filter chips -->
<div class="chips">
<div class="chip">
<span style="color:#ff9900;font-weight:700;">prime</span>
<div class="toggle"></div>
</div>
<div class="chip">
Lapdesks <span class="x">×</span>
</div>
<div class="chip outline">
<div class="row">
<div class="stars">
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ffcc66"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
</div>
and
</div>
</div>
<div class="chip outline">Filters (1)
<svg width="18" height="18" viewBox="0 0 24 24" fill="#222" style="margin-left:8px;"><path d="M7 10l5 5 5-5H7z"/></svg>
</div>
</div>
<!-- For your workspace -->
<div class="section">
<h2>For your workspace</h2>
<div class="muted">Sponsored</div>
</div>
<div class="teasers">
<div class="teaser">
<div class="img-ph">[IMG: JIN OFFICE Logo]</div>
<div style="font-size:30px; margin-top: 12px;">Save up to 61% on JIN OFFICE</div>
</div>
<div class="teaser">
<div class="img-ph">[IMG: Standing Desk with Dual Monitors]</div>
<div class="deal-badge">Limited time Deal</div>
<div class="price">₹21,990 <span class="strike">₹38,500</span></div>
<div class="save">(43% off)</div>
</div>
<div class="teaser">
<div class="img-ph">[IMG: Standing Desk]</div>
<div class="deal-badge">Limited time Deal</div>
<div class="price">₹25,990</div>
</div>
</div>
<div class="divider-note">Price and other details may vary based on product size and colour.</div>
<!-- Large sponsored product card -->
<div class="product-card">
<div class="img-ph img-square">[IMG: Laptop table against blue wall]</div>
<div>
<div class="sponsored">Sponsored</div>
<div class="title">eStand Height Adjustable Laptop Table to be Used in Sitting & Standing Posture (Black HAT ...)</div>
<div class="rating-row">
<span style="color:#2a7bd3; font-weight:700;">4.4</span>
<div class="stars">
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ffcc66"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
</div>
<span class="muted">(24)</span>
</div>
<div class="badge">Great Indian Festival</div>
<div class="price-row">
<div class="price">₹5,999</div>
<div class="muted">M.R.P.: <span class="strike">₹11,999</span> <span style="color:#3d7b3d;">(50% off)</span></div>
</div>
<div class="coupon">Save ₹100 with coupon</div>
<div class="prime-row">
<span style="color:#ff9900; font-weight:700;">prime</span>
Get it by Wednesday, 15 November
</div>
</div>
</div>
<!-- Another small card preview -->
<div class="product-card" style="grid-template-columns: 320px 1fr; margin-bottom: 160px;">
<div class="img-ph img-square">[IMG: Adjustable Table Angled]</div>
<div>
<div class="sponsored">Sponsored</div>
<div class="title">eStand Multi Purpose Height Adjustable Table for Reading, Writing, Typing etc. Best to use in...</div>
<div class="rating-row">
<div class="stars">
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ff9900"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
<svg width="22" height="22" viewBox="0 0 24 24" fill="#ffcc66"><path d="M12 17.3l-6.2 3.7 1.8-7.1L2 9.8l7.3-.6L12 2l2.7 7.2 7.3.6-5.6 4.1 1.8 7.1z"/></svg>
</div>
<span class="muted">(112)</span>
</div>
<div class="price-row">
<div class="price">₹4,299</div>
<div class="muted">M.R.P.: <span class="strike">₹7,499</span></div>
</div>
<div class="coupon">Save with coupon</div>
</div>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<div class="nav-item active">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M12 3l9 8h-3v8h-5v-5H11v5H6v-8H3l9-8z"/></svg>
Home
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-4.4 0-8 2.2-8 5v2h16v-2c0-2.8-3.6-5-8-5z"/></svg>
You
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M4 4h16v4H4zm0 6h16v4H4zm0 6h16v4H4z"/></svg>
More
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M7 4h10l1 3H6l1-3zm-1 5h12l-1 10H7L6 9zm3 2v6h2v-6H9zm4 0v6h2v-6h-2z"/></svg>
Cart
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 24 24" fill="currentColor"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
Menu
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html>