|
@@ -0,0 +1,70 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en">
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>Document</title>
|
|
|
+ <style>
|
|
|
+ body{
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ }
|
|
|
+ .nav-content{
|
|
|
+ background-color: #007bff;
|
|
|
+ padding: 20px 0 20px 20px;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ }
|
|
|
+ .nav-content span{
|
|
|
+ color: #fff;
|
|
|
+ font-size: 35px;
|
|
|
+ font-weight: bolder;
|
|
|
+ }
|
|
|
+ .card-list .card-item img{
|
|
|
+ width: 200px;
|
|
|
+ }
|
|
|
+ .card-list .card-item{
|
|
|
+ background-color: #fff;
|
|
|
+ padding: 20px;
|
|
|
+ /* border:1px solid black; */
|
|
|
+ margin:0 20px 20px 20px;
|
|
|
+ box-shadow: 0 0 5px #aaa;
|
|
|
+ }
|
|
|
+ .card-list .card-price{
|
|
|
+ color: #ff5722;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div class="contianer">
|
|
|
+ <div class="nav-content">
|
|
|
+ <span>商品推荐导购</span>
|
|
|
+ </div>
|
|
|
+ <div class="card-list">
|
|
|
+ <!-- 商品卡部分 -->
|
|
|
+ <div class="card-item">
|
|
|
+ <img src="./img/img2.png" alt="手机">
|
|
|
+ <h3>智能手表</h3>
|
|
|
+ <p>功能丰富,精准监测健康。</p>
|
|
|
+ <p class="card-price">¥699</p>
|
|
|
+ </div>
|
|
|
+ <div class="card-item">
|
|
|
+ <img src="./img/img2.png" alt="手机">
|
|
|
+ <h3>智能手表</h3>
|
|
|
+ <p>功能丰富,精准监测健康。</p>
|
|
|
+ <p class="card-price">¥699</p>
|
|
|
+ </div>
|
|
|
+ <div class="card-item">
|
|
|
+ <img src="./img/img2.png" alt="手机">
|
|
|
+ <h3>智能手表</h3>
|
|
|
+ <p>功能丰富,精准监测健康。</p>
|
|
|
+ <p class="card-price">¥699</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="info-content">
|
|
|
+ <span>
|
|
|
+ 版权所有 © 2024 商品推荐导购网站
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+</html>
|