.ui__alert * {
  padding: 0;
  margin: 0;
}
.ui__alert .ui__alert_bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.ui__alert .ui__alert_bg.in {
  -webkit-animation-name: bgFadeIn;
  animation-name: bgFadeIn;
}
.ui__alert .ui__alert_bg.out {
  -webkit-animation-name: bgFadeOut;
  animation-name: bgFadeOut;
}
.ui__alert .ui__alert_content {
  text-align: center;
  position: fixed;
  /*min-width: 250px;*/
  /*max-width: 280px;*/
  width: 88%;
  z-index: 9999;
  background: #fff;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.ui__alert .ui__alert_content.in {
  -webkit-animation-name: contentZoomIn;
  animation-name: contentZoomIn;
}
.ui__alert .ui__alert_content.out {
  -webkit-animation-name: contentZoomOut;.ui__alert .ui__alert_content .ui__content_body
  animation-name: contentZoomOut;
}
.ui__alert .ui__alert_content .ui__content_body {
  font-size: 14px;
  padding: 10px 5px 10px 5px;
  line-height: 20px;
  border-bottom: 1px solid #ddd;

}
.ui__alert .ui__alert_content .ui__content_body .ui__title {
  margin-bottom: 6px;
  font-size: 16px;
  color: #09b6f2;
  line-height: 20px;
  font-weight: normal;
}
.ui__alert .ui__alert_content .ui__content_body>div{
  font-size: 14px;
  color: #333;
  line-height: 20px;
  padding: 7px 10px 6px;
  max-height: 260px;
  /*max-height: 120vmin;*/
  overflow-x: hidden;
  overflow-y: auto;
}
.ui__alert .ui__alert_content .ui__content_body>div *{
  text-align: left;
}
.ui__alert .ui__alert_content .ui__content_body>div img{
  max-width: 100%;
  height: auto;
}
.ui__alert .ui__alert_content .ui__content_foot {
  display: flex;
  justify-content: center;
  align-items: center;
  /*调整顺序*/
  flex-direction: row-reverse;
}
.ui__alert .ui__alert_content .ui__content_foot a {
  font-size: 16px;
  color: #09b6f2;
  display: block;
  text-decoration: none;
  flex: 1;
  text-align: center;
  line-height: 44px;
  border-right: 1px solid #ddd; /*调整顺序后边框反过来*/
}
.ui__alert .ui__alert_content .ui__content_foot a.btn_cancel{
  color: #666;
}
.ui__alert .ui__alert_content .ui__content_foot a:first-child {
  border-right: none;  /*调整顺序后边框反过来*/
}
.ui__toast_bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  position: fixed;
}
.ui__toast_text {
  line-height: 1;
  text-align: center;
  position: fixed;
  max-width: 200px;
  z-index: 9999;
  padding: 14px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 5px;
  left: 50%;
  top: 50%;
  font-size: 14px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@-webkit-keyframes bgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bgFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bgFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes contentZoomIn {
  0% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@-webkit-keyframes contentZoomOut {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 0;
  }
}
@keyframes contentZoomOut {
  0% {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -30%);
    transform: translate(-50%, -30%);
    opacity: 0;
  }
}