.nut-tour {
  &-mask {
    position: fixed;
    width: 100px;
    height: 50px;
    box-shadow: 0px 0px 0px 150vh rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1002;
    &-none {
      box-shadow: none;
    }

    &-hidden {
      opacity: 0;
    }
  }

  &-content {
    display: block;
    padding: 10px 12px;
    min-width: 200px;

    &-top {
      display: block;
      text-align: right;

      &-close {
        width: 10px;
        height: 10px;
      }
    }

    &-inner {
      margin: 10px 0px;
      font-size: 14px;
    }

    &-bottom {
      margin-top: 10px;
      display: flex;
      justify-content: space-between;
      &-init {
        margin-left: 10px;
      }
      &-operate {
        display: flex;
        justify-content: flex-end;
        &-btn {
          display: inline-block;
          border: 1px solid $disable-color;
          margin-left: 4px;
          padding: 2px 4px;
          font-size: 12px;
          border-radius: 4px;
          color: $text-color;
          &.active {
            color: #fff;
            border: 0;
            background: $primary-color;
          }
        }
      }
    }

    &-tile {
      .nut-tour-content-inner {
        margin: 0;
      }
    }
  }

  &-masked {
    position: fixed;
    width: 100vh;
    height: 100vh;
    z-index: 2000;
    top: 0;
    left: 0;
    background: transparent;
  }
}
