.loginInfo {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  background-image: url(../images/n-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* width: 310px; */
  height: 60px;
  line-height: 44px;
  justify-content: center;
  color: #ffffff;
  padding: 0 64px;
  z-index: 100;
}

.loginInfo a {
  margin: 0 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.loginInfo a:hover {
  opacity: 0.7;
}

#loggedInHeader {
  display: none;
}

/* .nav-item .item {
  background-image: linear-gradient(
    179.9999999999997deg,
    rgba(148, 210, 246, 1) 0%,
    rgba(13, 163, 247, 1) 100%
  );
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  padding: 12px 22px;
  flex-direction: row;
  word-wrap: break-word;
  display: inline-block;
  overflow: inherit !important;
  position: relative;
} */
/* .nav-item .item:hover {
  background-image: linear-gradient(179.9999999999997deg, rgb(37 156 224) 0%, rgb(0 136 211) 100%);
} */

.item {
  cursor: pointer;
  overflow: inherit !important;
  word-wrap: break-word;
  position: relative;
  display: block;
}
.item:hover .item-content {
  max-height: 900px;
}
.item-content {
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: absolute;
  z-index: 1000;
  background: rgb(37, 111, 210);
  width: 100%;
  left: 0;
  top: 85px;
  color: #fff;
  font-size: 18px;
}
.item-content .item-son {
  padding: 10px 0;
  font-size: 16px;
  text-align: center;
}

.item-content .item-son:hover {
  background-image: linear-gradient(179.9999999999997deg, rgb(37 156 224) 0%, rgb(0 136 211) 100%);
}

.nav-item .sel div {
  font-weight: bold;
}

.select-tit-content {
  background: #fff;
  position: absolute;
  top: 50px;
  overflow: auto;
  left: 0;
  right: 0;
  width: 100%;
  color: #000;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.select-tit-content-item {
  color: #000;
  display: block;
  height: 45px;
  line-height: 45px;
  padding-left: 20px;
}

.select:hover .select-tit-content {
  max-height: 290px;
}

.select-tit-content-item:hover {
  background-color: rgba(0,0,0,0.3);
  color: #fff;
}