<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
*{
margin: 0;
padding: 0;
}
a{/* 全局控制页面中所有的a标签 */
text-decoration: none;/* 去掉下划线 */
}
.sp{
display: inline-block;
width: 275px;
height: 400px;
border: 1px solid red;
margin-right: 10px;
text-align: center;/* 文字水平居中 */
}
.sp img{
width: 249px;
height: 249px;
}
.sp h6{
font-size: 20px;
color: black;
}
.sp p{
font-size: 16px;
}
.sp .font1{
color: gray;
margin: 5px 0;
}
.sp .font2{
color: orangered;
}
</style>
</head>
<body>
<a class="sp" href="#">
<img src="img/top.png" />
<h6>xiaomi 15</h6>
<p class="font1">徕卡</p>
<p class="font2">6499元起</p>
</a>
<a class="sp" href="#">
<img src="img/tp2.png" />
<h6>REDMI Turbo 4</h6>
<p class="font1">REDMI Turbo 4好看又能打</p>
<p class="font2">1999元起</p></a>
<a class="sp" href="#">
<img src="img/tp3.png" />
<h6>Redmi 14C</h6>
<p class="font1">持久续航</p>
<p class="font2">499元起</p></a>
<a class="sp" href="#">
<img src="img/tp4.png" />
<h6>REDMI K80 Pro</h6>
<p class="font1">晓龙8至尊版|2K新国屏|全焦段影像</p>
<p class="font2">6499元起</p></a>
</body>
</html>