/******** radius *******/
/******** 间隙 *******/
/******** fontSize *******/
/******** 组件尺寸 *******/
/******** z-index *******/
/******** borderSize *******/
/******** borderStyle *******/
/******** shadow distance *******/
/******** size *******/
/******** spacing *******/
/******** shadow *******/
/******** opacity *******/
/******** fontWeight ********/
/******** Animation *******/
/******** color *******/
/******** diff *******/
/******** icon hover *******/
/******** media *******/
/******** Transition *******/
.pd-notification-wrapper {
  position: fixed;
  z-index: 1003;
}
.pd-notification-wrapper-topLeft {
  left: 20px;
  top: 20px;
}
.pd-notification-wrapper-topRight {
  right: 20px;
  top: 20px;
}
.pd-notification-wrapper-topRight .pd-notification {
  margin-left: auto;
}
.pd-notification-wrapper-bottomLeft {
  bottom: 20px;
  left: 20px;
}
.pd-notification-wrapper-bottomRight {
  bottom: 20px;
  right: 20px;
}
.pd-notification-wrapper-bottomRight .pd-notification {
  margin-left: auto;
}
.pd-notification {
  display: flex;
  position: relative;
  width: 340px;
  padding: 20px 20px 20px 20px;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  background-color: var(--color-bg-1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  box-sizing: border-box;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0, 0, 1, 1);
}
.pd-notification-icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--color-text-1);
}
.pd-notification-info {
  background-color: var(--color-bg-1);
  border-color: var(--color-border);
}
.pd-notification-info .pd-notification-icon {
  color: var(--primary-6);
}
.pd-notification-success {
  background-color: var(--color-bg-1);
  border-color: var(--color-border);
}
.pd-notification-success .pd-notification-icon {
  color: var(--success-6);
}
.pd-notification-warning {
  background-color: var(--color-bg-1);
  border-color: var(--color-border);
}
.pd-notification-warning .pd-notification-icon {
  color: var(--warning-6);
}
.pd-notification-error {
  background-color: var(--color-bg-1);
  border-color: var(--color-border);
}
.pd-notification-error .pd-notification-icon {
  color: var(--danger-6);
}
.pd-notification-left {
  padding-right: 16px;
}
.pd-notification-right {
  flex: 1;
  word-break: break-word;
}
.pd-notification-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-1);
  margin-bottom: 4px;
}
.pd-notification-content {
  font-size: 13px;
  color: var(--color-text-1);
}
.pd-notification-info .pd-notification-title {
  color: var(--color-text-1);
}
.pd-notification-info .pd-notification-content {
  color: var(--color-text-1);
}
.pd-notification-success .pd-notification-title {
  color: var(--color-text-1);
}
.pd-notification-success .pd-notification-content {
  color: var(--color-text-1);
}
.pd-notification-warning .pd-notification-title {
  color: var(--color-text-1);
}
.pd-notification-warning .pd-notification-content {
  color: var(--color-text-1);
}
.pd-notification-error .pd-notification-title {
  color: var(--color-text-1);
}
.pd-notification-error .pd-notification-content {
  color: var(--color-text-1);
}
.pd-notification-btn-wrapper {
  margin-top: 16px;
  text-align: right;
}
.pd-notification .pd-notification-close-btn {
  position: absolute;
  cursor: pointer;
  top: 12px;
  right: 12px;
  color: var(--color-text-1);
  font-size: 12px;
}
.pd-notification .pd-notification-close-btn > svg {
  position: relative;
}
.pd-notification .pd-Icon-hover.pd-notification-icon-hover::before {
  width: 20px;
  height: 20px;
}
.slideNoticeLeft-enter,
.slideNoticeLeft-appear {
  transform: translateX(-100%);
}
.slideNoticeLeft-enter-active,
.slideNoticeLeft-appear-active {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.slideNoticeLeft-exit {
  opacity: 0;
}
.slideNoticeLeft-exit-active {
  opacity: 0;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.slideNoticeRight-enter,
.slideNoticeRight-appear {
  transform: translateX(100%);
}
.slideNoticeRight-enter-active,
.slideNoticeRight-appear-active {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.3, 1.3, 0.3, 1);
}
.slideNoticeRight-exit {
  opacity: 0;
}
.slideNoticeRight-exit-active {
  opacity: 0;
  height: 0;
  transition: all 0.3s cubic-bezier(0.34, 0.69, 0.1, 1);
}
.pd-notification-wrapper-rtl {
  direction: rtl;
}
.pd-notification-rtl {
  direction: rtl;
}
.pd-notification-rtl .pd-notification-left {
  padding-right: 0;
  padding-left: 16px;
}
.pd-notification-rtl .pd-notification-btn-wrapper {
  text-align: left;
}
.pd-notification-rtl .pd-notification-close-btn {
  right: initial;
  left: 12px;
}
