#img-dialog {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(0, auto));
  overflow: auto;
  padding-top: 40px;
}
#img-dialog #img-dialog-content {
  background-size: contain;
  background-repeat: no-repeat;
}
#img-dialog #img-dialog-close {
  background-image: url("icon/global-icon/icon-close.png");
  background-size: 100%;
  width: 48px;
  height: 48px;
  position: fixed;
  top: 40;
  right: 40;
}
#img-dialog #img-dialog-close:hover {
  background-image: url("icon/global-icon/icon-close-hover.png");
}
#img-dialog #img-dialog-action {
  position: fixed;
  bottom: 40;
  left: calc(50% - 77px);
  width: 154px;
  height: 40px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0px 0px 2px 0px #dddee4;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
#img-dialog #img-dialog-action > div {
  width: 24px;
  height: 24px;
  background-size: 100%;
  margin-right: 8px;
}
#img-dialog #img-dialog-action .img-dialog-divider {
  width: 1px;
  height: 16px;
  background-color: #dfe1e6;
}
#img-dialog #img-dialog-action #img-dialog-text {
  width: 30px;
  height: 16px;
  font-size: 12px;
  font-family: PingFangSC-Regular;
  font-weight: normal;
  text-align: center;
  color: #252b3a;
}
#img-dialog #img-dialog-action #img-dialog-plus {
  background-image: url("icon/global-icon/icon-plus.png");
}
#img-dialog #img-dialog-action #img-dialog-plus:hover {
  background-image: url("icon/global-icon/icon-plus-hover.png");
}
#img-dialog #img-dialog-action #img-dialog-reduce {
  background-image: url("icon/global-icon/icon-reduce.png");
}
#img-dialog #img-dialog-action #img-dialog-reduce:hover {
  background-image: url("icon/global-icon/icon-reduce-hover.png");
}
#img-dialog #img-dialog-action #img-dialog-auto {
  margin-right: 0;
  background-image: url("icon/global-icon/icon-auto.png");
}
#img-dialog #img-dialog-action #img-dialog-auto:hover {
  background-image: url("icon/global-icon/icon-auto-hover.png");
}
#img-mask {
  z-index: 9998;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
