AndroidCode / code /10113 /10113_16.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
15.8 kB
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Outbound Trip UI</title>
<style>
body { margin:0; padding:0; background: transparent; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#F3F4F6; border-radius:0; box-shadow:none;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color:#1f2d2f;
}
/* Status bar */
.status-bar {
height:84px; background:#0F5E68; color:#fff; display:flex; align-items:center;
padding:0 36px; font-size:34px; letter-spacing:0.5px;
}
.status-right { margin-left:auto; display:flex; gap:22px; align-items:center; }
.header {
height:172px; background:#0F5E68; color:#fff; display:flex; align-items:center;
padding:0 36px; box-sizing:border-box;
}
.header-title { font-size:58px; font-weight:600; margin-left:20px; }
.header-actions { margin-left:auto; font-size:40px; font-weight:600; opacity:0.95; }
.tabs {
background:#0F5E68; color:#d7eef2; padding:0 24px 20px 24px;
display:flex; gap:36px; align-items:flex-end; box-sizing:border-box;
}
.tab { font-size:34px; text-transform:uppercase; padding:24px 8px; }
.tab.active { color:#fff; border-bottom:6px solid #fff; }
/* Cards list */
.list { padding:20px 20px 120px 20px; }
.card {
background:#fff; border:1px solid #DADFE3; border-radius:24px;
box-shadow: 0 2px 0 rgba(0,0,0,0.04);
margin:18px 8px; padding:24px; box-sizing:border-box;
}
.tag-row { display:flex; gap:14px; margin-bottom:14px; }
.tag {
padding:16px 22px; border-radius:24px; font-size:32px; font-weight:600;
}
.tag.flix { background:#D9F5A7; color:#2d5c06; }
.tag.grey { background:#CFE7F2; color:#235a66; }
.detail-row { display:flex; align-items:flex-start; gap:18px; }
.time-col { min-width:190px; }
.time { font-size:52px; font-weight:700; color:#2a3c3f; }
.ampm { font-size:28px; color:#6b7a7d; margin-left:6px; }
.place { font-size:40px; color:#374a4d; }
.minor { font-size:30px; color:#6b7a7d; }
.route-icon { width:26px; height:100px; }
.chev { margin-left:auto; opacity:0.6; }
.divider { height:1px; background:#E7EAED; margin:18px 0; }
.info-row { display:flex; align-items:center; justify-content:space-between; }
.pill {
display:inline-flex; align-items:center; gap:14px; padding:16px 22px;
border:1px solid #DADFE3; border-radius:999px; font-size:32px; color:#3c4d50;
background:#fff;
}
.icons { display:flex; gap:22px; align-items:center; color:#6b7a7d; font-size:30px; }
.meta { margin-top:14px; display:flex; align-items:center; gap:26px; color:#6b7a7d; font-size:32px; }
.price-area { display:flex; align-items:center; justify-content:flex-end; gap:20px; }
.price { font-size:64px; color:#0F5E68; font-weight:800; }
.price small { font-size:40px; vertical-align:top; }
.per { font-size:28px; color:#7b8b8e; text-align:right; }
.badge { font-size:30px; color:#0F7A85; font-weight:700; margin-top:2px; text-align:right; }
.alert { font-size:30px; color:#B45A1F; font-weight:700; text-align:right; }
.circle-btn {
width:120px; height:120px; background:#0F5E68; border-radius:50%;
display:flex; align-items:center; justify-content:center;
}
/* Simple bottom gesture bar */
.gesture {
position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
width:420px; height:14px; background:#C9CDD1; border-radius:14px;
}
/* SVG helpers */
.svg { display:inline-block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>10:24</div>
<div class="status-right">
<!-- placeholders for status icons -->
<svg class="svg" width="42" height="42"><circle cx="21" cy="21" r="8" fill="#fff" opacity="0.9"/></svg>
<svg class="svg" width="42" height="42"><rect x="6" y="12" width="30" height="18" rx="3" fill="#fff" opacity="0.9"/></svg>
<svg class="svg" width="42" height="42"><path d="M6 30 L36 12" stroke="#fff" stroke-width="4"/></svg>
<svg class="svg" width="42" height="42"><circle cx="21" cy="21" r="3" fill="#fff"/></svg>
<svg class="svg" width="42" height="42"><path d="M6 18 H30" stroke="#fff" stroke-width="4"/></svg>
<svg class="svg" width="42" height="42"><rect x="8" y="10" width="24" height="20" rx="3" fill="none" stroke="#fff" stroke-width="4"/><rect x="32" y="16" width="4" height="8" fill="#fff"/></svg>
</div>
</div>
<!-- Header -->
<div class="header">
<svg class="svg" width="64" height="64" viewBox="0 0 48 48">
<path d="M28 10 L12 24 L28 38" stroke="#fff" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="header-title">Outbound trip</div>
<div class="header-actions">FILTER</div>
</div>
<!-- Tabs -->
<div class="tabs">
<div class="tab">Wed, Oct 25</div>
<div class="tab active">Thu, Oct 26</div>
<div class="tab">Fri, Oct 27</div>
<div class="tab">Sat, Oct 28</div>
</div>
<!-- List -->
<div class="list">
<!-- Card 1 -->
<div class="card">
<div class="tag-row">
<div class="tag flix">FlixBus</div>
<div class="tag grey">Greyhound</div>
</div>
<div class="detail-row">
<div class="time-col">
<div class="time">10:55<span class="ampm">AM</span></div>
<div class="time">10:45<span class="ampm">AM +1</span></div>
</div>
<svg class="route-icon" viewBox="0 0 6 100">
<circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
<rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
<circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
</svg>
<div style="flex:1">
<div class="place">Hamilton (McMaster)</div>
<div class="place">Richmond Bus Station</div>
</div>
<svg class="chev" width="44" height="44" viewBox="0 0 24 24">
<path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="divider"></div>
<div class="info-row">
<div class="pill">
<svg width="30" height="30" viewBox="0 0 24 24">
<path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="8" cy="9" r="3" fill="#3c4d50"/>
</svg>
<span>2 transfers</span>
<svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
</div>
<div class="price-area">
<div>
<div class="price">$161<small>.40</small></div>
<div class="per">per person</div>
</div>
<div class="circle-btn">
<svg width="50" height="50" viewBox="0 0 24 24">
<path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
<div class="meta">
<span>23:50 Hrs.</span>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M3 8 H21 V16 H3 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><circle cx="6" cy="12" r="1.5" fill="#6b7a7d"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 6 H18 V12 H6 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><path d="M10 12 V18" stroke="#6b7a7d" stroke-width="2"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M5 19 L19 5" stroke="#6b7a7d" stroke-width="2"/></svg>
</div>
</div>
<!-- Card 2 -->
<div class="card">
<div class="tag-row">
<div class="tag flix">FlixBus</div>
<div class="tag grey">Greyhound</div>
</div>
<div class="detail-row">
<div class="time-col">
<div class="time">10:55<span class="ampm">AM</span></div>
<div class="time">11:05<span class="ampm">AM +1</span></div>
</div>
<svg class="route-icon" viewBox="0 0 6 100">
<circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
<rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
<circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
</svg>
<div style="flex:1">
<div class="place">Hamilton (McMaster)</div>
<div class="place">Richmond (W Leigh St)</div>
</div>
<svg class="chev" width="44" height="44" viewBox="0 0 24 24">
<path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="divider"></div>
<div class="info-row">
<div class="pill">
<svg width="30" height="30" viewBox="0 0 24 24">
<path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="8" cy="9" r="3" fill="#3c4d50"/>
</svg>
<span>3 transfers</span>
<svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
</div>
<div class="price-area">
<div>
<div class="price">$154<small>.12</small></div>
<div class="per">per person</div>
<div class="badge">LOWEST PRICE</div>
</div>
<div class="circle-btn">
<svg width="50" height="50" viewBox="0 0 24 24">
<path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
<div class="meta">
<span>24:10 Hrs.</span>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M3 8 H21 V16 H3 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><circle cx="6" cy="12" r="1.5" fill="#6b7a7d"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M12 6 V18" stroke="#6b7a7d" stroke-width="2"/><path d="M6 10 H18" stroke="#6b7a7d" stroke-width="2"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 17 L18 7" stroke="#6b7a7d" stroke-width="2"/></svg>
</div>
</div>
<!-- Card 3 -->
<div class="card">
<div class="tag-row">
<div class="tag flix">FlixBus</div>
<div class="tag grey">Greyhound</div>
</div>
<div class="detail-row">
<div class="time-col">
<div class="time">5:55<span class="ampm">PM</span></div>
<div class="time">8:10<span class="ampm">AM +2</span></div>
</div>
<svg class="route-icon" viewBox="0 0 6 100">
<circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
<rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
<circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
</svg>
<div style="flex:1">
<div class="place">Hamilton (McMaster)</div>
<div class="place">Henrico</div>
</div>
<svg class="chev" width="44" height="44" viewBox="0 0 24 24">
<path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="divider"></div>
<div class="info-row">
<div class="pill">
<svg width="30" height="30" viewBox="0 0 24 24">
<path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="8" cy="9" r="3" fill="#3c4d50"/>
</svg>
<span>4 transfers</span>
<svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
</div>
<div class="price-area">
<div>
<div class="alert">Almost full</div>
<div class="price">$223<small>.02</small></div>
<div class="per">per person</div>
</div>
<div class="circle-btn">
<svg width="50" height="50" viewBox="0 0 24 24">
<path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
<div class="meta">
<span>38:15 Hrs.</span>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M5 18 H19" stroke="#6b7a7d" stroke-width="2"/><circle cx="8" cy="12" r="2" fill="#6b7a7d"/><circle cx="12" cy="12" r="2" fill="#6b7a7d"/><circle cx="16" cy="12" r="2" fill="#6b7a7d"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M8 6 H16 V14 H8 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><path d="M10 18 H14" stroke="#6b7a7d" stroke-width="2"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 17 L18 7" stroke="#6b7a7d" stroke-width="2"/></svg>
</div>
</div>
<!-- Card 4 -->
<div class="card">
<div class="tag-row">
<div class="tag flix">FlixBus</div>
<div class="tag grey">Greyhound</div>
</div>
<div class="detail-row">
<div class="time-col">
<div class="time">8:50<span class="ampm">PM</span></div>
<div class="time">7:45<span class="ampm">PM +1</span></div>
</div>
<svg class="route-icon" viewBox="0 0 6 100">
<circle cx="3" cy="20" r="3" fill="#8D9AA0"/>
<rect x="2.5" y="20" width="1" height="60" fill="#BFC7CC"/>
<circle cx="3" cy="80" r="3" fill="#8D9AA0"/>
</svg>
<div style="flex:1">
<div class="place">Hamilton (McMaster)</div>
<div class="place">Richmond Bus Station</div>
</div>
<svg class="chev" width="44" height="44" viewBox="0 0 24 24">
<path d="M6 9 L12 15 L18 9" stroke="#6b7a7d" stroke-width="2.5" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="divider"></div>
<div class="info-row">
<div class="pill">
<svg width="30" height="30" viewBox="0 0 24 24">
<path d="M5 20 L8 13 L11 20" stroke="#3c4d50" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="8" cy="9" r="3" fill="#3c4d50"/>
</svg>
<span>3 transfers</span>
<svg width="28" height="28" viewBox="0 0 24 24"><path d="M6 9 L18 9" stroke="#3c4d50" stroke-width="2"/><path d="M6 15 L18 15" stroke="#3c4d50" stroke-width="2"/></svg>
</div>
<div class="price-area">
<div>
<div class="alert">Only 4 seats available!</div>
<div class="price">$214<small>.10</small></div>
<div class="per">per person</div>
</div>
<div class="circle-btn">
<svg width="50" height="50" viewBox="0 0 24 24">
<path d="M9 6 L15 12 L9 18" stroke="#fff" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
<div class="meta">
<span>22:55 Hrs.</span>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M3 8 H21 V16 H3 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><circle cx="6" cy="12" r="1.5" fill="#6b7a7d"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M6 6 H18 V12 H6 Z" fill="none" stroke="#6b7a7d" stroke-width="2"/><path d="M10 12 V18" stroke="#6b7a7d" stroke-width="2"/></svg>
<svg width="34" height="34" viewBox="0 0 24 24"><path d="M5 19 L19 5" stroke="#6b7a7d" stroke-width="2"/></svg>
</div>
</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html>