body {
    /*底色*/
    background: black;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    touch-action: none;
    /* 測試全域禁止 */
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-callout: none
}

* {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

:root {
    --layer_pageTage: 2;
    --layer_iframe: 4;
    --layer_dialog: 8;
    --layer_tool: 999;
}

#canvasDiv {
    /*放置Canvas*/
    position: absolute;
    margin: 10;
    padding: 0;
    width: 100%;
    height: calc(100vh - 100px);
    /*calc計算用，100px為工具列寬度*/
    transform-origin: 0% 0%;
}

#MainCanvas {
    /*主畫面Canvas*/
    position: absolute;
    /*相對於上層relative*/
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-callout: none
}

#DrawCanvas {
    /*畫筆Canvas*/
    position: absolute;
    width: 100%;
    height: 100%;
}

#RecordCanvas {
    /*讀檔紀錄Canvas*/
    position: absolute;
    width: 100%;
    height: 100%;
}

/*畫筆/選擇工具切換區塊*/
#drawAndArrowBtn {
    display: inline-flex;
    background-color: rgba(168, 168, 168, 0.5);
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    height: 20px;
    position: absolute;
    bottom: 100px;
    cursor: pointer;
}

/*工具列*/
#tools {
    display: inline-flex;
    justify-content: center;
    background-color: #eeeeee;
    position: absolute;
    bottom: 0;
    z-index: 999;
    gap: 15px;
}

.tool-bar {
    width: 1920px;
    height: 100px;
    transform-origin: bottom left;
}

.tool-bar.default-tools {
    padding-left: 70px;
}

.left-tools {
    width: 100px !important;
    height: fit-content;
    flex-direction: column !important;
    top: 0px !important;
}

.left-tools div p {
    display: none !important;
}

.left-tools div img {
    margin-top: 0px !important;
}

.left-tools #cornerZoomTool #cornerZoom {
    position: relative;
    height: 0px;
}

.left-tools div .cover {
    top: 0px;
    width: 48px;
    height: 48px;
}

.right-tools {
    width: 100px;
    height: fit-content;
    flex-direction: column !important;
    top: 0px !important;
    right: 0px !important;
}

.right-tools div p {
    display: none !important;
}

.right-tools div img {
    margin-top: 0px !important;
}

.right-tools #cornerZoomTool #cornerZoom {
    position: relative;
    height: 0px;
}

#tools.left-tools>div,
#tools.right-tools>div {
    margin: 10px 10px;
}

#tools>div {
    display: inline-block;
    margin: 10px 0px;
    float: left;
    width: 81px;
    height: 81px;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-position: center 0%;
}

#tools div:hover {
    cursor: pointer;
}

#tools>div#conrnerZoom-tool {
    position: relative;
    display: inline-block;
    /*不跳行*/
    float: left;
    /*靠左*/
    min-width: 154px;
    width: 154px;
    height: 77px;
    margin-top: 10px;
    /*外框靠上*/
}

#tools>div#JumpPage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    width: 220px;
    height: 77px;
    margin-top: 13px;
}

#tools>div#JumpPage.small {
    min-width: 0;
    width: 77px;
}

.view.close-btn {
    position: absolute;
    width: 2vw;
    height: 2vw;
    right: 0%;
    top: 0%;
    cursor: pointer;
}

#JumpPage #PrevPage {
    position: relative;
}

#JumpPage #NextPage {
    position: relative;
}

#JumpPage #JumpInput {
    position: relative;
    width: 140px;
    height: 77px;
    margin-left: 2px;
    margin-right: 2px;

    display: flex;
    align-items: center;
    justify-content: center;
}

#JumpPage #JumpInput input {
    /*設定文字*/
    font-size: 23px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    /*隱藏四邊的框線及底色*/
    border: hidden;
    background-color: transparent;
    /*設定寬高及位置*/
    position: absolute;
    width: 69%;
    height: 70%;
    right: 12px;
    pointer-events: none;
}

#JumpPage #JumpInput #SelectorBtn {
    position: absolute;
    width: 100%;
    height: 100%;
}

#JumpPage #JumpInput.small input {
    top: -3px;
    right: 3px;
    width: 58px;
    height: 85%;
}

.hiden {
    display: none !important;
}

/*頁面選擇*/
#PageSelectContainer {
    position: fixed;
    background-color: #18324b;
    border-radius: 30px;
    border: 5px solid #18324b;
    text-align: center;
    /*內部物件水平置中對齊*/
    line-height: 50px;
    /*內部物件垂直置中對齊*/
    display: table;
    left: calc(50% - 300px);
    -webkit-transform: scale(1);
    /*整體縮小*/
    transform: scale(1);
    /*整體縮小*/
    width: 600px;
    height: fit-content;
    bottom: 120px;
    /*須根據scale動態調整*/
    transform-origin: bottom center;
}

/* #PageSelectContainer::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -27px;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 22.5px solid transparent;
    border-right: 22.5px solid transparent;
    border-top: 27px solid #18324b;
} */

/*頁面選擇*/
#PageSelector {
    position: relative;
    left: calc(50% - 295px);
    -webkit-transform: scale(1);
    /*整體縮小*/
    transform: scale(1);
    /*整體縮小*/
    /*須根據scale動態調整*/
    transform-origin: bottom center;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #ffffff;
    border-radius: 25px 25px 0 0;
}

