.active-dialog {
    display: none;
    font-family: 微軟正黑體;
    text-align: center;
    font-weight: bolder;
    z-index: 1000;
}

.active-dialog .dialog {
    width: 387px;
    height: 300px;
    background-color: #18324b;
    border-radius: 30px;
    padding: 12px;
}

.active-dialog .title {
    position: relative;
    color: #ffffff;
    font-size: 30px;
    height: 60px;
    line-height: 60px;
}

.active-dialog .background {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 0 0 25px 25px;
    width: 100%;
    height: calc(100% - 60px);
}

.active-dialog .buttons {
    display: flex;
    justify-content: space-evenly;
}

.active-dialog .buttons div {
    color: #18324b;
    width: 120px;
    height: 38px;
    font-size: 24px;
    line-height: 36px;
    cursor: pointer;
    border-radius: 50px;
}

.active-dialog .buttons div.confirm {
    background-color: #f3ec78;
}

.active-dialog .buttons div.cancel {
    background-color: #e3e3e3;
}

.active-dialog .buttons div:hover {
    /* background-color: #004b86; */
}

.active-dialog .content-background {
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #18324b;
    font-size: 32px;
}

/* 輸入框特別設定 */
#input-dialog.active-dialog .dialog {
    max-width: 800px;
    width: 40vw;
}

#input-dialog input {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    margin: 0.5rem;
}

#input-dialog .buttons {
    justify-content: center;
}

#input-dialog .buttons div {
    margin: 0 2.5rem 0 2.5rem;
}