.configContent {
  height: 500px;
  display: flex;

  .leftTree {
    width: 180px;
    height: 100%;
    margin-right: 10px;
    overflow-y: scroll;
  }

  .rightContent {
    .title {
      width: 100%;
      background-color: #E6F3FF;
      color: #1890FF;
      font-size: 14px;
      padding: 5px 10px;
      border: 1px solid #EEF6FE;
    }

    .textAreaBox {
      // height: 400px;
      // overflow-y: scroll;
      position: relative;

      .insertFn {
        position: absolute;
        bottom: 10px;
        right: 10px;
        border: 1px solid #1890FF;
        padding: 2px 15px;
        border-radius: 5px;
        z-index: 1;
        cursor: pointer;
      }

      textArea {
        // min-height: 200px;
        max-height: 360px !important;
        min-height: 360px !important;
        border: 1px solid transparent;
        background-color: #F0F2F6;
      }
    }

    .tipBox {
      padding-top: 12px;
      padding-left: 25px;

      li {
        list-style: disc;
        color: #AEAEAE;
      }

      em {
        font-style: normal;
        color: #1890FF;
      }

      i {
        font-style: normal;
        color: red;
      }

      p {
        margin-bottom: 0;
        color: #AEAEAE;
      }
    }
  }
}