@import "mixins/mixins";
@import "common/var";

@include b(select-group) {
  $gap: 20px;

  margin: 0;
  padding: 0;

  @include e(wrap) {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    &:not(:last-of-type) {
      padding-bottom: 9px;
      &::before {
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        //left: $gap;
        //right: $gap;
        bottom: 4px;
        height: 1px;
        background: $--background-input-color-base;
      }
    }
  }

  @include e(title) {
    padding: 0 12px;
    font-size: $--select-group-font-size;
    color: $--select-group-color;
    line-height: $--select-group-height;
  }

  & .el-select-dropdown__item {
    //padding-left: $gap;
  }
}
.no-border{
  padding-bottom: 0!important;
  &::before {
    display: none!important;
  }
}