/* 提示框遮罩层 */
.alertBelowDiva {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 提示框内容容器 */
.alertContentDiva {
    min-width: 200px;
    max-width: 80%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.3s ease;
    z-index: 9999;
}

/* 提示框文字 */
.alertTextDiva {
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    word-break: break-word;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 600px) {
    .alertContentDiva {
        min-width: 160px;
        max-width: 90%;
    }
    .alertTextDiva {
        padding: 12px 20px;
        font-size: 13px;
    }
}


/* 返回提示框遮罩层 */
.alertBelowDivfanhui {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 提示框内容容器 */
.alertContentDivfanhui {
    min-width: 200px;
    max-width: 80%;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.3s ease;
    z-index: 9999;
}

/* 提示框文字 */
.alertTextDivfanhui {
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    word-break: break-word;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 600px) {
    .alertContentDivfanhui {
        min-width: 160px;
        max-width: 90%;
    }
    .alertTextDivfanhui {
        padding: 12px 20px;
        font-size: 13px;
    }
}