.qeek-dialog-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 400; }

.qeek-dialog {
  position: relative;
  display: inline-block;
  margin-top: -48px;
  min-width: 300px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.22); }
  .qeek-dialog-header {
    background-color: #e5edf8;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    padding: 14px 24px;
    border-radius: 4px 4px 0 0; }
  .qeek-dialog-header-em {
    height: 0;
    background-color: #ffffff; }
  .qeek-dialog-close-btn {
    border: 0;
    outline: 0;
    padding: 12px;
    margin: 0;
    position: absolute;
    right: 16px;
    top: 12px;
    cursor: pointer;
    background-color: transparent; }
    .qeek-dialog-close-btn:after, .qeek-dialog-close-btn:before {
      content: '';
      position: absolute;
      width: 22px;
      height: 2px;
      background-color: #666666;
      top: 50%;
      left: 0;
      transform-origin: center; }
    .qeek-dialog-close-btn:after {
      transform: rotate(45deg); }
    .qeek-dialog-close-btn:before {
      transform: rotate(-45deg); }
  .qeek-dialog-body {
    padding: 12px 22px;
    line-height: 28px;
    overflow: auto; }
  .qeek-dialog-btn {
    display: flex;
    justify-content: center; }
    .qeek-dialog-btn-item {
      min-width: 80px;
      margin: 16px 6px; }
  .qeek-dialog-mask {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: 399; }

.fade-enter {
  opacity: 0;
  animation-duration: .16s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused; }

.fade-appear {
  opacity: 0;
  animation-duration: .16s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused; }

.fade-leave {
  animation-duration: .16s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2);
  animation-play-state: paused; }

.fade-enter.fade-enter-active {
  animation-name: fadeIn;
  animation-play-state: running; }

.fade-appear.fade-appear-active {
  animation-name: fadeIn;
  animation-play-state: running; }

.fade-leave.fade-leave-active {
  animation-name: fadeOut;
  animation-play-state: running; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
