.opacityContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: rgba(0, 14, 40, 0.32);
  display: flex;
  justify-content: center;
  align-items: center;

  &.hidden {
    display: none;
  }

  &.show {
    display: flex;
  }
}

.modalContainer {
  width: 480px;
  min-height: 510px;
  position: relative;
  .headerGroup {
    position: relative;
    height: 65px;
    background: linear-gradient(165deg, #202752 0%, #212855 2%, #36418c 100%);
    border-radius: 28px 28px 0 0;

    .headerBg {
      position: absolute;
      top: 0;
      //left: 0;
      right: 0;
      height: 65px;
    }

    .closeIcon {
      position: absolute;
      right: 19px;
      top: 18px;
      width: 16px;
      height: 16px;
      svg {
        width: 16px;
        height: 16px;
        fill: rgba(255, 255, 255, 0.6);
      }
    }
  }
  .contentGroup {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    padding: 17px 72px 34px;

    .scanQrCodeIconGroup {
      position: absolute;
      top: 14px;
      right: 11px;
      svg {
        width: 49px;
        height: 49px;
        fill: #1679ff;
      }
      .desc {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 106px;
        height: 25px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 42px;
        border: 1px solid #1679ff;

        .arrow {
          position: absolute;
          right: 36px;
          width: 0;
          height: 0;
          overflow: hidden;
          border: 6px solid transparent;
          border-left-color: #1679ff;
          &:after {
            content: '';
            position: absolute;
            right: 36px;
            width: 0;
            height: 0;
            overflow: hidden;
            border: 4px solid transparent;
            border-left-color: #ffffff;
          }
        }

        font-size: 12px;
        font-family: Roboto-Medium, Roboto;
        font-weight: 500;
        color: #282828;
        line-height: 22px;

        border-radius: 6px;
      }
    }
  }
}

.loginContentGroup {
  position: relative;
  padding: 17px 72px 34px;
  .scanQrCodeIconGroup {
    position: absolute;
    top: 14px;
    right: 11px;
    svg {
      width: 49px;
      height: 49px;
      fill: #1679ff;
    }
    .desc {
      display: flex;
      justify-content: center;
      align-items: center;
      min-width: 106px;
      height: 25px;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 42px;
      border: 1px solid #1679ff;

      .arrow {
        position: absolute;
        right: 36px;
        width: 0;
        height: 0;
        overflow: hidden;
        border: 6px solid transparent;
        border-left-color: #1679ff;
        &:after {
          content: '';
          position: absolute;
          right: 36px;
          width: 0;
          height: 0;
          overflow: hidden;
          border: 4px solid transparent;
          border-left-color: #ffffff;
        }
      }

      font-size: 12px;
      font-family: Roboto-Medium, Roboto;
      font-weight: 500;
      color: #282828;
      line-height: 22px;

      border-radius: 6px;
    }
  }
}
