.zhny-empty-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  .empty-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    .img-box {
      width: 250px;
      height: 98px;
      &.no-data {
        background: url('../../assets/images/no-data.png') no-repeat center center;
        background-size: auto 100%;
        .skin-dark & {
          background: url('../../assets/images/no-data-dark.png') no-repeat center center;
          background-size: auto 100%;
        }
      }
      &.not-found {
        background: url('../../assets/images/notfound.png') no-repeat center center;
        background-size: auto 100%;
      }
    }
    .empty-text {
      color: #a6a6a6;
      font-size: 14px;
      margin-top: 4px;
      .skin-dark & {
        color: #8d909e;
      }
    }
  }
}
