/* 确认按钮组件 */

.YesButton{
    width: 60vw;
    height: 50px;
    transition: 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0073ff;
    font-size: 20px;
    color: #ebebeb;
    margin-top: 10px;
    border-radius: 5px;
}

.YesButton:hover{
    background-color: #0066ec;
}

.YesButton:active{
    scale: 0.9;
    background-color: #1e7fff;
}

/* 普通按钮组件 */

.NormalButton{
    width: 60vw;
    height: 50px;
    transition: 0.1s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #9c9c9c;
    background-color: #ececec;
    font-size: 20px;
    color: #ebebeb;
    margin-top: 10px;
    border-radius: 5px;
}

.NormalButton:hover{
    background-color: #e2e2e2;
    
}

.NormalButton:active{
    scale: 0.9;
    background-color: #eeeeee;
}

/* 右侧消息通知 */

.RightMsg{
    border:2px solid #e0e0e088;
    border-radius: 10px;
    height: 100px;
    width: 300px;
    position: fixed;
    top: 80px;
    transition: 0.4s ; 
}
.RightMsg_progress{
    border-radius: 5px;
    width: 300px;
    height: 10px;
    position: absolute;
    margin: 0;
    bottom: 0;
    left: 0;
}
.Icon{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 20px;
    left: 10px;
}
.RightMsg_Title{
    left: 70px;
    top: 5px;
    position: absolute;
    font-size: 30px;
}
.RightMsg_SubTitle{
    width: 200px;
    left: 73px;
    top: 45px;
    position: absolute;
    font-size: 15px;
}
.RightMsg .CloseButton{
    position: absolute;
    right: 10px;
    top: 10px;
    transition: 0.2s;
}
.RightMsg .CloseButton:hover{
    scale: 1.3;
}

/* 信息框 */

.MsgBox{
    scale : 1;
    width: 400px;
    max-width: 80vw;
    background-color: #f8f8f8d5;
    box-shadow: 2px 5px 20px 10px rgb(185, 185, 185);
    border: 1px solid #4e4e4e;
    border-radius: 10px;
    opacity: 0;
}

.MsgBox_Back{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #a1a1a15e;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    opacity: 0;
    transition: 0.2s;
    user-select: none;
}

.MsgBox_Title{
    font-size: 30px;
    margin-top: 14px;
    margin-left: 14px;
}

.MsgBox_SubTitle{
    font-size: 18px;
    margin-top: 10px;
    margin-left: 14px;
    margin-bottom: 70px;
}

.MsgBox .YesButton{
    position: absolute;
    width: 80px;
    height: 40px;
    right: 10px;
    bottom: 10px;
}

/* 询问框 */

.AskBox{
    scale : 1;
    width: 400px;
    max-width: 80vw;
    background-color: #f8f8f8d5;
    box-shadow: 2px 5px 20px 10px rgb(185, 185, 185);
    border: 1px solid #4e4e4e;
    border-radius: 10px;
    opacity: 0;
}

.AskBox_Back{
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #a1a1a15e;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    opacity: 0;
    transition: 0.2s;
    user-select: none;
}

.AskBox_Title{
    font-size: 30px;
    margin-top: 14px;
    margin-left: 14px;
}

.AskBox_SubTitle{
    transition: 0.6s;
    font-size: 18px;
    margin-top: 10px;
    margin-left: 14px;
    margin-bottom: 70px;
}

.AskBox .YesButton{
    transition: 0.6s;
    position: absolute;
    width: 80px;
    height: 40px;
    right: 10px;
    bottom: 10px;
}

.AskBox .NormalButton{
    transition: 0.6s;
    color: #4e4e4e;
    position: absolute;
    width: 78px;
    height: 38px;
    right: 100px;
    bottom: 10px;
}

.AskBox .warnMsg{
    max-width: 80vw;
    color: #aaaaaa;
    font-size: 16px;
    position: absolute;
    bottom: 2px;
    opacity: 0;
    scale: 1;
    transition: 0.3s;
    margin-left: 25%;
}