/* HEADER */
header {
  width: 100%;
  height: 6rem;
  display: flex;
  
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
}
header > .title {
  /* font-size: 2.2rem; */
  font-size: 0;
  font-weight: 600;
  letter-spacing: -.1rem;
  display: flex;
  color: transparent;
  align-items: center;
}
header > .title img {
  height: 2rem;
  width: fit-content;
  object-fit: contain;
  margin: 0 2rem;
}
header .back,
header .share,
header .reload {
  width: 2rem;
  height: 2rem;
  text-indent: -9999px;
}
header .back {
  position: absolute;
  left: 1.5rem;
  background: url("./prev.png") no-repeat center / contain;
}
header .reload {
  position: absolute;
  right: 2rem;
  background: url("./reload.png") no-repeat center / contain;
}

nav {
  width: 100%;
  position: fixed !important;
  top: 6rem;
  left: 0;
  border-bottom: 1px solid #ddd;
  padding: 0 1rem !important;
  background: #fff;
}
nav > ul {
  display: flex;
}
nav > ul > li {
  width: fit-content !important;
  font-size: 1.8rem;
  padding: 1.5rem;
  position: relative;
}
nav > ul > li.active {
  font-weight: 600;
  color: #fc90bc;
}
nav > ul > li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .3rem;
  background: #fc90bc;
}

main {
  padding: 2.5rem;
  margin-top: 6rem;
  min-height: calc(100vh - 6rem);
}