// 筛选按钮
.queryPanel-filter-btn {
  display: flex;
  align-items: center;
  padding-right: 14px;
  color: rgba(0, 0, 0, 0.7);

  & > .anticon {
    font-size: 24px !important;
  }

  & > .filter-text {
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: keep-all;
  }
}

// 已筛选状态颜色
.hasFiltered-color {
  color: var(--primary-color, #008ee0);
}

// 弹出层主题
.queryPanel-content {
  width: 90vw;
  padding: 49px 10px 34px;

  .ant-spin-nested-loading {
    height: 100%;
  }

  .ant-spin-container {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .form-container {
    flex: 1;
    overflow-y: auto;
  }

  .btn-group-container {
    display: flex;
    align-items: center;
    gap: 0 20px;
    padding: 14px 0 0;

    button {
      flex: 1 1 auto;
      height: 42px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: bold;
    }

    .ant-btn-default {
      background: rgb(248, 248, 248);
      border-color: rgb(248, 248, 248);
    }
  }
}
