.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
      }
  .pop-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1000;
    border-radius:20px;
    width:610px;
    text-align: center;
    color: #333;
    background-color: #fff;
    animation: fadeInBack 0.5s ease-in;
    animation-delay: 0s;
    transform: translate(-50%, -50%);
  }
  .pop-title {
    height: 45px;
    font-size: 14px;
    line-height: 45px;
    border-bottom: 1px solid #e8e3e3;
    font-weight: 600;
  }
  .pop-title:after {
     border-bottom: 1px solid  #f2f2f2
  }
  
  .pop-content {
    padding: 20px 25px;
    font-size: 13px;
    line-height: 23px;
  }
  .btns {
    display: flex;

    position: relative;

    width: 100%;
    height: 50px;

    line-height: 50px;
    border-top: 1px solid #e8e3e3;
  }
    .btns:before {
        content: "";
    position: absolute;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #f2f2f2;
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
    }
    .btns button {
      display: block;

      position: relative;

      margin: 0;
      border: 0;
      padding: 0;
      height: 100%;

      font-size: 17px;

      background-color: transparent;

      flex: 1;
      color: #999;
      outline: none;
      cursor: pointer;
    }
      .btns button:nth-child(2) {
        content: "";
    border-left: 1px solid #f2f2f2;

        
      }
      .btns button:last-child {
        color: #0b6ab5;
      }
.masker {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, .5);
}

@keyframes fadeInBack {
  0% {
      opacity: 0;
      /*transform: translate(-51%, -80%);*/
      /* transform: skew(40deg); */
  }
  50% {
      opacity: 0.3;
      /*transform: translate(-50%, -80%);*/
      /* transform: skew(0deg); */
  }
  100% {
      opacity: 1;
      /*transform: translate(-49%, -80%);*/
      /* transform: skew(40deg); */
  }
}