.press-matching {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;

  &__mask {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .75);
  }
  
  
  &__wrap {
    position: relative;
    height: 7.46rem;
    width: 100%;
  
    &::before {
      content: '';
      position: absolute;
      top: -.8rem;
      left: 0;
      right: 0;
      margin: auto;
      width: 7.46rem;
      height: 7.84rem;
      background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/horizon/bg-draw-lots-progress.png) no-repeat;
      background-size: 100% 100%;
      pointer-events: none;
    }
  }
  
  &__title {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 5.94rem;
    height: 2rem;
    background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/horizon/title-draw-lots-progress-new.png) no-repeat;
    background-size: 100% auto;
  }
  
  &__time {
    margin-top: 1.5rem;
    text-align: center;
    text-indent: .38rem;
    font-size: .4rem;
    font-family: 'AgencyFB-Bold';
    background: linear-gradient(0deg, #bca1e0, #bca1e0), linear-gradient(180deg, #430398 -154.17%, #f1e6ff 80.56%);
    -webkit-background-clip: text;
    color: transparent;
  }
  
  &__main {
    position: relative;
    height: 3.8rem;
    overflow: hidden;
  }
  
  &__main-mask {
    position: absolute;
    top: .16rem;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(269.99deg, rgba(0, 0, 0, .77) 2.39%, rgba(0, 0, 0, .15) 48.79%, rgba(0, 0, 0, .77) 98.83%);;
    z-index: 2;
  }
  
  &__team-list {
    margin-top: .24rem;
    position: relative;
    background: rgba(0, 0, 0, .85);
  }
  
  &__team-list-inner {
    position: relative;
    display: flex;
    width: fit-content;
    margin-bottom: .16rem;
  
    &:last-child {
      margin-bottom: 0;
    }
  }
  
  
  &__team-item {
    position: relative;
    margin: 0 .16rem 0 0;
    width: 1.08rem;
    height: 1.08rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #d6dadd 0%, #dee1e6 100%);
    opacity: .7;
  
    img,
    image {
      width: .9rem;
      height: .9rem;
    }
  
    &:nth-child(3n) {
      margin-bottom: 0;
    }
  
    &.press-matching__team-item--active {
      animation: scaleItem 2s linear 1s infinite;
      opacity: 1;
    }
  }
  
  
  
  &__button {
    width: 3.06rem;
    height: .72rem;
    line-height: .72rem;
    flex-shrink: 0;
    color: #fff;
    text-align: center;
    font-size: .4rem;
    font-weight: 700;
    border: 1px solid #fff;
    z-index: 2;
    margin-top: -.5rem;
  }
}



//缩放动画
@keyframes scaleItem {
  0% {
    transform: scale(1);
    box-shadow: none;
    z-index: 1;
  }

  50% {
    transform: scale(1.14);
    box-shadow: 0 0 .28rem #8853d5;
    z-index: 9;
  }

  100% {
    transform: scale(1);
    box-shadow: none;
    z-index: 1;
  }
}
