.winner-item {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 12px;
  padding: 0 12px;
  height: 72px;
  border-radius: 8px;
  background: #fff;
  .text-overflow-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 65vmin;
  }
  .avatar {
    width: 32px;
    height: 32px;
    border: 1px solid #ffddba;
    border-radius: 50%;
  }
  .winner-info {
    box-sizing: border-box;
    margin-left: 12px;
    .nickname {
      font-weight: 600;
      font-size: 14px;
      .text-overflow-ellipsis()
    }
    .prize-name {
      color: #666;
      font-size: 12px;
      .text-overflow-ellipsis()
    }
    .prize-title {
      color: #666;
      font-size: 12px;
      .text-overflow-ellipsis()
    }
  }
}
