如何制作这个效果图呢

img


<!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>
    * {
      margin: 0;
      padding: 0;
    }

    div {
      margin: 0 auto;
      width: 85px;
    }

    li {
      list-style: none;
    }

    .up {
      background-color: #493f36;
    }

    .up ul {
      text-align: center;
      font-weight: 700;
      color: #005663;
    }

    .up ul li {
      height: 30px;
      line-height: 30px;
      border-bottom: 2px solid #36475d;
    }

    .up ul .last {
      border-bottom: none;
    }

    .down {
      background-color: #ccc07e;
    }

    .down ul {
      color: #525448;
    }

    .down ul li {
      padding-left: 10px;
      height: 25px;
      line-height: 25px;
    }

    .down ul {
      box-shadow: 0 5px 10px -5px rgba(0, 0, 0, .6);

    }
  </style>
</head>

<body>

  <div class="up">
    <ul>
      <li>君王好友</li>
      <li>三国好友</li>
      <li>美女好友</li>
      <li>IT好友</li>
    </ul>
  </div>

  <div class="down">
    <ul>
      <li>马云</li>
      <li>李开复</li>
      <li>俞敏洪</li>
      <li class="last">黎活命</li>
    </ul>
  </div>
</body>

</html>

效果图

img