/*message*/
#message_box_outside {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 50%为自身尺寸的一半 */
    z-index: 2000;
}
.message_box_inside {
    margin-top: 10px;
    color: white;
    min-height: 40px;
    min-width: 200px;
    border-radius: 10px;

}

.cc-display {
    justify-content: center;
    align-items: center;
    display: flex;
    display: -webkit-flex;
}

/* messageBox.js 文件 弹窗样式 */
.messagebox-Mask {
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.messagebox-Mask > .messagebox {
    display: inline-block;
    width: 420px;
    padding-bottom: 10px;
    vertical-align: middle;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ebeef5;
    font-size: 18px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    text-align: left;
    overflow: hidden;
    backface-visibility: hidden;
}

.messagebox__header {
    padding: 15px 15px 10px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1;
    color: #303133;
}

.messagebox__content {
    padding-left: 36px;
    padding-right: 12px;
    margin: 0;
    line-height: 24px;
    padding: 10px 15px;
    color: #606266;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.messagebox__content > img {
    margin-right: 10px;
    width: 20px;
}

.messagebox__btns {
    padding: 5px 15px 0;
    text-align: right;
}

.messagebox__btns > button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #dcdfe6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 3px;
}

.messagebox__btns > button:nth-child(2) {
    color: #fff;
    background-color: #409eff;
    border-color: #409eff;
}

/* loading */
.messagebox-loading{
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.messagebox-loading > img{
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}