header .head1 {
  gap: 17.8646vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.00) 100%);
  backdrop-filter: blur(0px);
}

header .head1 .menu {
  gap: 4.6875vw;
}

header .head1 .flex-yc {
  gap: 8.8542vw;
}

header .head1 .flex-yc .right {
  gap: 2.0833vw;
}

header .head1 .flex-yc .right .icon {
  cursor: pointer;
}

header .head1 .logo {
  margin-left: 4.9479vw;
  display: flex;
  width: 8.1771vw;
  height: 3.5533vw;
  padding: 0;
  flex-shrink: 0;
}

.head1 .link a {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.head1 .flex-yc .right .search_icon {
  width: 1.25vw;
  height: 1.25vw;
}

.head1 .flex-yc .right .search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 8.5938vw; */
  width: fit-content;
  /* height: 50px; */
  padding: 8px 10px 8px 32px;
  gap: 24px;
  flex-shrink: 0;
  border-radius: 1000px;
   background: linear-gradient(90deg, #00A0E9 0%, #68B731 50%,#00A0E9 100%) left/150% 100%;
  transition: background 1s ease;
}
.head1 .flex-yc .right .search:hover{
    background-position:right;
}

.head1 .flex-yc .right .search p {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-style: normal;
  font-weight: 700;
  line-height: 1.5
}

.head1 .flex-yc .right .search img {
  width: 2.0833vw;
  height: 2.0833vw;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

header .head1 .flex-yc .right .language {
  display: flex;
  gap: 0.1563vw;
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

header .dropdown {
  display: none;
  width: 100%;
  height: 220px;
  background: linear-gradient(179deg, rgb(0 0 0), transparent 90%);
  /* position: absolute; */
  position: fixed;
  z-index: 10;
}

header .dropdown.show {
  display: block;
}

header .dropdown-list-wrapper {
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 99;
}

header .dropdown-list-wrapper .search-container {
  position: relative;
  max-width: 500px;
  margin: 20px auto;
}

header .dropdown-list-wrapper .search-form {
  width: 100%;
}

header .dropdown-list-wrapper .search-input {
  background: url(/img/search.svg) no-repeat;
  position: absolute;
  transform: translateX(-50%);
  background-size: 1.25vw 1.25vw;
  background-position: 16px;
  background-color: rgb(0 0 0 / 18%);
  width: 26.042vw;
  padding: 0.625vw 1.042vw 0.625vw 3.083vw;
  border: 1px solid #ddd;
  border-radius: 1.25vw;
  font-size: 0.833vw;
  height: 2.6042vw;
  color: #FFF;
  outline: none;
  transition: all 0.3s;
}

header .dropdown-list-wrapper .search-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

header .dropdown-list-wrapper .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;

}

.dropdown .drop_item {
  position: absolute;
  top: 2.6042vw;
  border-radius: 0 0 1.0417vw 1.0417vw;
  transform: translateX(-50%);
  height: auto;
  background-color: #fff;
  width: 23.042vw;
}

.dropdown .drop_item .item {
  padding: 1.0417vw;
  display: flex;
  justify-content: center;
  flex-direction: column;
}




@media (max-width:768px) {
  header .head1 {
    justify-content: space-between;
  }

  header .head1 .logo {
    width: 100px;
    height: 48px;
  }
  
  .head1 .menu {
    height: 100vh;
  }

  .head1 .link a {
    color: #000;
  }

  header.open .menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .head1 .link {
    height: 50px;
  }
  .head1 .flex-yc .right .search_icon {
    width: 25px;
    height: 25px;
  }
  header .head1 .flex-yc .right {
    gap: 40px;
  }
  header .dropdown-list-wrapper .search-input {
    width: 280px;
    height: 50px;
    padding: 6px 10px 6px 40px;
    font-size: 12px;
    background-size: 25px 25px;
    background-position: 6px 10px
  }
  .dropdown .drop_item .item {
    padding: 12px;
  }
  .dropdown .drop_item {
    top: 52px;
    width: 200px;
  }
}