.healthbody {
  margin: 0 auto;
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #000;
}
/* 头部导航 */
.healthbody-header-bg {
  background-color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
}
.healthbody-header {
  margin: 0 auto;
  max-width: 90rem;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 7.5rem;
  white-space: nowrap;
  cursor: pointer;
}
hr {
  border: none;
  height: 1px;
  background-color: #ece5e5;
}
.header-logo .logoImg {
  width: 14rem;
  height: 2.5em;
  min-width: 145px;
  padding-right: 10px;
  object-fit: cover;
}
.healthbody-header .headerNav {
  height: 100%;
  /* margin-left: 6.625rem;
  margin-right: 7.75rem; */
  display: flex;
  font-size: 16px;
  position: relative;
  align-items: center;
}
.healthbody-header .headerNav span {
  margin-right: 2.5rem;
  padding: 10px 0;
  border-bottom: 2px solid #fff;
}
.healthbody-header .headerNav span:hover{
  font-weight: bold;
  border-bottom: 2px solid rgba(239, 193, 234, 1)!important;
}
.healthbody-header .searchLogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search {
  display: flex;
  padding: 10px 10px;
  border-radius: 85px;
  margin-right: 1.875rem;
}
.searchActive{
  font-weight: bold;
  border: 1px solid #ccc;
}
.search input {
  display: none;
  width: 100px;
  margin-right: 10px;
  border: none;
  outline: none; /* 取消聚焦时的轮廓线 */
  -webkit-appearance: none; /* 取消webkit浏览器的默认样式 */
  -moz-appearance: none; /* 取消Firefox浏览器的默认样式 */
  appearance: none; /* 取消其他浏览器的默认样式 */
  background: transparent;
}
.healthbody-header .searchLogo .searchIcon {
  width: 1.5rem;
  height: 1.5rem;

}
.healthbody-header .login {
  margin-right: 1.875rem;
}
.healthbody-header .login a{
  font-size: 16px;
}
.healthbody-header .signIn {
  width: 5.75rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #030f41;
}
.signInText {
  color: #fff;
  font-size: 16px;
}
.headerMenu {
  display: none;
}
.headerMeunList {
  width: 82%;
  height: 326px;
  background-color: #fff;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* gap: 30px; */
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
  text-align: left;
  font-style: normal;
  display: none;
}
.menuIcon-X {
  display: none;
}
.headerAction {
  font-weight: bold;
  border-bottom: 2px solid rgba(239, 193, 234, 1)!important;
}
@media (max-width:1440px){
  .healthbody-header .headerNav {
    font-size: 14px;
  }
  .healthbody-header .headerNav span {
    padding: 15px 0;
  }
  .healthbody-header .login a{
    font-size: 14px;
  }
  .signInText {
    color: #fff;
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .search{
    padding: 5px;
  }
  .search input{
    width: 60px;
  }
  .healthbody-header .headerNav span {
    margin-right: 1.875rem;
  }
}
@media (max-width: 976px) {
  .healthbody-header .headerNav {
    display: none;
  }
  .headerMenu {
    display: block;
    margin-left: 15px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 768px) {
  .healthbody-header {
    padding-left: 50px;
    padding-right: 50px;
  }
  .headerMeunList {
    width: 89%;
  }
}
@media (max-width: 500px) {
  .headerMeunList {
    width: 100%;
    top: 51px;
  }
  .healthbody-header .headerNav {
    display: none;
  }
  .healthbody-header {
    padding: 10px 16px;
  }
  .healthbody-header .searchLogo .search {
    display: none;
  }
  .headerMenu {
    display: block;
    margin-left: 15px;
  }
  .healthbody-header .signIn {
    max-width: 58px;
    max-height: 30px;
  }
  .header-logo .logoImg {
    max-width: 145px;
  }
}