.PageSelectorBtn {
    -webkit-user-select: none;
    /*不可複製用*/
    -ms-user-select: none;
    /*不可複製用*/
    user-select: none;
    /*不可複製用*/
    font-size: 20px;
    color: #18324b;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    line-height: 30px;

    background-color: #eeeeee;
    display: inline-block;
    border-radius: 10px;
    width: 93px;
    height: 36x;
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 10px;

    cursor: pointer;
}

/*頁面選擇*/
#PageInputField {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

#PageInputField input {
    position: relative;
    font-size: 24px;
    font-weight: normal;
    font-family: 微軟正黑體;
    text-align: center;
    background-color: #ffffff;

    width: 55%;
    height: 50%;
    border-radius: 10px;
    color: #18324b;
}


#PageInputField .confirmBtn {
    position: relative;
    height: 46px;
    width: 180px;

    background-color: #f3ec78;
    border-style: none;
    border-radius: 30px;
}

#PageInputField .confirmBtn span {
    font-size: 24px;
    color: #18324b;

    line-height: 40px;
}

/*橡皮擦*/
#EaserTool {
    position: fixed;
    background-color: rgb(79, 124, 252);
    border-radius: .8em;
    text-align: center;
    /*內部物件水平置中對齊*/
    width: 400px;
    height: 150px;
    left: calc(50% - 200px);
    bottom: 150px;
}

#EaserToolTitle {
    font-size: 30px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    line-height: 50px;
    position: absolute;
    width: 100%;
    height: 50px;
    right: 0%;
    top: 0%;
}

#EaserView {
    position: absolute;
    line-height: 100px;
    background-color: rgb(255, 255, 255);
    border-radius: .8em;
    margin-left: 10px;
    width: calc(100% - 20px);
    height: 90px;
    top: 50px;
}

#EaserRange {
    -webkit-appearance: none;
    width: calc(100% - 40px);
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

#EaserRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: rgb(38, 72, 226);
    cursor: pointer;
}

#EaserRange:hover {
    opacity: 1;
}

/*畫筆*/
#ToolPanel {
    position: fixed;
    left: 50%;
    top: 45%;
    background-color: #18324b;
    border-radius: 30px;
    padding: 12px;
    width: 1050px;
    height: 698px;
    /*整體縮小*/
    -webkit-transform: scale(1);
    transform-origin: left top;
    z-index: 999;
}

#ToolPanel .bg {
    position: absolute;
    background-color: #f6f6f6;
    border-radius: 0 0 30px 30px;
    /* 12 + 12 */
    width: calc(100% - 24px);
    /* 80 + 12 + 12 */
    height: calc(100% - 104px);
    top: 92px;
}

#CloseToolPanel {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 32px;
    top: 16px;
    cursor: pointer;
}

#ToolPanelTitle {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    font-family: 微軟正黑體;
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -12px;
}

#ColorView {
    position: absolute;
    right: 55px;
    top: 138px;
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-template-rows: repeat(8, 50px);
    gap: 15px;
    justify-content: center;
}

#ColorView div:hover {
    cursor: pointer;
}

.paint-color {
    border: solid 4px #18324b;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.paint-color.selected {
    /* border-radius: 50%; */
    /* border: 4px solid #ffffff; */
}

.paint-color.selected::before {
    content: "";
    display: grid;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 4px solid #2dfbff;
    position: relative;
    left: -8px;
    top: -8px;
}

.color-0 {
    background-color: #ff0000;
}

.color-1 {
    background-color: #bf0000;
}

.color-2 {
    background-color: #ffbf00;
}

.color-3 {
    background-color: #ffff00;
}

.color-4 {
    background-color: #91cf4f;
}

.color-5 {
    background-color: #00af4f;
}

.color-6 {
    background-color: #00afef;
}

.color-7 {
    background-color: #006fbf;
}

.color-8 {
    background-color: #001f5f;
}

.color-9 {
    background-color: #c3874b;
}

.color-10 {
    background-color: #946033;
}

.color-11 {
    background-color: #653200;
}

.color-12 {
    background-color: #000000;
}

.color-13 {
    background-color: #585656;
}

.color-14 {
    background-color: #b1b1b1;
}

.color-15 {
    background-color: #ffffff;
}

#PaintView {
    width: 781px;
    position: absolute;
    left: 55px;
    top: 138px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

#PaintView .subView {
    background-color: #eeeeee;
    border-radius: 30px;
}

#PaintView .subView.line {
    grid-column: 1 / 3;
    height: 150px;
    padding: 25px 38px;
    display: flex;
    justify-content: space-between;
}

#PaintView .subView.shape {
    width: 499px;
    height: 260px;
    padding: 24px 32px 24px 151px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

#PaintView .subView.fill {
    width: 262px;
    height: 260px;
    padding: 24px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: space-between;
    column-gap: 38px;
}

.PaintOption {
    display: inline-block;
    position: relative;
    width: 83px;
    height: 102px;
    cursor: pointer;
}

.PaintOption .colors {
    position: relative;
    width: 100%;
    height: 100%;
}

#StrokeView {
    position: absolute;
    left: 99px;
    bottom: 47px;
    width: 673px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
}

#StrokeTitle {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 微軟正黑體;
    font-size: 28px;
    font-weight: bold;
    font-stretch: normal;
    line-height: 30px;
    color: #18324b;
}

#brushes {
    position: relative;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

#StrokeView .brush-size {
    box-sizing: content-box;
    border-radius: 50%;
    background-color: #18324b;
    cursor: pointer;
    border: #f6f6f6 4px solid;
}

