@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.height {
  height: 100%;
  overflow: hidden;
}

.gh {
  display: none;
  position: relative;
  float: right;
  height: 35px;
  width: 35px;
  top: 0px;
  right: 0;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}
.gh.selected a {
  background-color: transparent;
}
.gh.selected a::before, .gh.selected a::after {
  top: 0;
}
.gh.selected a::before {
  transform: translateY(0px) rotate(-45deg);
}
.gh.selected a::after {
  transform: translateY(0px) rotate(45deg);
}
.gh a {
  display: block;
  height: 2px;
  margin-top: -2px;
  position: relative;
  top: 50%;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  width: 60%;
  margin: 0 20%;
  background: #fff;
}
.gh a::before, .gh a::after {
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
  width: 100%;
  background: #fff;
}
.gh a::before {
  top: -8px;
}
.gh a::after {
  top: 8px;
}

/* 保持图片缩小后不模糊 */
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.img {
  font-size: 0;
}
.img img {
  max-width: 100%;
}

.global-btn {
  display: block;
  width: 180px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  background-color: #9D4159;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.4s;
}
.global-btn:hover {
  background-color: #DDE7FE !important;
  color: #0047ff !important;
  border-color: #0047ff !important;
}

input:-internal-autofill-selected {
  background-color: transparent;
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 192px !important;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 120px !important;
  }
}
@media only screen and (max-width: 1480px) {
  :root {
    --text-lg: 16px;
  }
}/*# sourceMappingURL=common.css.map */