/* 多H云自定义下拉 */
.duoh-select {
  position: relative;
  width: 100%;
  font-size: .9rem;
  user-select: none;
  display: inline-block;
  vertical-align: middle;
}
.duoh-select.is-auto {
  width: auto;
  min-width: 7.5rem;
  max-width: 100%;
}
.duoh-select.is-sm {
  font-size: .8rem;
}
.duoh-select.is-sm .duoh-select-trigger {
  min-height: 32px;
  padding: .35rem .65rem;
}
.duoh-select.is-sm .duoh-select-option {
  padding: .45rem .65rem;
}
.duoh-select.is-disabled {
  opacity: .55;
  pointer-events: none;
}
.duoh-select-trigger {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .65rem .85rem;
  background: #fff;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  color: #122033;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s;
}
.duoh-select-trigger:hover {
  border-color: #1e3a5f;
}
.duoh-select.is-open .duoh-select-trigger {
  border-color: #1e3a5f;
  box-shadow: 0 0 0 2px rgba(30, 58, 95, .12);
}
.duoh-select-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.duoh-select-label.is-placeholder {
  color: #5b6777;
}
.duoh-select-caret {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid #5b6777;
  border-bottom: 2px solid #5b6777;
  transform: rotate(45deg) translate(-1px, -2px);
  transition: transform .15s;
}
.duoh-select.is-open .duoh-select-caret {
  transform: rotate(225deg) translate(-1px, -1px);
}
.duoh-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 80;
  max-height: 280px;
  overflow: auto;
  background: #fff;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 32, 51, .12);
  display: none;
}
.duoh-select.is-auto .duoh-select-menu {
  min-width: 100%;
  width: max-content;
  max-width: min(360px, 90vw);
}
.duoh-select.is-open .duoh-select-menu {
  display: block;
}
.duoh-select-option {
  padding: .7rem .85rem;
  cursor: pointer;
  color: #122033;
  line-height: 1.45;
}
.duoh-select-option:hover,
.duoh-select-option.is-active {
  background: #f0f4f8;
}
.duoh-select-option.is-selected {
  background: #e8eef5;
  color: #1e3a5f;
  font-weight: 600;
}
.duoh-select-option.is-disabled {
  color: #9aa5b3;
  cursor: not-allowed;
  background: transparent;
}
.duoh-select-native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
}
