#wdb-root { font-family: system-ui, sans-serif; }
#wdb-root img { border-radius: 8px; }
/* 强制让选择区永远可见 - 手机电脑通杀 */
.item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  min-height: 56px;           /* 手机好点 */
}

.item input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 24px !important;
  height: 24px !important;
  z-index: 2;
  cursor: pointer;
}

.checkmark {
  width: 22px !important;
  height: 22px !important;
  border: 2px solid #409eff;
  border-radius: 6px;
  background: #fff;
  flex-shrink: 0;             /* 关键：不被压缩 */
  position: relative;
}

.item input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #409eff;
  font-weight: bold;
  font-size: 16px;
}