deepseek 写的网站建设中的页面
This commit is contained in:
@@ -0,0 +1,310 @@
|
||||
<!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;
|
||||
font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #333;
|
||||
line-height: 1.6;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
width: 100%;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
|
||||
padding: 50px 40px;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.container::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 700;
|
||||
color: #2c3e50;
|
||||
margin-bottom: 10px;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 1.1rem;
|
||||
color: #7f8c8d;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.construction-icon {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin: 0 auto 30px;
|
||||
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
|
||||
}
|
||||
|
||||
.construction-icon svg {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
fill: white;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.8rem;
|
||||
color: #2c3e50;
|
||||
margin-bottom: 20px;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.message {
|
||||
font-size: 1.3rem;
|
||||
color: #5a6c7d;
|
||||
margin-bottom: 30px;
|
||||
max-width: 600px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: #3498db;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
background: #f8f9fa;
|
||||
border-radius: 12px;
|
||||
padding: 25px;
|
||||
margin: 40px 0;
|
||||
border-left: 4px solid #3498db;
|
||||
}
|
||||
|
||||
.contact-info h3 {
|
||||
color: #2c3e50;
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
.contact-info p {
|
||||
margin-bottom: 10px;
|
||||
color: #5a6c7d;
|
||||
}
|
||||
|
||||
.social-links {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.social-link {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 50%;
|
||||
background: #f1f2f6;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
color: #5a6c7d;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.social-link:hover {
|
||||
transform: translateY(-5px);
|
||||
background: #3498db;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.countdown {
|
||||
margin-top: 40px;
|
||||
background: #f8f9fa;
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.countdown h3 {
|
||||
color: #2c3e50;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.timer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.timer-item {
|
||||
background: white;
|
||||
padding: 15px;
|
||||
border-radius: 10px;
|
||||
min-width: 80px;
|
||||
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
||||
}
|
||||
|
||||
.timer-value {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
color: #3498db;
|
||||
}
|
||||
|
||||
.timer-label {
|
||||
font-size: 0.9rem;
|
||||
color: #7f8c8d;
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 40px;
|
||||
color: #95a5a6;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.container {
|
||||
padding: 30px 20px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.2rem;
|
||||
}
|
||||
|
||||
.message {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.construction-icon {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
.construction-icon svg {
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
|
||||
.timer {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="logo">LOGO</div>
|
||||
<p class="tagline">创新 · 品质 · 服务</p>
|
||||
|
||||
<div class="construction-icon">
|
||||
<svg viewBox="0 0 24 24">
|
||||
<path d="M21.03 3L18 20.29c-.17.97-1 1.71-2 1.71H8c-1 0-1.83-.74-2-1.71L2.97 3H1V1h4c.55 0 1 .45 1 1s-.45 1-1 1H4.03l1.31 7.59c.15.88.91 1.56 1.81 1.65V19h10v-7.76c.9-.09 1.66-.77 1.81-1.65L19.97 5H19c-.55 0-1-.45-1-1s.45-1 1-1h4v2h-1.97zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z"/>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<h1>网站正在建设中</h1>
|
||||
|
||||
<p class="message">
|
||||
我们正在全力以赴打造一个<span class="highlight">更好的在线体验</span>。请稍后再来访问,精彩即将呈现!
|
||||
</p>
|
||||
|
||||
<div class="contact-info">
|
||||
<h3>联系我们</h3>
|
||||
<p>邮箱: contact@example.com</p>
|
||||
<p>电话: +86 123 4567 8900</p>
|
||||
<p>地址: 北京市朝阳区某某街道123号</p>
|
||||
</div>
|
||||
|
||||
<div class="social-links">
|
||||
<a href="#" class="social-link">
|
||||
<svg viewBox="0 0 24 24" width="24" height="24">
|
||||
<path d="M18.77,7.46H14.5v-1.9c0-.9.6-1.1,1-1.1h3V.5h-4.33C10.24.5,9.5,3.44,9.5,5.32v2.15h-3v4h3v12h5v-12h3.85l.42-4Z"/>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="#" class="social-link">
|
||||
<svg viewBox="0 0 24 24" width="24" height="24">
|
||||
<path d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z"/>
|
||||
</svg>
|
||||
</a>
|
||||
<a href="#" class="social-link">
|
||||
<svg viewBox="0 0 24 24" width="24" height="24">
|
||||
<path d="M7.8,2H16.2C19.4,2 22,4.6 22,7.8V16.2A5.8,5.8 0 0,1 16.2,22H7.8C4.6,22 2,19.4 2,16.2V7.8A5.8,5.8 0 0,1 7.8,2M7.6,4A3.6,3.6 0 0,0 4,7.6V16.4C4,18.39 5.61,20 7.6,20H16.4A3.6,3.6 0 0,0 20,16.4V7.6C20,5.61 18.39,4 16.4,4H7.6M17.25,5.5A1.25,1.25 0 0,1 18.5,6.75A1.25,1.25 0 0,1 17.25,8A1.25,1.25 0 0,1 16,6.75A1.25,1.25 0 0,1 17.25,5.5M12,7A5,5 0 0,1 17,12A5,5 0 0,1 12,17A5,5 0 0,1 7,12A5,5 0 0,1 12,7M12,9A3,3 0 0,0 9,12A3,3 0 0,0 12,15A3,3 0 0,0 15,12A3,3 0 0,0 12,9Z"/>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="countdown">
|
||||
<h3>预计上线时间</h3>
|
||||
<div class="timer">
|
||||
<div class="timer-item">
|
||||
<div class="timer-value" id="days">30</div>
|
||||
<div class="timer-label">天</div>
|
||||
</div>
|
||||
<div class="timer-item">
|
||||
<div class="timer-value" id="hours">12</div>
|
||||
<div class="timer-label">小时</div>
|
||||
</div>
|
||||
<div class="timer-item">
|
||||
<div class="timer-value" id="minutes">45</div>
|
||||
<div class="timer-label">分钟</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
<p>© 2023 公司名称. 保留所有权利.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// 简单的倒计时效果
|
||||
function updateCountdown() {
|
||||
const targetDate = new Date();
|
||||
targetDate.setDate(targetDate.getDate() + 30); // 设置为30天后
|
||||
|
||||
const now = new Date();
|
||||
const diff = targetDate - now;
|
||||
|
||||
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
|
||||
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
|
||||
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
|
||||
|
||||
document.getElementById('days').textContent = days;
|
||||
document.getElementById('hours').textContent = hours;
|
||||
document.getElementById('minutes').textContent = minutes;
|
||||
}
|
||||
|
||||
// 初始更新
|
||||
updateCountdown();
|
||||
|
||||
// 每分钟更新一次
|
||||
setInterval(updateCountdown, 60000);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user