﻿body {
    background-color: #f9fbff;
}

.TitleFrame{
    background-color:#FFF;
    border-bottom:1px solid #d7e0ef;
    padding-top:10px;
    padding-bottom:10px;
    z-index: 9999;
}

    .TitleFrame .Title {
        width: 768px;
        margin:auto;
        text-align: left;
    }

    .TitleFrame .Back {
        position: absolute;
        display:none;
    }

.ContentFrame {
    margin: auto;
    width: 768px;
}

    .ContentFrame .Content {
        margin-inline:auto;
        width: 706px;
        text-align: left;

        margin-top: 23.5px;
        background-color: #FFF;
        border: 1px solid #d7e0ef;
        padding: 24px 30px 30px 30px;
    }

.FooterFrame {
    margin:auto;
    width: 768px;
}

    .FooterFrame .Footer {
        background-color: #FFF;
        border: 1px solid #d7e0ef;
        border-top:0px;
        padding: 15px 30px;
    }

        .FooterFrame .Footer .word{
            margin-top:16px;
        }

        .FooterFrame .Footer .btn {
            background-color: #d7e0ef;
            width: 100%;
            height: 60px;
            text-align: center;
            color: #fff;
            vertical-align: middle;
            border: 0px;
            font-weight:bold;
        }

        .FooterFrame .Footer .btn_true {
            background-color: #daa360;
            cursor: pointer;
        }


    .FooterFrame .FooterWord {
        width: 100%;
        text-align: center;
        padding-top: 19.5px;
        padding-bottom: 24px;
    }


