.noty-layout {
  display: flex;
  min-width: 360px;
  max-width: 360px;
  padding: 10px 16px 10px 13px;
  margin-bottom: 20px;
  background-color: var(--dao-pure-white);
  border-left: 3px solid var(--dao-icon);
  border-radius: 4px;
  box-shadow: 0 8px 30px 0 rgba(var(--dao-pure-black-rgb), 0.12);
}
.noty-layout:last-child {
  margin-bottom: 0;
}
.noty-layout__icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 8px;
  font-size: 16px;
  line-height: 16px;
}
.noty-layout__container {
  position: relative;
  width: 100%;
}
.noty-layout__container--with-close > .noty-layout__container-item:first-of-type {
  margin-right: 24px;
}
.noty-layout__container-close-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  font-size: 14px;
  line-height: 16px;
  color: var(--dao-gray-blue-040);
  text-align: center;
  cursor: pointer;
}
.noty-layout__container-close-icon:hover {
  color: var(--dao-gray-blue-030);
}
.noty-layout__container-title {
  font-size: 1.3rem;
  font-weight: 700;
  hyphens: auto;
  line-height: 20px;
  color: var(--dao-gray-010);
  word-break: break-word;
}
.noty-layout__container-content {
  font-size: 1.3rem;
  hyphens: auto;
  line-height: 20px;
  color: var(--dao-gray-040);
  word-break: break-word;
}
.noty-layout__container .noty-link {
  color: var(--dao-acidblue-040);
  text-decoration: none;
  cursor: pointer;
}
.noty-layout__container .noty-link:hover {
  color: var(--dao-acidblue-030);
  text-decoration: underline;
}
.noty-layout__container-title + .noty-layout__container-content {
  margin-top: 4px;
}
.noty-layout--success {
  border-left-color: var(--dao-status-success);
}
.noty-layout--success .noty-layout__icon {
  color: var(--dao-status-success);
}
.noty-layout--warning {
  border-left-color: var(--dao-status-warning);
}
.noty-layout--warning .noty-layout__icon {
  color: var(--dao-status-warning);
}
.noty-layout--error {
  border-left-color: var(--dao-status-error);
}
.noty-layout--error .noty-layout__icon {
  color: var(--dao-status-error);
}
.noty-layout--info {
  border-left-color: var(--dao-status-info);
}
.noty-layout--info .noty-layout__icon {
  color: var(--dao-status-info);
}

.dao-fade-enter-active,
.dao-fade-leave-active {
  overflow: hidden;
  transition: all 300ms ease-in-out;
}

.dao-fade-enter-from,
.dao-fade-leave-to {
  max-height: 0 !important;
  padding: 0;
  margin-bottom: 0;
  opacity: 0;
}