﻿/*文字顏色*/
default {
    color: #505050;
}

miku {
    color: #0098a1;
}

gray {
    color: #ccc;
}

gray2 {
    opacity: 0.35;
}

memo {
    color: #0094ff;
}

memo2 {
    color: #0a6bb9;
}

memo3 {
    color: #0a59b9;
}

error {
    color: #e53534;
}

good {
    color: #009149;
}

warning {
    color: #f6a800;
}

working2 {
    color: #ccc;
}

    working i,
    working2 i {
        color: #0094ff;
    }

warning3 {
    color: #ff6a00;
}

warning4 {
    color: #a5027c;
}

success i {
    color: #009149;
}

.tablelist_title {
    /*font-size: 18px;*/
    color: #0098a1;
    /*background-color: #eff8ff;*/
}

hideText {
    visibility: hidden;
}



/*圓型按鈕樣式*/
.circleBtn {
    display: inline-block;
    border-radius: 30px;
    padding: 3px;
}







/*預設表單隱藏*/
.defaultDisplayNone {
    display: none;
}

.defaultDisplayNone2 {
    display: none;
}





/*未填寫欄位提示*/
.table tr .unFilledTh,
.unFilledTh {
    /*color: #f00;*/
    box-shadow: 0 0 0 3px #e53534 inset;
}







/*讀取畫面樣式*/
#loadingCoverDiv {
    position: fixed;
    z-index: 9010;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: linear 0.2s;
}

.lds-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /*bottom: 20px;
    right: 20px;*/
    display: inline-block;
    width: 64px;
    height: 64px;
}

    .lds-spinner div {
        transform-origin: 32px 32px;
        animation: lds-spinner 1.2s linear infinite;
    }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3px;
            left: 29px;
            width: 5px;
            height: 14px;
            border-radius: 20%;
            background: #0094ff;
            /*box-shadow: 0 0 0 1px #fff;*/
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}













/*列表無資料提示框樣式*/
.dpContentTableListNoData {
    color: #ccc;
    padding: 50px 0;
    text-align: center;
    border: 1px solid #d3d3d3;
}



/*註解框*/
.memoBox {
    margin-top: 5px;
    font-size: 14px;
    text-align: left;
    color: #505050;
    display: inline-block;
    padding: 5px 8px 5px 28px;
    border-radius: 3px;
    border: 1px dashed #f6a800;
    background-color: #fff5df;
    position: relative;
}

    .memoBox:before {
        content: '\f071';
        font-family: 'FontAwesome';
        font-weight: normal;
        color: #0094ff;
        /*margin-right: 3px;*/
        position: absolute;
        top: 8px;
        left: 8px;
    }










/*後台列表列*/
.dpContentTableList {
    margin-bottom: 15px;
}

    .dpContentTableList:last-child {
        margin-bottom: 0;
    }

    .dpContentTableList .dpContentTableListTable {
        position: relative;
        top: 0;
        transition: linear 0.1s;
    }

    .dpContentTableList:hover .dpContentTableListTable {
        /*top: -3px;
        box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.5);*/
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
        border-radius: 1px;
    }


    .dpContentTableList tr td {
        word-break: break-all;
    }

.dpContentTableList_hoverDisplay:hover .dpContentTableListTable {
    top: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}







/*週次下拉選單樣式*/
.weekDropList button:nth-child(1) {
    border-right: 0;
}

.weekDropList button:nth-child(2) {
    border-left: 0;
    border-right: 0;
}

.weekDropList button:nth-child(3) {
    border-left: 0;
}







/*浮動操作按鈕*/
#FloatEditBtn {
    user-select: none;
    z-index: 5050;
    text-align: center;
    /*display: none;*/
    position: fixed;
    right: 0;
    top: 40%;
    background: #fff;
    padding: 5px 3px 5px 5px;
    border-radius: 18px 0 0 18px;
    border: 1px solid #d3d3d3;
    border-right: 0;
    box-shadow: 0 6px 10px -5px rgba(0, 0, 0, 0.5);
}

    #FloatEditBtn button {
        display: block;
        padding: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        margin-bottom: 5px;
        outline: none;
    }

        #FloatEditBtn button:last-child {
            margin-bottom: 0;
        }







/*匯入異常訊息顯示功能*/
.errorMsgViewBox {
    cursor: default;
    padding: 3px;
    border-radius: 3px;
}

    .errorMsgViewBox:hover {
        background-color: #fffce7;
    }




/*列表無資料*/
.tablelist_divNoDataBox {
    color: #ccc;
    padding: 50px 0;
    text-align: center;
    border: 1px solid #d3d3d3;
}

.tableHover {
    /*box-shadow: 0 0 0 1px rgba(200, 110, 134, 0);*/
    box-shadow: 0 0 0 1px rgba(246, 168, 0, 0);
    transition: linear 0.1s;
}

@media screen and (min-width: 1025px) {
    /*表格型列表懸停樣式*/
    .tableHover:hover {
        /*box-shadow: 0 0 0 1px rgba(200, 110, 134, 1);*/
        box-shadow: 0 0 0 1px rgba(246, 168, 0, 1);
    }
}




.opacityBtn_50 {
    cursor: pointer;
    opacity: 0.5;
    padding: 8px 2px;
}

    .opacityBtn_50:hover {
        opacity: 1;
    }

    .opacityBtn_50:active {
        opacity: 0.5;
    }



.questionDivBox_item {
    cursor: default;
    padding: 2px 5px;
    background-color: #f5f5f5;
    margin-right: 5px;
    border-radius: 3px;
    display: inline-block;
    border: 1px solid #d3d3d3;
    transition: linear 0.1s;
}

    .questionDivBox_item:hover {
        border: 1px solid #0094ff;
    }








/*公佈欄類型樣式*/
.newsTable_type {
    font-size: 12px;
    color: #fff;
    border-radius: 10px;
    padding: 2px 7px;
    text-align: center;
    display: inline-block;
    position: relative;
    top: -1.5px;
    width: 29px;
}

.newsTable_typeTop {
    background-color: #0072c4;
}

.newsTable_typeNew {
    background-color: #f6a800;
}


/*公告相關樣式*/
.newsViewTitle {
    font-size: 20px;
    /*color: #0072c4;*/
}

.newsViewText {
    border: 1px dotted #ccc;
    padding: 3px;
    margin: 15px 0;
    border-radius: 5px;
}

.newsViewText2 {
    min-height: 200px;
    max-height: 200px;
    overflow: auto;
    padding: 7px 9px;
}

.newsViewTime {
    color: #ccc;
    font-size: 10px;
}
