/* @theme-name: 阅读 */
/* @theme-author: 手机用户5ag77qjlnke1etxzkhl7ag */
/* @theme-time: 2026-06-16T14:56:38.090Z */
/* 阅读主题问卷样式：暖米纸张底色+墨绿主色，护眼舒适符合阅读场景 */
:root {
  --ai-base-primary: #2D5A41; /* 墨绿主色，契合书香阅读氛围 */
  --ai-base-text: #333333; /* 深灰护眼文字，避免纯黑刺眼 */
  --ai-base-muted: #666666; /* 次要说明文字浅灰 */
  --ai-base-border: #B7B7A4; /* 暖灰边框，模拟旧纸张边线质感 */
  --ai-base-light-border: #E9E9D8; /* 浅淡分隔边框 */
  --ai-base-error: #C1121F; /* 醒目错误提示色 */
}

/* 全局纸张背景 */
body {
  background-color: #F8F9F0;
  margin: 0;
  padding: 0;
  font-family: "PingFang SC", "Microsoft Yahei", sans-serif;
}

/* 问卷容器调整，宽松间距提升阅读体验 */
#divContent {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 16px 80px;
  box-sizing: border-box;
}

/* 标题样式 */
#toptitle .htitle {
  font-size: 24px;
  font-weight: 600;
  color: #2D5A41;
  padding: 16px 0;
  position: relative;
}
#toptitle .htitle::before, #toptitle .htitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background-color: #E9E9D8;
}
#toptitle .htitle::before {
  left: 10%;
}
#toptitle .htitle::after {
  right: 10%;
}

/* 问卷说明文字 */
#divDesc {
  padding: 12px 16px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 8px;
  margin-bottom: 16px;
}

/* 问题卡片样式，模拟便签质感 */
div.field {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 16px;
  transition: all 0.2s ease;
}
div.field:hover {
  box-shadow: 0 3px 10px rgba(45,90,65,0.08);
}

/* 选项hover效果 */
.ui-radio .label:hover, .ui-checkbox .label:hover {
  background-color: rgba(45,90,65,0.05);
  border-radius: 4px;
}

/* 提交按钮样式 */
#ctlNext.submitbtn {
  max-width: 300px;
  margin: 32px auto;
  border-radius: 24px;
  height: 48px;
  line-height: 48px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(45,90,65,0.2);
}
#ctlNext.submitbtn:hover {
  background-color: #234833 !important;
}

/* 输入框样式适配 */
.ui-input-text {
  border: 1px solid var(--ai-base-light-border);
  border-radius: 6px;
  background-color: #ffffff;
}

/* 底部合规区域保持可见 */
.logofooter {
  background-color: #F8F9F0;
}

/* @wjx-ai-control-fix:start */
.ui-controlgroup .ui-radio.checked .jqchecked:before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 8px !important;
    height: 8px !important;
    margin: -4px 0 0 -4px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
    animation: none !important;
    transform: none !important;
    pointer-events: none !important;
}
.ui-controlgroup .ui-radio.checked .jqchecked:after {
    display: none !important;
    content: none !important;
}
.ui-controlgroup .ui-checkbox.checked .jqchecked:after {
    top: 50% !important;
    left: 50% !important;
    width: 5px !important;
    height: 10px !important;
    margin: -6px 0 0 -3px !important;
    transform: rotate(45deg) scale(1) !important;
    transform-origin: center center !important;
}
/* @wjx-ai-control-fix:end */
