e-scooter-rental-web/public/article-cover.html

179 lines
5.0 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>外卖骑手选车攻略</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
width: 1200px;
height: 800px;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
/* 背景装饰 */
.bg-decoration {
position: absolute;
width: 100%;
height: 100%;
}
.circle {
position: absolute;
border-radius: 50%;
opacity: 0.1;
}
.circle1 {
width: 400px;
height: 400px;
background: #e94560;
top: -100px;
right: -100px;
}
.circle2 {
width: 300px;
height: 300px;
background: #00d9ff;
bottom: -50px;
left: -50px;
}
.circle3 {
width: 200px;
height: 200px;
background: #ffd700;
top: 50%;
left: 10%;
opacity: 0.05;
}
/* 主内容 */
.content {
text-align: center;
z-index: 10;
padding: 40px;
}
.badge {
display: inline-block;
background: linear-gradient(90deg, #e94560, #ff6b6b);
color: white;
padding: 8px 24px;
border-radius: 30px;
font-size: 18px;
font-weight: 600;
margin-bottom: 30px;
letter-spacing: 4px;
}
.title {
font-size: 72px;
font-weight: 800;
color: white;
margin-bottom: 20px;
text-shadow: 0 4px 20px rgba(0,0,0,0.3);
line-height: 1.2;
}
.title span {
background: linear-gradient(90deg, #ffd700, #ffaa00);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle {
font-size: 28px;
color: rgba(255,255,255,0.7);
margin-bottom: 40px;
letter-spacing: 8px;
}
.tags {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.tag {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
color: rgba(255,255,255,0.8);
padding: 10px 20px;
border-radius: 8px;
font-size: 16px;
}
/* 底部信息 */
.footer {
position: absolute;
bottom: 40px;
display: flex;
align-items: center;
gap: 20px;
z-index: 10;
}
.logo {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #e94560, #ff6b6b);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
}
.account-name {
color: rgba(255,255,255,0.6);
font-size: 18px;
}
/* 装饰图标 */
.icons {
position: absolute;
width: 100%;
height: 100%;
z-index: 1;
}
.icon {
position: absolute;
font-size: 60px;
opacity: 0.15;
}
.icon1 { top: 15%; right: 20%; transform: rotate(15deg); }
.icon2 { bottom: 20%; right: 15%; transform: rotate(-10deg); }
.icon3 { top: 30%; left: 10%; transform: rotate(-5deg); }
</style>
</head>
<body>
<div class="bg-decoration">
<div class="circle circle1"></div>
<div class="circle circle2"></div>
<div class="circle circle3"></div>
</div>
<div class="icons">
<div class="icon icon1">🛵</div>
<div class="icon icon2">🚴</div>
<div class="icon icon3"></div>
</div>
<div class="content">
<div class="badge">2026最新版</div>
<h1 class="title">外卖骑手<br><span>选车攻略</span></h1>
<p class="subtitle">跑单三年经验总结</p>
<div class="tags">
<span class="tag">🚴 租车攻略</span>
<span class="tag">💰 性价比</span>
<span class="tag">⚠️ 避坑指南</span>
<span class="tag">🛠 保养技巧</span>
</div>
</div>
<div class="footer">
<div class="logo">🦞</div>
<span class="account-name">飞达租赁</span>
</div>
</body>
</html>