.lnzi-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
  background-color: #fff;
  transition: 0.3s ease-out;
}
.lnzi-popup--title {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 14px 16px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
.lnzi-popup--title .lnzi-icon {
  font-size: 14px;
  color: #888;
}
.lnzi-popup--title h2 {
  flex: 1;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.lnzi-popup--content {
  max-height: 320px;
}
.lnzi-popup--actions li {
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #F2F4F5;
  background-color: #FFF;
}
.lnzi-popup--actions li:last-child {
  border: none;
}
.lnzi-popup--actions li.active {
  color: #698EF8;
}
.lnzi-popup--actions li:active {
  background-color: #E8E8E8;
}
.lnzi-popup--bottom {
  top: auto;
  bottom: 0;
  right: auto;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
}
.lnzi-popup--cancel-bg {
  width: 100%;
  height: 10px;
  background-color: #F3F4F5;
}
.lnzi-popup--cancel-content {
  display: inline-block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #333;
  font-size: 14px;
  background-color: #fff;
}
.lnzi-popup-slide-bottom-enter,
.lnzi-popup-slide-bottom-leave-active {
  opacity: 0;
  transform: translate3d(-50%, 100%, 0);
}
