/******** radius *******/
/******** 间隙 *******/
/******** fontSize *******/
/******** 组件尺寸 *******/
/******** z-index *******/
/******** borderSize *******/
/******** borderStyle *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontWeight ********/
/******** Animation *******/
/******** color *******/
/******** diff *******/
/******** icon hover *******/
/******** media *******/
.pd-Modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: none;
  background-color: var(--color-mask-bg);
}
.pd-Modal-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  overflow: auto;
}
.pd-Modal-wrapper-no-mask {
  pointer-events: none;
}
.pd-Modal-wrapper-no-mask .pd-Modal {
  pointer-events: auto;
}
.pd-Modal-wrapper.pd-Modal-wrapper-align-center {
  text-align: center;
  white-space: nowrap;
}
.pd-Modal-wrapper.pd-Modal-wrapper-align-center::after {
  content: '';
  vertical-align: middle;
  display: inline-block;
  height: 100%;
  width: 0;
}
.pd-Modal-wrapper.pd-Modal-wrapper-align-center .pd-Modal {
  top: 0;
  vertical-align: middle;
  display: inline-block;
}
.pd-Modal {
  position: relative;
  margin: 0 auto;
  top: 100px;
  width: 520px;
  max-width: 100%;
  border-radius: 2px;
  border: 0 solid var(--color-border-2);
  background-color: var(--color-bg-3);
  line-height: 1.5;
  text-align: left;
  white-space: initial;
  box-shadow: none;
  box-sizing: border-box;
  padding: 12px 0 16px 0;
  max-height: 80%;
  display: flex;
  flex-direction: column;
}
.pd-Modal-focusLock {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pd-Modal.full-screen {
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  transform-origin: 0 !important;
  top: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.pd-Modal.full-screen .pd-Modal-content {
  width: 100%;
  height: 100%;
  padding: 0;
}
.pd-Modal.full-screen .pd-Modal-header,
.pd-Modal.full-screen .pd-Modal-footer {
  padding: 0 8px;
}
.pd-Modal.full-screen-h {
  top: 60px;
  height: calc(100% - (60px + 12px)) !important;
  max-height: 100% !important;
  display: flex;
  flex-direction: column;
}
.pd-Modal.full-screen-h .pd-Modal-content {
  width: 100%;
  height: 100%;
}
.pd-Modal-header {
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  margin-bottom: 8px;
  height: 24px;
  display: flex;
  align-items: center;
}
.pd-Modal-header .pd-Modal-title {
  flex: 1;
  text-align: left;
}
.pd-Modal-content {
  position: relative;
  padding: 0 20px;
  color: var(--color-text-1);
  font-size: 13px;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pd-Modal-content .pd-RowInfo {
  height: auto;
}
.pd-Modal-footer {
  width: 100%;
  box-sizing: border-box;
  text-align: right;
  padding: 10px 20px;
  padding-bottom: 0;
}
.pd-Modal-footer > .pd-Button {
  margin-left: 12px;
}
.pd-Modal-footer > .pd-Button:only-child {
  margin-left: 0;
}
.pd-Modal .pd-Modal-close-icon {
  position: absolute;
  right: 18px;
  top: 12px;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-text-1);
}
.pd-Modal .pd-Modal-close-icon:hover {
  color: var(--primary-5);
}
.pd-Modal .pd-Modal-close-icon::before {
  mix-blend-mode: multiply;
}
.pd-Modal-title {
  color: var(--color-text-1);
  font-size: 15px;
  font-weight: 500;
}
.pd-Modal-title .pd-Icon {
  font-size: 18px;
  margin-right: 10px;
  vertical-align: -3.5px;
}
.pd-Modal-title .pd-Icon-info-circle {
  color: var(--primary-6);
}
.pd-Modal-title .pd-Icon-check-circle {
  color: var(--success-6);
}
.pd-Modal-title .pd-Icon-exclamation-circle {
  color: var(--warning-6);
}
.pd-Modal-title .pd-Icon-close-circle {
  color: var(--danger-6);
}
.pd-Modal-simple {
  padding: 24px 20px 20px;
  width: 415px;
}
.pd-Modal-simple .pd-Modal-header,
.pd-Modal-simple .pd-Modal-footer {
  border: none;
  padding: 0;
  height: unset;
}
.pd-Modal-simple .pd-Modal-header {
  margin-bottom: 10px;
}
.pd-Modal-simple .pd-Modal-title {
  text-align: left;
}
.pd-Modal-simple .pd-Modal-footer {
  text-align: right;
  margin-top: 20px;
}
.pd-Modal-simple .pd-Modal-content {
  padding: 0;
  padding-left: 28px;
}
.zoomModal-enter,
.zoomModal-appear {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.zoomModal-enter-active,
.zoomModal-appear-active {
  opacity: 1;
  transform: scale(1, 1);
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1), transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.zoomModal-exit {
  opacity: 1;
  transform: scale(1, 1);
}
.zoomModal-exit-active {
  opacity: 0;
  transform: scale(0.5, 0.5);
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1), transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.fadeModal-enter,
.fadeModal-appear {
  opacity: 0;
}
.fadeModal-enter-active,
.fadeModal-appear-active {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.fadeModal-exit {
  opacity: 1;
}
.fadeModal-exit-active {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.pd-Modal-rtl {
  direction: rtl;
}
.pd-Modal-rtl .pd-Modal-footer {
  text-align: unset;
}
.pd-Modal-rtl .pd-Modal-footer > .pd-Button {
  margin-left: 0;
  margin-right: 12px;
}
.pd-Modal-rtl .pd-Modal-footer > .pd-Button:only-child {
  margin-right: 0;
}
.pd-Modal-rtl .pd-Modal-title .pd-Icon {
  margin-right: 0;
  margin-left: 10px;
}
.pd-Modal-rtl .pd-Modal-close-icon {
  right: initial;
  left: 18px;
}
.pd-Modal-rtl.pd-Modal-simple .pd-Modal-footer {
  text-align: right;
}