#StrokeView .brush-size.selected {
    background-color: #08bfc3;
    border: #2dfbff 4px solid;
}

.brush-size.size-1 {
    width: 45px;
    height: 45px;
}

.brush-size.size-2 {
    width: 42px;
    height: 42px;
}

.brush-size.size-3 {
    width: 39px;
    height: 39px;
}

.brush-size.size-4 {
    width: 36px;
    height: 36px;
}

.brush-size.size-5 {
    width: 33px;
    height: 33px;
}

.brush-size.size-6 {
    width: 30px;
    height: 30px;
}

.brush-size.size-7 {
    width: 27px;
    height: 27px;
}

.brush-size.size-8 {
    width: 24px;
    height: 24px;
}

#FillView {
    position: absolute;
    left: 55px;
    top: 308px;
    width: 131px;
    height: 212px;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: linear-gradient(#d5d5d5 60%, transparent 40%);
    background-size: 2px 20px;
    background-repeat: repeat-y;
    background-position: right center;
}

#FillView .brush-soild {
    position: relative;
    width: 83px;
    height: 102px;
    cursor: pointer;
}

/*目錄*/
#DirectoryDialog {
    background-color: rgba(0, 0, 0, 0.35);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
}

#DirectoryMenu {
    position: absolute;
    background-color: #18324b;
    border-radius: 30px;
    width: 700px;
    height: 690px;
    left: calc(50% - 350px);
    top: calc(50% - 365px);
    -webkit-transform: scale(1);
    transform: scale(1);
    padding: 12px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
}

#DirectoryMenu .title {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    font-family: 微軟正黑體;
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#DirectoryMenu .bg {
    flex: 1;
    position: relative;
    background-color: #e3e3e3;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    padding: 20px;
}

#DirectoryMenu .closeBtn {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 28px;
    top: 15px;
    cursor: pointer;
}

#DirectoryView {
    height: 100%;
    position: relative;
    background-color: #e3e3e3;
    overflow-x: hidden;
    overflow-y: auto;
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.DirectoryItem {
    width: 94.5%;
    height: fit-content;
    background-color: #f4f4f4;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: left;
    line-height: 50px;
    white-space: nowrap;
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin: 1px auto;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*雲端*/
#downloadMenu {
    position: absolute;
    background-color: #32a6d7;
    border-radius: .8em;
    width: 480px;
    height: 600px;
    left: calc(50% - 240px);
    -webkit-transform: scale(1);
    /*整體縮小*/
    transform: scale(1);
    /*整體縮小*/
    top: calc(50% - 300px);
    /*須根據scale動態調整*/
}

#downloadDialogBG {
    /*背景*/
    position: absolute;
    background-color: rgb(255, 255, 255);
    border-radius: .8em;
    text-align: center;
    /*內部物件水平置中對齊*/
    width: 98%;
    height: 98%;
    left: 1%;
    top: 1%;
}

#downloadDialogView {
    /*主介面*/
    position: absolute;
    background-color: rgb(221, 221, 221);
    float: left;
    top: 5%;
    left: 5%;
    width: 90%;
    height: calc(80%);
    ;
    overflow-x: hidden;
    overflow-y: auto;
    /*剪裁內容，顯示滾動卷軸*/
}

.dialogBtn_active {
    background-color: #45ABAA;
    border-radius: .4em;
    width: 90px;
    height: 40px;
    right: 10%;
    bottom: 5%;
    font-family: 微軟正黑體;
    /*字體*/
    font-size: 18px;
    text-align: center;
    /*水平置中*/
    line-height: 40px;
    /*垂直置中*/
    color: #FFFFFF;
    cursor: pointer;
    border-style: none;
}

.dialogBtn_disactive {
    background-color: gray;
    border-radius: .4em;
    width: 90px;
    height: 40px;
    right: 10%;
    bottom: 5%;
    font-family: 微軟正黑體;
    /*字體*/
    font-size: 18px;
    text-align: center;
    /*水平置中*/
    line-height: 40px;
    /*垂直置中*/
    color: #FFFFFF;
    cursor: pointer;
    border-style: none;
}

#DD_downloadBtn {
    /*下載按鈕*/
    position: absolute;
    background-color: gray;
    border-radius: .4em;
    width: 30%;
    height: 40px;
    left: 10%;
    bottom: 5%;
    font-family: 微軟正黑體;
    /*字體*/
    font-size: 18px;
    text-align: center;
    /*水平置中*/
    line-height: 40px;
    /*垂直置中*/
    color: white;
    cursor: pointer;
}

#DD_cancelBtn {
    /*取消按鈕*/
    position: absolute;
    background-color: #45ABAA;
    border-radius: .4em;
    width: 30%;
    height: 40px;
    right: 10%;
    bottom: 5%;
    font-family: 微軟正黑體;
    /*字體*/
    font-size: 18px;
    text-align: center;
    /*水平置中*/
    line-height: 40px;
    /*垂直置中*/
    color: #FFFFFF;
    cursor: pointer;
}

.DD_item {
    /*項目*/
    width: 94.5%;
    /*寬*/
    height: 50px;
    /*高*/
    background-color: rgb(255, 255, 255);
    /*背景色*/
    font-family: 微軟正黑體;
    /*字體*/
    line-height: 50px;
    /*垂直置中*/
    white-space: nowrap;
    /*絕不換行*/
    font-size: 20px;
    /*文字大小*/
    color: rgb(0, 0, 0);
    margin: 1px auto;
    /*與其他項目隔的距離*/
    border: 2px #ccc solid;
    /*外框線*/
    padding: 10px;
    /*內部內容離外框的距離*/
    cursor: pointer;
    /*鼠標*/
}

