.form {
    width: 389px;
     /* height: 501px; */
     margin: -19px auto;
     background-color: #FFFFFF;
     box-sizing: border-box;
     /* border: 1px solid #D8D8D8; */
     position: relative;
     top: -19px;
     font-size: 12px;
}

.F_Title {
    font-family: Source Han Sans;
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    color: #000000;
    margin: 7px 0 9px 15px;
    padding-top: 7px;
}

.F_Content {
    width: 94%;
    margin: auto;
}

.F_Item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom:12px
}
.F_ItemInput {
  text-align: right; /* 右对齐输入框内容 */
  flex-grow: 1; /* 让输入框占满剩余空间 */
}

.F_ItemInput input {
  width: 100%; /* 输入框宽度自适应父元素 */
}

.F_ItemText {
    font-family: Source Han Sans;
    font-size: 12px;
    font-weight: normal;
    line-height: 32px;
    text-align: left; /* 左对齐文本 */
    width: 200px; /* 为文本设置固定宽度，防止内容过长时挤压 */
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #787878;
    margin-right: 12px;
}

.submitBtn {
    width: 232px;
    height: 36px;
    border-radius: 10px;
    opacity: 1;
    background: #058EFF;
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: bold;
    line-height: 36px;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    text-align: center;
    margin: 17px auto 17px auto;
}