.U_B_Wapper {
  width: 97px;
  height: 60px;
  background: #fff;
  position: relative;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  text-align: center;

  &:hover .Up_Btn_2 {
    display: flex;
  }

  .Up_Btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 97px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .Up_Btn_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 97px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    display: none;
    align-items: center;
    justify-content: space-around;
  }
}

.tips {
  height: 17px;
  font-size: 12px;
  font-family: PingFangSC-Regular;
  line-height: 20px;
  color: #B6C2CD;
  opacity: 1;
  margin-top: 10px;
}


.preview_wapper {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;

  .img_wapper {
    text-align: center;
    position: relative;
    box-sizing: border-box;

    .close_out_lined {
      position: absolute;
      right: -25px;
      top: -25px;
      font-size: 16px;
      color: #fff;
      font-weight: bold;
      cursor: pointer;
    }
  }
}