.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  height: 1.6rem;
  transition: all .5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.6rem 0 .6rem;
  color: rgb(255, 255, 255);
  background-color: rgb(15, 48, 82);

}

.header a {
  text-decoration: none !important;
  color: inherit !important;
  outline: none !important;
  cursor: pointer !important;
}

.header .header-bg {
  display: flex;
  align-items: center;
  height: 100%;
}

.header .header-bg span {
  font-size: .3rem;
  margin-left: .2rem;
  margin-right: .22rem;
}

.header .header-bg p {
  font-size: .24rem;
  font-family: 'Adobe Heiti Std', sans-serif;
  /* Assuming a fallback to sans-serif */
  margin-bottom: 0;
}

.header .header-bg .logo {
  width: 5.46rem;
  height: .60rem;
  cursor: pointer;
}

.header .header-bg .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* justify-content: space-evenly; */
}

.header .content .content-top {
  height: 50%;
}

.header .content .content-top ul {
  display: flex;
  justify-content: end;
  margin-bottom: 0;
  height: 100%;
}

.header .content .content-top ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-right: .21rem;
}

.header .content .content-top ul li img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.header .content .content-top ul li .img1 {
  width: .26rem;
  height: .25rem;
}

.header .content .content-top ul li .img2 {
  width: .25rem;
  height: .25rem;
}

.header .content .content-top ul li .img3 {
  width: .27rem;
  height: .21rem;
}

.header .content .content-top ul li .img4 {
  width: .23rem;
  height: .23rem;
}

.header .content .content-top ul li .img5 {
  width: .26rem;
  height: .26rem;
}

.header .content .content-top ul li .img {
  margin-right: .11rem;
}

.header .content .content-top ul li .name {
  font-size: .16rem;
}

.header .content .content-top ul li .search-img {
  height: .28rem;
  width: .28rem;
}

.header .content .content-bottom {
  height: 50%;
}

.header .content .content-bottom div {
  height: 100%;
}

.header .content .content-bottom span {
  display: inline-block;
  cursor: pointer;
  font-size: .2rem;
  margin-right: .2rem;
  font-family: 'Source Han Sans CN', sans-serif;
  /* Assuming a fallback to sans-serif */
  line-height: .44rem;
}

.header-active {
  background-color: rgba(15, 48, 82, .8);
}

.header .menu_btn {
  display: none !important;
}

.main {
  padding-top: 1.6rem;
}

/* Ã½Ìå²éÑ¯ÑùÊ½ */
@media (max-width: 768px) {
  .header {
    padding: 0 16px;
    height: 56px;
  }

  .header .content-top {
    display: none;
  }

  .header>a {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  .header>a .logo {
    height: 100% !important;
    width: 100px !important;
  }

  .header>a .logo img {
    object-fit: contain !important;
    width: 200px !important;
    height: 100% !important;
  }

  .header>a p {
    font-size: 12px !important;
  }

  .main {
    padding-top: 56px !important;
  }

  .header .menu_btn {
    display: block !important;
  }
}