.nav-tabs {
  width: 100%;
  .tab-list {
    width: calc(100% - 138px);
    display: inline-block;
    position: relative;
    margin-right: 10px;

    .el-button {
      box-shadow: 0 7px 9px 0 rgba($dark, .08);
      box-shadow: 0 7px 9px 0 rgba(var(--dark), .08);
      border: 0;
    }

    .is-more {
      position: absolute;
      top: 0;
      right: 0;
    }
  }
  .list-complete-item {
    display: inline-block;
    position: relative;
    margin-right: 15px;
    transition: all .3s;

    .el-button {
      height: 36px;
      padding: 10px 30px;
    }

    .el-badge {
      position: absolute;
      // width: 16px;
      // height: 16px;
      top: -4px;
      right: 0;
      cursor: pointer;

      .el-icon-error {
        border-radius: 50%;
        background-color: #fff;
        color: $theme;
        color: var(--theme);
      }
    }

    &.is-active {
      .el-icon-error {
        background-color: $theme;
        background-color: var(--theme);
        color: #fff;
      }
    }
  }
  .list-complete-enter, .list-complete-leave-to
  /* .list-complete-leave-active for below version 2.1.8 */ {
    opacity: 0;
    transform: translateY(30px);
  }
  .list-complete-leave-active {
    position: absolute;
  }

  .quick-operate {
    display: flex;
    width: 100px;
    height: 36px;
    padding: 0 14px;
    background-color: #e9e9e9;
    color: #000;
    border-radius: 18px;
    float: right;
    box-shadow: 0 7px 9px rgba($dark, .04);
    box-shadow: 0 7px 9px rgba(var(--dark), .04);
    justify-content: space-around;
    align-items: center;

    .icon {
      width: 20px;
      height: 20px;
      font-size: 20px;
      cursor: pointer;
    }
  }
}
.hidden-tabs-popup {
  // background-color: transparent;
  .list-complete-item {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;

    &:hover {
      color: $theme;
      color: var(--theme);
    }

    &.active {
      color: $theme;
      color: var(--theme);
    }
  }
}
