视频:https://www.bilibili.com/video/BV1pE411q7FU?p=160

    1. <em>|<em>

    style
    写上: font-style: normal;

    <!DOCTYPE html>
    <html lang="en">
    
    <head>
      <meta charset="UTF-8">
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta name="viewport" content="width=device-width, initial-scale=1.0">
      <title>Document</title>
    
      <style>
        body {
          background-color: #f3f6f2;
        }
    
        * {
          padding: 0;
          margin: 0;
        }
    
        .box {
          margin: 0 auto; 
          width: 416px;
          height: 584px;
          background-color: #fcfffc;
        }
    
        .review {
          padding-left: 38px;
          margin-top: 45px;
        }
    
        .appraise {
          margin-left: 38px;
          margin-top: 74px;
          color: #c8c8c6;
        }
    
        .info {
          margin-left: 38px;
          margin-top: 24px;
        }
    
        .info span {
          color: #d49b67;
        }
    
        .info em {
          font-style: normal;
          color: #ebe4e0;
        }
    
        .info h4 {
          display: inline-block;
          font-size: 14px;
          font-weight: 400;
        }
      </style>
    </head>
    
    <body>
      <div class="box">
        <img src="demo.png" alt="">
        <p class="review">快递牛,整体不错蓝牙可以说秒连。红米给力</p>
        <div class="appraise">来自于117384232的评价</div>
        <div class="info">
          <h4>Redmi AriDots真无线蓝牙...</h4>
          <em>|</em>
          <span>99.9元</span>
        </div>
      </div>
    </body>
    
    </html>
    

    效果图
    image.png