/*
 * 移动端表单唯一字号契约。
 * iOS Safari 会在聚焦有效字号小于 16px 的可编辑控件时自动放大页面。
 * 本规则只提高移动端可编辑控件的字号，不禁用用户主动缩放。
 */
@media (max-width: 900px) {
  input:not([type]),
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="search"],
  input[type="tel"],
  input[type="url"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="week"],
  textarea,
  select {
    font-size: 16px !important;
  }
}
