/* 公共样式 */
body {
  padding: 0;
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑";
}

* {
  box-sizing: border-box;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  box-sizing: border-box;
  color: #fff;
  font-size: 0;
  left: 0;
  padding: 1rem 0 0.5rem 0;
  /* padding: .25rem .5rem; */
  position: fixed;
  right: 0;
  text-align: right;
  top: 0;
  transition: all .5s;
  width: 100%;
  z-index: 999;
  height: 6rem;
}

.header.active {
  background-color: rgba(35, 47, 57, .9);
  transition: all .5s
}

.header.hidden {
  top: -1rem;
  transition: all .5s
}

.header .icon-wrap {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 2.16rem;
  margin-left: 2rem;
}

.header .icon-wrap img {
  height: 100%;
  margin-left: 0.5rem;
}

.header .icon-wrap.en {
  height: .44rem;
  width: 1.23rem
}

.header .icon-wrap .icon {
  height: 100%;
  width: 100%
}

.header .header-bar {
  display: flex;
  align-items: center;
  font-size: 0;
  margin-right: 1.5rem;
}

.header .header-bar .header-bar-item {
  display: inline-block;
  padding: 1rem;
  text-align: center;
  vertical-align: middle
}

.header .header-bar .header-bar-item a {
  color: #fff;
  font-size: 1.16rem;
  text-decoration: none;
  transition: all .2s
}

.header .header-bar #user-login a {
  font-size: 1.1rem;
  padding: 0.18rem 0.2rem;
}

.header .header-bar .header-bar-item a.active,
.header .header-bar .header-bar-item a:hover {
  color: #6ad9e4;
  transition: all .2s
}

.header .menu-btn {
  display: none;
}

.header .header-bar-close {
  display: none;
}

.bg-color {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #00000066;
  z-index: 1;
}

.login-btn {
  /* width: 60px;
  height: 26px; */
  text-align: center;
  /* line-height: 26px; */
  padding: 1px 5px !important;
  margin-left: 10px !important;
  border-radius: 5px;
  background-color: #ffffff66;
  border: 1px solid #fff;
}

/* .login-btn:hover {
  color: #fff !important;
  background-color: #ffffffcc
} */
.gk-footer {
  /* background-image: url(https://gksk.obs.cn-north-4.myhuaweicloud.com/website/image/footer_01.png); */
  min-height: 13.9rem;
  width: 100%;
  overflow-y: hidden;
  background-size: cover;
  background-position: bottom;
  background-color: #00000040;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
}

.gk-footer .content {
  position: relative;
  width: 52%;
  padding: 2rem 13rem 2.2rem 0;
  margin: 0 auto;
  z-index: 100;
  /* background-color: #00000050; */
}

.gk-footer .content .title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.gk-footer .content .desc {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.gk-footer .content .img-box {
  position: absolute;
  width: 5.5rem;
  top: 3rem;
  right: 0;
  font-size: 0.9rem;
}

.gk-footer .content img {
  width: 5.5rem;
  height: 5.5rem;
}

.gk-footer .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.2rem;
  line-height: 2.2rem;
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  color: #ccc;
  z-index: 100;
}

.beian {
  color: #ccc;
}

@media (max-width: 1920px) {
  html {
    font-size: 18px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 1120px) {
  html {
    font-size: 15px;
  }
}

@media (max-width: 1080px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  html {
    font-size: 11px;
  }

  .header .header-bar {
    display: flex;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 10px;
  }

  .header .header-bar {
    display: none;
  }

  .header .menu-btn {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
  }

  .header .header-bar-close {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
  }

  .header .menu-btn img {
    width: 100%;
    height: 100%;
  }

  .header .header-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: rgba(35, 47, 57, .9);
  }

  .header .header-bar .header-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
  }

  .header .header-bar .header-bar-item a {
    /* display: inline-block; */
    /* width: 6rem; */
    padding-right: 0.5rem;
    text-align: right;
  }

  .header .header-bar .header-bar-close img {
    width: 100%;
    height: 100%;
    margin: 2.2rem 1.3rem 0 0;
  }

  .gk-footer .content {
    width: 80%;
  }
}