/*彈出視窗外框*/
body .iWinBorder {
    border: 0;
    box-shadow: unset;
    padding: 15px 10px;
    box-sizing: border-box;
    border-radius: 0;
}

/*彈出視窗標頭列*/
body .iWinCaption {
    background-color: transparent;
    height: auto;
}

/*彈出視窗叉叉*/
body .iWinBtnClose {
    cursor: pointer;
    color: #fff;
    background: transparent;
    font-size: 28px;
    font-family: 'Roboto', 'Noto Sans TC', 'Open Sans';
}
body .iWinBtnClose:before {
    content: "×";
    font-size: 36px;
    font-weight: normal;
    display: block;
    color: #333;
}

.iWinBody .iWinContent .meMsg_MsgBlk img { margin-bottom: 5px; }
.iWinBody .iWinContent .meMsg_MsgBlk .meMsg_MsgTitle {
    display: block;
    text-align: center;
}
.iWinBody .iWinContent .meMsg_MsgBlk .meMsg_Content {
    display: block;
    text-align: center;
    margin: 10px 0;
}