// 侧栏组件
@import '../../../../common/styles/pubgm/mixins.less';

.pmg-match-side-tab{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  .bgUrl('comp/tab-side-bar.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  overflow: scroll;

  &.pmg-side-tab-active{
    margin-right: -.88rem;
  }

  .pmg-match-side-tab-item{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-width: 1.56rem;
    height: .74rem;
    border-bottom: 0.02rem solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-size: .24rem;
    flex-shrink: 0;
    padding: 0 .1rem;
    &-text{
      width: 100%;
      line-clamp: 2;
      word-break: break-word;
      text-align: center;
    }
    &.pmg-tab-active{
      width: 100%;
      height: .74rem;
      .bgUrl('comp/tab-active.png');
      background-repeat: no-repeat;
      background-size: 100% 100%;
      color: #FFDD21;
      font-weight: bold;
    }
  }
}