.dialog {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.dialog-msg,.dialogload-msg {
    width: 100px;
    max-height: 100px;
    text-align: center;
    background: #0b0f12;
    opacity: 0.8;
    border-radius: 10px;
    color: #cccccc;
    white-space: normal; /* 取消强制不换行 */
    word-wrap: break-word; /* 兼容长单词/数字换行 */
    word-break: break-all;
}
.dialog-msg{
    padding: 30px 10px;
}
.dialogload-msg{
    padding: 10px;
}
.dialog-rotate-img {
    /* 可选：防止旋转后超出容器 */
    width: 60px;
    height: 60px;
    object-fit: cover;
}