.april-select-option{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  &:focus{
    outline: none;
  }
  .april-select-c{
    padding: 0;
    margin: 0;
    font-size: 14px;
    position: absolute;
    width: 100%;
    max-height: 240px;
    overflow-y: auto;
    left: 0;
    z-index: 9999;
    box-sizing: border-box;
    top: 44px;
    background-color: #fff;
    border-radius: 4px;
    outline: none;
    box-shadow: 0 2px 8px 4px rgba(0, 0, 0, 0.15);
    &-item-selected{
      background-color: #bae7ff;
    }
    li{
      text-indent: 12px;
      cursor: pointer;
      line-height: 30px;
      &:hover{
        background-color: #bae7ff;
      }
    }
  }
}