/* V8.4.4 手机端视口锁定：阻止页面整体横向漂移，保留正常纵向滚动。 */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    position: relative;
}

img,
video,
canvas,
svg,
iframe {
    max-width: 100%;
}

/* 交互控件避免双击触发浏览器缩放，同时不影响单击和纵向滚动。 */
a,
button,
input,
select,
textarea,
label,
[role="button"] {
    touch-action: manipulation;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}
