.press-member-card {
  height: 3.28rem;
  padding-top: .6rem;
  box-sizing: border-box;

  &--short {
    padding-top: 0;
    height: unset;

    .press-member-card__title {
      margin: .32rem auto .32rem;
    }

    .press-battle-user-wrapper {
      padding: .12rem .6rem 0rem .6rem;
      display: flex;
      justify-content: space-around;
    }

    .press-portrait-wrapper .press-portrait-wrapper__icon {
      // bottom: .09rem;
    }
  }
}

.press-member-card__title {
  width: 2.6rem;
  margin: 0 auto .32rem;
  color: #212124;
  font-size: .32rem;
  text-align: center;
  font-family: 'PEACE';
  height: .42rem;
  line-height: .42rem;
  position: relative;

  &::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, rgba(211, 205, 238, .75) 4.55%, rgba(211, 205, 238, 0) 86.93%);
    top: .22rem;
    right: -2rem;
    width: 1.76rem;
    height: .02rem;
  }

  &::before {
    content: '';
    position: absolute;
    background: linear-gradient(-90deg, rgba(211, 205, 238, .75) 4.55%, rgba(211, 205, 238, 0) 86.93%);
    top: .22rem;
    left: -2rem;
    width: 1.76rem;
    height: .02rem;
  }
}

.press-member-card__description {
  margin-top: .36rem;
  text-align: center;
  color: rgba(33, 33, 36, .75);
  font-size: .26rem;
  line-height: .4rem;

  .press-card__battle-play-number {
    color: #ed7b2f;
    font-family: PingFang SC;
    font-weight: 400;
  }
}

.press-battle-user-wrapper {
  padding: .3rem .3rem .6rem .3rem;
  box-sizing: border-box;
  margin: 0 auto;
  color: rgba(33, 33, 36, .75);
  font-size: .28rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .1rem;

  .press-portrait-wrapper {
    position: relative;
  }

  .press-portrait-wrapper__border {
    border: 1px solid #333;
  }

  .press-portrait-wrapper__img {
    width: .82rem;
    height: .82rem;
    box-sizing: content-box;
  }

  .press-portrait-wrapper__name {
    font-size: .2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: .82rem;
    text-align: center;
  }

  .press-portrait-wrapper__icon {
    position: absolute;
    bottom: .39rem;
    right: 0rem;
    width: .24rem;
    height: .24rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    .press-portrait-wrapper__icon-img {
      border: 0;
      width: .25rem;
      height: .25rem;
    }
  }
}

.press-battle-wrapper {
  height: 3.28rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  .press-battle-wrapper_logo {
    width: 1.52rem;
    height: 1.6rem;
    margin-bottom: .16rem;
  }
}

.press-battle-wrapper_name {
  font-size: .56rem;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  margin-bottom: .16rem;
}

.press-battle-wrapper_description {
  font-size: .24rem;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.press_add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(151, 151, 151, .5);
  width: .82rem;
  height: .82rem;
  margin-bottom: .15rem;

  .icon-close {
    color: rgba(151, 151, 151, 1);
    transform: rotate(45deg);
  }
}