$--font-size-extra-large: 20px !default;
$--font-size-large: 16px !default;
$--font-size-medium: 14px !default;
$--font-size-base: 12px !default;
$--font-size-small: 10px !default;
$--font-size-extra-small: 9px !default;
/* 改变主题色变量 */
$--color-primary: #409eff;
/* 自定义主题色变量 */
.primaryColor {
  background-color: #409eff;
}
//弹窗样式
.dialog-selector__wrapper {
  overflow: unset !important;
  .el-dialog {
    width: 80%;
    height: 76%;
    .el-dialog__header {
      background: #f8f8f8;
      padding: 6px 20px;
      height: 24px;
      line-height: 24px;
      border-bottom: 1px solid #eee;
      border-radius: 2px 2px 0 0;
    }

    .el-dialog__title {
      font-size: 16px;
      color: #333;
    }

    .el-dialog__headerbtn {
      top: 11px;
    }
    .el-dialog__body {
      height: calc(100% - 120px);
      padding-top: 10px;
      padding-bottom: 10px;
      overflow: auto;
      font-size: 12px;
      .el-main {
        padding-top: 0;
        padding-bottom: 0;
      }
      .el-container {
        height: 100%;
      }
    }
    .el-input__inner {
      font-size: 12px;
    }
    .left-aside {
      overflow: unset;
      .box-card {
        height: 100%;
        .el-card__body {
          max-height: unset;
          overflow: auto;
          height: calc(100% - 90px);
        }
      }
    }
  }
  //弹窗底部按钮样式
  .dialog-footer {
    text-align: center;
  }
}
.dialog-selector__wrapper {
  @media (max-width: 1024px) {
    .el-dialog {
      width: 100%;
      height: 90%;
      margin-top: 4vh !important;
      .ht-selector__table {
        height: 380px;
      }
    }
  }

  @media (min-width: 1152px) and (max-width: 1400px) {
    .el-dialog {
      width: 90%;
    }
  }
}

//分页样式
.ht-footer__pagination {
  .el-pagination span:not([class*="suffix"]),
  .el-pagination button {
    font-size: 12px;
  }
  .el-pagination__total,
  .el-pagination__sizes {
    margin-right: 5px;
  }
  .el-pagination__sizes {
    .el-input .el-input__inner {
      font-size: 12px;
      height: 24px !important;
      line-height: 24px;
    }
  }
}
//查询样式
.ht-header__search {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  .ht-header__input {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
//table样式
.ht-selector__table {
  width: 100%;
  height: 100%;
  overflow: auto;
  .el-table__body-wrapper {
    height: calc(100% - 45px);
    overflow: auto;
  }
}
//选择器上移下移删除清空按钮样式
.selector-button-group {
  width: 60px;
  height: 170px;
  margin: 0px auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.selector-button-group > button {
  display: block;
  margin: 8px 0;
}
