.faqs-content {
  display: flex;
  justify-content: space-between;
}

/* 左侧：问题与解答列表 */
.faqs-left {
  flex: auto;
}

.faqs-list {
}

/* 问题项 */
.faq-item {
  margin-bottom: 16px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

/* 提问 */
.faq-question {
    font-size: 20px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #333333;
line-height: 28px;
}


/* 回答 */
.faq-answer {
  margin-top: 12px;
  background: #f5f5f5;
  padding: 12px 16px;
  box-sizing: border-box;
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #333333;
line-height: 24px;
}
.faq-answer a{
  display: inline-block;
  text-decoration: underline;
color: #004b72;
margin: 0 2px;
}

/* 右侧：用户联系系统 */
.faqs-right {
  flex: none;
  width: 400px;
  margin-left: 24px;
}

/* 下载卡片 */
.download-card {
  border: 2px solid #004b72;
  padding: 24px;
}

/* 下载按钮 */
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-image: url(../images/faqs/download_btn_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 36px;
}

.download-icon {
  flex: none;
  width: 16px;
  height: 16px;
  margin-right: 12px;
}

.download-text {
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #ffffff;
line-height: 24px;
}

/* 下载信息 */
.download-info {
  cursor: pointer;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-info-text {
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-decoration: underline;
text-align: left;
color: #004b72;
line-height: 24px;
margin-right: 11px;
}

.download-info-icon {
  width: 18px;
  height: 18px;
}

/* 描述 */
.download-desc {
  margin-top: 12px;
  font-size: 16px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #666666;
line-height: 25px;
}

.contact-card-wrap{
  margin-top: 24px;
  background-image: url(../images/faqs/card_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 24px 24px;
}

/* 联系我们卡片 */
.contact-card {
  
}

/* 联系标题图片 */
.contact-title-img {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-title-img-src {
  display: block;
  height: auto;
}
.contact-title-text{
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
}

/* 联系方式 */
.contact-info {
  margin-top: 32px;
  padding: 41px 16px;
  position: relative;
}
.contact-info::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: url(../images/faqs/info_top.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.contact-info::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 14px;
  background-image: url(../images/faqs/info_bottom.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 34px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.address-icon {
  flex:none;
  width: 58px;
  height: 94px;
  margin-right: 16px;

}
.phone-icon{
   flex:none;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

.contact-info-text {
  flex: auto;
  font-size: 14px;
  font-family: PingFang SC, PingFang SC-Regular;
  font-weight: Regular;
  text-align: left;
  color: #ffffff;
  line-height: 20px;
}

/* 描述 */
.contact-desc {
  margin-top: 40px;
 font-size: 18px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #ffffff;
line-height: 25px;
}

/* 表单卡片 */
.contact-form-card {
  margin-top: 20px;
  background: rgba(255,255,255,0.40);
border: 2px solid rgba(255,255,255,0.60);
border-radius: 12px;
  padding: 20px 24px;
}

/* 表单项 */
.form-item {
  margin-bottom: 16px;
}

.form-item:last-child {
  margin-bottom: 0;
}

.form-label {
 font-size: 14px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #ffffff;
line-height: 20px;
margin-bottom: 8px;
}

.form-input {
  width: 100%;
}

/* 验证码输入框 */
.form-input-code {
  display: flex;
  align-items: center;
  gap: 20px;
}
.code-num{
  padding: 0 25px;
  background: #ffffff;
  font-size: 14px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #333333;
height: 46px;
line-height: 46px;
}

.form-input-code .el-input {
  flex: 1;
}



/* 提交按钮 */
.form-submit {
  margin-top: 20px;
  cursor: pointer;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 149px;
  height: 46px;
}

/* 英语版本 */
body.lang-en .form-submit {
  background-image: url(../images/faqs/submit_btn_en.png);
}
body.lang-en .form-submit:hover {
  background-image: url(../images/faqs/submit_btn_en_hover.png);
}

/* 法语版本 */
body.lang-fr .form-submit {
  background-image: url(../images/faqs/submit_btn_fr.png);
}
body.lang-fr .form-submit:hover {
  background-image: url(../images/faqs/submit_btn_fr_hover.png);
}

/* 简体中文版本 */
body.lang-zh-CN .form-submit {
  background-image: url(../images/faqs/submit_btn_zh_CN.png);
}
body.lang-zh-CN .form-submit:hover {
  background-image: url(../images/faqs/submit_btn_zh_CN_hover.png);
}

/* 繁体中文版本（使用简体中文图片） */
body.lang-zh-TW .form-submit {
  background-image: url(../images/faqs/submit_btn_zh_CN.png);
}
body.lang-zh-TW .form-submit:hover {
  background-image: url(../images/faqs/submit_btn_zh_CN_hover.png);
}

/* ========== 移动端适配 ========== */

@media (max-width: 1199px) {
  /* 内容容器 */
  .app-content-wrap {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* 内容容器：改为纵向排列 */
  .faqs-content {
    flex-direction: column;
  }

  /* 左侧问题列表 */
  .faqs-left {
    width: 100%;
  }

  /* 右侧下载和联系卡片 */
  .faqs-right {
    width: 100%;
    margin-left: 0;
    margin-top: 32px;
  }

  /* 问题项 */
  .faq-item {
    margin-bottom: 24px;
  }

  /* 提问 */
  .faq-question {
    font-size: 18px;
    line-height: 24px;
  }

  /* 回答 */
  .faq-answer {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 20px;
  }

  /* 下载卡片 */
  .download-card {
    padding: 24px;
  }

  /* 下载按钮 */
  .download-btn {
    height: 40px;
  }

  /* 下载图标 */
  .download-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }

  /* 下载文本 */
  .download-text {
    font-size: 14px;
    line-height: 20px;
  }

  /* 下载信息 */
  .download-info {
    margin-top: 16px;
  }

  /* 下载信息文本 */
  .download-info-text {
    font-size: 14px;
    line-height: 20px;
    margin-right: 8px;
  }

  /* 下载信息图标 */
  .download-info-icon {
    width: 18px;
    height: 18px;
  }

  /* 描述 */
  .download-desc {
    font-size: 14px;
    line-height: 20px;
  }

  /* 联系卡片包装 */
  .contact-card-wrap {
    margin-top: 24px;
    padding: 24px;
  }

  /* 联系标题图片 */
  .contact-title-img {
    margin-bottom: 16px;
  }

  /* 联系标题文本 */
  .contact-title-text {
    font-size: 18px;
    line-height: 22px;
  }

  /* 联系方式 */
  .contact-info {
    margin-top: 16px;
    padding: 24px 12px;
  }

  /* 联系信息项 */
  .contact-info-item {
    margin-bottom: 16px;
  }

  /* 地址图标 */
  .address-icon {
    width: 40px;
    height: 65px;
    margin-right: 12px;
  }

  /* 电话图标 */
  .phone-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }

  /* 联系信息文本 */
  .contact-info-text {
    font-size: 12px;
    line-height: 18px;
  }

  /* 描述 */
  .contact-desc {
    font-size: 14px;
    line-height: 20px;
  }

  /* 表单卡片 */
  .contact-form-card {
    margin-top: 16px;
    padding: 16px;
  }

  /* 表单项 */
  .form-item {
    margin-bottom: 12px;
  }

  /* 表单标签 */
  .form-label {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 6px;
  }

  /* 验证码数字 */
  .code-num {
    width: 116px;
    padding: 0 16px;
    font-size: 12px;
    height: 46px;
    line-height: 46px;
  }

  /* 表单输入框 */
  .form-input-code {
    gap: 12px;
  }

  /* 提交按钮 */
  .form-submit {
    margin-top: 16px;
    width: 120px;
    height: 40px;
    background-size: contain;
  }
}
