.this {
  padding: 0 0.55rem;
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .toast {
    background: rgba(0, 0, 0, 0.8);
    height: 25.4rem;
    z-index: 9998;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    animation: fadeIn .2s ease-in-out forwards;
    .popupLogo {
      width: 1.08rem;
      margin-bottom: 0.24rem;
    }
  }
  .main {
    z-index: 9999;
    background: #fff;
    text-align: center;
    border-radius: 0.1rem;
    max-width: 6.3rem;
    margin: 0 auto;
    position: fixed;
    right: 0.55rem;
    left: 0.55rem;
    top: 2.9rem;
    animation: fadeIn .2s ease-in-out forwards;
    .title {
      margin-top: .28rem;
      font-size: 0.36rem;
      margin-bottom: 0.3rem;
      padding: 0 0.3rem;
    }
    .content {
      margin-top: .28rem;
      font-size: .32rem;
      color: #333;
      margin-bottom: 0.3rem;
    }
    .button {
      height: 1.02rem;
      color: #666;
      border-top: 1px solid;
      font-size: 0.24rem;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      border-color: #ddd;
      .cancel {
        position: relative;
        i {
          position: absolute;
          right: 0;
          top: -0.2rem;
          bottom: -0.25rem;
          width: 1px;
          background: #ddd;
        }
      }
      div {
        width: 50%;
        text-align: center;
        display: inline-block;
      }
      button {
        width: 50%;
        background: #fff;
        height: 100%;
        border: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 0;
      }
      button:nth-child(1) {
        border-bottom-right-radius: 0;
        border-right: 1px solid #ddd;
      }
    }
  }
}
