@import '../../common/style/gp-match/palette.scss';

.press-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 99;
}

.press-popup__mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .75);
  opacity: 0;
  transition: all .3s ease-out;
}

.press-popup__mask--show {
  opacity: 1;
}

.press-popup__content {
  position: relative;
  width: 100%;
  background-color: #fdfdfd;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  overflow: hidden;
  bottom: -100%;
  opacity: 0;
  transition: all .3s ease-out;

  &::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 7.5rem;
    height: 100%;
    background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/popup-bg-new.png) no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
  }
}

.press-popup__content--show {
  bottom: 0;
  opacity: 1;
}

.press-popup__title-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .32rem 0;
  z-index: 2;

  .icon-back {
    position: absolute;
    left: .4rem;
    top: .28rem;
    margin: auto;
    font-size: .36rem;
    color: #575e6a;
  }

  .icon-close {
    position: absolute;
    left: .4rem;
    top: .28rem;
    margin: auto;
    font-size: .36rem;
    color: #575e6a;
  }
}

.press-popup__title {
  font-size: $font-l;
  // color: $color-black;
  color: #2a333c;
}

.press-popup__title-right {
  position: absolute;
  right: .4rem;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: $font-l;
  // color: $color-black;
  color: #2a333c;
  height: 1rem;
}

.press-popup__main-wrap {
  position: relative;
  z-index: 2;
}

// 确定按钮
// .normal-right-btn {
//   width: 1.12rem;
//   height: .5rem;
//   line-height: .5rem;
//   margin: .24rem auto;
//   font-size: .22rem;
//   color: #212124;
//   font-family: 'MStiffHeiPRC';
//   text-align: center;
//   background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/bg-btn-112.png) no-repeat center / 100% 100%;
// }