AndroidCode / code /10060 /10060_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Train Results - Amsterdam to London</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #F4F4F5;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
color: #1E1E1E;
}
/* Status bar */
.status-bar {
height: 96px;
padding: 20px 32px 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #6B6B6B;
font-weight: 600;
font-size: 36px;
}
.status-left {
display: flex;
align-items: center;
gap: 18px;
}
.sb-dot {
width: 38px; height: 32px; background:#BDBDBD; border-radius: 6px;
}
.status-right {
display: flex; align-items: center; gap: 20px;
}
.sb-icon { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #9E9E9E; }
.sb-battery {
width: 36px; height: 22px; border: 3px solid #9E9E9E; border-radius: 4px; position: relative;
}
.sb-battery::after{
content:""; position:absolute; right:-6px; top:6px; width:6px; height:10px; background:#9E9E9E; border-radius:2px;
}
/* App header */
.app-header {
position: relative;
background:#FFFFFF;
padding: 16px 32px 10px 32px;
border-bottom-left-radius: 24px;
border-bottom-right-radius: 24px;
}
.header-row {
display: flex; align-items: center; justify-content: center;
padding: 8px 0 6px 0;
}
.back-btn {
position: absolute; left: 24px; top: 16px;
width: 88px; height: 88px; display:flex; align-items:center; justify-content:center;
}
.back-btn svg { width: 44px; height: 44px; }
.title {
font-size: 54px; font-weight: 800; color:#232323;
}
/* Date selector */
.date-row {
margin-top: 10px;
display: flex; align-items: center; gap: 30px;
padding: 10px 12px 22px 12px;
overflow: hidden;
}
.date-item {
width: 148px;
text-align: center;
color:#3E3E3E;
}
.date-item .day { font-size: 36px; font-weight: 700; }
.date-item .wk { font-size: 28px; color:#9E9E9E; margin-top: 6px; }
.date-item.active {
background: #FFEFE2;
color:#FF7D28;
border-radius: 28px;
padding: 16px 0;
width: 160px;
}
.date-right {
margin-left:auto; display:flex; align-items:center; gap:20px; padding-right:6px;
}
.vert-divider { width:2px; height:70px; background:#E0E0E0; }
.cal-box {
width: 88px; height: 88px; border-radius: 22px; border: 2px solid #E0E0E0;
display:flex; align-items:center; justify-content:center;
}
.cal-box svg { width: 44px; height: 44px; fill:#6B6B6B; }
/* Promo card */
.promo {
margin: 22px 32px;
background:#FFFFFF; border-radius: 26px;
border: 3px solid #5A8CFF;
padding: 28px 34px;
color:#2F6BFF; font-size: 36px; font-weight: 600;
display:flex; align-items:center; justify-content: space-between;
}
.promo .chev {
width: 48px; height: 48px; display:flex; align-items:center; justify-content:center;
}
.promo .chev svg { width: 30px; height: 30px; fill:#2F6BFF; }
/* Result card */
.card {
margin: 22px 32px 0 32px;
background:#FFFFFF; border-radius: 34px;
box-shadow: 0 6px 20px rgba(0,0,0,0.06);
padding: 28px 30px;
}
.brand {
display:flex; align-items:center; gap:16px; margin-bottom: 18px;
}
.brand .logo {
width: 200px; height: 56px; background:#E0E0E0; border:1px solid #BDBDBD;
display:flex; align-items:center; justify-content:center; color:#757575; font-size: 28px; border-radius: 10px;
}
.times {
display:grid; grid-template-columns: 1fr 220px 1fr; align-items:center;
column-gap: 10px; margin: 4px 0 10px 0;
}
.t-big { font-size: 72px; font-weight: 800; }
.duration {
text-align: center; color:#9E9E9E; font-size: 28px; position: relative;
}
.duration::before, .duration::after {
content:""; position:absolute; top:36px; width:84px; height:2px; background:#E0E0E0;
}
.duration::before { left:-90px; }
.duration::after { right:-90px; }
.stations {
display:grid; grid-template-columns: 1fr 1fr; column-gap: 20px; margin-top: 8px;
color:#6B6B6B; font-size: 34px; line-height: 1.35;
}
.card-bottom {
margin-top: 22px; display:flex; align-items:center;
}
.pill {
background:#EEF2F5; color:#3A3A3A; font-weight: 600;
border-radius: 30px; padding: 16px 26px; display:inline-flex; align-items:center; gap:16px;
font-size: 32px;
}
.pill svg { width: 24px; height: 24px; }
.price {
margin-left:auto; font-size: 44px; font-weight: 800; color:#F06424;
}
.price small { font-size: 28px; color:#9E9E9E; font-weight:600; margin-left: 8px; }
.end-text {
text-align:center; margin: 44px 0 0 0; color:#B8B8B8; font-size: 40px; font-weight: 700;
}
/* Bottom floating controls */
.bottom-bar {
position: absolute; left: 72px; right: 72px; bottom: 150px;
background:#FFFFFF; border-radius: 60px; box-shadow: 0 14px 30px rgba(0,0,0,0.12);
display:flex; align-items:center; justify-content:center; gap: 34px;
padding: 26px 34px; font-size: 36px; color:#3E3E3E; font-weight: 700;
}
.bottom-item { display:flex; align-items:center; gap:18px; }
.v-sep { width: 2px; height: 48px; background:#E0E0E0; }
.icon {
width: 36px; height: 36px; display:inline-flex; align-items:center; justify-content:center;
}
.muted { color:#8F8F8F; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<div>12:28</div>
<div class="sb-dot"></div>
</div>
<div class="status-right">
<div class="sb-icon"></div>
<div class="sb-icon" style="border-radius:4px;"></div>
<div class="sb-battery"></div>
</div>
</div>
<!-- Header with title -->
<div class="app-header">
<div class="header-row">
<div class="back-btn" aria-label="Back">
<svg viewBox="0 0 24 24"><path d="M15.5 4.5 7 12l8.5 7.5" stroke="#333" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
<div class="title">Amsterdam ⇌ London</div>
</div>
<!-- Dates -->
<div class="date-row">
<div class="date-item">
<div class="day">26 Oct</div>
<div class="wk">Thu</div>
</div>
<div class="date-item active">
<div class="day">27 Oct</div>
<div class="wk" style="color:#FF7D28;">Fri</div>
</div>
<div class="date-item">
<div class="day">28 Oct</div>
<div class="wk">Sat</div>
</div>
<div class="date-item">
<div class="day">29 Oct</div>
<div class="wk">Sun</div>
</div>
<div class="date-item">
<div class="day">30 Oct</div>
<div class="wk">Mon</div>
</div>
<div class="date-item">
<div class="day">31 Oct</div>
<div class="wk">Tue</div>
</div>
<div class="date-right">
<div class="vert-divider"></div>
<div class="cal-box" aria-label="Calendar">
<svg viewBox="0 0 24 24">
<path d="M7 2v3m10-3v3M3 9h18M5 5h14a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2z" stroke="#6B6B6B" stroke-width="1.8" fill="none" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
</div>
<!-- Promo banner -->
<div class="promo">
<div>Free 4G eSIM for your Europe train tickets!</div>
<div class="chev">
<svg viewBox="0 0 24 24"><path d="M8 4l8 8-8 8" fill="none" stroke="#2F6BFF" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"/></svg>
</div>
</div>
<!-- Result card -->
<div class="card">
<div class="brand">
<div class="logo">[IMG: eurostar]</div>
</div>
<div class="times">
<div class="t-big">07:47</div>
<div class="duration">4h 13m</div>
<div class="t-big">11:00</div>
</div>
<div class="stations">
<div>Amsterdam<br>Central</div>
<div>London St Pancras<br>International</div>
</div>
<div class="card-bottom">
<div class="pill">
<svg viewBox="0 0 24 24"><path d="M3 6h4l2 12h10l2-8H8" fill="none" stroke="#6B6B6B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
<span>0 transfers</span>
<svg viewBox="0 0 24 24"><path d="M6 9l6 6 6-6" fill="none" stroke="#6B6B6B" stroke-width="2" stroke-linecap="round"/></svg>
</div>
<div class="price">US$ 402.49 <small>/pax</small></div>
</div>
</div>
<div class="end-text">You've Klooked to the end</div>
<!-- Bottom floating filter/sort -->
<div class="bottom-bar">
<div class="bottom-item">
<span class="icon">
<svg viewBox="0 0 24 24"><path d="M3 6h18M6 12h12M10 18h4" stroke="#6B6B6B" stroke-width="2" stroke-linecap="round"/></svg>
</span>
<span>Filters</span>
</div>
<div class="v-sep"></div>
<div class="bottom-item">
<span class="icon">
<svg viewBox="0 0 24 24"><path d="M7 4h10M9 9h6M11 14h2M8 20l4-4 4 4" stroke="#6B6B6B" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
</span>
<span>Sort: Time</span>
</div>
</div>
</div>
</body>
</html>