.ptz {
  background: rgba(0, 0, 0, 0.76);
  border: 1px solid rgb(136, 136, 136, 0.76);
  width: 168px;
  padding-right: 0!important;

  :global(.next-icon-close) {
    cursor: pointer;
  }

  .top {
    color: #fff;
    text-align: right;
    padding: 12px;
  }

  .content {
    padding: 0 12px;
    .circle {
      margin-left: 22px;
      background: #616161;
      box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.20);
      border-radius: 50%;
      width: 100px;
      height: 100px;
      position: relative;
      .inner-circle {
        background: #9d9d9d;
        box-shadow: 1px 1px 2px 0 rgba(0,0,0,0.13);
        border-radius: 50%;
        width: 24px;
        height: 24px;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
        z-index: 1;
      }
    }

    .record {
      display: flex;
      justify-content: center;
    }

    .options {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 12px;
      .option {
        display: flex;
        align-items: center;
        .name {
          flex: 1;
          font-size: 12px;
          color: #fff;
          line-height: 20px;
          text-align: center;
          display: flex;
          justify-content: center;
          .label {
            flex: 0 0 50%;
            text-align: right;
          }
        }
      }
    }
  }

  .realcontent {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 28px;
    top: -3px;
    transform-origin: -16px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    z-index: 1;
    .icon {
      position: absolute;
      z-index: 1;
      left: 60%;
      top: 49%;
      transform: translate(-50%,-50%);
      img {
        display: block;
      }
    }
    .bg {
      transform: rotate(90deg);
      position: absolute;
      z-index: 0;
      top: -2px;
      left: 0;
    }
  }

  .ratioButton {
    color: #fff;
    font-size: 14px;
    user-select: none;
    &:hover {
      box-shadow: 0 1px 4px 0 rgba(0,0,0,0.13);
    }
    &.disable {
      color: #757575;
    }
  }

  .save {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #d8d8d8;
    .button {
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      color: #fff;
    }
  }
  
}