/*页面总宽度*/
html,
body {
  width: 100%;
  background: #fff !important;
}
/* kv页 */
.kv {
  width: 100%;
  min-height: 100%;
  position: relative;
  background-color: #ccc;
  overflow: hidden;
  color: #999;
  font-size: 2rem;
  text-align: center;
  line-height: 100vh;
  /* animation-name: maxKV;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1; */
}
@keyframes maxKV {
  0% {
    transform: scale(1.4);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.kv .copyright {
  position: absolute;
  bottom: 0;
  background-color: transparent !important;
}
.enter {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 30%;
  margin-left: -15%;
  animation-name: flash;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}
.enter img {
  display: block;
  width: 100%;
}
/* kv页结束 */

/* 内页 */
#wrap {
  width: 100%;
  /* background-position: top center; */
  background-color: #5b7bf9;
  min-height: calc(100% - 0.5rem);
  position: relative;
}
/*版权*/
.copyright {
  margin: 0 auto 0;
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  color: #fff;
  font-size: 12px;
  background: #5b7bf9;
}
/*头部区域*/
.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.5rem;
  padding-top: 0.3rem;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 0.64rem;
}
.header .logo img {
  height: 0.45rem;
}
.header .home img {
  height: 0.45rem;
}
.nav {
  width: 1.9rem;
  background-color: #456af9;
  font-size: 0.24rem;
  padding: 0.2rem 0;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  right: 5%;
  z-index: 99;
  display: none;
}
.nav li {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0.2rem 0;
}
.nav li a {
  color: #fff;
}
.nav li.on {
  background-color: #ff9a19;
}
/* 主体内容容器 */
.content {
  width: 90%;
  margin: 0 auto;
  padding: 0.2rem 0.4rem;
  padding-bottom: 0.6rem;
  position: relative;
  border-radius: 0.2rem;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  background: rgba(89, 149, 255, 0.6);
  box-sizing: border-box;
  z-index: 2;
  min-height: 70vh;
}
.title {
  width: 100%;
  margin: 0.2rem auto;
  color: #000;
  font-size: 0.4rem;
  text-align: center;
}
.about {
}
.job {
}
.welfare {
}
.contact-us {
}

/*回到顶部*/
#goToTop {
  position: fixed;
  right: 0.2rem;
  z-index: 9000;
  bottom: 0.3rem;
}
#goToTop a {
  background: none repeat scroll 0 0 #ddd;
  border: 0.01rem solid #cccccc;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  color: #ff9966;
  font-size: 0.14rem;
  text-decoration: none;
  text-shadow: 0 0.01rem 0 #999;
  -webkit-text-shadow: 0 0.01rem 0 #999;
}
#goToTop a {
  padding: 0.1rem;
  display: inline-block;
  letter-spacing: 0.1rem;
  text-align: center;
}
#goToTop a:hover {
  background: none repeat scroll 0 0 #999;
}
/*回到顶部结束*/
