AndroidCode / code /10065 /10065_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Amazon Search UI Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #222;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: linear-gradient(90deg, #a6d7db 0%, #c9e8d6 100%);
}
/* Status bar */
.status-bar {
position: absolute;
top: 18px;
left: 32px;
right: 32px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
color: #1f2b2d;
font-weight: 600;
font-size: 36px;
letter-spacing: 0.3px;
opacity: 0.9;
}
.sb-left, .sb-right {
display: flex;
align-items: center;
gap: 26px;
}
.chip {
width: 28px;
height: 28px;
background: #1f2b2d;
border-radius: 6px;
opacity: 0.75;
}
/* Header with back + search */
.header {
position: absolute;
top: 100px;
left: 0;
right: 0;
height: 200px;
display: flex;
align-items: center;
padding: 0 32px;
}
.back-btn {
width: 88px;
height: 88px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 20px;
}
.search-bar {
flex: 1;
height: 112px;
background: #ffffff;
border-radius: 24px;
box-shadow: 0 3px 0 rgba(0,0,0,0.06), 0 6px 18px rgba(0,0,0,0.08);
display: flex;
align-items: center;
padding: 0 30px;
}
.search-icon {
width: 44px;
height: 44px;
margin-right: 22px;
}
.placeholder {
font-size: 40px;
color: #5a5a5a;
}
/* Main content blank area */
.content-area {
position: absolute;
top: 300px;
left: 0;
right: 0;
bottom: 240px;
background: #ffffff;
}
/* Bottom action buttons */
.bottom-actions {
position: absolute;
bottom: 140px;
left: 34px;
right: 34px;
display: flex;
gap: 40px;
}
.action-btn {
flex: 1;
height: 156px;
background: #eceff1;
border-radius: 26px;
border: 1px solid #d5d9dd;
display: flex;
align-items: center;
padding: 0 40px;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.action-icon {
width: 56px;
height: 56px;
margin-right: 24px;
}
.action-label {
font-size: 44px;
color: #2b2b2b;
font-weight: 500;
}
/* Gesture pill */
.gesture {
position: absolute;
bottom: 54px;
left: 390px;
width: 300px;
height: 16px;
background: #bcbcbc;
border-radius: 10px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="sb-left">
<span>5:43</span>
<div class="chip" title="Lock"></div>
<span style="font-size:30px; opacity:0.9;">42°</span>
<div class="chip" title="Icon"></div>
<div class="chip" title="Icon"></div>
<div class="chip" title="Dot" style="width:12px; height:12px; border-radius:50%;"></div>
</div>
<div class="sb-right">
<!-- Wi-Fi icon -->
<svg width="46" height="46" viewBox="0 0 24 24" fill="none">
<path d="M2 8c5-4 15-4 20 0" stroke="#1f2b2d" stroke-width="2" stroke-linecap="round"/>
<path d="M5 11c4-3 10-3 14 0" stroke="#1f2b2d" stroke-width="2" stroke-linecap="round"/>
<path d="M8 14c3-2 5-2 8 0" stroke="#1f2b2d" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="18" r="2" fill="#1f2b2d"/>
</svg>
<!-- Battery icon -->
<svg width="52" height="52" viewBox="0 0 24 24" fill="none">
<rect x="2" y="6" width="18" height="12" rx="2" stroke="#1f2b2d" stroke-width="2"/>
<rect x="4" y="8" width="12" height="8" fill="#1f2b2d"/>
<rect x="20" y="10" width="2" height="4" rx="1" fill="#1f2b2d"/>
</svg>
</div>
</div>
<!-- Header with Back + Search -->
<div class="header">
<div class="back-btn" aria-label="Back">
<svg width="56" height="56" viewBox="0 0 24 24" fill="none">
<path d="M15 6l-6 6 6 6" stroke="#1f2b2d" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-bar">
<svg class="search-icon" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7" stroke="#666" stroke-width="2" fill="none"></circle>
<path d="M20 20l-4-4" stroke="#666" stroke-width="2" stroke-linecap="round"></path>
</svg>
<div class="placeholder">Search Amazon.in</div>
</div>
</div>
<!-- Main content area (empty white like screenshot) -->
<div class="content-area"></div>
<!-- Bottom action buttons -->
<div class="bottom-actions">
<div class="action-btn">
<svg class="action-icon" viewBox="0 0 24 24" fill="none">
<!-- Simple hanger icon -->
<path d="M12 4c-1.1 0-2 .9-2 2 0 .9.6 1.7 1.4 1.9l-8.4 7.2c-.5.4-.2 1.2.5 1.2h17c.7 0 1-0.8.5-1.2l-8.4-7.2c.8-.2 1.4-1 1.4-1.9 0-1.1-.9-2-2-2z" stroke="#5b6b73" stroke-width="1.6" fill="none" stroke-linejoin="round"/>
</svg>
<div class="action-label">Find the look</div>
</div>
<div class="action-btn">
<svg class="action-icon" viewBox="0 0 24 24" fill="none">
<!-- Camera icon -->
<rect x="3" y="6" width="18" height="12" rx="2" stroke="#5b6b73" stroke-width="2"/>
<rect x="7" y="3" width="6" height="3" rx="1" fill="#5b6b73"/>
<circle cx="12" cy="12" r="3.5" stroke="#5b6b73" stroke-width="2" fill="none"/>
</svg>
<div class="action-label">Scan products</div>
</div>
</div>
<!-- Gesture Pill -->
<div class="gesture"></div>
</div>
</body>
</html>