/* 方小萝测试模块 - 适配网站风格 */
#flintTestContainer {
  max-width: 800px;
  margin: 20px auto;
  padding: 30px;
  border: 2px dotted #9932CC;
  border-radius: 8px;
  font-family: '华文仿宋', 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* 测试标题样式 */
#flintTestContainer h3 {
  color: #9932CC;
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: normal;
}

#flintTestContainer h4 {
  color: #444;
  font-size: 19px;
  margin-bottom: 20px;
  font-weight: normal;
  line-height: 1.7;
}


/* 正确选项样式*/
.option-btn.correct {
  color: #e6f9e6;
  background-color: #2d882d;
}

/* 错误选项样式*/
.option-btn.wrong {
  color: #ffe6f0;
  background-color: #ff3a3a;
}

/* 禁用状态优化 */
.option-btn:disabled {
  cursor: not-allowed;
}

/* 选项容器 */
.options-container {
  margin-top: 20px;
}

/* 测试结果区域
#testResult {
  padding: 30px;
  background-color: #fdfbff;
  border: 2px dotted #9932CC;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(171, 46, 255, 0.15);
}
*/