@gate-layout-help: doreamonjs-design-gate-layout-help;

.@{gate-layout-help}.help {
  color: #000;
  position: fixed;
  // right: 28px;
  // bottom: 24px;
  right: 20px;
  bottom: 20px;
  z-index: 1000000;
  transition: all 0.3s ease-in-out;

  .question-btn {
    color: #000;
    background-color: #fff;
    // background-color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    // box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 1px solid #dee0e3;
    box-shadow: rgba(31, 35, 41, 0.08) 0px 6px 12px 0px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }

  .dialog {
    width: 360px;
    background-color: #f5f5f5;
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;

    .close {
      cursor: pointer;
      font-size: 12px;
      width: 40px;
      height: 32px;
      line-height: 32px;
      text-align: center;
      position: absolute;
      top: 0px;
      right: 0px;
      z-index: 10;
    }

    .header {
      width: 100%;
      position: relative;
      height: 32px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 0.5px solid #e2e2e2;
      user-select: none;

      .title {
        text-align: center;
        font-size: 14px;
        font-weight: bold;
      }
    }

    .body {
      height: 540px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}
