.search-btn {
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  position: fixed;
  right: 200px;
  top: 16px;
  z-index: 1;
  height: 40px;
  width: 40px;
  .icon {
    fill: #383838;
    height: 34px;
    padding: 4px;
    width: 34px;
  }
}

.edit {
  position: fixed;
  top: 18px;
  right: 124px;
  border: 1px solid #f26b00;
  border-radius: 3px;
  color: #f26b00;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2em;
  padding: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.edit:hover {
  background: #e2722d;
  color: #fff;
}

img {
  position: fixed;
  top: 19px;
  width: 36px;
  height: 36px;
  right: 70px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: none;
}
.modal.active {
  display: flex;
}
.modal .mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(56, 56, 56, 0.35);
  z-index: 1;
}
.modal .content {
  z-index: 2;
  width: 600px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  top: 108px;
  position: fixed;
  background: #fff;
}
.input {
  height: 60px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
  color: #ccc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-color: #e4e4e5;
  color: #ccc;
  padding: 0 16px;
  .icon {
    -webkit-box-flex: 0;
    fill: currentColor;
    flex: 0 0 auto;
    height: 20px;
    margin: auto 14px auto auto;
    width: 20px;
  }
}
input {
  width: 80%;
  border: 0;
  height: 60px;
  flex: 1 1 auto;
  font-size: 24px;
  line-height: 28px;
  border: none;
}
input:focus {
  outline: none;
}
#search-result {
  background-color: #fff;
  max-height: 460px;
  overflow-y: auto;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  ul {
    margin: 10px 20px;
    margin-left: 30px;
    li {
      list-style: disc;
      padding: 5px 0;
    }
  }
  .search-item {
    margin: 5px 20px;
  }
}
#search-result .select:hover {
  color: salmon;
  cursor: pointer;
}
#search-result::-webkit-scrollbar {
  width: 4px;
}
#search-result::-webkit-scrollbar-track {
  background: rgb(239, 239, 239);
  border-radius: 10px;
}
#search-result::-webkit-scrollbar-thumb {
  background: #bfbfbf;
  border-radius: 102px;
}
#search-result::-webkit-scrollbar-thumb:hover {
  background: #333;
}
