@charset "UTF-8";
/*头部样式*/
.header {
  position: relative;
  background: url("../img/header-bg.png") no-repeat center center/100% 100%;
  color: #000;
}

.header .header-wrap {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header-wrap .logo-wrap {
  display: inline-flex;
  height: 100%;
  align-items: center;
}

.header .header-wrap .logo-wrap span {
  display: inline-block;
  margin-left: 16px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
}

.header a {
  color: #000;
}

.header .search-wrap {
  display: flex;
  align-items: center;
  transition: all .4s;
  transform: scaleX(1);
  border-radius: 16px;
}

.header .search-wrap input {
  width: 180px;
  height: 36px;
  line-height: 32px;
  padding: 0 10px 0 10px;
  outline: 0;
  font-size: 14px;
  font-weight: 400;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  border: 2px solid #f1f1f1;
  background: #fff;
  border-right: 0;
}

.header .search-wrap button {
  width: 42px;
  height: 36px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #fff;
  border: 2px solid #f1f1f1;
  border-left: 0;
  cursor: pointer;
  transition: all .4s;
}

.header .search-wrap button .iconfont {
  font-size: 18px;
  font-weight: 700;
  color: #939393;
}

.header .logged-show {
  display: none;
  color: #fff;
  margin-left: 20px;
  font-size: 14px;
  text-shadow: 0 0 2px #333;
}

.header .logged-show .user-center {
  display: inline-block;
  width: 100px;
  height: 28px;
  margin: 0 10px;
  line-height: 28px;
  text-align: center;
  border-radius: 14px;
  background: #ffa200;
  color: #fff;
  letter-spacing: 2px;
  transition: all .4s;
  text-shadow: none;
}

.header .logged-show .user-center:hover {
  box-shadow: inset 0 0 6px 2px #dedede;
}

.header .logged-show .h-logout-btn {
  cursor: pointer;
  transition: all .4s;
  text-shadow: 0 0 2px #333;
}

.header .logged-show .h-logout-btn:hover {
  color: #70a3df;
  transform: translateY(-3px);
  text-shadow: 0 0 2px #fff;
}
