12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <!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>
- .goods-card{
- width: 234px;
- box-shadow: 0 0 5px gray;
- margin: 100px auto;
- padding-bottom: 30px;
- }
- .goods-pic img{
- width: 234px;
- }
- .goods-title,.goods-info,.goods-price{
- padding:0 10px;
- }
- .goods-title{
- color: #333;
- font-size: 14px;
- font-weight: 400;
- text-align: center;
- margin-bottom: 2px;
- }
- .goods-info{
- font-size: 12px;
- color: #b0b0b0;
- overflow: hidden;
- text-overflow: ellipsis;
- text-wrap: nowrap;
- margin-bottom: 10px;
- }
- .goods-price{
- text-align: center;
- }
- .goods-price span{
- color: #ff6700;
- font-size: 14px;
- font-weight: 400;
- }
- .goods-price del{
- color: #b0b0b0;
- font-size: 14px;
- font-weight: 400;
- }
- </style>
- </head>
- <body>
- <div class="goods-card">
- <div class="goods-pic">
- <img src="./image/phone.png" alt="phone">
- </div>
- <div class="goods-title">
- <span>REDMI K80</span>
- </div>
- <div class="goods-info">
- 第三代骁龙8|2K新国屏|6550mAh 超长续航
- </div>
- <div class="goods-price">
- <span>2299元起</span>
- <del>2499元</del>
- </div>
- </div>
- </body>
- </html>
|