.myhead .head_main {
  z-index: 1;
  width: 94px;
  height: 94px;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 10px 0 rgba(0, 0, 0, 0.2);
}
.myhead .head_main .head_top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 8px 8px;
  transition: transform 0.3s;
}
.myhead .head_main .head_top img {
  width: 80px;
}
.myhead .head_main .head_top:hover {
  transform: scale(1.1);
}
.myhead .head_main .head_bottom {
  border-top: 2px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.myhead .head_main .head_bottom .bottom {
  cursor: pointer;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  padding-bottom: 5px;
}
.myhead .head_main .head_bottom .bottom img {
  margin-top: 5px;
  width: 33px;
  transition: transform 0.3s;
}
.myhead .head_main .head_bottom .bottom_l {
  border-right: 2px solid #ececec;
}
.myhead .head_main .head_bottom .bottom:hover {
  background: rgba(107, 186, 255, 0.2);
}
.myhead .head_main .head_bottom .bottom:hover img {
  transform: scale(1.2);
}
.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.6);
  backdrop-filter: blur(3px);
}
.myhead .drawer_box .drawer_search {
  position: absolute;
  top: 0px;
  left: -750px;
  height: 100%;
  width: 690px;
  transition: left 0.3s;
}
.myhead .drawer_box .drawer_search .return {
  box-shadow: 0px 3px 12px 3px rgba(60, 60, 60, 0.3);
  position: absolute;
  top: 32px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
}
.myhead .drawer_box .drawer_search .return img {
  width: 40px;
  border-radius: inherit;
}
.myhead .drawer_box .drawer_search .box {
  background-color: #83ffe7;
  height: calc(100% - 30px);
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 30px;
  width: 100%;
}
.myhead .drawer_box .drawer_search .box .up {
  height: 64px;
  padding: 0px 50px 0px 20px;
}
.myhead .drawer_box .drawer_search .box .up .search_inp {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 5px 3px rgba(60, 60, 60, 0.3);
  position: relative;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .inp {
  width: 100%;
  padding: 0px 10px 0px 20px;
  height: 100%;
  font-size: 20px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0);
  border: none;
  outline: none;
  color: #002b50;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .inp::placeholder {
  color: #bac9de;
  font-weight: 500;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .btn {
  height: 100%;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
  border-width: 0px;
  border-right: 2px solid #f0f5fc;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .btn img {
  width: 35px;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .icon,
.myhead .drawer_box .drawer_search .box .up .search_inp .clear_inp {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .icon img,
.myhead .drawer_box .drawer_search .box .up .search_inp .clear_inp img {
  width: 35px;
}
.myhead .drawer_box .drawer_search .box .up .search_inp .clear_inp {
  display: none;
}
.myhead .drawer_box .drawer_search .box .below {
  margin: 22px;
}
.myhead .drawer_box .drawer_search .box .below .search {
  display: flex;
  flex-direction: column;
}
.myhead .drawer_box .drawer_search .box .below .search .title {
  margin-bottom: 10px;
  color: #002b50;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 750px) {
  .myhead .drawer_box .drawer_search .return {
    display: none;
  }
  .myhead .drawer_box .drawer_search .box {
    padding-top: 6.5vw;
    height: calc(100% - 6.5vw);
    margin-right: auto;
    width: 100%;
  }
  .myhead .drawer_box .drawer_search .box .up {
    height: 11.2vw;
    padding: 0px 5.7vw 0px 2.7vw;
  }
  .myhead .drawer_box .drawer_search .box .up .search_inp {
    border-radius: 2vw;
  }
  .myhead .drawer_box .drawer_search .box .up .search_inp .icon,
  .myhead .drawer_box .drawer_search .box .up .search_inp .clear_inp {
    height: 11.5vw;
    width: 11.5vw;
    margin-right: 1vw;
  }
  .myhead .drawer_box .drawer_search .box .up .search_inp .icon img,
  .myhead .drawer_box .drawer_search .box .up .search_inp .clear_inp img {
    width: 80%;
  }
  .myhead .drawer_box .drawer_search .box .up .search_inp .btn {
    padding: 0px 2vw;
    border-right-width: 0.5vw;
  }
  .myhead .drawer_box .drawer_search .box .up .search_inp .btn img {
    width: 5vw;
  }
  .myhead .drawer_box .drawer_search .box .up .search_inp .inp {
    padding: 0px 1.7vw 0px 2.2vw;
    font-size: 3vw;
  }
  .myhead .drawer_box .drawer_search .box .below {
    padding: 0px 5.2vw 0px 3vw;
  }
  .myhead .drawer_box .drawer_search .box .below .search .title {
    line-height: 3.7vw;
    margin-bottom: 2.7vw;
  }
}
.myhead .drawer_box .drawer_search::-webkit-scrollbar {
  width: 0;
  height: 0;
}
