body {
  height: 2000px;
  background-color: #000;
  font-size: 16px;
  color: #fff;
}

a {
  color: #fff;
}

header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: #fff;
  z-index: 1;
  font-size: 16px;
}

header:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

header .logo {
  position: absolute;
  left: 58px;
  top: 5px;
}

header .box {
  margin-left: 190px;
  line-height: 64px;
}

header .btn-down, header .lang, header .login, header .search {
  float: right;
}

header nav {
  float: left;
}

header nav a {
  position: relative;
  float: left;
  padding: 0 13px;
  color: #fff;
}

header nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #00a8ff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header nav a:hover::before {
  width: 100%;
}

header .right {
  float: right;
  height: 64px;
  margin-right: 10px;
}

header .search {
  position: relative;
  margin-right: 28px;
}

header .search .icon {
  cursor: pointer;
  display: block;
  background: url("../images/icon-search.png") 0 0 no-repeat;
  width: 16px;
  height: 16px;
  margin-top: 22px;
}

header .search .close {
  display: none;
  cursor: pointer;
  position: absolute;
  right: 12px;
  top: 27px;
  background: url("../images/icon-close.png") 0 0 no-repeat;
  width: 17px;
  height: 17px;
}

header .search .close.show {
  display: block;
}

header .search input {
  margin-top: 5px;
  width: 0;
  padding: 0;
  border: 0;
  height: 42px;
  overflow: hidden;
  color: #fff;
  font-size: 0;
  background-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width .3s;
  transition: width .3s;
}

header .search input.show {
  font-size: 16px;
  width: 280px;
  border: 1px solid #696a6b;
  padding: 10px;
  line-height: 22px;
  border-radius: 3px;
}

header .btn-down {
  height: 42px;
  line-height: 42px;
  text-align: center;
  margin-top: 11px;
  padding: 0 .2rem;
  background-color: #00a8ff;
  border-radius: 5px;
}

header .btn-down:hover {
  background-color: #008fd9;
}

header .lang {
  margin-right: .5rem;
}

header .login {
  width: 15px;
  height: 16px;
  background: url("../images/icon-user.png") 0 0 no-repeat;
  margin-right: 28px;
  margin-top: 22px;
}

footer {
  text-align: center;
  color: #999;
  padding: 50px 0;
  letter-spacing: 2px;
  line-height: 1.8;
  /* nav {
        margin-bottom: 16px;
    }

    a {
        color: #999;
        font-size: 20px;
        margin: 0 22px;

        &:hover {
            color: #fff;
        }
    } */
}

footer h3 {
  font-size: 18px;
}

footer p {
  font-size: 15px;
}

footer p span {
  text-transform: uppercase;
}

::-webkit-input-placeholder {
  color: #fff;
}

::-moz-placeholder {
  color: #fff;
}

:-ms-input-placeholder {
  color: #fff;
}

@media screen and (max-width: 590px) {
  header .right {
    position: absolute;
    bottom: 0;
    right: .2rem;
  }
}

@media screen and (max-width: 480px) {
  body, header {
    font-size: .24rem;
  }
  header .logo {
    left: .2rem;
  }
  header .box {
    margin-left: 1.5rem;
  }
  footer h3 {
    font-size: .2rem;
  }
  footer p {
    font-size: .16rem;
  }
}
/*# sourceMappingURL=common.css.map */