/*遮罩*/
#MaskView {
    position: fixed;
    background-color: rgb(255, 255, 255);
    border-radius: 0.8em;
    padding: 1em;
    box-shadow: 0 0 0 0.6em #32a6d7;
    left: calc(50% - 200px);
    top: calc(50% - 45px);
    width: 24vw;
    height: fit-content;
}

.MaskBtn {
    width: 5vw;
    height: 5vw;
    cursor: pointer;
}

/*聚光燈*/
#SpotLightView {
    position: fixed;
    background-color: rgb(255, 255, 255);
    border-radius: 0.8em;
    padding: 1em;
    box-shadow: 0 0 0 0.6em #32a6d7;
    left: calc(50% - 150px);
    top: calc(50% - 45px);
    width: 18vw;
    height: fit-content;
    display: flex;
    flex-direction: row;
}

/*數位黑板*/
#BlackBoard {
    position: fixed;
    background-color: rgb(79, 124, 252);
    border-radius: .8em;
    width: 500px;
    height: 250px;
    left: calc(50% - 200px);
    top: calc(40% - 125px);
    -webkit-transform: scale(1);
    /*整體縮小*/
    transform: scale(1);
    /*整體縮小*/
    cursor: move;
}

#BlackBoardTitle {
    -webkit-user-select: none;
    /*不可複製用*/
    -ms-user-select: none;
    /*不可複製用*/
    user-select: none;
    /*不可複製用*/
    font-size: 30px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    line-height: 50px;
    position: absolute;
    width: 100%;
    height: 50px;
    right: 0%;
    top: 0%;
}

#BlackBoardView {
    position: absolute;
    background-color: rgb(255, 255, 255);
    border-radius: .8em;
    margin-left: 10px;
    width: calc(100% - 20px);
    height: 190px;
    top: 50px;
}

.BlackBoardText {
    -webkit-user-select: none;
    /*不可複製用*/
    -ms-user-select: none;
    /*不可複製用*/
    user-select: none;
    /*不可複製用*/
    position: absolute;
    font-size: 22px;
    color: rgb(0, 0, 0);
    font-family: 微軟正黑體;
    text-align: left;
    line-height: 50px;
    width: 95px;
    height: 50px;
}

#BlackBoardRange {
    position: absolute;
    -webkit-appearance: none;
    /*不使用預設樣式*/
    left: 110px;
    top: 12%;
    width: 300px;
    height: 2px;
    background: #000000;
    outline: none;
    /* 避免點選會有藍線或虛線 */
    opacity: 0.7;
    /*明度*/
    transition: opacity .2s;
    /* 點選放大時候的漸變時間 */
}

#BlackBoardRange::-webkit-slider-thumb {
    -webkit-appearance: none;
    /*不使用預設樣式*/
    width: 25px;
    height: 25px;
    background: rgb(38, 72, 226);
    border-radius: 50%;
    /*將方形變圓形*/
    cursor: pointer;
}

#BlackBoardRange:hover {
    opacity: 1;
}

.BlackBoardBtn {
    position: absolute;
    cursor: pointer;
}

/*設定*/
#Setting {
    position: fixed;
    background-color: #18324b;
    border-radius: 30px;
    width: 700px;
    height: 439px;
    left: calc(50% - 300px);
    top: calc(50vh - 310px);
    -webkit-transform: scale(1);
    transform: scale(1);
    transform-origin: 50% 50%;
}

#SettingTitle {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    font-family: 微軟正黑體;
    position: absolute;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#Setting .btn-close {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 15px;
    right: 29px;
    cursor: pointer;
}

#SettingView {
    position: absolute;
    background-color: #ffffff;
    border-radius: 0 0 30px 30px;
    width: calc(100% - 24px);
    height: 347px;
    top: 80px;
    margin: 0 12px 12px 12px;
    padding: 0 16px;
}

#SettingView .setting-options,
#SettingViewInMenu .setting-options {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

#SettingViewInMenu .setting-options {
    gap: 8px;
}

#SettingView .setting-options>*:nth-child(odd) {
    background-color: #ffffff;
}

#SettingView .setting-options>*:nth-child(even) {
    background-color: #f6f6f6;
}

.SettingOption {
    display: flex;
    height: 52px;
    align-items: center;
    padding-left: 19px;
}

.SettingText {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 25px;
    color: #006dd9;
    font-weight: bold;
    font-family: 微軟正黑體;
    width: 250px;
    height: 52px;
    line-height: 52px;
    margin-right: 12px;
}

.SettingCheckbox {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    display: inline-block;
    background-image: url("../art/tools/checkbox1.png");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    margin-right: 5px;
}

.SettingCheckbox:checked {
    display: inline-block;
    background-image: url("../art/tools/checkbox2.png");
    background-repeat: no-repeat;
    background-size: 100%;
    border: none;
    cursor: auto;
}

.SettingCheckboxText {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 25px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    width: 75px;
    height: 52px;
    line-height: 52px;
}

.SettingCheckboxText.custom-mr {
    margin-right: 19px;
}

/*多邊形*/
#Polygon {
    position: fixed;
    background-color: rgb(0, 89, 178);
    width: 500px;
    height: 300px;
    left: calc(50% - 250px);
    top: calc(40% - 150px);
    cursor: move;
}

