.taro-input {
  overflow: hidden;
  position: relative;
  display: block;
  height: 14px;
  min-height: 14px;
  white-space: nowrap;
  text-overflow: clip;
  color: #333;
}
.taro-input_content {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: inherit;
  text-overflow: inherit;
}
.taro-input_placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  font-size: inherit;
  color: #ccc;
  transform: translateY(-50%);
}
.taro-input_main {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  text-align: inherit;
  text-overflow: inherit;
  font-family: inherit;
  padding: inherit;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}