.pdfViewerWrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  .pdfDocumentContent {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    &::-webkit-scrollbar {
      width: 10px;
      height: 0;
    }
    &::-webkit-scrollbar-thumb {
      background-color: #D2D6DE;
      background-clip: content-box;
      border-width: 3px;
      border-style: solid;
      border-color: #F0F2F5;
      border-radius: 1px;
    }
    &::-webkit-scrollbar-track {
      /*滚动条里面轨道*/
      display: unset;
      background-color: #F0F2F5;
    }
  }
  @media screen and (max-width: 768px) {
    .pdfDocumentContent {
      display: block;
      width: 100%;
      overflow: auto;
    }
  }
}

.pdfLoadingWrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdfDocumentContent {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
}

.pdfUtils {
  position: absolute;
  right: 10px;
  bottom: 30px;
  height: 210px;
  width: 46px;
  border-radius: 5px;
  color: #FFFFFF;
  background-color: rgba($color: #363636, $alpha: 0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 10px 0;
  .pageInput {
    width: 100%;
    height: 30px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    input {
      color: #FFFFFF;
      text-align: center;
    }
    .ant-input-number-handler-wrap {
      display: none;
    }
    .ant-input-number-input-wrap {
      background-color: transparent;
    }
  }
  .iconWrapper {
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    &:hover {
      color: #2A87EB;
    }
  }
  .iconWrapper_disabled {
    opacity: 0.3;
    cursor: not-allowed;
    &:hover {
      color: #FFFFFF;
    }
  }
}

.pdfErrorTip {
  display: flex;
  align-items: center;
  color: #ccc;
  text-align: center;
  .downloadText {
    cursor: pointer;
    margin-top: 16px;
    color: #2A87EB;
    font-size: 14px;
  }
}