#PolygonBG {
    position: absolute;
    background-color: rgb(255, 255, 255);
    border-radius: .8em;
    width: 490px;
    height: 290px;
    left: 5px;
    top: 5px;
}

.PolgonView {
    position: absolute;
    background-color: rgb(255, 255, 255);
    border-radius: .8em;
    width: 480px;
    height: 230px;
    left: 10px;
    top: 60px;
}

.PolygonBtn {
    position: absolute;
    background: linear-gradient(rgb(130, 130, 130), rgb(80, 80, 80));
    border-radius: .4em;
    width: 140px;
    height: 40px;
    top: 12px;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    line-height: 40px;
}

.PolygonBtn:hover {
    background: linear-gradient(rgb(78, 123, 251), rgb(78, 123, 251));
    cursor: pointer;
}

#AngleCanvas {
    position: absolute;
    width: 200px;
    height: 200px;
    right: 55px;
    top: 10px;
}

#TriangleCanvas {
    position: absolute;
    width: 200px;
    height: 200px;
    right: 10px;
    top: 10px;
}

#PolygonCanvas {
    position: absolute;
    width: 200px;
    height: 200px;
    right: 10px;
    top: 10px;
}

.PolgonText {
    -webkit-user-select: none;
    /*不可複製用*/
    -ms-user-select: none;
    /*不可複製用*/
    user-select: none;
    /*不可複製用*/
    position: absolute;
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
}

.PolygonOKBtn {
    position: absolute;
    background-color: rgb(223, 98, 101);
    border-radius: .4em;
    width: 140px;
    height: 40px;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    line-height: 40px;
}

.PolygonOKBtn:hover {
    background-color: rgb(199, 90, 91);
    cursor: pointer;
}

.AngleInput {
    position: absolute;
    top: 60px;
    left: 15px;
    width: 140px;
    height: 40px;
    /*設定文字*/
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    /*隱藏四邊的框線及底色*/
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: hidden;
    background-color: rgb(223, 223, 223);
}

.TriangleInput {
    position: absolute;
    width: 50px;
    height: 24px;
    /*設定文字*/
    font-size: 20px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    /*隱藏四邊的框線及底色*/
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: hidden;
    background-color: rgb(255, 255, 255, 0);
}

/*清除提示框*/
#ClearDialogMask {
    display: none;
    background-color: rgba(0, 0, 0, 0.35);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
    z-index: 999;
}

#ClearDialog {
    position: fixed;
    left: calc(50% - 300px);
    top: calc(50% - 188.5px);
    width: 600px;
    height: 377px;
    background-color: #18324b;
    border-radius: 30px;
    padding: 12px;
}

#ClearDialogTitle {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
    position: relative;
    font-size: 32px;
    color: #ffffff;
    font-weight: bold;
    font-family: 微軟正黑體;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ClearDialogBG {
    width: calc(100% - 24px);
    height: calc(100% - 92px);
    position: absolute;
    top: 80px;
    background-color: #ffffff;
    border-radius: 0 0 30px 30px;
}

#ClearDialogText {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    font-size: 36px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    top: 38%;
    width: 100%;
    height: 60px;
    text-align: center;
}

.ClearDialogBtn {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    bottom: 45px;
    left: calc(72% - 120px);
    background-color: #e3e3e3;
    width: 240px;
    height: 76px;
    text-align: center;
    font-size: 36px;
    color: #18324b;
    border-radius: 50px;
    font-weight: bold;
    font-family: 微軟正黑體;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ClearDialogBtn#confirm {
    background-color: #f3ec78;
    left: calc(28% - 120px);
}

/*選單*/
#menuTools {
    background-image: url("../art/tools/toolBoxBg.png");
    position: fixed;
    width: 880px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left top;
}

.ToolsView {
    position: absolute;
    top: 64px;
    left: 225px;
    width: 600px;
    height: 400px;
    padding: 38px 69px;
    display: flex;
    gap: 20px;
}

.ToolsView>div {
    position: relative;
    display: inline-block;
    width: 81px;
    height: 81px;
    cursor: pointer;
}

.ToolsView>div#conrnerZoom-tool {
    width: fit-content;
    height: 77px;
}

.ToolsView>div#JumpPage {
    width: fit-content;
    height: 77px;
    margin: 0px 10px;
    display: flex;
}

.ToolsView.has-setting-view {
    padding: 0;
}

#SettingViewInMenu {
    width: fit-content;
    height: 100%;
    cursor: default;
    transform: scale(0.93);
    transform-origin: left center;
}

#menuSortBar {
    position: relative;
    top: 14%;
    left: 5%;
    width: 156.5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menuOption {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 22px;
    color: #ffffff;
    font-weight: bold;
    font-family: 微軟正黑體;
    text-align: center;
    line-height: 50px;
    width: 100%;
    height: 50px;
    cursor: pointer;
    border-radius: 50px;
}

.menuOption.active {
    background-color: #f3ec78;
    color: #18324b;
}

/*右鍵選單*/
#rightMenu {
    position: fixed;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    border-width: 1px;
    border-style: solid;
    border-color: #000000;
    box-shadow: 2px 2px 3px #252525;
    /*陰影*/
    width: 100px;
    height: 125px;
    -webkit-transform: scale(1);
    /*整體縮小*/
    transform: scale(1);
    /*整體縮小*/
    transform-origin: top left;
    /*中心點位置*/
    left: 0px;
    top: 0px;
}

