.header {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header .header_content {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 100%;
}
.header .header_content .header_bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -940px;
  z-index: -2;
}
.header .header_content .header_bg_mask {
  width: 3000px;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.1);
}
.header .header_content .header-logo {
  display: flex;
  align-items: center;
}
.header .header_content .header-logo .header-logo-img {
  margin-right: 20px;
}
.header .header_content .header-logo .header-logo-name {
  display: flex;
  flex-direction: column;
  color: white;
}
.header .header_content .header-logo .header-logo-name .ch {
  font-family: 华文行楷, 华文行楷_CNKI !important;
  font-size: 32PX;
}
.header .header_content .header-logo .header-logo-name .en {
  font-size: 2px;
  width: 200px;
}
.navBar {
  height: 60px;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.navBar .content {
  display: flex;
  justify-content: space-between;
}
.navBar .content .navBar_item_container {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
}
.navBar .content .navBar_item_container li {
  z-index: 10;
  text-align: center;
  color: white;
  background-color: var(--blue);
  height: 60px;
  line-height: 60px;
  font-size: 16px;
}
.navBar .content .navBar_item_container .navBar_item {
  flex-basis: 100px;
  flex-shrink: 1;
  flex-grow: 1;
  position: relative;
}
.navBar .content .navBar_item_container .navBar_item .dropDown_menu {
  transition: opacity 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  width: 100%;
}
.navBar .content .navBar_item_container .navBar_item .dropDown_menu li {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: #2a61b3;
  cursor: pointer;
  text-align: left;
}
.navBar .content .navBar_item_container .navBar_item .dropDown_menu li:hover {
  background-color: var(--blue);
}
.navBar .content .navBar_item_container .navBar_item:hover {
  background-color: #2a61b3;
}
.navBar .content .search_container {
  width: 140px;
  height: 28px;
  margin: auto 10px auto 20px;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid white;
  display: flex;
  color: white;
  line-height: 28px;
  overflow: hidden;
  cursor: pointer;
}
.navBar .content .search_container input {
  width: 100%;
  background: none;
  border: none;
  padding-left: 10px;
  color: white;
  font-size: 16px;
}
.navBar .content .search_container input::-webkit-input-placeholder {
  color: white;
  font-size: 16px;
}
.navBar .content .search_container input::-moz-placeholder {
  color: #bdcce1;
  font-size: 16px;
}
.navBar .content .search_container input:-ms-input-placeholder {
  color: #bdcce1;
  font-size: 16px;
}
.navBar .content .search_container div {
  width: 40px;
  text-align: center;
}
.navBar .content .search_container div:hover {
  background-color: #1366b3;
}
.navBar .content .search_container div i {
  font-size: 24px;
}
.navBar li {
  list-style: none;
}
@media (min-width: 1000px) {
  .header .header_content .header-logo .header-logo-name .ch {
    font-size: 40px;
  }
  .header .header_content .header-logo .header-logo-name .en {
    width: 500px;
  }
  .navBar .content .navBar_item_container li {
    font-size: 20px;
  }
  .navBar .content .navBar_item_container .navBar_item .dropDown_menu li {
    font-size: 18px;
  }
}
/*# sourceMappingURL=index.css.map */