85 lines
2.7 KiB
HTML
85 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=1000, height=1000">
|
|
<title>商品实拍图 - 3.5金属大</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, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
|
|
padding: 40px;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg, #3a3a3a 0%, #4a4a4a 100%);
|
|
border-radius: 20px;
|
|
padding: 50px;
|
|
box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 2px 0 rgba(255,255,255,0.1);
|
|
border: 1px solid #555;
|
|
}
|
|
.title {
|
|
font-size: 56px;
|
|
font-weight: bold;
|
|
color: #ecf0f1;
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
text-shadow: 0 2px 10px rgba(0,0,0,0.5);
|
|
}
|
|
.image-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 30px;
|
|
height: calc(100% - 96px);
|
|
}
|
|
.image-box {
|
|
background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
|
|
border-radius: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 30px;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
|
|
border: 1px solid #444;
|
|
}
|
|
.image-placeholder {
|
|
font-size: 120px;
|
|
margin-bottom: 20px;
|
|
}
|
|
.image-label {
|
|
font-size: 28px;
|
|
color: #bdc3c7;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="title">商品实拍图</div>
|
|
|
|
<div class="image-grid">
|
|
<div class="image-box">
|
|
<div class="image-placeholder">📷</div>
|
|
<div class="image-label">正面展示</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<div class="image-placeholder">📷</div>
|
|
<div class="image-label">侧面展示</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<div class="image-placeholder">📷</div>
|
|
<div class="image-label">内部结构</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<div class="image-placeholder">📷</div>
|
|
<div class="image-label">硬盘位展示</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |