@charset 'utf-8';
.header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1690px;
  z-index: 9;
  margin: auto;
}
.header .log-wrap {
  float: left;
  width: 190px;
  height: 34px;
  margin-left: 26px;
  display: block;
}
.header .nav-list {
  float: right;
}
.header .nav-list > li {
  float: left;
  font-size: 18px;
}
.header .nav-list > li > a {
  display: table-cell;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 20px;
  height: 34px;
  vertical-align: bottom;
}
.header .nav-list > li.on a,
.header .nav-list > li:hover a {
  color: #fff;
}
.header .nav-list > li.dropdown {
  position: relative;
}
.header .nav-list > li.dropdown:hover .dropdown-list {
  display: block;
}
.header .nav-list .dropdown-list {
  display: none;
  width: 180px;
  position: absolute;
  top: 34px;
  left: 50%;
  text-align: center;
  padding-top: 30px;
  margin-left: -90px;
}
.header .nav-list .dropdown-list > ol {
  background-color: #FFB400;
  padding: 30px 0;
  position: relative;
}
.header .nav-list .dropdown-list > ol:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #FFB400;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  margin: auto;
}
.header .nav-list .dropdown-list > ol li a {
  color: #fff;
  font-size: 18px;
  margin-bottom: 40px;
  display: inline-block;
  line-height: 26px;
}
.header .nav-list .dropdown-list > ol li a:hover {
  text-decoration: underline;
}
.header .nav-list .dropdown-list > ol li:last-child a {
  margin-bottom: 0;
}
.header .changeLang {
  background: none;
  width: auto;
  height: 30px;
  box-sizing: border-box;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  display: block;
  margin-top: 6px;
  margin-left: 20px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0 16px;
  border-radius: 15px;
}
.header .changeLang option {
  background-color: #FFB400;
}
