#anchors {
  display: flxed;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: absolute;
  top: 100px;
  left: 1rem;
  border-radius: 8px;
  /* 原为10px */
  padding-top: 80px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  width: 16rem;
}

#anchors .title {
  align-self: flex-start;
  font-weight: bold;
  border-bottom: 1px solid #eaecf0;
  width: 100%;
  font-size: 1.4rem;
}

#anchors ul {
  list-style-type: none;
  width: 100%;
  padding: 0;
  margin: 0;
  max-height: 60vh;
  overflow-y: scroll;

  &::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  &::-webkit-scrollbar-thumb {
    background: #fcf1e1;
  }

  &::-webkit-scrollbar-track {
    background: #fef9e9;
  }
}

#anchors li {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 4px 0;
  cursor: pointer;
  transition: all 240ms;
  color: #38603e;
}

#anchors li img {
  width: 1.4rem;
  height: 1.4rem;
}

#anchors li:hover {
  color: #c6b505;
}

#anchors .active {
  color: #c6b505;
  transition: all 240ms;
}

#anchors .li-h2 {
  font-size: 1.2rem;
}

#anchors .li-h3 {
  font-size: 1rem;
  padding: 2px 0!important;
  margin-top: 0;
  margin-bottom: 0;
}