.hero-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.hero-nav {
  display: flex;
  flex-direction: row;
  height: .4rem;
  flex-shrink: 0;
  margin-bottom: .15rem;
  background-image: url(https://image-1251917893.file.myqcloud.com/Esports/pix/img/hero-bg.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.36rem;
  height: 100%;
}

.hero-nav-title {
  position: relative;
  font-family: GameFont;
  font-size: .22rem;
  color: #294391;
  text-align: center;
  z-index: 3;
}
.hero-nav-active {
  .hero-nav-title {
    color: #fff;
  }
  &::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(https://image-1251917893.file.myqcloud.com/Esports/pix/img/hero-active.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.hero-list {
  display: flex;
  flex-direction: row;
  align-content: baseline;
  flex-wrap: wrap;
  flex-grow: 1;
  scrollbar-width: 0;
  overflow: scroll;
  .hero-item {
    &:nth-child(7n),
    &:last-child {
      margin-right: 0;
    }
  }
}

.hero-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: .96rem;
  margin-right: .22rem;
  margin-bottom: .2rem;
}

.hero-pic {
  width: .96rem;
  height: .96rem;
  margin-bottom: .08rem;
}

.hero-name {
  width: 100%;
  font-size: .2rem;
  color: #294391;
  text-align: center;
  line-clamp: 1;
}

.hero-have {
  &::after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: .59rem;
    height: .62rem;
    background-image: url(https://image-1251917893.file.myqcloud.com/Esports/pix/img/have-icon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}