@import './theme.less';
.gd-GDsignature-app {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background-color: #f3f6f7;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-top: 1rem;
  display: none;

  .sign-box {
    position: fixed;
    top: 0;
    height: 0.98rem;
    background: rgba(255, 255, 255, 1);
    width: 100%;
    display: flex;

    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    -webkit-box-shadow: 0 2px 6px 0 hsla(0, 0%, 52.9%, 0.16);
    box-shadow: 0 2px 6px 0 hsla(0, 0%, 52.9%, 0.16);
    z-index: 2020;

    .sign-btn {
      display: inline-block;
      width: 2rem;
      height: 0.62rem;
      background: @--color-primary;
      border-radius: 0.1rem;
      box-sizing: border-box;
      outline: none;
      border: 1px solid #dcdfe6;
      color: white;
      font-size: 0.28rem;
      display: none;
    }

    .close-btn {
      display: inline-block;
      width: 2rem;
      height: 0.62rem;
      background: @--color-primary;
      border-radius: 0.1rem;
      box-sizing: border-box;
      outline: none;
      border: 1px solid #dcdfe6;
      color: white;
      font-size: 0.28rem;
      display: none;
    }

    .sign-btn-diabled {
      background-color: #b3e19d;
      border-color: #b3e19d;
    }

    .close-btn:active,
    .sign-btn:active {
      opacity: 0.6;
    }
  }

  .pdf-box {
    text-align: center;

    .pdf-content {
      display: inline-block;
      position: relative;
    }
  }

  .canvas_item {
    display: block;
    -webkit-box-shadow: 0 2px 9px 0 hsla(0, 0%, 74.9%, 0.5);
    box-shadow: 0 2px 9px 0 hsla(0, 0%, 74.9%, 0.5);
    margin: 0 auto;
  }
}