index.less 1.1 KB
.viewTable {
  width: 100%;
  height: auto;
}

.viewTableHide {
  display: none;
}

.tabs {
  height: auto;
  flex: 1;

  :global {
    .ant-tabs-tabpane {
      height: 100%;
    }
  }
}

.tabsHide {
  :global {
    .ant-tabs-nav {
      display: none;
    }
  }
}

.btns {
  margin-right: 20px;
  width: 210px;
  display: flex;
  justify-content: space-between;

  :global {
    button {
      border-radius: 5px;
    }

    button:first-child {
      background-color: #53b637;
      border-color: #53b637;
    }
  }
}

.process {
  width: 100%;
  height: 100%;
  background: #25292e;
  color: #e57c84;
  display: flex;

  .processContent {
    flex: 1;
    width: auto;
    height: 100%;
    overflow: auto;
    border-right: 1px solid #d9d9d9;
  }

  .processImg {
    width: 400px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    // 图片居中,长宽自适应
    img {
      max-width: 100%;
      max-height: 100%;
    }
  }
}

.fullScreen {
  position: absolute;
  top: 11.5px;
  right: 126px;
  background: transparent !important;
  border: transparent !important;
}