.search {
  margin: 0 0 0 10px;
  position: relative;
}

.search h3 {
  width: 45px;
  height: 36px;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
  text-align: center;
}

.search h3 i {
  color: #333;
  font-size: 25px;
  line-height: 36px;
  -webkit-text-stroke-width: 0.1px;
  text-stroke-width: 0.1px;
}

@media screen and (max-width: 768px) {
  .search h3 i {
    font-size: 22px;
  }
}

.search .serchbox {
  display: none;
  position: absolute;
  background: #666;
  width: 255px;
  padding: 10px;
  top: 36px;
  right: 0;
  z-index: 1000;
}

.search .serchbox .submit_text {
  background: #fff;
  border: 1px solid #fff;
  border-right: none;
  width: 200px;
  height: 33px;
  line-height: 33px;
  float: left;
  color: #333;
  padding: 0 0 0 6px;
}

.search .serchbox .submit_btn {
  width: 35px;
  background: var(--color-primary);
  font-size: 14px;
  color: #fff;
  height: 33px;
  line-height: 33px;
  text-align: center;
  display: block;
  float: right;
  cursor: pointer;
}

.search:hover h3 {
  background: #666;
}

.search:hover h3 i {
  color: #fff !important;
}

.search:hover .serchbox {
  display: block;
}
