* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    position: relative;
    min-width: 320px;
    max-height: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #fff;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', serif;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
}
body {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: auto;
    font-size: 1.25rem !important;
    font-family: 'Kanit', sans-serif;/* 大标题英文 */
    /* font-family: 'Noto Sans TC', sans-serif; *//* 不適用中文 */
    font-family: "Open Sans", Arial, "微軟正黑體", sans-serif !important;/* 中文 */
    box-sizing: border-box;
    color: #8a8a8a;
}

.color_all{
    color: #555; /*深文字 */ 
    color: #4c4b4b; /*淺文字 */ 
    color: #cce2ff; /*footer文字 */
    color: #0098da; 
    color: #1a75bb; 
    color: #1667a5; 
}

/* ------- chrome srollbar ------- */

/*上下左右按钮*/
::-webkit-scrollbar-button {
    /*纵方向按钮的高度，宽度由scrollbar定义*/
    height: 5px;
    /*横方向按钮的高度，高度由scrollbar定义*/
    width: 5px;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
    height: 10px;
    width: 10px;
}
/* 滚动槽 */
::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); */
    border-radius: 10px;
}
/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #176aaa;
    min-height:10px;
    /* -webkit-box-shadow: inset 0 0 6px #1667a5; */
}

::-webkit-scrollbar-thumb:hover {
    background: #01b3ff;
}

::-webkit-scrollbar-thumb:window-inactive {
    max-height:10px;
    background: #aaaaaa;
    -webkit-box-shadow: inset 0 0 6px rgb(175, 175, 175);
}

/* ----------------------------------样式 */
.ff-china {
    font-family: 'Noto Sans TC', sans-serif;/* 中文 */
    
}

.ff-EN {
    font-family: 'Kanit', sans-serif;/* 大标题英文 */
}

.p_14px{
    font-size: 14px;/*最小14px */
}

.p_16px{
    font-size: 16px;/*最小16px */
}

.p_18px{
    font-size: 18px;/* 一般18px */
}

.p_24px{
    font-size: 24px;/* 一般18px */
}

.p_30px{
    font-size: 30px;/* 大标题30px */
}

.p_40px{
    font-size: 40px;/* 大标题30px */
}

.p_60px{
    font-size: 60px;/* 大标题60px */
}

li {
    list-style: none;
    text-decoration: none;
}

a {
    text-decoration: none !important;
}

/* p{
    margin: 0 !important;
} */

.flex {
    display: flex;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
    
}

.fixed{
    position: fixed;
}

.sticky{
    position: sticky;
    position: -webkit-sticky; 
}

.none{
    display: none;
}

.hideme{
    opacity: 0;
}

.ff-w{
    font-weight:bold;
}
