/* 修复 iOS Safari 输入框自动放大问题 */
/* iOS Safari 在输入框字体小于 16px 时会自动放大页面 */
/* 解决方法：确保移动端输入框字体至少 16px */

@media screen and (max-width: 768px) {

    /* 所有输入类型 */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="url"],
    input[type="search"],
    input[type="date"],
    input[type="time"],
    select,
    textarea {
        font-size: 16px !important;
    }

    /* Bootstrap 表单控件 */
    .form-control,
    .form-select {
        font-size: 16px !important;
    }

    /* 小尺寸表单控件也要 16px */
    .form-control-sm,
    .form-select-sm {
        font-size: 16px !important;
    }
}