.box {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  color: #333;
}

.modalBox {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px 10px 0 0;
  padding: 20px 0;
  box-sizing: border-box;
  transition: all 0.3s;
  height: 700px;
  color: #333;

  :global {
    input,
    textarea {
      color: #333 !important;
    }

    .placeholder {
      color: #999 !important;
    }
  }
}

.head {
  height: 80px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 20px;
}

.list {
  padding: 20px;
  box-sizing: border-box;
  height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.item {
  height: 80px;
  border-bottom: 1px solid #eee;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.searchInput {
  color: #333 !important;
}