.rightMenuOption {
    -webkit-user-select: none;
    /*不可複製用*/
    -ms-user-select: none;
    /*不可複製用*/
    user-select: none;
    /*不可複製用*/
    font-size: 18px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-family: 微軟正黑體;
    text-indent: 25px;
    line-height: 25px;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    width: 100%;
    height: 25px;
    cursor: pointer;
}

.rightMenuOption:first-child:hover {
    /*只適用第一個*/
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    cursor: pointer;
}

.rightMenuOption:last-child:hover {
    /*只適用最後一個*/
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    cursor: pointer;
}

.rightMenuOption:hover {
    background-color: rgb(74, 243, 255);
    cursor: pointer;
}

.rightMenuOption img {
    position: absolute;
    left: 0px;
    width: 25px;
    height: 25px;
}

#AudioPlayer {
    position: absolute;
    background-image: url("../art/soundplayer/soundplayerBar.png");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 160px;
    height: 105px;
    left: calc(50% - 80px);
    bottom: 105px;
}

.AudioPlayerBtn {
    position: absolute;
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
    opacity: 1;
    cursor: pointer;
}

.AudioPlayerBtn:hover {
    opacity: 0.9;
}

#BlackGround {
    background-color: rgba(0, 0, 0);
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0%;
    top: 0%;
}

[draggable="true"] {
    /*
     To prevent user selecting inside the drag source
    */
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#textTip {
    position: absolute;
    background-color: #FFFF9C;
    width: 50%;
    height: 50%;
    left: 25%;
    top: 25%;

    border-radius: .8em;
}

#textTipTitle {
    position: absolute;
    width: calc(98% - 47px);
    height: 47px;
    line-height: 47px;
    left: 1%;
    font-size: 24px;
}

#textView {
    position: absolute;
    width: 98%;
    height: 50px;
    top: 47px;
    left: 1%;
    font-size: 20px;
    font-family: 微軟正黑體, Arial, Helvetica, sans-serif;
    overflow-y: auto;
}

#textTipClsBtn {
    position: absolute;
    width: 37px;
    height: 37px;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.mask {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #30303070;
}

.prompt {
    width: 378px;
    height: 25vh;
    background-color: white;
    border-style: solid;
    border-color: #32a6d7;
    border-radius: 10px;
    text-align: center;
    line-height: 20vh;
    font-size: 20px;
}

.prompt button {
    cursor: pointer;
}

.dialog {
    width: 480px;
    height: 600px;
}

.saveListBtn {
    margin: 5px !important;
}

/* .saveList_item p {
    font-size: 10px;
    line-height: 13.5px;
    pointer-events: none;
} */

#textToolVue {
    z-index: 999;
}

.textToolMask {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #30303030;
}

.textTool {
    position: absolute;
    background-color: #fcffa1;
    width: 960px;
    height: 540px;
    left: calc(50% - 480px);
    top: calc(50% - 260px);
    border-radius: 30px;
    border: 5px solid #18324b;
}

.textTool textarea {
    position: absolute;
    width: 96%;
    height: calc(100% - 80px);
    top: 64px;
    left: 2%;
    resize: none;
    font-size: 20px;
    background-color: transparent;
    font-family: 微軟正黑體;
    font-weight: bold;
    padding: 11px 24px;
}


.textTool_title {
    top: 84px !important;
    height: 60px !important;
    font-size: 24px !important;
}

.textTool-textTip {
    height: calc(100% - 174px) !important;
    top: 154px !important;
}

.textTool #fontColor #option {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 1px;
    cursor: pointer;
}

.fontColor-picker {
    background-color: white;
    border: 1px solid gray;
    border-radius: 0.1em;
    z-index: 99;
    width: 40%;
}

#moreColor-btn {
    background: url("../art/text/morecolor.png");
    background-size: contain;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 145px;
    top: 12px;
}

.textTool_btn {
    position: absolute;
    width: 46px;
    top: 19px;
}

.scale_btn {
    width: 50px;
    position: absolute;
    right: -20px;
    bottom: -20px;
    -webkit-user-drag: none;
}

#textTool_Close {
    right: 75px;
}

#textTool_Delete {
    right: 19px;
}

.textTool #nowColor {
    display: inline-block;
    position: absolute;
    left: 125px;
    top: 22px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.textTool .textToolText {
    font-size: 22px;
    margin-right: 10px;
}

.textTool #fontSize {
    position: absolute;
    left: 25px;
    top: 24px;
    font-family: 微軟正黑體;
    font-weight: bold;
}

.textTool #fontColor {
    position: absolute;
    left: 175px;
    top: 26px;
}

/* upload dialog */
#uploadMenu {
    background-color: white;
    border-color: #006DD9;
    border-radius: 10px;
    border-style: solid;
    border-width: 3px;
    width: 98%;
    height: 90%;
    text-align: center;
    font-family: 微軟正黑體;
    max-width: 576px;
    max-height: 290px;
}

.center {
    position: absolute;
    right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

.h-center {
    position: absolute;
    right: 0px;
    left: 0px;
    margin: 0px auto 0px auto;
}

#uploadMenu>p {
    position: relative;
    top: 4vh;
}

#uploadMenu>input {
    height: 24px;
    width: 80%;
    font-size: 16px;
}

#uploadMenu #uploadDialogBtns {
    position: absolute;
    bottom: 2vh;
    left: 0px;
    width: 100%;
}

