.unionContentWrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  .imgContentWrapper {
    height: calc(100% - 43px);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    align-content: flex-start;
    padding-top: 24px;
    background-color: white;
    .baseUnionImgWrapper {
      display: flex;
      flex-direction: column;
      .bottomName {
        font-size: 12px;
        text-align: center;
        height: 24px;
        line-height: 24px;
        width: 100%;
        background-color: #fff;
      }
    }
    .unionImgWrapper_2 {
      width: calc((100%) / 2);
      height: 100%;
    }
    .unionImgWrapper_3 {
      width: calc((100%) / 3);
      height: 100%;
    }
    .unionImgWrapper_4 {
      width: calc((100%) / 2);
      height: calc((100%) / 2);
    }
    .unionImgWrapper_6 {
      width: calc((100%) / 3);
      height: calc((100%) / 2);
    }
    .unionImgWrapper_9 {
      width: calc((100%) / 3);
      height: calc((100%) / 3);
    }
    .unionImgWrapper_12 {
      width: calc((100%) / 4);
      height: calc((100%) / 3);
    }
    .unionImgWrapper_16 {
      width: calc((100%) / 4);
      height: calc((100%) / 4);
    }
    .unionImgWrapper_20 {
      width: calc((100%) / 5);
      height: calc((100%) / 4);
    }
    .unionImgWrapper {
      flex: 1;
      overflow: hidden;
      // background-color: rgba($color: #000000, $alpha: 0.5);
      background-color: #fff;
      .unionImg {
        height: 100%;
        width: 100%;
        object-fit: contain;
      }
    }
  }
  .bottomActionWrapper {
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}