左浮不生效,价格颜色也不生效
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>商品列表</title>
</head>
<style>
body{
background-color: white;
}
a{
text-decoration: none;
}
.product .product-container{
margin: 10px 15px;
background-color: white;
border-radius: 6px;
}
.product .product-tit{
font-size: 17px;
font-weight: 700;
line-height: 24px;
color: black;
padding-top: 10px;
margin: 0 10px;
}
.product .product-tit .product-tit-decs{
font-size: 12px;
color: #999;
font-weight: normal;
}
.product .product-tit .more{
font-size: 12px;
color: #999;
font-weight: normal;
float:right;
}
.product .product-tit .more::after{
content: ">";
display: inline;
font-size: 16px;
}
.product .product-content{
margin: 0 14px;
}
.product .product-item{
overflow: hidden;
}
.product .product-item .thumb{
width: 93px;
height: 93px;
float: left;
}
.product .product-item .thumb img{
display: inline-block;
width: 100%;
height: 100%;
}
.product .product-item .info{
padding: 0 8px 0 8px;
}
.product .product-item .info .name{
font-size: 14px;
color: #222;
font-weight: normal;
margin: 0;
}
.product .product-item .info .price span{
font-size: 13px;
color: #f50808;
font-weight: 0;
}
.product .product-item .info .price i{
font-style: normal;
font-size: 14px;
}
</style>
<body>
<div class="product">
<div class="product-container">
<div class="product-tit">促销精品
<span class="product-tit-decs">诚意推荐品质商品</span>
<a href="" class="more">更多</a>
</div>
<div class="product-content">
<div class="product-item">
<div class="thumb">
<img src="https://m.360buyimg.com/seckillcms/jfs/t1/243337/31/19356/139292/66f76f93F7a53f83b/dea172897c4da9b5.png"></div>
</div>
<div class="info">
<h3 class="name">京鲜生 四川爱媛38号果冻橙4.5-5斤 单果65mm起 生鲜水果 源头直发包邮</h3>
<div class="price">
<span><i>¥</i>19.9</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>