@import url("https://fonts.googleapis.com/css?family=Varela+Round");
#header {
  width: 100%;
}

.header {
  font-family: "Varela Round", sans-serif;
  z-index: 100;
  display: block;
  top: 0;
  right: 0;
  width: 100%;
  height: 60px;
  border-bottom: 2px solid #999;
  background-color: #FFF;
  -webkit-user-drag: none;
}
.header .pageListToggle {
  cursor: pointer;
  width: 80px;
  height: 60px;
  border-left: 1px solid gray;
  padding: 0;
  top: 0;
  right: 0;
  display: flex;
  position: absolute;
  z-index: 120;
}
.header .pageListToggle .pageListToggleText {
  font-weight: bold;
  top: 0;
  margin: 0 auto;
  font-size: 21px;
  text-align: center;
}

.headPageList {
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid gray;
  border-top: none;
  border-right: none;
  background-color: white;
  width: 180px;
  padding: 10px;
  margin: 0;
  z-index: 1000;
  right: 0;
}
.headPageList .pageList {
  margin: 0;
  padding: 0;
}
.headPageList .pageList li {
  list-style: none;
  width: 100%;
  cursor: pointer;
}
.headPageList .pageList li a {
  color: black;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  padding: 5px;
  position: relative;
  display: inline-block;
}
.headPageList .pageList li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: rgb(49, 170, 226);
  transition: width 0.3s;
}
.headPageList .pageList li:hover a::after {
  width: 100%;
}

.pageListVisible {
  opacity: 100%;
  visibility: visible;
}/*# sourceMappingURL=fetch.css.map */