/* H5 Go to Top */
@media screen and (max-width: 799px) {
  .go-to-top-container {
    position: fixed;
    bottom: 1rem;
    right: 0.1rem;
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
  }
  .go-to-top-container.with-login-btn {
    bottom: 2.5rem;
  }
  .h5-go-to-top-icon {
    width: 1.3rem;
  }
  .show_goToTop{
    display: block;
  }
  .hide_goToTop{
    display: none;
  }

  .pc-go-to-top-icon {
    display: none;
  }
}

/* PC Go to Top */
@media only screen and (min-width: 800px) {
  .go-to-top-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
  }
  .pc-go-to-top-icon {
    width: 60px;
  }
  .show_goToTop{
    display: block;
  }
  .hide_goToTop{
    display: none;
  }

  .h5-go-to-top-icon {
    display: none;
  }
}