* {
    -webkit-user-select: none; /* Chrome/Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ */
    user-select: none;         /* Standard syntax */
    touch-action: pan-x pan-y; /* 只允许水平和平移手势，禁止缩放 */
    /* 或者 */
    touch-action: manipulation; /* 只允许非缩放操作 */
}