/* 标题行 */
.checklist-form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checklist-form-title {
  font-size: 28px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #333333;
line-height: 40px;
}

.checklist-form-printer {
  display: flex;
  align-items: center;
}

.printer-icon {
  width: 20px;
  height: 20px;
  margin-right: 16px;
}

.printer-text {
  cursor: pointer;
  font-size: 18px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #004b72;
line-height: 25px;
}

/* 深蓝色分割线 */
.checklist-header-hr {
border-bottom: 4px solid #004b72;
  margin-top: 23px;
}

/* 文档名称输入框 */
.checklist-form-input {
  margin-top: 24px;
}

.checklist-form-label {
font-size: 18px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #333333;
line-height: 25px;
  margin-bottom: 16px;
}

/* 分割线 */
.checklist-form-hr {
  height: 1px;
  background-color: #e0e0e0;
  margin-top: 23px;
}

/* 题目列表 */
.checklist-question-list {
  margin-top: 39px;
}

/* 题目项 */
.checklist-question-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.checklist-question-list .checklist-question-item:last-child {
  margin-bottom: 0;
}
/* 题干部分 */
.question-stem {
  border: 1px solid #e0e0e0;
}

.question-stem {
  padding: 20px 24px;
  font-size: 28px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #333333;
line-height: 40px;
background: #f5f5f5;
border-bottom: 4px solid #e0e0e0;
}

/* 选项部分 */
.question-options {
  padding: 24px;
}

.option-column {
  height: 100%;
}

/* 选项标题 */
.option-title {
  display: flex;
  min-height: 28px;
}

.option-title-icon {
  position: relative;
  top: 4px;
  width: 4px;
  height: 20px;
  background: #f9bb68;
  flex: none;
  margin-right: 12px;
}

.option-title-text {
  flex: auto;
  font-size: 20px;
  font-family: PingFang SC, PingFang SC-Semibold;
  font-weight: bold;
  text-align: left;
  color: #333333;
  line-height: 28px;
}

/* 选项分割线 */
.option-hr {
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0 16px;
}

/* Element UI Checkbox 样式调整 */
.option-content .el-checkbox {
  display: flex;
  margin-bottom: 16px;
}
.el-checkbox__input{
  position: relative;
  top: 4px;
}

.option-content .el-checkbox:last-child {
  margin-bottom: 0;
}

.option-content .el-checkbox__label {
  font-size: 18px;
  color: #333333;
  line-height: 20px;
  font-weight: normal;
  white-space: normal;
}
.question-target{
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 23px;
  font-size: 24px;
font-family: PingFang SC, PingFang SC-Semibold;
font-weight: bold;
text-align: left;
color: #004b72;
line-height: 33px;
}
.question-target.target2{
  margin-top: 0;
}
.question-target-hr{
  margin-top: 16px;
  margin-left: 24px;
  margin-right: 24px;
  border-bottom: 4px solid #004b72;
}

.checklist-desc{
  margin-top: 16px;
  font-size: 18px;
font-family: PingFang SC, PingFang SC-Regular;
font-weight: Regular;
text-align: left;
color: #666666;
line-height: 25px;
}
.assess-btn{
  margin-top: 40px;
  display: block;
  height: 46px;
  cursor: pointer;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 英语版本 */
body.lang-en .assess-btn {
  width: 170px;
  background-image: url(../images/checklist/assess_btn_en.png);
}
body.lang-en .assess-btn:hover {
  background-image: url(../images/checklist/assess_btn_en_hover.png);
}

/* 法语版本 */
body.lang-fr .assess-btn {
  width: 180px;
  background-image: url(../images/checklist/assess_btn_fr.png);
}
body.lang-fr .assess-btn:hover {
  background-image: url(../images/checklist/assess_btn_fr_hover.png);
}

/* 简体中文版本 */
body.lang-zh-CN .assess-btn {
  width: 120px;
  background-image: url(../images/checklist/assess_btn_zh_CN.png);
}
body.lang-zh-CN .assess-btn:hover {
  background-image: url(../images/checklist/assess_btn_zh_CN_hover.png);
}

/* 繁体中文版本 */
body.lang-zh-TW .assess-btn {
  width: 120px;
  background-image: url(../images/checklist/assess_btn_zh_TW.png);
}
body.lang-zh-TW .assess-btn:hover {
  background-image: url(../images/checklist/assess_btn_zh_TW_hover.png);
}
.assess-btn.is-loading{
  pointer-events: none;
  opacity: 0.7;
}

/* ========== 移动端适配 ========== */

@media (max-width: 1199px) {
  /* 内容容器移动端适配 */
  .app-content-wrap {
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  /* 标题 */
  .checklist-form-title {
    font-size: 18px;
    line-height: 24px;
  }

  /* 打印文本 */
  .printer-text {
    font-size: 14px;
    line-height: 20px;
  }

  /* 打印图标 */
  .printer-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
  }

  /* 深蓝色分割线 */
  .checklist-header-hr {
    margin-top: 16px;
  }

  /* 表单标签 */
  .checklist-form-label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }

  /* 分割线 */
  .checklist-form-hr {
    margin-top: 16px;
  }

  /* 题目列表 */
  .checklist-question-list {
    margin-top: 24px;
  }

  /* 题目项 */
  .checklist-question-item {
    margin-bottom: 16px;
  }

  /* 题干 */
  .question-stem {
    padding: 16px;
    font-size: 16px;
    line-height: 22px;
  }

  /* 选项部分 */
  .question-options {
    padding: 16px;
  }

  /* 选项列 */
  .option-column {
    margin-bottom: 16px;
  }

  /* 移除移动端的 offset 效果 */
  .question-options .el-col {
    margin-left: 0 !important;
  }

  /* 选项标题 */
  .option-title-text {
    font-size: 14px;
    line-height: 20px;
  }

  /* 选项分割线 */
  .option-hr {
    margin: 12px 0;
  }

  /* Checkbox 标签 */
  .option-content .el-checkbox__label {
    font-size: 14px;
    line-height: 18px;
  }

  /* 题目目标 */
  .question-target {
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
  }

  /* 题目目标分割线 */
  .question-target-hr {
    margin-top: 12px;
    margin-left: 16px;
    margin-right: 16px;
  }

  /* 描述文本 */
  .checklist-desc {
    font-size: 14px;
    line-height: 20px;
  }

  /* 评估按钮 */
  .assess-btn {
    margin-top: 24px;
    height: 40px;
    background-size: contain;
  }

  /* 英语版本按钮宽度 */
  body.lang-en .assess-btn {
    width: 140px;
  }

  /* 法语版本按钮宽度 */
  body.lang-fr .assess-btn {
    width: 150px;
  }

  /* 简体中文版本按钮宽度 */
  body.lang-zh-CN .assess-btn {
    width: 100px;
  }

  /* 繁体中文版本按钮宽度 */
  body.lang-zh-TW .assess-btn {
    width: 100px;
  }
}