/* @theme-name: prinsnow */
/* @theme-author: 手机用户wvhyvgbnm0g5fubfefekpg */
/* @theme-time: 2026-06-26T00:58:08.187Z */
/* 留学服务问卷主题：冷静温馨陪伴风格，提取品牌logo蓝橙主色调 */
:root {
  --ai-base-primary: #2F91C2; /* 品牌主蓝色：专业冷静 */
  --ai-base-text: #333F48; /* 主文本深灰蓝：柔和不刺眼 */
  --ai-base-muted: #667885; /* 辅助文本灰蓝：协调主色调 */
  --ai-base-border: #B8C9D4; /* 边框蓝灰：柔和过渡 */
  --ai-base-light-border: #E3EDF2; /* 浅边框：低对比度减少视觉压力 */
  --ai-base-error: #F26C6C; /* 错误提示柔和红 */
}

/* 全局背景：极浅冷调蓝白，干净温馨 */
body {
  background-color: #F8FBFF;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* 标题区域 */
#toptitle .htitle {
  color: #256F96;
  font-size: 24px;
  font-weight: 600;
  padding: 24px 20px 12px;
}

/* 问卷描述区域 */
#divDesc.wjintro {
  color: var(--ai-base-muted);
  padding: 0 20px 20px;
  text-align: center;
  line-height: 1.8;
}

/* 问题卡片：圆角柔边+轻微阴影，柔和不生硬 */
div.field, div.formfield {
  background: #ffffff;
  border-radius: 12px;
  margin: 12px 16px;
  box-shadow: 0 2px 8px rgba(47, 145, 194, 0.06);
  border: 1px solid var(--ai-base-light-border);
}

/* 问题标题 */
.field-label {
  font-weight: 500;
  color: var(--ai-base-text);
  margin-bottom: 8px;
}

/* 输入框：圆角+聚焦高亮 */
.ui-input-text {
  border: 1px solid var(--ai-base-light-border);
  border-radius: 8px;
  padding: 4px;
  transition: border-color 0.2s ease;
}
.ui-input-text:focus-within {
  border-color: var(--ai-base-primary);
  box-shadow: 0 0 0 3px rgba(47, 145, 194, 0.1);
}

/* 单选/多选选项 hover 反馈 */
.ui-controlgroup .ui-radio:hover, .ui-controlgroup .ui-checkbox:hover {
  background-color: rgba(47, 145, 194, 0.04);
  border-radius: 8px;
}

/* 提交按钮：圆角+悬浮效果，突出操作感 */
#ctlNext.submitbtn {
  border-radius: 28px;
  margin: 24px 20px 40px;
  width: calc(100% - 40px);
  height: 48px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(47, 145, 194, 0.2);
  transition: all 0.2s ease;
}
#ctlNext.submitbtn:hover {
  background-color: #287FA8 !important;
  box-shadow: 0 6px 16px rgba(47, 145, 194, 0.25);
}

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