* {
  margin: 0;
  padding: 0;
  font-size: 14px;
  list-style: none;
}

main {
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}

header {
  height: 70px;
  border-bottom: 1px solid #fbbc70;
}

header main {
  display: flex;
  align-items: center;
}

header .logo {
  width: 50px;
  height: 50px;
  border-radius: 6px;
}

header p {
  margin-left: 12px;
  font-size: 28px;
  font-weight: bold;
}

.body {
  padding-top: 36px;
}

.body .title {
  font-size: 36px;
  margin: 20px 0;
}

.body ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.body li {
  margin-bottom: 12px;
}

.body img {
  display: block;
  width: 350px;
}

footer {
  height: 132px;
  margin: 0 auto;
  font-size: 0;
  background: #f8f8f8;
  color: #878787;
}

footer main {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer p:first-child {
  margin-right: 48px;
}