AndroidCode / code /10134 /10134_10.html
yhzheng1031's picture
Add files using upload-large-folder tool
c32f9a6 verified
raw
history blame
4.31 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #1a1f2b;
}
/* Status bar */
.statusbar {
height: 96px;
padding: 0 44px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 36px;
color: #2c2f36;
}
.status-icons {
display: flex;
gap: 24px;
align-items: center;
}
.status-icons svg { display: block; }
/* Header with pill */
.header {
position: relative;
height: 220px;
}
.back-btn {
position: absolute;
left: 32px;
top: 84px;
width: 56px;
height: 56px;
}
.fav-btn {
position: absolute;
right: 32px;
top: 90px;
width: 56px;
height: 56px;
}
.pill {
width: 820px;
height: 140px;
margin: 34px auto 0;
background: #EFF1F5;
border-radius: 70px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.pill .title {
font-weight: 600;
font-size: 46px;
color: #2b2f39;
margin-bottom: 8px;
}
.pill .subtitle {
font-size: 30px;
color: #8c94a1;
}
.divider {
height: 2px;
background: #E6E9EF;
width: 100%;
}
/* Content area */
.content {
text-align: center;
padding-top: 220px;
}
.img-placeholder {
width: 580px;
height: 420px;
margin: 0 auto 60px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
border-radius: 12px;
font-size: 28px;
}
.loading-text {
font-size: 40px;
color: #A3A9B4;
letter-spacing: 0.2px;
}
/* Bottom gesture bar */
.gesture {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 120px;
background: #000000;
}
.gesture .handle {
position: absolute;
left: 50%;
top: 32px;
width: 240px;
height: 12px;
margin-left: -120px;
background: #D8D8D8;
border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="statusbar">
<div class="time">10:52</div>
<div class="status-icons">
<!-- Simple network/wifi icon -->
<svg width="40" height="40" viewBox="0 0 40 40">
<path d="M6 16c8-8 20-8 28 0" stroke="#57606f" stroke-width="3" fill="none" stroke-linecap="round"/>
<path d="M10 20c6-6 14-6 20 0" stroke="#57606f" stroke-width="3" fill="none" stroke-linecap="round"/>
<circle cx="20" cy="26" r="3" fill="#57606f"/>
</svg>
<!-- Battery icon -->
<svg width="40" height="40" viewBox="0 0 40 40">
<rect x="6" y="12" width="24" height="16" rx="3" stroke="#57606f" stroke-width="3" fill="none"/>
<rect x="8" y="14" width="18" height="12" rx="2" fill="#57606f"/>
<rect x="31" y="16" width="4" height="8" rx="1" fill="#57606f"/>
</svg>
</div>
</div>
<!-- Header with pill -->
<div class="header">
<!-- Back chevron -->
<svg class="back-btn" viewBox="0 0 48 48">
<path d="M30 12 L18 24 L30 36" stroke="#10131a" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<!-- Favorite heart outline -->
<svg class="fav-btn" viewBox="0 0 48 48">
<path d="M24 40c-10-7-16-12-16-20 0-6 4-10 10-10 4 0 7 2 6 4 1-2 4-4 8-4 6 0 10 4 10 10 0 8-6 13-18 20z" stroke="#10131a" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="pill">
<div class="title">Berlin</div>
<div class="subtitle">23 Dec - 25 Dec • 1 room • 2 guests</div>
</div>
</div>
<div class="divider"></div>
<!-- Main content -->
<div class="content">
<div class="img-placeholder">[IMG: Hotel illustration]</div>
<div class="loading-text">Fetching Hotel Results...</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture">
<div class="handle"></div>
</div>
</div>
</body>
</html>