.content {
  display: flex;
  margin: 3rem 0;
}

.content .img-wrapper {
  margin-top: 4rem;
}

.content .body {
  flex: 60%;
  margin-right: 10%;
}

.content .body h1 {
  margin-top: 0;
}

.all-prods {
  display: flex;
  flex-wrap: wrap;
}

.all-prods > * {
  width: 50%;
}

.prods > a:not(:first-of-type) {
  margin-left: 1em;
}

.prods > a {
  text-decoration: underline;
  transition: color .3s;
}

.prods > a:hover {
  /* FIXME 规范化（统一这一个蓝色）#1f4d77 the same as the lang button*/
  color: #485cc7;
}

@media (max-width: 800px) {
  .all-prods > * {
    width: 100%;
  }

  .prods-wrapper {
    margin-bottom: 1em;
  }

  .prods-wrapper h3 {
    margin: 0 0 1em 0;
    font-size: 1rem;
  }

  .prods-wrapper .prods {
    font-size: 0.875rem;
  }

  .content {
    margin: 1rem 0;
  }

  .content .body {
    margin-right: 0;
  }
}
