
/* FAQ标题 */
.faq_title {
    color: #000000;
    font-size: 24px;
    text-transform: uppercase;
    font-family: NotoSansHans-Bold;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    line-height: 40px;
    margin: 0 0 20px;
}

/* FAQ列表 */
.faq_list {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
}

/* FAQ项目 */
.faq_item {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
    padding: 10px 0;
}

/* FAQ图标 */
.faq_icon {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    margin-right: 10px;
}

.faq_number {
    color: white; /* 白色字体 */
    background-color: #0b69e6; /* 深色背景，与白色字体形成对比 */
    width: 32px; /* 宽度 */
    height: 32px; /* 高度，与宽度相等形成正方形 */
    border-radius: 50%; /* 圆形，将正方形变为圆形 */
    display: flex; /* 使用Flexbox居中 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    font-size: 16px; /* 字体大小，可根据需要调整 */
    font-weight: bold; /* 字体加粗 */
    flex-shrink: 0; /* 防止被压缩 */
    margin-right: 12px; /* 右侧间距，可根据需要调整 */
}

/* FAQ内容容器 */
.faq_content {
    flex: 1;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* FAQ问题 */
.faq_question {
    color: #000000;
    font-size: 18px;
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 8px;
}

/* FAQ答案 */
.faq_answer {
    color: #333333;
    font-size: 16px;
    font-family: PingFangSC-Regular;
    font-weight: 400;
    line-height: 1.5;
}


/*联系我们*/
.contact-form {
    background-color: #112592;
    background-size: cover;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.form-content {
    padding: 2.278rem 20px 1.667rem;
    max-width: 375px;
    margin: 0 auto;
}

.form-field {
    background-color: #ffffff;
    border-radius: 25px;
    width: 100%;
    max-width: 16.556rem;
    height: 2.334rem;
    margin: 0 auto 0.667rem auto;
    display: flex;
    align-items: center;
}
/*#112592*/
.field-label {
    background-color: #125C91;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    height: 2.334rem;
    width: 5.556rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-field input {
    flex: 1;
    height: 1.667rem;
    color: #999999;
    font-size: 16px !important;
    font-family: PingFangSC-Regular;
    font-weight: 600;
    text-align: left;
    line-height: 1.667rem;
    margin: 0.334rem 1.667rem 0 0.556rem;
    min-width: 0;
    transform: scale(1);
    transform-origin: 0 0;
}

.submit-btn {
    background-image: linear-gradient(194deg, #125C91 0, #125C91 100%);
    border-radius: 21px;
    height: 2.445rem;
    width: 100%;
    max-width: 16.556rem;
    margin: 0.834rem auto 1.667rem auto;
    display: block;
}

.submit-btn span {
    color: white;
    font-size: 1.111rem;
    font-family: PingFangSC-Semibold;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    line-height: 1.556rem;
    display: block;
    text-align: center;
}
