.ant-modal {
  &.fullscreen {
    // color: red;
  }
  &.support-fullscreen.no-header .ant-modal-header{
    padding: 0;
    border-bottom: none;
  }
  &.support-fullscreen {
    .ant-modal-content {
      height: inherit;
      display: flex;
      flex-direction: column;

      .ant-modal-close {
        display: none;
      }
    }

    .ant-modal-header {
      position: relative;
      padding: 12px 20px;

      .ant-modal-header-actions {
        position: absolute;
        top: 0;
        right: 0;
        height: 40px;
        line-height: 40px;

        a {
          width: 46px;
          height: 46px;
          line-height: 46px;
          font-size: 15px;
          cursor: pointer;
          text-align: center;
          display: inline-block;
          color: inherit;
        }

        .modal-fullscreen-wrap {
          &:hover {
            color: #2e81f7;
          }
        }

        .modal-close-wrap {
          &:hover {
            color: red;
          }
        }
      }
    }

    .ant-modal-title {
      & {
        font-weight: 400;
        line-height: 22px;
      }
      .link {
        margin-left: 10px;
        font-size: 12px;
        color: #999;

        &:hover {
          color: #2e81f7;
        }
      }

      img {
        position: relative;
        width: 18px;
        height: 18px;
        margin-right: 8px;
        vertical-align: text-top;
      }
    }

    .ant-modal-body {
      height: 100%;
      overflow: auto;
    }

    // iframe {
    //     border: none;
    //     width: 100%;
    //     height: 100%;
    // }
  }
  &.support-fullscreen {
    &.fullscreen {
      .ant-modal-content {
        height: 100vh;
      }
    }
  }
  .ant-modal-title {
    font-weight: 400;
    // .move-handle {}
  }
  &.ant-modal {
    max-width: 100vw;
    padding-bottom: 0;
  }
}
