@charset "UTF-8";
body {
  margin: 0;
}

img {
  object-fit: cover;
}

a {
  color: inherit;
  /*字体颜色跟随父元素*/
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .container-title {
    text-align: center;
    font-size: 30px;
    color: #000;
    padding: 70px 0 60px;
    line-height: 60px;
  }
  .container-content {
    width: 1200px;
    margin: 0 auto;
  }
  #app {
    min-height: calc(100vh - 91px);
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  #app {
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
  }
}
.iframe-side {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
}

.navLayout {
  position: relative;
  z-index: 3;
}

/*# sourceMappingURL=common.css.map */