#uploadDialogBtns button {
    margin-left: 10px;
    margin-right: 10px;
    width: 120px;
    height: 30px;
    border-radius: 5px;
    border-style: none;

    background-color: teal;
    color: white;
}

.tool-disable {
    filter: grayscale(1);
    opacity: 0.8;
    pointer-events: none;
}

.tool-selected {
    background-color: #19334c;
}

#iframeWindow {
    display: none;
    position: absolute;
    background-color: #000000c8;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: var(--layer_iframe);
}

#iframe-background {
    background-color: #000;
}

#iframeContent {
    /* width: 100%;
    height: 100%; */
    max-width: 100%;
    width: 176vh;
    height: 81vh;
    border: none;
}

#iframeWindow .btn-close {
    position: absolute;
    bottom: 110px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

#iframeWindow .btn-close.left {
    left: 10px;
}

#iframeWindow .btn-close.right {
    right: 10px;
}

.sub-function.active {
    pointer-events: none;
}

/* white board */
.whiteBoard {
    display: none;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-callout: none
}

.whiteBoard.mask {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: repeat(24, 1fr);
}

#whiteBoard {
    border: 3px solid rgb(76, 119, 242);
    border-radius: 10px;
    background-color: white;

    position: relative;
    grid-column-start: 2;
    grid-column-end: 24;
    grid-row-start: 1;
    grid-row-end: 23;
}

#whiteBoardContent {
    height: calc(100% - 54px);
    width: 100%;
}

#whiteBoard canvas {
    position: absolute;
    top: 0px;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-callout: none
}

#whiteBoard .close-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url("../art/whiteboard/btn_close.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

#whiteBoard .close-btn.left {
    top: 0px;
    bottom: 0px;
    margin: auto 0 auto 0;
    transform-origin: left;
    left: 10px;
}

#whiteBoard .close-btn.right {
    top: 0px;
    bottom: 0px;
    margin: auto 0 auto 0;
    transform-origin: right;
    right: 10px;
}

.whiteBoard_rightTool {
    width: fit-content;
    height: fit-content;
    right: 10px;
}

#whiteBoard #page-btns {
    position: absolute;
    width: fit-content;
    height: fit-content;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    display: flex;
    justify-content: center;
    transform-origin: center;
}

#whiteBoard .page-btn {
    width: 50px;
    height: 50px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

#whiteBoard .page-btn img {
    width: 50px;
    height: 50px;
}

#whiteBoard .page-btn span {
    position: relative;
    display: block;
    width: 50px;
    height: fit-content;
    top: -45px;
    left: 0px;
    text-align: center;
    font-family: 微軟正黑體;
    font-size: 24px;
    font-weight: bold;
}

#whiteBoard #func-bar {
    position: absolute;
    width: 100%;
    height: 60px;
    bottom: 0px;

    background-color: #252525;
}

#whiteBoard #background-selector {
    position: absolute;
    height: fit-content;
    bottom: 0px;
    top: 0px;
    right: 0px;
    margin-top: auto;
    margin-right: 8%;
    margin-bottom: auto;
    transform-origin: right;
}

#background-selector #bg-selector {
    width: 160px;
    height: 46px;
    font-size: 20px;
}

#cover {
    width: 100%;
    height: 100%;
    color: #000;
}

/*----- corner buttons -----*/
.LeftTop.corner-btn-small {
    left: 8px;
    top: 10px;
}

.RightTop.corner-btn-small {
    left: 42px;
    top: 10px;
}

.LeftBottom.corner-btn-small {
    left: 8px;
    top: 35px;
}

.RightBottom.corner-btn-small {
    left: 42px;
    top: 35px;
}

.LeftTop.corner-btn {
    left: 9%;
    top: 13%;
}

.RightTop.corner-btn {
    left: 56%;
    top: 13%;
}

.LeftBottom.corner-btn {
    left: 9%;
    top: 45%;
}

.RightBottom.corner-btn {
    left: 56%;
    top: 45%;
}

.corner-btn-small {
    position: absolute;
    width: 30px;
    height: 22px;
}

.corner-btn {
    position: absolute;
    width: 62px;
    height: 22px;
}

#book-tags {
    position: absolute;
    width: 34px;
    top: 0px;
    right: 0px;
    z-index: 100;
}

#book-tags img {
    width: 34px;
    cursor: pointer;
}

#book-tags #book {
    content: url("../art/pageTag/tab_book_normal.png");
}

#book-tags #book:hover {
    content: url("../art/pageTag/tab_book_hover.png");
}

#book-tags #homework {
    content: url("../art/pageTag/tab_homework_normal.png");
}

#book-tags #homework:hover {
    content: url("../art/pageTag/tab_homework_hover.png");
}

/* 存檔介面 */
#saveList {
    display: none;
}

#saveListDialog {
    background-color: white;
    border-color: #32a6d7;
    border-radius: 25px;
    border-style: solid;
    border-width: 5px;
    width: 900px;
    height: 600px;
    text-align: center;
    font-family: 微軟正黑體;
}

#saveListView {
    position: absolute;
    top: 130px;
    left: 5%;
    width: 90%;
    height: 64%;
    overflow-y: auto;
    overflow-x: hidden;
}

#saveListDialog #saveListBtns {
    position: absolute;
    bottom: 2vh;
    left: 0px;
    width: 100%;
    height: 40px;
    display: flex;
    margin: auto 0 10px 0;
    justify-content: center;
}

