<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>产品卡片</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #f1f1f1;
}
.product{
margin: 50px auto;
padding-top: 27px;
background-color: #ffffff;
width: 187px;
height: 212px;
text-align: center;
}
.product h4{
margin-top: 14px;
margin-bottom: 16px;
font-size: 12px;
color: #574459;
font-weight: 400;
}
.product p{
font-size: 8px;
color: #8d8a85;
}
</style>
</head>
<body>
<div class="product">
<img src="../images/抖音直播SDK.png">
<h4>抖音直播SDK</h4>
<p>包含抖音直播看播内容</p>
</div>
</body>
</html>
![image]()