header {
  width: 100%;
  height: 70px;
  background: rgba(29, 35, 46, 0.7);
  border-radius: 0px 0px 0px 0px;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  /* position: relative; */
}
.header {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12.6%;
}
.header > a > img {
  width: 114px;
  height: 50px;
  object-fit: contain;
}
.header .list,
.header .nav {
  display: flex;
  align-items: center;
  position: relative;
}
.header .list > * {
  font-family: "PingFangSC-Light";
  font-size: 18px;
  color: #ffffff;
  line-height: 18px;
  display: flex;
}
.header .list .nav {
  margin-right: 80px;
  cursor: pointer;
  height: 70px;
}
.header .list .search {
  width: 68px;
  height: 70px;
  background: #c5a86f;
  border-radius: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header .list .search > img {
  width: 18px;
  height: 18px;
  margin-bottom: 5px;
}
.header .nav > .selectimg {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  background: url("../img/header/select.png") center no-repeat;
  background-size: contain;
}
.header .select {
  width: 181px;
  /* height: 105px; */
  background: rgba(29, 35, 46, 0.7);
  border-radius: 0px 0px 0px 0px;
  padding: 5px 15px;
  position: absolute;
  top: 70px;
  left: -15px;
  font-family: "PingFangSC-Light";
  font-size: 16px;
  color: #ffffff;
  line-height: 19px;
  text-align: left;
  display: none;
}
.header .select > a {
  display: flex;
  padding: 10px 0;
}
.header .select > a:first-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header .select > a > div:first-of-type {
  width: 10px;
  height: 1px;
  background: #ffffff;
  border-radius: 0px 0px 0px 0px;
  margin-top: 8px;
  margin-right: 4px;
}
.header .select > a:hover {
  color: #c5a86f;
}
.header .select > a:hover > div:first-of-type {
  background: #c5a86f;
}

.header .nav:hover .select {
  display: block;
}
.header .nav:hover > div:first-of-type {
  color: #c5a86f;
}
.header .nav:hover .selectimg {
  background: url("../img/header/select1.png") center no-repeat;
  background-size: cover;
}

header .searchbox {
  width: 100%;
  height: 116px;
  background: rgba(29, 35, 46, 0.7);
  border-radius: 0px 0px 0px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: none;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}
header .searchbox.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .searchbox input {
  width: 316px;
  height: 46px;
  background: #ffffff;
  border: none;
  outline: none;
  font-family: "PingFangSC-Regular";
  font-size: 16px;
  color: #999999;
  line-height: 16px;
  text-align: left;
  padding: 15px 12px;
}
header .searchbox input:focus {
  color: #333333;
}
header .searchbox div {
  width: 58px;
  height: 46px;
  background: #c5a86f center no-repeat;
  background-image: url("../img/header/search.png");
  background-size: 18px 18px;
  border-radius: 0px 0px 0px 0px;
}

header .result {
  width: 100%;
  height: calc(100vh - 186px);
  background: rgba(29, 35, 46, 0.7);
  border-radius: 0px 0px 0px 0px;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  padding: 25px 12.6%;
  display: none;
}
header .result > div:nth-child(1) {
  font-family: "PingFangSC-Regular";
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 16px;
  text-align: left;
  padding-bottom: 25px;
}
header .result > a {
  font-family: "PingFangSC-Regular";
  font-size: 18px;
  color: #ffffff;
  line-height: 18px;
  text-align: left;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}
header .result > a span {
  color: #c5a86f;
}
header .result > a:last-of-type,
header .result > a:last-of-type:hover {
  border-bottom: none;
}
header .result > a:hover {
  border-bottom: 1px dashed #c5a86f;
}