#img-mask #img-mask-enlarge {
  background-image: url("icon/global-icon/icon-enlarge.png");
  background-size: 100%;
}
#img-mask #img-mask-enlarge:hover {
  background-image: url("icon/global-icon/icon-enlarge-hover.png");
}
.noscroll {
  overflow: hidden !important;
}
/* 选择器输入框公共样式 */
.custom-select-input {
  position: relative;
}
.custom-select-input .el-select {
  width: 100%;
}
.custom-select-input .el-select .el-select__caret {
  line-height: 28px;
}
.custom-select-input .el-select .el-input.is-disabled .el-input__inner {
  height: 28px;
  background-color: #f5f5f6;
  border-radius: 2px;
  border-color: #adb0b8;
  color: #adb0b8;
  border: solid 1px #dfe1e6;
}
.custom-select-input .el-select .el-input__inner:focus {
  border: solid 1px var(--roma-color-border-linear);
}
.custom-select-input .el-select .el-select-dropdown {
  position: absolute !important;
  top: 28px !important;
  left: 0 !important;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.custom-select-input .el-select .el-select-dropdown .el-select-dropdown__list {
  padding: 0px;
}
.custom-select-input .el-select .el-select-dropdown .el-select-dropdown__list .el-select-dropdown__item {
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: left;
  color: #252b3a;
}
.custom-select-input .el-select-dropdown__list .el-select-dropdown__item.hover {
  background: var(--roma-color-bg-link-hover) !important;
  color: var(--roma-color-xiaText-link-hover) !important;
}
.custom-select-input .el-select-dropdown__list .el-select-dropdown__item.selected {
  background: var(--roma-color-bg-input-active) !important;
  color: var(--roma-color-input-text-active) !important;
}
.custom-select-input .el-select-dropdown__list .el-select-dropdown__item.selected:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.custom-select-input .el-select-dropdown__list .el-select-dropdown__item.selected:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.custom-select-input .el-select .el-select-dropdown__empty {
  height: 38px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  text-align: left;
  color: #adb0b8;
  line-height: 18px;
  padding-left: 10px;
}
.custom-select-input .el-input--suffix .el-input__inner {
  padding-left: 10px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 2px;
  border: solid 1px var(--roma-color-singleline-input-border-default);
  font-size: 12px;
  color: #252b3a;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.custom-select-input .el-input--suffix .el-input__inner::placeholder {
  height: 16px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 16px;
  letter-spacing: 0px;
  color: var(--roma-color-border-linear);
}
.custom-select-input:hover .el-input--suffix .el-input__inner,
.custom-select-input .el-input--suffix .el-input__inner:hover {
  border-radius: 2px;
  border: solid 1px #575d6c;
}
.custom-select-input .el-input--suffix .el-icon-arrow-up {
  height: 28px;
}
.custom-select-input .el-input--suffix .el-icon-arrow-up::before {
  background: url('icon/global-icon/arrowIcon.png');
  content: "";
  width: 8px;
  height: 5px;
  display: inline-block;
  bottom: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
}
.custom-select-input .is-disabled.el-input--suffix .el-icon-arrow-up::before {
  background: url('icon/global-icon/arrowIconDis.png');
  content: "";
  width: 8px;
  height: 5px;
  display: inline-block;
  bottom: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
}
.custom-select-input .el-icon-arrow-down::before {
  background: url('icon/global-icon/arrowIcon.png');
  content: "";
  width: 8px;
  height: 5px;
  display: inline-block;
  bottom: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: none;
}
.custom-select-input.roma_selects .el-input__icon:after {
  content: "";
}
.custom-select-input .el-input .el-input__inner:focus,
.custom-select-input .el-input.is-focus .el-input__inner {
  border-color: var(--roma-color-input-hover) !important;
}
.custom-select-input .el-cascader {
  line-height: 28px;
  width: 100%;
}
.custom-select-input .el-cascader .el-input--suffix .el-input__inner:hover {
  border-radius: 2px;
  border: solid 1px #575d6c;
}
.custom-select-input .el-input--suffix .el-icon-circle-close::before {
  background: url('icon/global-icon/icon-delete.png');
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  bottom: 9px;
  position: absolute;
  left: 10px;
}
.custom-select-input .el-select__tags {
  max-height: 26px;
  overflow-y: auto;
  overflow-x: hidden;
}
.custom-select-input .el-select__tags::-webkit-scrollbar {
  width: 4px;
  border-radius: 5px;
  height: 4px;
  background-color: #fff;
  opacity: 0.6;
}
.custom-select-input .el-tag.el-tag--info {
  background-color: #eef0f5;
  color: #575d6c;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  margin: 2px 0 0px 2px;
  height: 22px;
}
.custom-select-input .el-tag__close.el-icon-close {
  margin-top: 2px;
  color: #fff !important;
}
.custom-select-input .el-tag__close.el-icon-close:hover {
  background: var(--roma-color-primary) !important;
}
.custom-select-input .is-disabled.el-input--suffix .el-input__inner {
  background-color: #F5F5F6;
  border-color: #dfe1e6;
  color: #adb0b8;
}
/* 下拉框公共样式 */
.custom-select-popper.el-popper .popper__arrow {
  display: none;
}
.custom-select-popper.el-popper .el-select-dropdown__list {
  background-color: #ffffff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
  padding: 0;
}
.custom-select-popper.el-popper .el-select-dropdown__list .hover {
  background-color: #fff;
}
.custom-select-popper.el-popper .el-select-dropdown__list li {
  height: 30px;
  padding: 7px 0 7px 10px;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 16px;
  letter-spacing: 0px;
  color: #252b3a;
}
.custom-select-popper.el-popper .el-select-dropdown__empty {
  height: 30px;
  background-color: #fff;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  padding: 0;
  line-height: 30px;
  text-align: left;
  padding-left: 10px;
  border-top: none;
  letter-spacing: 0px;
  color: var(--roma-color-border-linear);
}
.custom-select-popper.el-select-dropdown.is-multiple .el-select-dropdown__item {
  padding-right: 0;
  padding-left: 36px;
  display: flex;
  justify-content: space-between;
}
.custom-select-popper.el-select-dropdown.is-multiple .el-select-dropdown__item::after {
  position: absolute;
  left: 10px;
  content: "";
  height: 16px;
  width: 16px;
  background: url('icon/global-icon/icon-check.png');
}
.custom-select-popper.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after {
  position: absolute;
  left: 10px;
  content: "";
  height: 16px;
  width: 16px;
}
.custom-select-popper.el-popper.el-select-dropdown.is-multiple .el-select-dropdown__item.hover {
  background-color: #F2F5FC;
  color: var(--roma-color-input-text-hover);
}
.custom-select-popper.el-popper.el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
  background-color: #fff !important;
  color: #252b3a !important;
}
