@font-face {
	font-family: 'hyxrws';
	src: url('../fonts/HYXinRenWenSongW.ttf') format('truetype');
}
@font-face {
	font-family: 'hyxlsj';
	src: url('../fonts/HYXiaoLiShuJ.ttf') format('truetype');
}
*{
  margin: 0;
  padding: 0;
}
p {
  display: block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

/* 菜单按钮-start */
.btn-menu{
  height: 28px;
  width: 25px;
  cursor: pointer;
  z-index: 99;
  -webkit-transition: opacity .25s ease;
  -moz-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
  display: none;
  flex-direction: column;
  justify-content: space-around;

}
.btn-menu span{
  display: block;
  background: #000;
  border: none;
  height: 2px;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  -moz-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
.btn-menu .middle{
  width: 60%;
}
.buttonactive>.top{
  -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
  -ms-transform: translateY(9px) translateX(0) rotate(45deg);
  transform: translateY(9px) translateX(0) rotate(45deg);
  background: #000;
}
.buttonactive>.middle{
  opacity: 0;
  background: #000;
  width: 60%;
}
.buttonactive>.bottom{
  -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
          transform: translateY(-9px) translateX(0) rotate(-45deg);
  background: #000;
}
/* 菜单按钮-end */

.head-c{
  position: relative;
  width: 100%;
  height: 4.6vw;
  z-index: 2;
  background: #fff;
  /* overflow: hidden; */
}
.head-bg{
  width: 86%;
  height: 100%;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
}

.head-logo{
  display: flex;
}
.head-logo a{
  position: relative;
  display: block;
  width: 9vw;
}
.head-logo a img{
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.head-list{
  position: absolute;
  z-index: 2;
  width: 70%;
  right: 7%;
  top: 0;
  display: flex;
  justify-content: flex-end;
}
.head-item{
  position: relative;
  width: 6vw;
  cursor: pointer;
}
.head-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: calc(100% - 3px);
  border-bottom: 3px solid #1448b5;
  transition: all 0.2s linear 0s;
}
.head-item:hover::before {
  width: 100%;
  left: 0;
}
.head-item:hover~.head-item::before {
  left: 0;
} 

.head-item .f-level{
  position: relative;
  display: block;
  width: 100%;
  height: 4.6vw;
  text-decoration: none;
}
.head-item .f-level p{
  font-size: 0.8vw;
  text-align: center;
  line-height: 4.6vw;
  color: #0b0b0b;
  font-weight: 550;
}
/* .head-item .f-level:hover, .head-item .menu-on{
  background: #0267fd;
}
.head-item .f-level:hover p, .head-item .menu-on p{
  color: #fff;
} */
.child-item{
  position: absolute;
  min-width: 6vw;
  width: max-content;
  display: none;
}

.s-level{
  display: block;
  text-decoration: none;
  width: auto;
  background: #fff;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
}
.s-level p{
  width: auto;
  display: block;
  color: #000;
  font-size: 0.6vw;
  line-height: 2vw;
  text-align: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.s-level:last-child p{
  border: none;
}
.s-level:hover{
  background: #bdf3f9;
}

@media screen and (max-width: 1920px){
  .head-item .f-level p{
    font-size: 1vw;
  }
  .s-level p{
    font-size: 0.8vw;
  }
}
@media screen and (max-width: 1024px){
  .btn-menu{
    position: absolute;
    display: flex;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .head-c{
    height: 7vh;
  }

  .head-bg{
    position: relative;
    width: 92vw;
  }
  .head-logo{
    height: 100%;
  }
  .head-logo a{
    width: auto;
    height: 100%;
  }
  .head-logo a img{
    height: 80%;
  }

  .head-list{
    display: none;
    position: absolute;
    left: 0;
    top: 7vh;
    width: 100%;
    height: calc(100vh - 7vh);
    background: #fff;
    background-size: 100% 100%;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 4%;
    padding-right: 4%;
    box-sizing: border-box;
    z-index: 9999;
  }
  .head-list::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1448b5;
  }
  .head-item{
    width: 100%;
  }
  .head-item::before{
    display: none;
    height: calc(6vh - 1px);
    border-bottom: 1px dashed #1448b5;
  }
  .head-item .f-level{
    height: 6vh;
  }
  .head-item .f-level p{
    line-height: 6vh;
    font-size: 3vw;
  }
  .child-item{
    position: relative;
    width: 100%;
  }
  .s-level{
    width: 100%;
  }
  .s-level p{
    line-height: 5vh;
    font-size: 2.4vw;
  }
  .s-level:first-child p{
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
  }
  .s-level:last-child p{
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px){
  
  .head-item .f-level{
    height: 7vh;
  }
  .head-item .f-level p{
    font-size: 5vw;
    line-height: 7vh;
  }
  .s-level p{
    font-size: 3.8vw;
    line-height: 6vh;
  }
}