.zbx-select-input {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 12px 16px;
  background: #f3f3f3;
  border-radius: 20px;
  //justify-content: space-between;
  .select-box {
    position: relative;
    display: flex;
    align-items: center;
    height: 16px;
    padding-right: 12px;
    font-size: 12px;
    &::after {
      position: absolute;
      top: 0;
      right: 0;
      display: block;
      height: 100%;
      border-left: solid 1px #e6e7ec;
      content: ' ';
    }
    .down {
      margin-left: 6px;
      color: rgba(0, 0, 0, 0.25);
      font-size: 10px;
    }
  }
  .input {
    position: relative;
    top: 1px;
    margin-left: 6px;
    font-size: 14px;
    background: transparent;
    border: none;
    outline: none;
    //&::placeholder {
    //  font-size: 14px;
    //  font-weight: 500;
    //  color: #999999;
    //}
  }
}
