87 lines
2.6 KiB
HTML
87 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=1000, height=1000">
|
|
<title>购买须知 - 飞牛NAS 亚克力机箱-单</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
width: 1000px;
|
|
height: 1000px;
|
|
font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
|
|
background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 50%, #80cbc4 100%);
|
|
padding: 40px;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(255, 255, 255, 0.85);
|
|
border-radius: 20px;
|
|
padding: 60px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.1), inset 0 0 100px rgba(255,255,255,0.5);
|
|
backdrop-filter: blur(10px);
|
|
border: 2px solid rgba(255,255,255,0.6);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
.title {
|
|
font-size: 60px;
|
|
font-weight: bold;
|
|
color: #00695c;
|
|
text-align: center;
|
|
margin-bottom: 60px;
|
|
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
|
|
}
|
|
.notice-box {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
border-radius: 15px;
|
|
padding: 40px;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
|
border: 1px solid rgba(38,166,154,0.3);
|
|
}
|
|
.notice-title {
|
|
font-size: 32px;
|
|
color: #00796b;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
padding-bottom: 15px;
|
|
border-bottom: 2px solid #b2dfdb;
|
|
}
|
|
.notice-content {
|
|
font-size: 26px;
|
|
color: #004d40;
|
|
line-height: 1.8;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="title">购买须知</div>
|
|
|
|
<div class="notice-box">
|
|
<div class="notice-title">
|
|
📦 关于亚克力机箱
|
|
</div>
|
|
<div class="notice-content">
|
|
亚克力机箱需要自己组装,店铺会提供安装视频
|
|
</div>
|
|
</div>
|
|
|
|
<div class="notice-box">
|
|
<div class="notice-title">
|
|
💰 关于产品
|
|
</div>
|
|
<div class="notice-content">
|
|
受成本限制,产品无法做到十全十美,完美主义者慎拍
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|