/* 需求提交弹出框 */
.vis-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999999;
  visibility: hidden;
}
.vis-drawer-mask {
  position: absolute;
  inset: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
}
.vis-drawer-content {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 460px;
  background-color: #fff;
  border-radius: 6px 0 0 6px;
  box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: all 0.3s;
}
.vis-drawer iframe {
  width: 100%;
  height: 100%;
}
.vis-drawer.show {
  visibility: visible;
}
.vis-drawer.show .vis-drawer-content {
  transform: translateX(0);
}
.vis-drawer.show .vis-drawer-mask {
  display: block;
}

.vis-drawer .vis-drawer-close svg {
  cursor: pointer;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  color: #666;
}

.vis-drawer-loading {
  position: absolute;
  background: #fff;
  inset: 0;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: all 0.2s;
}
.vis-drawer-loading.show {
  visibility: visible;
  opacity: 1;
}
