.zt-popup-full-overflow-hidden {
  overflow: hidden !important;
}
/**
* 全屏弹出层
*/
.zt-popup-full {
  position: absolute;
  z-index: 100;
  .zt-popup-full-close {
    position: absolute;
    z-index: 101;
    top: 5px;
    left: 5px;
    padding: 10px;
  }
}
@media screen and (orientation: portrait) {
  .zt-popup-full {
    width: 100vh;
    height: 100vw;
    overflow: auto;
    background: white;
    top: 0;
    left: 0;
    transform: rotate(90deg) translateY(-100%);
    transform-origin: top left;
    .zt-popup-full-warp {
      height: 100%;
      width: 100%;
      background: white;
      & > div {
        height: 100%;
        width: 100%;
      }
    }
    .zt-table-wrapper {
      height: 100% !important;
      width: 100% !important;
    }
    .zt-table-content {
      overflow: auto !important;
      height: 100% !important;
      width: 100% !important;
    }
  }
}

@media screen and (orientation: landscape) {
  .zt-popup-full {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
}
