.myhead {
  width: calc(100% - 30px);
  padding: 0px 15px;
  background: #0065a0;
  display: flex;
  position: relative;
}
@media screen and (max-width: 400px) {
  .myhead {
    width: calc(100% - 9.7vw);
    padding: 0px 4.85vw;
  }
}
.myhead .head_box {
  flex: 1;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .myhead .head_box {
    justify-content: space-between;
  }
}
.myhead .head_box .menu_h5,
.myhead .head_box .search_h5 {
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.myhead .head_box .menu_h5 img,
.myhead .head_box .search_h5 img {
  width: 35px;
}
@media screen and (max-width: 1150px) {
  .myhead .head_box .menu_h5,
  .myhead .head_box .search_h5 {
    display: flex;
  }
}
@media screen and (max-width: 400px) {
  .myhead .head_box .menu_h5 img,
  .myhead .head_box .search_h5 img {
    width: 8.7vw;
  }
}
.myhead .head_box .logo_box {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myhead .head_box .logo_box a {
  display: flex;
}
.myhead .head_box .logo_box .logo {
  width: 100%;
}
@media screen and (max-width: 400px) {
  .myhead .head_box .logo_box {
    width: 45vw;
  }
}
.myhead .head_box .menu_pc {
  margin-left: auto;
  display: flex;
}
.myhead .head_box .menu_pc .menu_item {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  padding: 0px 15px;
  position: relative;
}
.myhead .head_box .menu_pc .menu_item:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 14px;
  background: #014c78;
  right: -1px;
}
.myhead .head_box .menu_pc .menu_item:hover {
  background: #5da4cd;
}
.myhead .head_box .menu_pc .menu_item:last-child:after {
  background: #0000;
}
@media screen and (max-width: 1150px) {
  .myhead .head_box .menu_pc {
    display: none;
  }
}
.myhead .head_box .search_box {
  width: 200px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.myhead .head_box .search_box .inp {
  width: 100%;
  height: 30px;
  padding: 0px 40px 0px 10px;
  font-size: 14px;
  border-width: 0px;
  border-radius: 5px;
  color: #000;
  outline: none;
}
.myhead .head_box .search_box .inp::placeholder {
  color: #999999;
}
.myhead .head_box .search_box .clear,
.myhead .head_box .search_box .search {
  display: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.myhead .head_box .search_box .clear img,
.myhead .head_box .search_box .search img {
  width: 28px;
}
.myhead .head_box .search_box .search {
  position: absolute;
  right: 0;
  display: flex;
  margin-right: 15px;
}
@media screen and (max-width: 1150px) {
  .myhead .head_box .search_box {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0;
    height: 50px;
    background: #fff;
    justify-content: space-between;
    overflow: hidden;
  }
  .myhead .head_box .search_box .inp {
    width: 85%;
    margin: 0 8px;
    height: 30px;
    padding: 0px;
    border-bottom: 1px solid #0065a0;
    border-radius: 0px;
  }
  .myhead .head_box .search_box .clear,
  .myhead .head_box .search_box .search {
    position: relative;
    display: flex;
  }
  .myhead .head_box .search_box .clear img,
  .myhead .head_box .search_box .search img {
    width: 30px;
  }
  .myhead .head_box .search_box .clear {
    margin-left: 10px;
  }
  .myhead .head_box .search_box .search {
    margin-right: 10px;
  }
}
@media screen and (max-width: 400px) {
  .myhead .head_box .search_box {
    height: 12.5vw;
  }
  .myhead .head_box .search_box .inp {
    margin: 0 2vw;
    height: 7.5vw;
    border-bottom-width: 0.25vw;
    font-size: 3.5vw;
  }
  .myhead .head_box .search_box .clear img,
  .myhead .head_box .search_box .search img {
    width: 7.5vw;
  }
  .myhead .head_box .search_box .clear {
    margin-left: 2.5vw;
  }
  .myhead .head_box .search_box .search {
    margin-right: 2.5vw;
  }
}
.myhead .drawer_box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s;
}
.myhead .drawer_box .drawer_bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
}
.myhead .drawer_box .drawer_menu {
  position: absolute;
  top: 0px;
  left: -400px;
  width: 80%;
  height: 100%;
  max-width: 410px;
  overflow: auto;
  background: #014c78;
  transition: all 0.3s;
}
.myhead .drawer_box .drawer_menu .top {
  width: calc(80% - 20px);
  max-width: 390px;
  position: fixed;
  top: 0;
  z-index: 2;
  background: #0065a0;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myhead .drawer_box .drawer_menu .top .drawer_clear {
  cursor: pointer;
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myhead .drawer_box .drawer_menu .top .drawer_clear img {
  width: 35px;
}
.myhead .drawer_box .drawer_menu .top .d_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  max-width: 160px;
}
.myhead .drawer_box .drawer_menu .top .d_logo img {
  width: 100%;
}
.myhead .drawer_box .drawer_menu .box {
  padding: 63px 0px 80px;
  display: flex;
  flex-direction: column;
}
.myhead .drawer_box .drawer_menu .box .menu_item {
  padding: 15px 18px;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}
.myhead .drawer_box .drawer_menu .box .menu_item:after {
  content: '';
  position: absolute;
  width: 85%;
  height: 1px;
  background: #5da4cd;
  bottom: -1px;
}
.myhead .drawer_box .drawer_menu .box .menu_item:hover {
  background: #5da4cd;
}
.myhead .drawer_box .drawer_menu .box .menu_item:last-child:after {
  background: #0000;
}
@media screen and (max-width: 400px) {
  .myhead .drawer_box .drawer_menu .top {
    width: calc(80% - 5vw);
    padding: 1.25vw 2.5vw;
  }
  .myhead .drawer_box .drawer_menu .top .drawer_clear {
    left: 2.5vw;
  }
  .myhead .drawer_box .drawer_menu .top .drawer_clear img {
    width: 8.75vw;
  }
  .myhead .drawer_box .drawer_menu .box {
    padding: 15vw 0px 20vw;
  }
  .myhead .drawer_box .drawer_menu .box .menu_item {
    padding: 3.75vw 4.5vw;
    font-size: 4vw;
  }
  .myhead .drawer_box .drawer_menu .box .menu_item:after {
    height: 0.25vw;
    bottom: -0.25vw;
  }
}
.myhead .drawer_box .drawer_menu::-webkit-scrollbar {
  width: 0;
  height: 0;
}
