.g-modal.bind-phone-modal {
  .step-0-layout {
    margin-bottom: 70px;
    font-size: 18px;

    a {
      margin-right: 20px;
      float: right;
    }
  }

  .step-1-layout {
    display: flex;

    .label {
      font-size: 18px;
      line-height: 40px;
      margin-right: 20px;
    }

    .input-layout {
      flex: 1;
      display: block;
    }
  }
}

.g-modal.bind-email-modal {
  .step-0-layout {
    margin-bottom: 70px;
    font-size: 18px;

    a {
      margin-right: 20px;
      float: right;
    }
  }

  .step-1-layout {
    display: flex;

    .label {
      font-size: 18px;
      line-height: 40px;
      margin-right: 10px;
    }

    .input-layout {
      flex: 1;
    }
  }
}

.g-modal.edit-info-modal {
  .edit-info-modal-block {
    display: flex;

    .label {
      font-size: 18px;
      line-height: 40px;
      margin-right: 10px;
    }

    .input-layout {
      flex: 1;
    }

    .file-upload {
      background: #F7F7F7;
      border: none;
    }
  }
}

.g-modal.real-auth-modal {
  .real-auth-modal-wrapper {
    position: relative;
  }

  .real-auth-text {
    font-size: 18px;

    .t2 {
      margin-bottom: 30px;
    }

    .t3 {
      margin-bottom: 20px;
    }
  }

  .real-auth-qrcode {
    position: absolute;
    right: 0;
    top: 0;
  }
}

.g-modal.edit-avatar-modal {
  .edit-avatar-modal-wrapper {
    position: relative;
  }

  .edit-avatar-o {
    vertical-align: top;
    display: inline-block;
    padding-right: 35px;
    border-right: 1px solid #d8d8d8;

    .assets {
      width: 360px;
    }
  }

  .edit-avatar-r {
    display: inline-block;
    padding-left: 30px;

    .text {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .img-preview,
    .assets {
      border-radius: 50%;
      width: 100px;
    }
  }
}

.g-modal.invite-modal {
  .invite-modal-wrapper {
    position: relative;

    .tip {
      font-size: 18px;
      color: #686872;
      margin-bottom: 30px;
    }
  }
}

.question-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  >.mask {
    background: #000;
    opacity: .2;
    width: 100%;
    height: 100%;
  }

  .body {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 630px;
    color: #686872;
    padding: 20px 30px;

    .title {
      color: #303036;
      font-size: 20px;
      font-weight: 600;
      border: none;
    }

    .desc {
      color: #686872;
      font-size: 16px;
      padding: 20px 0;

      .select-inline {
        margin-bottom: 15px;

        .select {
          display: inline-block;
        }
      }

      .label {
        margin-bottom: 5px;
      }
    }

    .textarea {
      width: 570px;
      height: 80px;
      background: rgba(247, 247, 247, 1);
      margin-bottom: 15px;
      border: none;
      padding: 5px 10px;
    }

    .bottom {
      border-top: 1px solid #E1E1E1;
      padding-top: 10px;
      text-align: right;
    }
  }
}

.question-modal.ask-ok,
.question-modal.error-ok {
  .body {
    .content {
      width: 100%;
      padding-top: 20px;
      padding-bottom: 40px;
      color: #686872;
      overflow: hidden;

      .left {
        float: left;
        width: 360px;
        font-size: 18px;

        a {
          padding-top: 30px;
          display: inline-block;
          font-size: 14px;
        }
      }

      .right {
        float: right;
        text-align: right;
        font-size: 12px;
      }
    }

    .confirm {
      text-align: center;
      padding-bottom: 10px;

      .answer-button.lager {
        font-size: 16px;
      }
    }
  }
}

.question-modal.question-note-modal {
  .body {
    width: 720px;

    .content {
      padding-top: 20px;
      width: 100%;

      .tabs {
        display: inline-block;
        width: 170px;
        vertical-align: top;
        margin-left: -30px;
        margin-right: 30px;
        height: 100%;

        .tab {
          padding: 5px 0px 5px 40px;
          line-height: 20px;
          color: #686872;
          margin-bottom: 30px;
          cursor: pointer;
          transition: all 0.3s;
          border-top-right-radius: 25px;
          border-bottom-right-radius: 25px;

          .date {
            font-size: 12px;
          }
        }

        .tab.active,
        .tab:hover {
          color: #fff;
          background: #4299FF;
        }
      }

      .input {
        display: inline-block;

        .textarea {
          width: 490px;
          height: 350px;
          margin-bottom: 20px;
        }
      }
    }
  }
}