@import "../style/var.less";
@import "../style/base.less";
.fe-tree-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  font-size: 14px;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  &-parent {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    overflow-y: auto;
    background-color: #fafafa;
    position: relative;
    &-item {
      height: 44px;
      line-height: 44px;
      padding: 0 8px 0 12px;
      border-left: 3px solid transparent;
      &&-active {
        font-weight: bold;
        background-color: #ffffff;
        // color: @nuofe;
        // border-color: @nuofe;
      }
      &&-disabled {
        color: #969799;
      }
    }
  }
  &-children {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
    flex: 2;
    overflow-y: auto;
    background-color: #fff;
    position: relative;
    &-item {
      height: 44px;
      line-height: 44px;
      padding: 0 24px 0 16px;
      position: relative;
      // &&-active {
      //   // color: @nuofe;
      // }
      &&-disabled {
        color: #ccc;
      }
      .feui-mcheck {
        position: absolute;
        right: 8px;
        top: 50%;
        margin-top: -7px;
      }
    }
  }
}
