﻿/* Prevent font scaling in landscape while allowing user zoom */
html {
    -webkit-text-size-adjust: 100%
}

html, body {
    /* 停用預設的縮放、移動瀏覽(Panning)等觸控功能, 由自訂程式接管 */
    -ms-touch-action: none;
    -webkit-touch-action: none;
    -moz-touch-action: none;
}

/* body Style */
body {
    margin: 0;
    padding: 0;
    font-family: "新細明體";
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: #333;
    position: relative
}
a {
    text-decoration: none;
}
/* ios自行修改按鈕移除 */
input[type=button] {
    -webkit-appearance: none;
}

/* Disable Tap Hightligt Color */
/** {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}*/

:focus {
    outline: none
}

/* Fix FireFox placeholder line-height */
::-moz-placeholder {
    line-height: 130%
}

.hidden {
    display: none;
}

/*span {
    line-height: normal;
    letter-spacing: normal;
}*/

b {
    font-weight: 600;
}

/* Defalut */
.clear {
    clear: both;
    width: 0px;
    height: 0px;
}

.fs-1 {
    font-family: PingFangTC, Roboto;
    font-size: 24px;
}

.fs-2 {
    font-family: PingFangTC, Roboto;
    font-size: 20px;
}

.fs-3 {
    font-family: PingFangTC, Roboto;
    font-size: 18px;
}

.fs-4 {
    font-family: PingFangTC, Roboto;
    font-size: 16px;
}


.fs-5 {
    font-family: PingFangTC, Roboto;
    font-size: 14px;
}

.fs-6 {
    font-family: PingFangTC, Roboto;
    font-size: 12px;
}

.white {
    color: #FFF;
}

.black {
    color: #0D1623;
}

.dary {
    color: #3F5372;
}

.orange {
    color: #C97B1D;
}

/* CheckBox 樣式 */
.cls_CheckBox {
    display: table;
    font-size: 0;
    border-collapse: collapse;
    border: 0;
    width: 100%;
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .cls_CheckBox div {
        display: table-cell;
        font-size: 0;
        vertical-align: middle
    }

    .cls_CheckBox .cls_ICON {
        width: 38px
    }

        .cls_CheckBox .cls_ICON div {
            display: inline-block;
            width: 26px;
            height: 26px;
            padding: 0px;
            background: url(../../Images/Icon/ic-ic-checkbox.svg) no-repeat;
            background-size: 26px 26px
        }

.ON.cls_CheckBox .cls_ICON div {
    background: url(../../Images/Icon/ic-ic-checkbox-select.svg) no-repeat;
    background-size: 26px 26px
}

.cls_CheckBox div span {
    font-size: 16px;
    /*color: #0d1623;*/
    /*letter-spacing: -0.53px;*/
}

/* Body Container Padding LR */
.cls_BC_Padding {padding:0px 30px}



/* ▁▁▁▁▁▁▂▄▆█ RWD Setting █▆▄▂▁▁▁▁▁▁ */
@media screen and (max-width: 434px) {
    .cls_CheckBox .cls_ICON {
        vertical-align: top;
        padding-top: 2px
    }
}

@media screen and (max-width: 320px) {
    /* CheckBox 樣式 */
    .cls_CheckBox .cls_ICON {
        width: 34px
    }
    /* RadioBox 樣式 */
    .cls_RadioBox .cls_ICON {
        width: 34px
    }
}