/*! 欢迎使用H5DS，官网：www.h5ds.com */
.uimb-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}
.uimb-modal.uimb-modal-visible {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.uimb-modal .uimb-modal-footer {
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.uimb-modal .uimb-modal-footer .uimb-modal-btn {
  display: inline-block;
  padding: 10px;
  width: 50%;
  color: #1890ff;
}
.uimb-modal .uimb-modal-footer .uimb-modal-btn-cancel {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
}
.uimb-modal .uimb-modal-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
}
.uimb-modal .uimb-modal-content {
  position: absolute;
  background-color: #fff;
  transition: 0.5s;
  transform: translateY(0);
  min-width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.uimb-modal .uimb-modal-content .uimb-modal-title {
  text-align: center;
  padding: 20px;
  font-size: 16px;
}
.uimb-modal .uimb-modal-content .uimb-modal-body {
  padding: 0 20px 20px 20px;
}
.uimb-modal-confirm .uimb-modal-content {
  text-align: center;
}

.uimb-noscroll {
  overflow: hidden;
}
.uimb-actionsheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
}
.uimb-actionsheet.uimb-actionsheet-visible {
  display: block;
}
.uimb-actionsheet .uimb-actionsheet-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.5s;
}
.uimb-actionsheet .uimb-actionsheet-title {
  text-align: center;
  position: relative;
  padding: 15px;
  font-size: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.uimb-actionsheet .uimb-actionsheet-title .uimb-actionsheet-close {
  position: absolute;
  z-index: 100;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.uimb-actionsheet .uimb-actionsheet-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: #fff;
  transition: 0.5s;
  transform: translateY(0);
}
.uimb-animate-show {
  transform: translateY(0);
}

body .uimb-toast .uimb-modal-mask {
  opacity: 0 !important;
}
body .uimb-toast .uimb-toast-icon {
  position: relative;
  height: 40px;
  width: 40px;
  text-align: center;
  display: inline-block;
}
body .uimb-toast .uimb-toast-icon .h5font {
  font-size: 24px;
  display: inline-block;
}
body .uimb-toast .uimb-toast-icon .uimb-toast-loading-icon {
  position: absolute;
  left: 1px;
  top: 2px;
  font-size: 32px;
  transform-origin: center;
  -webkit-animation: rollOneCountTemp 1s infinite linear;
          animation: rollOneCountTemp 1s infinite linear;
}
body .uimb-toast .uimb-modal-footer {
  display: none;
}
body .uimb-toast .uimb-modal-content {
  min-width: auto;
  border-radius: 6px;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
body .uimb-toast .uimb-modal-content > .uimb-modal-body {
  padding: 0;
  text-align: center;
}
@-webkit-keyframes rollOneCountTemp {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rollOneCountTemp {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

