// 编辑题型 - 底部操作栏样式
.question-item {
  display: flex;
  justify-content: flex-start;
  .question-item-content {
    width: 100%;
    .content {
      margin-top: 10px;
      margin-left: 6px;
      .title-tips {
        margin-top: 20px;
        font-size: 11px;
        font-weight: 400;
        color: rgba(251, 100, 100, 1);

        &::before {
          content: "!";
          display: inline-block;
          width: 14px;
          height: 14px;
          line-height: 14px;
          background-color: rgba(251, 100, 100, 1);
          color: #fff;
          text-align: center;
          border-radius: 50%;
        }
      }
      .title {
        position: relative;
        display: flex;
        padding-right: 230px;
        .number {
          width: 45px;
          margin-right: 5px;
          text-align: right;
          align-self: center;
          flex-shrink: 0;
        }
        .titile-input {
          width: 100%;
          max-width: 860px;
          min-width: 150px;
        }
        .action-bar {
          position: absolute;
          top: 5px;
          right: 20px;
        }
      }
    }
  }
}

.footer-operation {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-left: 6px;
  margin-top: 14px;

  .bottom-operation {
    display: flex;
    justify-content: space-between;
    color: rgba(34, 64, 195, 1);
    font-size: 13px;
    .button1 {
      cursor: pointer;
      &:nth-child(2) {
        margin: 0 30px;
      }
      .icon {
        margin-right: 7px;
        font-size: 13px;
      }
    }
  }
}
