header {
  width: 100%;
  height: 1.01rem;
  background: rgba(0, 0, 0, .03);
  padding-left: 1.11rem;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  transition: all .3s;
  z-index: 99;
  border-bottom: .01rem solid rgba(255,255,255,.3);
}

.headLogo {
  width: 1.91rem;
  height: .57rem;
  margin-right: 1.24rem;
}

.headLogo img:last-child {
  display: none;
}

.headNav {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: .54rem;
}

.headNavItem {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.headNavItem::after {
  content: '';
  width: .1rem;
  height: .1rem;
  position: absolute;
  bottom: .15rem;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  background-color: #D50000;
  opacity: 0;
  transition: all .3s;
}

.headNavItem:hover::after {
  opacity: 1;
}

.headNavItem>a {
  font-weight: 600;
  font-size: 0.18rem;
  color: #FFFFFF;
}

.headNavTwo {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  width: fit-content;
  background: #FAFAFA;
  border-radius: 0rem 0rem 0.1rem 0.1rem;
  padding: .07rem 0;
  display: none;
}

.headNavTwo a {
  padding: 0 .23rem;
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
  white-space: nowrap;
  line-height: .38rem;
  text-align: center;
  transition: all .3s;
}

.headNavTwo a:hover{
  background: #D50000;
  color: #FFFFFF;
}

.headTel {
  height: 100%;
  padding-left: .35rem;
  padding-right: .41rem;
  border: 0.01rem solid rgba(255, 255, 255, .3);
  border-top: 0;
  border-bottom: 0;
  display: flex;
  align-items: center;
  column-gap: .14rem;
}

.headTelIcon {
  width: 0.26rem;
  height: 0.26rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.headTel:hover .headTelIcon{
  transition: all 2s;
  transform: rotateZ(-360deg);
}

.headTelIcon img {
  width: .14rem;
  height: auto;
}

.headTel span {
  font-family: MiSans;
  font-weight: bold;
  font-size: 0.18rem;
  color: #FFFFFF;
}

.language {
  width: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language a {
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
}

.headSerach {
  width: 1.01rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D50000;
}

.headSerach a {
  width: .3rem;
  height: .3rerm;
  position: relative;
  z-index: 9;
}

header.on,
header.active {
  background: #FFFFFF;
  box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(16, 16, 16, 0.02);
}

header.on .headLogo img:first-child,
header.active .headLogo img:first-child {
  display: none;
}

header.on .headLogo img:last-child,
header.active .headLogo img:last-child {
  display: block;
}

header.on .headNavItem>a,
header.active .headNavItem>a {
  color: #000000;
}

header.on .headNavItem:hover>a,
header.active .headNavItem:hover>a{
  color: #244FB7;
}

header.on .headNavItem:active>a,
header.active .headNavItem.active>a {
  color: #244FB7;
}

header.on .headNavItem.active::after,
header.active .headNavItem.active::after {
  opacity: 1;
}

header.on .headTel span,
header.active .headTel span{
  color: #244FB7;
}

header.on .language a,
header.active .language a{
  background: #244FB7;
} 