.ivu-tabs-no-animation>.ivu-tabs-content{
  padding: 0 16px;
}
.ivu-card-head{
  padding: 14px 0;
}
.app-search-form {
  .ivu-form-item{
    margin-bottom: 8px;
  }
  >.ivu-row {
    height: 100%;
    display: flex;
    padding: 4px;
  }
  .form-content {
    flex: 1;
    padding-right: 8px;

    .form-layout-container {
      min-width: 300px;
    }
  }
  .search-action-footer {
      height: 42px;
      display: flex;
      justify-content: flex-end;
      .el-button{
        padding: 10px 20px;
      }
      .el-button.el-button--primary.el-dropdown__caret-button{
        padding-left: 5px;
        padding-right: 5px;
      }
      .el-select {
        padding-right: 12px;
      }
      > .search-button {
        .el-dropdown .el-button-group .el-button{
          line-height: 30px;
        }
        .search_reset, .save-button {
          height: 28px;
          margin-right: 4px;
          margin-left: 0;
        }
        .save-button {
          margin-right: 0;
        }
      }
  }
}
.app-quick-search-form {
  padding-top: 10px;
  .app-form-item {
    .app-form-item-label {
      padding: 10px 8px 6px 0px;
    }
  } 
}
.app-search-form.no-search-action, .app-search-form.right-button {
  .form-content {
    height: 100%;
  }
}
//  按钮在右侧
.app-search-form.right-button {
  > .ivu-row {
    display: flex;
    .search-action-footer {
      height: 100%;
      padding-top: 0;
      > .search-button {
        padding-top: 2px;
        .search_reset, .save-button {
          margin-top: 0;
        }
      }
    }
  }
} 
.form-content {
  height: calc(100% - 42px);
}
.app-search-form-flex {
  height: 100%;
  > .ivu-row {
      height: 100%;
      > .ivu-tabs {
          height: 100%;
          display: flex;
          flex-direction: column;
          > .ivu-tabs-content {
              flex-grow: 1;
              overflow: auto;
              > .ivu-tabs-tabpane {
                  height: 100%;
              }
          }
      }
  }
}
.app-tabpanel-flex {
  height: 100%;
  > .ivu-tabs-content {
      height: calc(100% - 52px);
      > .ivu-tabs-tabpane {
          height: 100%;
      }
  }
}
.searchform-popover.el-popover {
  width: 50%;
  left: auto !important;
  right: 32px;
  border-radius: unset;
}
.search-action-select {
  .el-select-dropdown__item {
    //  过滤条件项超出省略
    .searchform-action-item {
      max-width: 240px;
      padding-right: 6px;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      word-break: break-all;
    }
    .el-icon-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      display: none;
    }
    &:hover {
      .el-icon-close {
        display: block;
      }
    }
  }
}