/*移除Scroll & 禁止選擇 */
/* flex-shrink-0 防止safari畫面重疊*/
body {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    width: 100%;
    height: 100%;
}

body::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth; /*平滑移動*/
    overflow: -moz-hidden-unscrollable;
}

div {
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

div::-webkit-scrollbar {
    width: 0 !important;
    display: none;
}

.inputBlock {
    min-height: 35px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #CCC;
}