

/* ---------------------------------------------------------------------------------------------------------------------------------
    By cy 此為計算因為審查登入有一樣的規格 botton.css,但因為用過來試算工具會導致原本的按鈕失效套用到 botton.css的btn_Common
        所以特別開一個css來保存
        1. PDF下載 css
        2. 註解 css
        3. 進入計算平台前的提醒圖片和文字的 css
------------------------------------------------------------------------------------------------------------------------------------ */
.btn_Common_download {
    margin-top: 3x;
    margin-bottom: 3px;
    margin-right: 3px;
    padding: 5px 20px;
    border-radius: 10px;
    background-color: #dadad8;
    color: #444;
    border: 0;
    line-height: 2;
    outline: none; /*去掉按鈕點擊後的痕跡*/
    font-size: 25px;
    box-shadow: inset 0px 2px 2px 0 rgba(48,56,64,0.16);
    font-weight: bolder;
    transition-duration: 1s;
}

    .btn_Common_download:hover {
        cursor: pointer;
        background-color: #cfcfcf;
        color: #000;
        transition-property: background-color,color;
        transition-duration: .25s, .25s;
        transition-timing-function: ease-out;
    }

    .btn_Common_download.active {
        background-color: #666;
        color: #eee;
    }

        .btn_Common_download.active:hover {
            background-color: #666;
            color: #fff;
            transition-property: background-color,color;
            transition-duration: .25s, .25s;
            transition-timing-function: ease-out;
            font-weight: bolder;
        }




/* 註解用 */
.note_calculate {
    margin-top: 20px;
    padding: 0px 5px;
    /*border: 1px solid #ccc; */
    /*background-color: #f9f9f9;*/
    font-family: "微軟正黑體", Arial;
    background-color: #dadad8; /* 灰色背景 */
    font-size: 16px; /* 字體縮小 */
    color: #333;
}


.link-blue {
    color: #0000FF; /* 藍色 */
    text-decoration: underline; /* 超連結下劃線 */
}


