.e-img-w {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
}
.e-img-h {
  display: block;
  width: auto;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
}
.e-img-fill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-drag: none;
}
.e-img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
}
.oh1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.oh2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.oh3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.ed-richcontent img {
  display: block;
  max-width: 100%;
  height: auto;
}
.ed-richcontent.is-collapsed {
  max-height: calc(1.5rem * 6);
  overflow: hidden;
  position: relative;
}
.ed-richcontent.is-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 70%);
}
.ed-richcontent video {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.ed-toggle-btn {
  font-size: 0.875rem;
  color: #1989fa;
  cursor: pointer;
  font-weight: 700;
}
.ed-select {
  position: relative;
  /* 下拉箭头 */
}
.ed-select select {
  /* 重置默认样式 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 自定义样式 */
  width: 100%;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  color: #606266;
  border: 1px solid #dcdfe6;
  border-radius: 0.25rem;
  background-color: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ed-select select:hover {
  border-color: #c0c4cc;
}
.ed-select select:focus {
  border-color: #409eff;
}
.ed-select select:disabled {
  background-color: #f5f7fa;
  color: #c0c4cc;
  cursor: not-allowed;
}
.ed-select option:checked {
  color: #409eff !important;
  font-weight: bold;
}
.ed-select .ed-select-arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 0.3125rem solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 0.3125rem solid #c0c4cc;
  pointer-events: none;
}
.ed-masker {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(8, 8, 8, 0.5);
  z-index: 100;
  transform: scale(1.185);
  -ms-transform: scale(1.185);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  backface-visibility: hidden;
  pointer-events: none;
}
.ed-masker.show {
  opacity: 1;
  transition-duration: 0.3s;
  -ms-transform: scale(1);
  transform: scale(1);
  pointer-events: auto;
}
.ed-masker#validate-masker {
  z-index: 101;
}
.ed-masker-valid-container {
  background-color: #ffffff;
  width: 420px;
}
.ed-masker-valid-container .masker-valid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 0 8px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #eeeeee;
}
.ed-masker-valid-container .masker-valid-header .masker-valid-title {
  font-size: 14px;
  color: #373737;
}
.ed-masker-valid-container .masker-valid-header .masker-valid-close {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.ed-masker-valid-container .masker-valid-main {
  height: 160px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  width: 80%;
  height: 45px;
  padding-bottom: 4px;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-input-wrap .masker-valid-input {
  flex: 1;
  height: 100%;
  padding: 8px;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-input-wrap .masker-valid-input input {
  width: 100%;
  height: 100%;
  outline: none;
  border: 0;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-input-wrap .masker-valid-img {
  flex-shrink: 0;
  height: 100%;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-input-wrap .masker-valid-img img {
  display: block;
  width: auto;
  height: 100%;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-error {
  margin-top: 4px;
  color: #ff0000;
  font-size: 12px;
  padding: 0 4px;
  width: 80%;
}
.ed-masker-valid-container .masker-valid-main .masker-valid-error.hide {
  opacity: 0;
}
.ed-masker-valid-container .masker-valid-footer {
  height: 48px;
  padding: 0 8px;
  background-color: #f8f8f8;
  border-top: 1px solid #eeeeee;
}
.ed-masker-valid-container .masker-valid-footer .masker-valid-footer-btns {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ed-masker-valid-container .masker-valid-footer .masker-valid-footer-btns .masker-valid-footer-btn {
  padding: 6px 0;
  border: 1px solid #dcdfe6;
  background-color: #ffffff;
  text-align: center;
  border-radius: 4px;
  min-width: 56px;
  font-size: 12px;
  color: #373737;
  cursor: pointer;
  user-select: none;
}
.ed-masker-valid-container .masker-valid-footer .masker-valid-footer-btns .masker-valid-footer-btn:nth-child(n+2) {
  margin-left: 8px;
}
.ed-masker-valid-container .masker-valid-footer .masker-valid-footer-btns .masker-valid-footer-btn.btn-primary {
  background-color: #252930;
  border: 1px solid #252930;
  color: #ffffff;
}
.ed-masker-valid-container .masker-valid-footer .masker-valid-footer-btns .masker-valid-footer-btn.btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ed-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ed-modal-mask.ed-modal-mask-show {
  opacity: 1;
  pointer-events: auto;
}
.ed-modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 80%;
  max-width: 300px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.ed-modal-container.ed-modal-container-show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.ed-modal-container .ed-modal-content {
  text-align: center;
}
.ed-modal-container .ed-modal-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 16px;
}
.ed-modal-container .ed-modal-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  padding: 0 12px;
  line-height: 1.5;
  word-break: break-word;
}
.ed-modal-container .ed-modal-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 15px;
  box-sizing: border-box;
}
.ed-modal-container .ed-modal-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #e5e5e5;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button {
  padding: 10px 0;
  font-size: 16px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button:active {
  opacity: 0.7;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button-cancel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #e5e5e5;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button-confirm {
  font-weight: bold;
}
.ed-toast-container {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.ed-toast-container.ed-toast-show {
  opacity: 1;
  transform: translateY(0);
}
.ed-toast-container.ed-toast-top {
  top: 20%;
}
.ed-toast-container.ed-toast-bottom {
  bottom: 20%;
}
.ed-toast-container.ed-toast-center {
  top: 50%;
  transform: translateY(calc(-50% + 20px));
}
.ed-toast-container.ed-toast-center.ed-toast-show {
  transform: translateY(-50%);
}
.ed-toast-container .ed-toast-content {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  max-width: 80%;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ed-toast-container .ed-toast-content .ed-toast-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ed-toast-container .ed-toast-content .ed-toast-icon-success {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.ed-toast-container .ed-toast-content .ed-toast-icon-error {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}
.ed-toast-container .ed-toast-content .ed-toast-icon-loading {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z'/%3E%3C/svg%3E");
  animation: toastLoading 1s linear infinite;
}
@keyframes toastLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ed-toast-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
}
.ed-list-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.ed-list-status .status-text {
  font-size: 1rem;
  color: #afafaf;
  cursor: pointer;
  user-select: none;
}
.ed-list-status .status-icon-loading {
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjUxMDI5Mzg1NTc1IiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjE4NTUiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PGRlZnM+PHN0eWxlIHR5cGU9InRleHQvY3NzIj48L3N0eWxlPjwvZGVmcz48cGF0aCBkPSJNMTQ0LjIwNSAyMDIuNDk2YTEzNi42NzggMTM2LjY3OCAwIDEgMCAyNzMuMzU3IDAgMTM2LjY3OCAxMzYuNjc4IDAgMSAwLTI3My4zNTcgMHpNNDEuNzI4IDQ5Mi45MDJhMTE5LjU3OCAxMTkuNTc4IDAgMSAwIDIzOS4xNTUgMCAxMTkuNTc4IDExOS41NzggMCAxIDAtMjM5LjE1NSAwek0xNDQuMjMgNzQ5LjE1OGExMDIuNTAyIDEwMi41MDIgMCAxIDAgMjA1LjAwNSAwIDEwMi41MDIgMTAyLjUwMiAwIDEgMC0yMDUuMDA1IDB6TTQzNS4yIDg2MS45MjZhODkuNiA4OS42IDAgMSAwIDE3OS4yIDAgODkuNiA4OS42IDAgMSAwLTE3OS4yIDB6IG0yODkuODQzLTk1LjY2NmE4NS40MjcgODUuNDI3IDAgMSAwIDE3MC44NTUgMCA4NS40MjcgODUuNDI3IDAgMSAwLTE3MC44NTUgMHogbTEzNi43MDQtMjkwLjQzM2E2OC4zMjYgNjguMzI2IDAgMSAwIDEzNi42NTMgMCA2OC4zMjYgNjguMzI2IDAgMSAwLTEzNi42NTMgMHpNNzU5LjIyIDIxOS41NzFhNTEuMjUxIDUxLjI1MSAwIDEgMCAxMDIuNTAyIDAgNTEuMjUxIDUxLjI1MSAwIDEgMC0xMDIuNTAzIDB6TTUxMiA4NS4zNzZhMzQuMTc2IDM0LjE3NiAwIDEgMCA2OC4zNTIgMCAzNC4xNzYgMzQuMTc2IDAgMSAwLTY4LjM1MiAweiIgcC1pZD0iMTg1NiIgZmlsbD0iI2FmYWZhZiI+PC9wYXRoPjwvc3ZnPg==");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: ed_status_animation_rotate 2s linear infinite;
}
@keyframes ed_status_animation_rotate {
  to {
    transform: rotate(360deg);
  }
}
.ed-list-status.loading {
  padding-left: 1rem;
}
.ed-list-status.loading .icon-loading {
  display: block;
}
#masker-preview-video .preview-video-container {
  width: 56.25rem;
  height: 30rem;
}
#masker-preview-video .preview-video-container .preview-video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#masker-preview-video .preview-video-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
  font-size: 2rem;
}