/* 警告視窗 */
.AlertFrame {
    z-index: 51;
    position: fixed;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

    .AlertFrame .AlertBK {
        z-index: 50;
        position: fixed;
        margin: auto;
        background: rgba(0,0,0,0.65);
        width: 100%;
        height: 100vh;
    }


    .AlertFrame .AlertContent {
        z-index: 51;
        margin: 0 auto;
        top: 50%;
        right: 0;
        left: 0;
        bottom: 0;
        position: relative;
        width: 315px;
        transform: translateY(-50%);
    }

        .AlertFrame .AlertContent .alert_data {
            padding: 24px;
            background-color: #FFF;
        }

            .AlertFrame .AlertContent .alert_data .alert_title span{
               padding-left:12px;
               
            }

            .AlertFrame .AlertContent .alert_data .alert_content {
                margin-top: 12px;
            }

            .AlertFrame .AlertContent .alert_data .alert_title img{
                vertical-align: bottom;
            }

        .AlertFrame .AlertContent .alert_btn {
            border-top: 1px solid #D7E0EF;
            background-color: #FFF;
            padding: 16px 24px 15px 24px;
            text-align: center;
            font-family: PingFangTC;
            font-size: 21px;
            text-align: center;
            cursor:pointer;
        }

        .AlertFrame .AlertContent .alert_confirm {
            border-top: 1px solid #D7E0EF;
            background-color: #FFF;
            font-family: PingFangTC;
            font-size: 21px;
        }

            .AlertFrame .AlertContent .alert_confirm .confirm {
                padding: 16px 24px 15px 24px;
                text-align: center;
                width:109px;
                float:left;
                cursor:pointer;
                color:#3F5372;
            }

            .AlertFrame .AlertContent .alert_confirm .confirm:nth-child(1) {
                border-right:1px solid #D7E0EF;
                
            }

            .AlertFrame .AlertContent .alert_confirm .confirm:hover {
                color:#c97b1d;
            }


/* 讀取視窗 */
.LoadingFrame {
    z-index: 52;
    position: fixed;
    margin: auto;
    background: rgba(0,0,0,0.65);
    width: 100%;
    height: 100vh;
}

    .LoadingFrame .LoadingContent {
        margin: auto;
        top: 50%;
        right: 0;
        left: 0;
        bottom: 0;
        position:relative;
        width: 163px;
        transform: translateY(-50%);
        text-align: center;
    }

        .LoadingFrame .LoadingContent .loading_data {
            padding: 33px;
            background-color: #FFF;
        }

        .loadingIcon {height:0px;border:0px; border-collapse: collapse;margin: 0 auto;margin-bottom:11px; }

        .loadingIcon td { width: 13px; height: 13px; max-height: 13px; font-size: 0px; }
        .loadingIcon tr:nth-child(1) td:nth-child(1) { background-color:#a9b6cb; }
        .loadingIcon tr:nth-child(1) td:nth-child(2) { background-color: #c43826; }
        .loadingIcon tr:nth-child(2) td:nth-child(2) { background-color: #daa360; }
        .loadingIcon tr:nth-child(2) td:nth-child(1) { background-color: #172439; }

/* Loading Animation */
.cls_Loading_AnimItems {
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: step-end;
}

    .cls_Loading_AnimItems.Item1 { background: #c0c0c0; animation-name: AnimItems_1 }
    .cls_Loading_AnimItems.Item2 { background: #c43826; animation-name: AnimItems_2 }
    .cls_Loading_AnimItems.Item3 { background: #daa360; animation-name: AnimItems_3 }
    .cls_Loading_AnimItems.Item4 { background: #172439; animation-name: AnimItems_4 }

@keyframes AnimItems_1 {
    0% { background: #c0c0c0 }
    25% { background: #172439 }
    50% { background: #daa360 }
    75% { background: #c43826 }
    100% { background: #c0c0c0 }
}

@keyframes AnimItems_2 {
    0% { background: #c43826 }
    25% { background: #c0c0c0 } 
    50% { background: #172439 }
    75% { background: #daa360 } 
    100% { background: #c43826 }
}

@keyframes AnimItems_3 {
    0% { background: #daa360 } 
    25% { background: #c43826 } 
    50% { background: #c0c0c0 }
    75% { background: #172439 } 
    100% { background: #daa360 }
}

@keyframes AnimItems_4 {
    0% { background: #172439 }
    25% { background: #daa360 }
    50% { background: #c43826 } 
    75% { background: #c0c0c0 }
    100% { background: #172439 }
}


/* 時間軸 */
/*時間軸 X*/
.TimeLine_Frame {

}

.TimeLine_X {
    margin:auto;
    width:500px;
}

    .TimeLine_X .TimeLine {
        width: 100%;
        margin-top: 12px;
        border-collapse: collapse;
    }

        .TimeLine_X .TimeLine td {
            text-align: center;
        }

        .TimeLine_X .TimeLine .line-x {
            height: 1px;
            width: 150px;
            border-top: 1px solid #d7e0ef;
            margin-left: 0px;
            margin-top: 8px;
            position: absolute;
        }

.TimeLineStepFrame {
    display: none;
}

/*返回按鈕*/
.Back img{
    cursor: pointer;
}

@media screen and (max-width: 769px) {
    body{
    }

    .TitleFrame {
        padding: 16px 0px;
    }

    .TitleFrame .Title {
        width: 100%;
    }

    .TitleFrame .Back {
        display: inherit;
        padding: 0px 16px;
    }

    .ContentFrame {
        width:100%;
    }

    .ContentFrame .Content {
        margin-top: 0px;
        width: calc(100% - 60px);
        margin-left: 0px;
        transform: none;
        border:0px;
        border-top:1px solid #D7E0EF;
    }

    .FooterFrame {
        width: 100%;
        position: fixed;
        z-index: 49;
        bottom: 0;
        background-color: #FFF;
    }

    .FooterFrame .Footer {
        padding: 16px;
        border-top: 1px solid #D7E0EF;
    }
    .FooterFrame .FooterWord {
        background-color: #F9FBFF;
           
    }

    .TimeLine_X{
        width:265px;
    }

    .TimeLine_X .TimeLine .line-x {
        width: 72px;
    }
}

@media screen and (max-width: 420px) {
    .TimeLineStepFrame {
        display: inherit;
    }

    .TimeLineStep {
        width: 100%;
        position: absolute;
        border-collapse: collapse;
        border: 0px;
        margin: 0px;
        padding: 0px;
        margin-top: 17px;
    }

        .TimeLineStep td {
            height: 2px;
            font-size:0px;
            background-color: #eef2f8;
        }

        .TimeLineStep .td-true {
            background-color: #DAA360;
        }

        .TitleFrame {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
    }

    .TitleFrame .Title {
        margin: 0px;
        transform:none;
        width:100%;
    }

    .TimeLine_Frame {
        
    }

    .FooterFrame {
        height: 146px;
    }

        .FooterFrame .Footer {
            border-right: 0px;
            border-left: 0px;
            border-bottom: 0px;
        }

        .FooterFrame .FooterWord {
            display: none;
        }
}