body {
  height: 100%;
}
@keyframes fp_nav_cur {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#fullpage {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
}
#fullpage .section {
  position: absolute;
  left: 0;
  top: 100%;
  height: 100%;
  width: 100%;
  z-index: 10;
  overflow: auto;
}

#fullpage .section.active.prev {
  transition: top 0s linear 1s;
}
#fullpage .section.prev {
  transition: top 1s;
  top: -100%;
  /* display: none; */
}
#fullpage .section.next {
  transition: top 1s;
  top: 100%;
  /* display: none; */
}
#fullpage .section.current {
  transition: top 1s ease;
  z-index: 20;
  top: 0;
  display: block;
}
#fullpage .section.active {
  top: 0;
  z-index: 11;
  transition: top 0s linear 1s;
}
#fullpage .section.current.static {
  transition: none;
}

/*  */
#fp-nav {
  position: fixed;
  z-index: 100;
  top: 50%;
  opacity: 1;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translate3d(0, -50%, 0);
  left: 65rem;
  margin: 0;
  padding: 0;
  display: none;
}
#fp-nav li {
  margin: 0;
  padding: 0;
  display: block;
  width: 50rem;
  height: 50rem;
  list-style: none;
  position: relative;
  /* opacity: 0.6; */
}
#fp-nav li p {
  position: absolute;
  left: 100%;
  top: 5rem;
  background-color: #fff;
  font-size: 16rem;
  line-height: 40rem;
  margin: 0;
  padding: 0;
  color: #9a3312;
  white-space: nowrap;
  border-radius: 20rem;
  overflow: hidden;
  width: 0;
}
#fp-nav li:not(.active, .noText):hover:before {
  content: ' ';
  width: 8rem;
  height: 8rem;
  background: #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -5rem;
  margin-top: -4rem;
}
#fp-nav li:not(.active):hover p {
  transition: all 1s;
  min-width: 100rem;
  text-align: center;
}
#fp-nav li::after {
  content: ' ';
  width: 8rem;
  height: 8rem;
  background: #9a3312;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  border-radius: 100%;
  opacity: .6;
}
#fp-nav li:hover::after {
  width: 10rem;
  height: 10rem;
}
#fp-nav li.active {
  background-image: url(/expert/web/icon/side-active.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 42rem;
  opacity: 1;
  animation: fp_nav_cur 5s forwards linear 0s infinite;
}

#fp-nav.white li::after {
  background: #fff;
}
#fp-nav.white li.active {
  background-image: url(/expert/web/icon/side-active-w.png);
  background-size: 28rem;
  opacity: 1;
}

.arr-side {
  width: 30rem;
  position: absolute;
  left: 75rem;
  top: calc(50% + 195rem);
  z-index: 999;
  animation: moveArr 2s ease-in-out infinite;
  cursor: pointer;
  transition: all 1s;
}
.arr-side:hover{
  animation: stopMove;
  transform: scale(1.2);
}

@keyframes moveArr {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(50%);
  }
  100%{
    transform: translateY(0);
  }
}

@keyframes stopMove {
  0%{
    transform: translateY(0);
  }
  100%{
    transform: translateY(0);
  }
}
