.#{$menu-prefix-cls} {
  position: fixed;
  top: $nav-bar-height;
  bottom: 0;
  left: 0;
  z-index: $menu-zindex;
  display: flex;
  width: 100%;

  &__list {
    flex: 1;
    height: 100%;
    overflow-y: auto;
    background-color: $white;

    &--submenu {
      background-color: $gray-3;
    }
  }

  &__item {
    height: $menu-item-height;
    padding: 0 $menu-item-padding-x;
    font-size: $menu-item-font-size;
    font-weight: 600;
    line-height: $menu-item-height;
    color: $gray-10;

    &--active {
      color: $gray-9;
      background-color: rgba($primary-dark-80,.1);
    }
  }
}
.checkall-btn {
  width: 0.6rem;
  padding-left: 0.28rem;

  &.has-label {
      width: auto;
      line-height: 0.88rem;
      padding-right: .3rem;
      display: flex;
      align-items: center;
      justify-content: flex-end;

      i {
          margin-left: .2rem;
      }
  }

  .menu-check-default {
      display: inline-block;
      width: $radio-size;
      height: $radio-size;
      font-size: $radio-size;
      content: '';
      border-radius: 0.08rem;
      background: #fff;
      font-weight: 700;
      border: 0.02rem solid #b2b2b2;
  }
}