#saveListBtns button {
    margin-left: 10px;
    margin-right: 10px;
    width: 120px;
    /*height: 30px;*/
    border-radius: 5px;
    border-style: none;

    background-color: teal;
    color: white;
    cursor: pointer;
}

#saveListBtns .btn-yellow {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #f4b800;
    color: white;
    width: 130px;
}

#saveListBtns .btn-blue {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #32a6d7;
    color: white;
    width: 130px;
}

.saveList_item {
    display: flex;
    justify-content: space-between;
    width: 85%;
    height: 50px;
    background-color: rgb(255, 255, 255);
    font-family: 微軟正黑體;
    line-height: 35px;
    white-space: nowrap;
    font-size: 20px;
    color: rgb(0, 0, 0);
    margin: 1px auto;
    border: 0px #ccc solid;
    padding: 2px;
    justify-content: center;
}

.saveList_item p {
    font-size: 18px;
    pointer-events: none;
    margin-top: 0;
}

.saveList_item .recname {
    width: 150px;
    text-align: left;
    font-weight: bold;
}

.saveList_item .recdate {
    width: 300px;
    text-align: center;
}

.saveList_item button {
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px;
    border-style: none;
    line-height: 35px;
    height: 35px;
    cursor: pointer;
}

.saveList_item .btn-blue {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #32a6d7;
    color: white;
    width: 100px;
}

.saveList_item .btn-red {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #e9455a;
    color: white;
    width: 100px;
}

#saveListDialog .title {
    font-size: 30px;
    font-weight: bold;
    height: 20px;
    margin-top: 20px;
    line-height: 40px;
}

#saveListDialog .message {
    font-size: 22px;
    height: 38px;
    width: 85%;
    line-height: 40px;
    margin: 30px auto 0px auto;
    top: 0px;
    text-align: center;
    vertical-align: middle;
    color: white;
    background-color: #32a6d7;
    border-color: #32a6d7;
    border-radius: 8px;
    border-width: 0px;
    padding-top: 6px;
}

#saveListDialog .btn-close {
    position: absolute;
    top: -507px;
    right: 10px;
    cursor: pointer;
}

#dialog-saveRecord {
    display: none;
}

#dialog-saveRecord .prompt {
    width: 100%;
    max-width: 478px;
    height: 40%;
    max-height: 240px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}


#dialog-saveRecord .title {
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    margin: 10px 0 0 0;
}

#dialog-saveRecord .input-name {
    font-size: 16px;
    height: 40px;
    width: 340px;
}

#dialog-saveRecord .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#saveRecord-btns {
    line-height: 40px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0 0 10px 0;
}

#saveRecord-btns button {
    height: 40px;
}

#saveRecord-btns .btn-small {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #32a6d7;
    color: white;
    width: 110px;
}

#saveRecord-btns .btn-big {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #32a6d7;
    color: white;
    width: 190px;
}

#saveRecord-btns .btn-red {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #e9455a;
    color: white;
    width: 130px;
}

/* 確認帳號對話框 */
#dialog-confirmAccount {
    display: none;
}

#dialog-confirmAccount .prompt {
    width: 478px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#dialog-confirmAccount .title {
    font-size: 1.3em;
    line-height: 1.5em;
    /* height: 50px; */
}

#dialog-confirmAccount .message {
    font-size: 1.2em;
    line-height: 1.2em;
    /* height: 40px; */
    width: 100%;
    margin-top: 0px;
    text-align: center;
}

#dialog-confirmAccount .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#confirmAccount-btns {
    /* position: absolute; */
    width: 100%;
    height: 40px;
    top: 0px;
    bottom: 0px;
    /* margin: auto 0 30px 0; */
    display: flex;
    justify-content: center;
    line-height: 40px;
}

#confirmAccount-btns button {
    margin-left: 10px;
    margin-right: 10px;
    width: 120px;
    /*height: 30px;*/
    border-radius: 5px;
    border-style: none;

    background-color: teal;
    color: white;
}

#confirmAccount-btns .btn-blue {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #32a6d7;
    color: white;
    width: 130px;
}

#confirmAccount-btns .btn-yellow {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #f4b800;
    color: white;
    width: 130px;
}

/* 完成存檔對話 */
#dialog-prompt {
    display: none;
}

#dialog-prompt .prompt {
    width: 100%;
    max-width: 478px;
    height: 25%;
    max-height: 240px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

#dialog-prompt .title {
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    margin: 10px 0 0 0;
}

#dialog-prompt .message {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    width: 100%;
    margin: 0px;
    text-align: center;
}

#dialog-prompt .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#prompt-btns {
    line-height: 40px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin: 0 0 10px 0;
}

#prompt-btns button {
    margin-left: 10px;
    margin-right: 10px;
    width: 120px;
    height: 40px;
    border-radius: 5px;
    border-style: none;

    background-color: teal;
    color: white;
}

#prompt-btns .btn-blue {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #32a6d7;
    color: white;
    width: 130px;
}

#prompt-btns .btn-red {
    border-radius: 20px;
    border-style: none;
    font-size: 18px;
    background-color: #e9455a;
    color: white;
    width: 130px;
}

/* 拖曳物件用id */
#image-float {
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 1000;
}

/* 可以拖曳物件用class */
.dragObj {
    user-select: none;
}

/* 放置拖曳物件用class */
.dropObj {
    position: absolute;
    /*不可複製用*/
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#copyRight {
    background-image: url("../art/copyRight.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #000000;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}