AndroidCode / code /10156 /10156_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
5.7 kB
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Galapagos Southern Loop</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #0b3b6f;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #fff;
}
/* Top app bar */
.appbar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 140px;
background: #1f4f86;
display: flex;
align-items: center;
padding: 0 32px;
box-sizing: border-box;
}
.appbar .icon {
width: 72px;
height: 72px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 24px;
opacity: 0.95;
}
.appbar .spacer { flex: 1; }
.appbar .close {
font-size: 44px;
font-weight: 600;
letter-spacing: 0.5px;
}
.divider-line {
position: absolute;
top: 140px;
left: 0;
width: 1080px;
height: 6px;
background: #dcdcdc;
opacity: 0.5;
}
/* Hero and content background */
.hero {
position: absolute;
top: 146px;
left: 0;
width: 1080px;
height: 2254px;
color: #fff;
}
.bg-photo {
position: absolute;
inset: 0;
background: #E0E0E0;
border-top: 1px solid #BDBDBD;
border-bottom: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 36px;
letter-spacing: 1px;
}
.bg-overlay {
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 25%, rgba(0,0,0,0.6) 100%);
}
.hero-header {
position: absolute;
top: 24px;
left: 0;
width: 100%;
padding: 40px 48px 10px;
box-sizing: border-box;
}
.hero-header .mini-close {
position: absolute;
right: 40px;
top: 18px;
font-size: 34px;
font-weight: 700;
letter-spacing: 2px;
opacity: 0.9;
}
.tag {
font-size: 42px;
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 18px;
text-transform: uppercase;
}
.title {
font-size: 86px;
font-weight: 800;
line-height: 1.1;
margin-bottom: 18px;
}
.subtitle {
font-size: 40px;
letter-spacing: 1px;
opacity: 0.95;
}
/* Itinerary list */
.list {
position: absolute;
left: 0;
top: 360px;
width: 100%;
padding: 0 48px 60px;
box-sizing: border-box;
}
.entry {
padding: 34px 0 34px;
border-bottom: 4px solid rgba(255,255,255,0.35);
}
.dayline {
font-size: 46px;
font-weight: 800;
margin-bottom: 20px;
}
.location {
font-size: 48px;
font-weight: 700;
margin-bottom: 10px;
}
.note {
font-size: 40px;
font-style: italic;
opacity: 0.95;
}
/* bottom gesture handle mimic */
.gesture {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 12px;
background: rgba(255,255,255,0.7);
border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top App Bar -->
<div class="appbar">
<div class="icon">
<svg width="56" height="56" viewBox="0 0 24 24" fill="#ffffff">
<path d="M15.5 19.5L8 12l7.5-7.5v15z"/>
</svg>
</div>
<div class="icon">
<svg width="56" height="56" viewBox="0 0 24 24" fill="#ffffff">
<path d="M8.5 4.5L16 12l-7.5 7.5v-15z"/>
</svg>
</div>
<div class="spacer"></div>
<div class="close">Close</div>
</div>
<div class="divider-line"></div>
<!-- Hero area and content -->
<div class="hero">
<div class="bg-photo">[IMG: Ocean Background]</div>
<div class="bg-overlay"></div>
<div class="hero-header">
<div class="mini-close">CLOSE</div>
<div class="tag">7 NIGHTS</div>
<div class="title">Galapagos Southern Loop</div>
<div class="subtitle">ONBOARD CELEBRITY XPEDITION</div>
</div>
<div class="list">
<div class="entry">
<div class="dayline">Day 1, Sat, Apr 6, 2024</div>
<div class="location">BALTRA (GALAPAGOS)</div>
<div class="note">Departs: 3:00PM</div>
</div>
<div class="entry">
<div class="dayline">Day 1, Sat, Apr 6, 2024</div>
<div class="location">NORTH SEYMOUR ISLAND</div>
<div class="note">Tendered: 3:30PM to 6:00PM</div>
</div>
<div class="entry">
<div class="dayline">Day 2, Sun, Apr 7, 2024</div>
<div class="location">SOUTH PLAZA (SANTA CRUZ)</div>
<div class="note">Tendered: 7:00AM to 11:30AM</div>
</div>
<div class="entry">
<div class="dayline">Day 2, Sun, Apr 7, 2024</div>
<div class="location">SANTA FE ISLAND</div>
<div class="note">Tendered: 3:00PM to 6:00PM</div>
</div>
<div class="entry">
<div class="dayline">Day 3, Mon, Apr 8, 2024</div>
<div class="location">PUNTA PITT (SAN CRISTOBAL)</div>
<div class="note">Tendered: 7:00AM to 11:30AM</div>
</div>
<div class="entry">
<div class="dayline">Day 3, Mon, Apr 8, 2024</div>
<div class="location">PUERTO BAQUERIZO (CRISTOBAL)</div>
<div class="note">Tendered: 3:00PM to 6:00PM</div>
</div>
<div class="entry">
<div class="dayline">Day 4, Tue, Apr 9, 2024</div>
<div class="location">BAHIA POST OFFICE (FLOREANA)</div>
<div class="note">Tendered: 7:00AM to 11:30AM</div>
</div>
</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html>