@charset "utf-8";
/*------------------------------------------------------*/
.cmshtml #page-top {
  background: url("../img/to_top.png") no-repeat center bottom;
  background-size: contain;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 55px;
  right: 50px;
  z-index: 33;
  transition: all 0.3s;
}
.cmshtml #page-top:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1000px) {
  .cmshtml #page-top {
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    width: 38px;
    height: 38px;
  }
}
/*------------------------------------------------------*/
.cmshtml .load-fade {
  opacity: 0;
  transition: all 2s;
  overflow: hidden;
}
.cmshtml .load-fade.done {
  opacity: 1;
}
.cmshtml .to-lr {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1s;
}
.cmshtml .to-rl {
  opacity: 0;
  transform: translateX(40px);
  transition: all 1s;
}
.cmshtml .to-lr.scrollin, .cmshtml .to-rl.scrollin {
  opacity: 1;
  transform: translate(0);
}
/*------------------------------------------------------*/