.form-text {
  width: 1100px;
  height: 680px;
  box-shadow: 0px 20px 30px 1px rgba(14,20,33,0.03);
  border-radius: 17px 17px 17px 17px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
//   margin: 0 auto;
  transform: translate(-50%, -50%);
  display: flex;
  .left {
    width: 494px;
    img {
      height: 100%;
    }
  }
  .right {
    flex: 1;
    padding: 20px;
    position: relative;
    overflow-y: auto;
    .title {
      font-size: 22px;
      font-weight: 600;
      color: #0A083A;
      line-height: 36px;
      text-align: center;
    }
    form {
      width: 75%;
      margin: 0 auto;
      .form-checkbox {
        display: flex;
        padding: 0 10px;
        margin-bottom: 20px;
        position: relative;
        .left-title  {
          width: 100px;
          padding: 0 10px;
          font-size: 15px;
          color: #0A083A;
          font-weight: 500;
          height: 25px;
          line-height: 25px;
          span {
            color: #FF5D82;
            font-weight: normal;
          }
        }
        .right-son {
          flex-grow: 1;
          width: 0;
          .son {
            display: flex;
          }
        }
        .read-only {
          position: absolute;
          left: 0;
          top: 100%;
          height: 20px;
          color: #FF5D82;
          display: none;
          font-size: 12px;
          line-height: 20px;
        }
      }
      .form-checkbox1 {
        // display: flex;
        padding: 0 10px;
        margin-bottom: 20px;
        position: relative;
        .left-title  {
          width: 100px;
          padding: 0 10px;
          font-size: 15px;
          color: #0A083A;
          font-weight: 500;
          height: 25px;
          line-height: 25px;
          span {
            color: #FF5D82;
            font-weight: normal;
          }
        }
        .right-son {
          // flex-grow: 1;
          // width: 0;
          .son {
            display: flex;
          }
        }
        .read-only {
          position: absolute;
          left: 0;
          top: 100%;
          height: 20px;
          color: #FF5D82;
          display: none;
          font-size: 12px;
          line-height: 20px;
        }
      }
      .form-item {
        display: flex;
        padding: 0 10px;
        background: #F4F5F7;
        border-radius: 7px 7px 7px 7px;
        height: 44px;
        line-height: 44px;
        margin-bottom: 20px;
        position: relative;
        label  {
          width: 112px;
          padding: 0 10px;
          font-size: 15px;
          color: #0A083A;
          font-weight: 500;
          span {
            color: #FF5D82;
            font-weight:normal;
            margin-left: 3px;
          }
        }
        .read-only {
          position: absolute;
          left: 0;
          top: 100%;
          height: 20px;
          color: #FF5D82;
          display: none;
          font-size: 12px;
          line-height: 20px;
        }
        input,select {
            flex-grow: 1;
            width: 0;
            outline: none;
            padding: 0 10px;
            font-size: 15px;
            color: #0A083A;
            border: none;
            background: none;
            box-shadow: none;
        }
        .auto {
          input {
            padding-right: 100px;
          }
        }
        .titer-click {
          position: absolute;
          right: 20px;
          cursor: pointer;
          color: #175CFF;
          font-size: 13px;
        }
        .titer-none-num {
          position: absolute;
          right: 20px;
          font-size: 13px;
          display: none;
        }
        .titer-click-img {
          position: absolute;
          right: 0px;
          cursor: pointer;
          height: 44px;
        }
      }
    }
    .submit {
      width: 70%;
      margin: 20px auto;
      display: block;
      // position: absolute;
      // bottom: 60px;
      // left: 50%;
      margin-bottom: 20px;
      // transform: translateX(-50%);
      height: 48px;
      box-shadow: none;
      border: none;
      color: #fff;
      background: linear-gradient(90deg, #175CFF 0%, #5889FF 100%);
      border-radius: 24px;
      font-size: 15px;
      font-weight: 600;
    }
  }
  @media (max-height: 700px) {
    height: 500px;
    .left {
      width: 363px;
    }
  }
}
// checkbox 样式
input[type="checkbox"] {
    display: none;
  }
  /* 自定义复选框的外观 */
  .custom-checkbox {
    margin-right: 10px; /* 可以根据需要调整 */
    cursor: pointer;
    flex-grow: 1;
    border: 1px solid #A0A2A8;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    color: #52565D;
    text-align: center;
    &:last-child {
      margin-right: 0;
    }
  }

  /* 当复选框被选中时，修改伪元素的样式 */
  input[type="checkbox"]:checked + .custom-checkbox {
    border: 1px solid #175CFF;
    color: #175CFF;
  }
  .auto-all {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    .null {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      img {
        margin-bottom: 10px;
        width: 86px;
      }
      .title {
        text-align: center;
        font-size: 18px;
        color: #000;
        font-weight: 600;
        line-height: 30px;
        margin-bottom: 5px;
      }
      .message {
        font-size: 13px;
        font-weight: 400;
        color: #52565D;
        line-height: 36px;
      }
    }
  }
  .submit-checkbox {
    // width: 70%;
    // margin: 20px auto;
    display: inline-block;
    a {
      color: #175CFF;
    }
  }
.computed {
  width: 70%;
  margin: 0 auto;
  .read-only {
    display: none;
    color: #FF5D82;
  }
}