/* @theme-name: 简约 */
/* @theme-author: 手机用户mwxybppiia740kphrimqbzia */
/* @theme-time: 2026-06-21T12:15:06.997Z */
/* 泉州刺桐+海上丝绸之路主题 潮流简约风格 */
:root {
  --ai-base-primary: #E63946; /* 主色：刺桐花红 */
  --ai-base-secondary: #457B9D; /* 辅助色：海丝蓝 */
  --ai-base-text: #2D3142; /* 主文字色 */
  --ai-base-muted: #4F5D75; /* 次要文字色 */
  --ai-base-border: #BFC0C0; /* 边框色 */
  --ai-base-light-bg: #FFFAF0; /* 页面背景：暖米色适配海丝复古感 */
}

#pageDiv {
  max-width: 750px;
  margin: 0 auto;
  padding: 20px 16px;
  background-color: var(--ai-base-light-bg);
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft Yahei", sans-serif;
  color: var(--ai-base-text);
  box-sizing: border-box;
}

/* 顶部标题区 */
#toptitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--ai-base-primary);
  text-align: center;
  padding: 20px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.1), rgba(69, 123, 157, 0.1));
}

/* 问卷描述 */
#divDesc {
  font-size: 15px;
  color: var(--ai-base-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}

/* 问题容器 */
.field {
  margin-bottom: 28px;
}

/* 问题标题 */
.field-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ai-base-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

/* 单选/多选选项 */
.ui-radio, .ui-checkbox {
  background-color: #fff;
  border: 1px solid var(--ai-base-border);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ui-radio:hover, .ui-checkbox:hover {
  border-color: var(--ai-base-primary);
  background-color: rgba(230, 57, 70, 0.05);
}
.ui-radio.checked, .ui-checkbox.checked {
  border-color: var(--ai-base-primary);
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--ai-base-primary);
}

/* 单选选中圆点 */
.ui-radio.checked .jqchecked:before {
  background-color: var(--ai-base-primary);
  border-radius: 50%;
}

/* 多选选中对勾 */
.ui-checkbox.checked .jqchecked:before {
  color: #fff;
  background-color: var(--ai-base-primary);
}

/* 文本题输入框 */
textarea {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid var(--ai-base-border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background-color: #fff;
  transition: border-color 0.2s ease;
}
textarea:focus {
  outline: none;
  border-color: var(--ai-base-primary);
}

/* 提交按钮 */
#ctlNext {
  background-color: var(--ai-base-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  margin-top: 32px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#ctlNext:hover {
  background-color: #D62839 !important;
}

/* 底部合规区域保持可见 */
#reportfooter, .policyLink, .reportto {
  margin-top: 32px;
  color: var(--ai-base-muted);
  text-align: center;
}

/* @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 */
