﻿#msg_i,
#msg_e,
#Msg_ot,
#Msg_info {
    display: none;
}
.block-ui-message {
    border: none;
    padding: 15px;
    background-color: #000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    opacity: 0.5;
    color: #fff;
    position: fixed; /* 建議加上定位，讓其居中 */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    text-align: center;
}

.block-ui-hidden {
    display: none;
}

.block-ui-overlay {
    background-color: rgba(0, 0, 0, 0.2); /* 比較淺的黑灰色 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2; /* 可視性由這裡控制 */
    z-index: 9998;
    cursor: wait;
}

.csp-block-overlay {
    position: fixed;
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2); /* 可調整遮罩色 */
    cursor: wait;
}

.csp-block-iframe {
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent; /* 或依需求加背景色 */
}

.csp-block-transparent {
    background-color: transparent;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* 通知訊息樣式 */
.growlUI {
    position: fixed;
    top: 15%;
    right: 30px;
    width: 450px;
    padding: 15px;
    border-radius: 10px;
    background-color: #000;
    opacity: 0.8;
    color: #fff;
    z-index: 9999;
    text-align: left;
    font-family: '微軟正黑體', sans-serif;
}

    .growlUI.info,
    .growlUI.error {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #000; /* 或你要的色 */
        color: white;
        padding: 20px 30px;
        border-radius: 8px;
        z-index: 9999;
        text-align: center;
        min-width: 200px;
    }

/* 遮罩用樣式 */
.block-message-box {
    padding: 15px;
    border-radius: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
}