﻿header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
* {
  box-sizing: border-box;
}
.header-nav {
  width: 100%;
  background-color: rgba(1, 74, 125, 0.9);
  height: 46px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.header-nav .header-nav-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 1407px;
}
.header-nav .header-nav-menu {
  display: flex;
  align-items: center;
  font-family: "Microsoft YaHei";
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.header-nav .header-nav-menu a {
  transition: color 0.2s linear;
  color: rgba(255, 255, 255, 0.6);
}
.header-nav .header-nav-menu .divider {
  width: 1px;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  margin: 0 15px;
  height: 14px;
  display: inline-block;
  vertical-align: bottom;
}
.header-nav .header-nav-menu > li:hover a {
  color: #fff;
  font-weight: 700;
}
.header-nav .header-nav-action {
  margin-left: 60px;
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.header-nav .header-nav-action .action-item {
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.header-nav .header-nav-action .action-item img {
  width: 100%;
}
.header-content {
  width: 100%;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.header-content .header-menus {
  display: flex;
  align-items: center;
}
.header-content .header-content-inner {
  width: 1407px;
  display: flex;
  justify-content: space-between;
}
.header-content .header-logo {
  width: 343px;
  height: 54px;
}
.header-content .header-logo img {
  width: 100%;
}
.header-content .menu-list {
  display: flex;
  align-items: center;
  column-gap: 29px;
  font-size: 18px;
  font-weight: bold;
  height: 100%;
}
.header-content .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-content .menu-item > a {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.header-content .menu-item > img {
  width: 18px;
}
.header-content .menu-item .sub-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 55px;
  display: none;
  padding-top: 14px;
  transition: height 0.2s ease;
}
.header-content .menu-item .sub-menu .sub-menu-content {
  position: relative;
  animation-duration: 0.3s;
  border-radius: 2px;
  border-top: 4px solid #50aef0;
  min-width: 160px;
  background: #014a7d;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.header-content .menu-item .sub-menu .sub-menu-content:before {
  content: "";
  position: absolute;
  z-index: 5;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) !important;
  border: 10px solid transparent;
  border-bottom-color: #50aef0;
}
.header-content .menu-item .sub-menu .sub-menu-item {
  height: 40px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  transition: background-color 0.2s linear;
}
.header-content .menu-item .sub-menu .sub-menu-item a {
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.header-content .menu-item .sub-menu .sub-menu-item:hover {
  background-color: #195b89;
}
.header-content .menu-item:hover .sub-menu {
  display: block !important;
}
/*# sourceMappingURL=header.css.map */