.nova-search {
  margin-bottom: 16px;
  font-size: var(--el-font-size-base);
}
.nova-search__header-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.nova-search__header-wrapper-item {
  width: 210px;
  flex-shrink: 0;
  margin-right: 24px;
}
.nova-search__content {
  padding: 8px 0;
}
.nova-search__content.border::after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  top: 8px;
  border-bottom: var(--el-border);
}
.nova-search__options {
  display: flex;
  align-items: center;
}
.nova-search__options-label {
  flex-shrink: 0;
  line-height: 32px;
  height: 32px;
  width: 62px;
  padding: 0;
  color: var(--el-text-color-regular);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nova-search__options-main {
  width: 100%;
}
.nova-search__options.flex-align-top {
  align-items: flex-start;
}
.nova-search .el-input-group__append button.el-button {
  height: 100%;
  line-height: normal;
  border-radius: 0 var(--el-input-border-radius) var(--el-input-border-radius) 0;
  width: 100px;
  background-color: var(--el-button-bg-color);
  border-color: var(--el-button-border-color);
  color: var(--el-button-text-color);
}
.nova-search .el-input-group__append button.el-button:hover, .nova-search .el-input-group__append button.el-button:focus {
  color: var(--el-button-hover-text-color);
  border-color: var(--el-button-hover-border-color);
  background-color: var(--el-button-hover-bg-color);
}
.nova-search .filter-options {
  display: flex;
  overflow: hidden;
}
.nova-search .filter-options:not(.expand) {
  height: 32px;
}
.nova-search .filter-options :deep(.el-checkbox) {
  height: 32px;
  margin-right: 24px;
}
.nova-search .filter-options :deep(.el-radio) {
  height: 32px;
  margin-right: 24px;
}
.nova-search .results-wrapper {
  display: flex;
  min-height: 48px;
  padding: 12px 0;
  box-sizing: border-box;
  border-bottom: var(--el-border-width) var(--el-border-style) var(--el-border-color);
}
.nova-search .results-wrapper .results-label {
  flex-shrink: 0;
  width: 62px;
  line-height: 32px;
  color: var(--el-text-color-regular);
  font-size: var(--el-font-size-base);
}
.nova-search .results-wrapper .results-list {
  display: flex;
  flex-wrap: wrap;
}
.nova-search .results-wrapper .results-list .results-item {
  flex-shrink: 0;
  position: relative;
  margin: 4px 8px 4px 0;
  padding-right: 32px;
  padding-left: 8px;
  height: 24px;
  display: flex;
  align-items: center;
  color: var(--el-text-color-regular);
  border: var(--el-border-width) var(--el-border-style) var(--el-border-color);
  border-radius: 2px;
  font-size: var(--el-font-size-base);
  cursor: pointer;
  transition: 0.2s all;
  background-color: var(--el-fill-color-light);
}
.nova-search .results-wrapper .results-list .results-item .content {
  color: var(--el-color-primary);
}
.nova-search .results-wrapper .results-list .results-item > .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 100%;
  cursor: pointer;
  color: var(--el-text-color-secondary);
  transition: 0.2s all;
}
.nova-search .results-wrapper .results-list .results-item:hover {
  background-color: var(--el-bg-color);
  border-color: var(--el-color-primary);
}
.nova-search .results-wrapper .results-list .results-item:hover > .close-btn {
  color: #fff;
  background-color: var(--el-color-primary);
}
.nova-search .results-wrapper .results-clear {
  flex-shrink: 0;
  margin-left: auto;
}