:export {
  mainColor: #1832BB;
}

.header-box {
  padding: 15px 5%;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  box-sizing: border-box;
  z-index: 88888;
  transition: 0.3s ease-in-out;
  background: #282828;
}

.header-box .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 900px;
}

.header-box .flex-logo .logo {
  width: 36px;
  margin-right: 5px;
}

.header-box .flex-logo .name {
  height: 30px;
}

.header-box .flex-right {
  color: #fff;
  font-size: 14px;
}

.header-box .flex-right span {
  margin-right: 25px;
}

.header-box .flex-right span i {
  margin-right: 10px;
}

.header-box .flex-right button {
  background: #1832BB;
  color: #fff;
  padding: 9px 20px;
  border-radius: 5px;
  box-shadow: 0px 4px 20px 0px rgba(0, 13, 131, 0.3);
}

.header-box .flex-right button:hover {
  background: #000d83;
}


.header-box .flex-center {
  flex: auto;
  text-align: center;
  padding: 0 6%;
}

.header-box .flex-center ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 100%;
  line-height: 50px;
}

.header-box .flex-center ul li {
  padding: 0 3%;
  cursor: pointer;
  color:#ffffff;
}

.header-box .flex-center ul li:hover {
  background: #e5e7f940;
}

.header-box .flex-center ul li.active a {
  font-weight: bold;
}

.header-nav-container {
  width: 100%;
  height: 68px;
  line-height: 68px;
  padding: 0 4%;
  right: 0;
  left: 0;
  background: #fff;
  color: #000d83;
  box-sizing: border-box;
  z-index: 99999;
  font-weight: 500;
  transition: all 0.5s ease;
  position: fixed;
  top: -100px;
}

.header-nav-container .header-nav-flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 900px;
}

.header-nav-container .header-nav-flex-box div {
  flex-shrink: 0;
}

.header-nav-container .flex-center {
  flex: auto;
  text-align: center;
  padding: 0 6%;
}

.header-nav-container .flex-center ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 100%;
}

.header-nav-container .flex-center ul li {
  padding: 0 3%;
  cursor: pointer;
}

.header-nav-container .flex-center ul li:hover {
  background: #e5e7f940;
}

.header-nav-container .flex-center ul li.active a {
  font-weight: bold;
}

.header-nav-container .flex-logo {
  width: 190px;
}

.header-nav-container .flex-logo img {
  width: 36px;
  margin-right: 3px;
}

.header-nav-container .flex-logo .logo-text {
  font-family: "Alibaba-PuHuiTi-R";
}

.header-nav-container .flex-right {
  width: 150px;
  text-align: right;
  box-sizing: border-box;
}

.header-nav-container .flex-right span {
  width: 40px;
  text-align: center;
  color: #afaeae;
  display: inline-block;
  margin-right: 10%;
}

.header-nav-container .flex-right button {
  color: #000d83;
}

@media screen and (max-width: 900px) {
  .header-nav-container {
    padding: 0 10px;
  }
  .header-nav-container .flex-center {
    padding: 0 2%;
  }
  .header-nav-container .flex-right {
    width: 140px;
  }
  .header-nav-container .flex-right span {
    margin-right: 10px;
    width: 30px;
  }
}
