.lh-mb {
  position: relative;
  border-radius: 3px;
  left:50%;
  margin-top: 35vh;
  width: 416px;
  -webkit-box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  top: 20px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity .3s,top .4s,-webkit-transform .4s;
  transition: opacity .3s,top .4s,-webkit-transform .4s;
  transition: opacity .3s,transform .4s,top .4s;
  transition: opacity .3s,transform .4s,top .4s,-webkit-transform .4s;
  padding: 28px 24px 20px 24px;
  background-color: white;
  .lh-mb-header {
    height: 22px;
    margin-bottom: 9px;
    .icon_component_remind02 {
      color:@color_warning;
      font-size: 22px;
      float:left;
      margin-right: 16px;
    }
    .lh-mb-header-span {
      font-weight: bold;
      font-size: 16px;
      float:left;
      color:@color_b1;
    }
  }
  .lh-mb-content {
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 28px;
    color:@color_b1;
    padding-left:38px;
    word-break: break-all;
  }
  .lh-mb-footer {
    height: 28px;
    background-color: white;
  }
}
.lh-mb-wapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  background:@color_b3;
  z-index:3001;
}


.lh-mb-fade-enter-active {
  animation: lh-mb-fade-in .3s;
}
.lh-mb-fade-leave-active {
  animation: lh-mb-fade-out .3s;
}
@keyframes lh-mb-fade-in {
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes lh-mb-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
