AndroidCode / code /10129 /10129_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
c32f9a6 verified
raw
history blame
9.38 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Search UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Inter", Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Status bar */
.status-bar {
height: 120px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #2E2E2E;
font-weight: 600;
font-size: 36px;
}
.status-right {
display: flex;
align-items: center;
gap: 18px;
}
.dot {
width: 24px; height: 24px; background: #5A5A5A; border-radius: 50%;
}
.status-icon {
width: 38px; height: 38px; border-radius: 8px; border: 1px solid #CFCFCF; display: inline-flex; align-items: center; justify-content: center;
}
/* Header with back and search */
.header {
padding: 10px 36px 24px 36px;
}
.search-row {
display: flex; align-items: center; gap: 24px;
}
.back-btn {
width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
}
.search-input {
flex: 1;
height: 96px;
border: 1px solid #E0E0E0;
border-radius: 48px;
display: flex;
align-items: center;
padding: 0 28px;
gap: 18px;
color: #9E9E9E;
font-size: 40px;
}
.caret {
width: 3px; height: 54px; background: #2AC06E; border-radius: 2px;
}
.divider {
height: 1px; background: #E9E9E9; margin-top: 18px;
}
/* List area */
.content {
padding: 24px 36px 0 36px;
}
.item {
display: flex; align-items: center; gap: 28px;
margin: 26px 0;
}
.square {
width: 120px; height: 120px; background: #F8F8F8; border: 1px solid #E0E0E0; border-radius: 28px; display: flex; align-items: center; justify-content: center;
}
.title {
font-size: 44px; color: #111111; font-weight: 700; line-height: 1.2;
}
.subtitle {
font-size: 28px; color: #6A6A6A; margin-top: 6px;
}
.section-label {
margin-top: 24px;
color: #333333; font-weight: 700; font-size: 24px; letter-spacing: 2px;
}
.thumb {
width: 160px; height: 160px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 24px;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px; text-align: center; padding: 10px;
}
/* Keyboard mock */
.keyboard {
position: absolute;
left: 0; right: 0; bottom: 44px;
height: 860px;
background: #F0F2E9;
border-top: 1px solid #E2E4D9;
padding: 24px 24px 36px 24px;
}
.kb-toolbar {
display: flex; align-items: center; justify-content: space-between;
padding: 0 40px; margin-bottom: 18px;
}
.kb-tool {
width: 64px; height: 64px; border-radius: 20px; background: #FFFFFF; border: 1px solid #DADADA;
display: flex; align-items: center; justify-content: center; color: #707070; font-size: 24px;
}
.keys-row {
display: flex; justify-content: center; gap: 18px; margin: 16px 0;
}
.key {
width: 84px; height: 108px; background: #FFFFFF; border: 1px solid #E1E1E1; border-radius: 24px;
display: flex; align-items: center; justify-content: center; font-size: 36px; color: #202020; box-shadow: 0 1px 0 #EFEFEF inset;
}
.key-wide {
width: 540px;
}
.key-mid {
width: 120px;
}
.key-green {
background: #DCEAD4; border-color: #CBDAC3;
}
/* Bottom navigation pill */
.nav-pill {
position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
width: 240px; height: 16px; border-radius: 8px; background: #9E9E9E; opacity: 0.6;
}
/* Simple inline icon wrappers */
.svg-24 { width: 36px; height: 36px; }
.svg-32 { width: 42px; height: 42px; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>1:00</div>
<div class="status-right">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div style="color:#7C7C7C;font-weight:700;">oyo</div>
<div class="dot" style="opacity:.4;"></div>
<div class="status-icon">
<!-- wifi -->
<svg class="svg-24" viewBox="0 0 24 24">
<path d="M12 18.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3zm-7-7c4.7-4.7 15.3-4.7 20 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"/>
<path d="M5 14c5-5 14-5 19 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"/>
<path d="M8 16.5c3.5-3 9-3 12.5 0" fill="none" stroke="#5A5A5A" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="status-icon">
<!-- battery -->
<svg class="svg-24" viewBox="0 0 24 24">
<rect x="3" y="6" width="16" height="12" rx="2" ry="2" fill="none" stroke="#5A5A5A" stroke-width="2"/>
<rect x="5" y="8" width="12" height="8" fill="#5A5A5A"/>
<rect x="20" y="10" width="2" height="4" fill="#5A5A5A"/>
</svg>
</div>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="search-row">
<div class="back-btn">
<svg class="svg-32" viewBox="0 0 24 24">
<path d="M15 6L9 12l6 6" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-input">
<svg class="svg-32" viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" fill="none" stroke="#7A7A7A" stroke-width="2"/>
<path d="M15 15l5 5" stroke="#7A7A7A" stroke-width="2" stroke-linecap="round"/>
</svg>
<div class="caret"></div>
<div>Where to?</div>
</div>
</div>
<div class="divider"></div>
</div>
<!-- Content list -->
<div class="content">
<!-- Nearby -->
<div class="item" style="margin-top: 24px;">
<div class="square">
<svg class="svg-32" viewBox="0 0 24 24">
<path d="M3 12l18-7-7 18-3-8-8-3z" fill="none" stroke="#4A4A4A" stroke-width="2" stroke-linejoin="round"/>
</svg>
</div>
<div>
<div class="title">Nearby</div>
</div>
</div>
<!-- Recent label -->
<div class="section-label">RECENT</div>
<!-- Honolulu -->
<div class="item">
<div class="square">
<svg class="svg-32" viewBox="0 0 24 24">
<path d="M12 22s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11z" fill="none" stroke="#2E2E2E" stroke-width="2"/>
<circle cx="12" cy="11" r="2.2" fill="none" stroke="#2E2E2E" stroke-width="2"/>
</svg>
</div>
<div>
<div class="title">Honolulu</div>
<div class="subtitle">Hawaii, United States</div>
</div>
</div>
<!-- Hawaii -->
<div class="item">
<div class="square">
<svg class="svg-32" viewBox="0 0 24 24">
<path d="M12 22s7-6.2 7-11a7 7 0 1 0-14 0c0 4.8 7 11 7 11z" fill="none" stroke="#2E2E2E" stroke-width="2"/>
<circle cx="12" cy="11" r="2.2" fill="none" stroke="#2E2E2E" stroke-width="2"/>
</svg>
</div>
<div>
<div class="title">Hawaii</div>
<div class="subtitle">United States, North America</div>
</div>
</div>
<!-- Dolphins item -->
<div class="item" style="margin-top: 20px;">
<div class="thumb">[IMG: Dolphins swimming in blue water]</div>
<div>
<div class="title" style="max-width: 770px;">
Swim with Dolphins in the West Coast line of Oahu
</div>
<div class="subtitle">Honolulu, Hawaii</div>
</div>
</div>
</div>
<!-- Keyboard mock -->
<div class="keyboard">
<div class="kb-toolbar">
<div class="kb-tool">😊</div>
<div class="kb-tool">GIF</div>
<div class="kb-tool">⚙️</div>
<div class="kb-tool">G↔︎</div>
<div class="kb-tool">🎨</div>
<div class="kb-tool">🎤</div>
</div>
<div class="keys-row">
<div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div>
<div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
</div>
<div class="keys-row">
<div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div>
<div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
</div>
<div class="keys-row">
<div class="key key-green"></div>
<div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
<div class="key key-green"></div>
</div>
<div class="keys-row" style="gap: 14px;">
<div class="key key-green">?123</div>
<div class="key key-green">,</div>
<div class="key">😊</div>
<div class="key key-wide"></div>
<div class="key">.</div>
<div class="key key-green">
<svg class="svg-24" viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" fill="none" stroke="#333" stroke-width="2"/>
<path d="M15 15l5 5" stroke="#333" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<div class="nav-pill"></div>
</div>
</body>
</html>