html, body {
  margin: 0;
  height: 100%;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  background: #eef2f7;
  font-family: "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
}
#app {
  display: block;
  min-width: 1200px;
  width: 1200px;
  min-height: 680px;
  touch-action: pan-x pan-y;
}
#input-layer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 5000;
  pointer-events: none;
}
#input-layer .canvas-field-input {
  position: fixed;
  pointer-events: auto;
  z-index: 1;
  touch-action: manipulation;
  box-sizing: border-box;
  margin: 0;
  padding: 4px 8px;
  font: 13px "Segoe UI", "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #111827;
  border: 1px solid #c5ced9;
  border-radius: 3px;
  background: #f4f6f9;
  outline: none;
  display: none;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
}
#input-layer .canvas-field-input:focus {
  border-color: #0f6cbd;
  box-shadow: 0 0 0 2px rgba(15, 108, 189, 0.2);
}
/* 交易账号密码：用圆点遮罩代替 type=password，避免浏览器弹出保存密码 */
#input-layer .canvas-field-input.canvas-field-input-masked {
  -webkit-text-security: disc;
  text-security: disc;
}
#input-layer .canvas-date-input {
  cursor: pointer;
  color-scheme: light;
}
#input-layer .canvas-date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
}
#input-layer .canvas-time-input {
  cursor: pointer;
  color-scheme: light;
}
#input-layer .canvas-time-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.9;
}
#input-layer .canvas-modal-close-btn {
  position: fixed;
  z-index: 99999;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
}
