AndroidCode / code /10157 /10157_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
5.51 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Estée Lauder - Mobile UI Mock</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Georgia", "Times New Roman", serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
box-sizing: border-box;
}
/* Top promo banner */
.promo-banner {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 140px;
background: #0b1338;
color: #e8ebff;
}
.promo-banner .label {
position: absolute;
top: 48px;
left: 0;
width: 100%;
text-align: center;
font-size: 44px;
letter-spacing: 1px;
text-decoration: underline;
}
.promo-banner .close {
position: absolute;
right: 36px;
top: 36px;
width: 64px;
height: 64px;
}
.promo-banner .close svg { width: 64px; height: 64px; stroke: #cfd4ff; stroke-width: 8; }
/* Header */
.header {
position: absolute;
top: 140px;
left: 0;
width: 1080px;
height: 190px;
background: #ffffff;
border-bottom: 2px solid #e9edf5;
}
.header .left,
.header .right {
position: absolute;
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
gap: 20px;
}
.header .left { left: 36px; }
.header .right { right: 36px; color: #0b1338; font-size: 36px; font-family: Arial, Helvetica, sans-serif; }
.header .brand {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -45%);
font-size: 84px;
letter-spacing: 6px;
color: #0b1338;
}
.icon-btn svg { width: 72px; height: 72px; stroke: #0b1338; stroke-width: 8; fill: none; }
.cart svg { width: 70px; height: 70px; stroke: #0b1338; stroke-width: 8; fill: none; }
/* Content area with spinner */
.content {
position: absolute;
top: 330px;
left: 0;
width: 1080px;
height: 900px;
background: #ffffff;
}
.spinner {
position: absolute;
top: 280px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 100px;
border-radius: 50%;
border: 8px solid #cfd4db;
border-top-color: #0b1338;
animation: spin 1.2s linear infinite;
}
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
/* Footer sections */
.footer {
position: absolute;
top: 1230px;
left: 0;
width: 1080px;
height: 1040px;
background: #0b1338;
color: #dfe5ff;
}
.footer h2 {
margin: 50px 48px 20px;
font-size: 64px;
font-weight: normal;
}
.list {
margin: 10px 0 0;
padding: 0;
list-style: none;
border-top: 1px solid #151c4f;
border-bottom: 1px solid #151c4f;
}
.list li {
padding: 42px 48px;
font-size: 44px;
border-top: 1px solid #151c4f;
color: #cbd1ff;
}
.list li:first-child { border-top: none; }
.footer .about h2 { margin-top: 70px; }
/* Bottom action bar */
.bottom-actions {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 120px;
background: rgba(10, 19, 56, 0.95);
border-top: 1px solid #1b2158;
display: flex;
align-items: center;
justify-content: center;
gap: 60px;
}
.action-btn {
padding: 18px 40px;
color: #f3f6ff;
font-size: 40px;
letter-spacing: 2px;
border: 2px solid #2a3170;
border-radius: 8px;
}
.divider {
width: 2px;
height: 60px;
background: #2a3170;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top Promotion Banner -->
<div class="promo-banner">
<div class="label">CHOOSE NOW</div>
<div class="close">
<svg viewBox="0 0 24 24">
<line x1="4" y1="4" x2="20" y2="20"></line>
<line x1="20" y1="4" x2="4" y2="20"></line>
</svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="left">
<div class="icon-btn">
<!-- Hamburger -->
<svg viewBox="0 0 24 24">
<line x1="3" y1="6" x2="21" y2="6"></line>
<line x1="3" y1="12" x2="21" y2="12"></line>
<line x1="3" y1="18" x2="21" y2="18"></line>
</svg>
</div>
</div>
<div class="brand">ESTÉE LAUDER</div>
<div class="right">
<div>SIGN IN</div>
<div class="cart">
<svg viewBox="0 0 24 24">
<path d="M6 6h15l-2 10H8L6 6z"></path>
<circle cx="9" cy="19" r="1.5"></circle>
<circle cx="17" cy="19" r="1.5"></circle>
</svg>
</div>
</div>
</div>
<!-- Content area with loader -->
<div class="content">
<div class="spinner"></div>
</div>
<!-- Footer & Help Section -->
<div class="footer">
<h2>Need Help?</h2>
<ul class="list">
<li>Track My Order</li>
<li>Shipping Info</li>
<li>Returns &amp; Exchanges</li>
<li>FAQs</li>
<li>Account Sign-Up / Login</li>
<li>1.877.311.3883</li>
</ul>
<div class="about">
<h2>About Estée Lauder</h2>
<ul class="list">
<li>Estée Lauder, Our Founder</li>
<li>Commitments</li>
<li>Corporate Info</li>
<li>Ingredient Glossary</li>
</ul>
</div>
</div>
<!-- Bottom action bar -->
<div class="bottom-actions">
<div class="action-btn">JOIN LOYALTY</div>
<div class="divider"></div>
<div class="action-btn">OFFERS</div>
</div>
</div>
</body>
</html>