.press-score {
  min-height: 5rem;
}

.press-score--focusing {
  min-height: 65vh;
}

.press-score__main {
  width: 100%;
  padding: .8rem .32rem 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.press-score__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .32rem 0;
  width: 100%;

  .press-score__team {
    display: flex;
    align-items: center;

    .press-score__team-avatar {
      width: .48rem;
      height: .48rem;
      object-fit: cover;
      flex-shrink: 0;
    }

    .press-score__team-name {
      color: #09134e;
      font-size: .24rem;
      flex-shrink: 0;
      margin-left: .18rem;
    }
  }
}

.press-score__score-box {
  display: flex;
  align-items: center;

  .press-score__add-button,
  .press-score__minus-button {
    width: .44rem;
    height: .44rem;
    background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/icon-sub-btn.png) no-repeat;
    background-size: 100% 100%;
  }

  .press-score__add-button {
    background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/icon-add.png) no-repeat;
    background-size: 100% 100%;
  }

  .press-score__minus-button--disabled {
    opacity: .3;
  }
}

::v-deep .press-score__input {
  font-size: .28rem;
  color: #9299c6;
  width: 100%;
  height: .44rem;
  position: relative;
  width: 1.08rem;
  text-align: center;

  input {
    display: block;
    height: .44rem;
    flex: 1;
    border: 0;
    background: transparent;
    box-sizing: border-box;
  }

  .uni-input-placeholder {
    position: absolute;
    top: auto;
    left: auto;
    overflow: hidden;
    pointer-events: none;
    line-height: inherit;
    color: #9299c6;
    font-size: .28rem;
  }

  .uni-input-input {
    height: .44rem; 
    line-height: .44rem;
    outline: none;
    border: 0 none;
    appearance: none;
    background: transparent;
    color: #9299c6;
    font-size: .28rem;
  }

}

.press-score__both-lose {
  margin-top: .26rem;
  margin-left: .48rem;
  color: #212124;
  font-size: .32rem;
  text-align: center;
  position: relative;
  display: inline-block;

  &::before {
    content: '';
    width: .4rem;
    height: .4rem;
    background: url(https://image-1251917893.file.myqcloud.com/tip-project/pubg/pubg-match/icon-warning.png) no-repeat;
    background-size: 100% auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -.48rem;
  }
}

// 确定按钮
.press-popup__confirm {
  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%;
}