* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "SourceCodePro";
  src: url("../font/SourceCodePro-Regular.ttf");
}

body {
  font-family: "SourceCodePro";
}

#app {
  width: 100%;
  min-height: 100vh;
  min-width: 900px;
  background: linear-gradient(#7c7b7a, #f1c4d5 18%);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

#app .head {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px;
}

#app .head p {
  font-size: 36px;
}

#app .head ul {
  display: flex;
  font-size: 22px;
}

#app .head ul li {
  margin-left: 24px;
  cursor: pointer;
}

#app .head ul .active {
  border-bottom: 1px solid #fff;
}

#app .content {
  flex: 1;
  padding-top: 10%;
  padding-bottom: 80px;
}
