98 lines
3.2 KiB
HTML
98 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=1000, height=1000">
|
|
<title>商品实拍图 - 亚克力机箱-单</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: 50px;
|
|
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);
|
|
}
|
|
.title {
|
|
font-size: 56px;
|
|
font-weight: bold;
|
|
color: #00695c;
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
text-shadow: 0 2px 10px rgba(0,105,92,0.2);
|
|
}
|
|
.image-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
height: calc(100% - 96px);
|
|
}
|
|
.image-box {
|
|
background: rgba(255, 255, 255, 0.9);
|
|
border-radius: 15px;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
|
|
border: 1px solid rgba(38,166,154,0.3);
|
|
}
|
|
.image-box img {
|
|
width: 100%;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
}
|
|
.image-label {
|
|
padding: 20px 15px 15px;
|
|
text-align: center;
|
|
font-size: 24px;
|
|
color: #00796b;
|
|
font-weight: bold;
|
|
background: rgba(255,255,255,0.95);
|
|
margin-top: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="title">商品实拍图</div>
|
|
|
|
<div class="image-grid">
|
|
<div class="image-box">
|
|
<img src="image/正面.jpg" alt="正面视图">
|
|
<div class="image-label">正面视图</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<img src="image/侧面.jpg" alt="侧面视图">
|
|
<div class="image-label">侧面视图</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<img src="image/俯视图.jpg" alt="俯视图">
|
|
<div class="image-label">俯视图</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<img src="image/底面.jpg" alt="底面视图">
|
|
<div class="image-label">底面视图</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<img src="image/接口.jpg" alt="接口细节">
|
|
<div class="image-label">接口细节</div>
|
|
</div>
|
|
<div class="image-box">
|
|
<img src="image/竖放.jpg" alt="竖放展示">
|
|
<div class="image-label">竖放展示</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|