#sliderAuthCodeModal {
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 置于顶层 */
    left: 0;
    top: 0;
    width: 100%; /* 宽度覆盖整个屏幕 */
    height: 100%; /* 高度覆盖整个屏幕 */
    overflow: auto; /* 如果需要滚动 */
    background-color: rgb(0,0,0); /* 背景色 */
    background-color: rgba(0,0,0,0.4); /* 黑色背景，带透明度 */
}

/* 模态框内容样式 */
.slider-auth-code-modal-head {
    height:38px;
}
.slider-auth-code-modal-content {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background-color: #fefefe;
    margin: 15% auto; /* 15% 顶部空间，auto 水平居中 */
    padding: 0px 10px 20px 10px;
    border: 1px solid #888;
    width: 300px; /* 最大宽度 */
}
.slider-auth-code-modal-body {
    position: relative;
}

/* 关闭按钮样式 */
.slider-auth-code-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.slider-auth-code-modal .close:hover,
.slider-auth-code-modal .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.slider-auth-code-modal #sliderAuthCodeSlider {
    position: absolute;
    left: 0;
}

.slider-auth-code-modal-footer {
    width: 300px;
    height: 30px;
    background-color: #fff;
    margin-top: 10px;
    position: relative;
    border: 1px solid #ccc;
}

.slider-auth-code-modal-footer p {
    color: #666;
    text-align: center;
    line-height: 30px;
    /* 禁止选择文本 */
    user-select: none;
    padding: 0;
    margin: 0;
}

.slider-auth-code-modal-footer ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-auth-code-modal-footer ul li {
    width: 55px;
    height: 30px;
    background-color: #1890FF;
    cursor: move;
    position: absolute;
    left: 0px;
    top: 0;
    text-align: center;
    line-height: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slider-auth-code-modal-footer ul li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    /* 旋转属性 */
    transform: rotate(45deg);
    /* 垂直对齐 */
    vertical-align: middle;
}

.slider-auth-code-modal-footer div {
    width: 0px;
    height: 30px;
    background-color: rgba(0, 191, 255, .5);
    position: absolute;
    left: 0px;
    top: 0;
}

.slider-auth-code-modal .dots-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 252px;
    width: 301px;
    float: left;
    position: relative;
    top: -250px;
    background-color: rgba(0, 0, 0, 0.6);
    /*display: none;*/
}

.slider-auth-code-modal .dots-loader div {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background-color: #3498db;
    animation: bounce 0.6s infinite alternate;
}

.slider-auth-code-modal .dots-loader div:nth-child(2) {
    animation-delay: 0.2s;
}

.slider-auth-code-modal .dots-loader div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.slider-auth-code-modal .slider-refresh-div{
    height: 20px;
    padding-top: 10px;
}

.slider-auth-code-modal .slider-refresh-div .slider-refresh{
    float: right;
    height: 24px;
    width: 24px;
}