#app .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
}

#app .content .box {
  width: 360px;
  height: 220px;
  border-radius: 12px;
  margin: 0 12px;
  margin-top: 48px;
  background-color: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#app .content .box .title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}

#app .content .box .desc {
  font-size: 14px;
  color: #8688f2;
  margin-top: 16px;
}

#app .content .box img {
  width: 160px;
  border-radius: 8px;
}

#app .content > :nth-child(1) {
  cursor: pointer;
}
