/* toast.css */
.jquery-toast-container {
    position: fixed;
    top: 30%; /* 调整到垂直居中稍微偏上的位置 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jquery-toast {
    background-color: rgba(0, 0, 0, 0.8); /* 半透明黑色背景，更美观 */
    color: white;
    padding: 20px 30px; /* 增加内边距，让提示框更大 */
    border-radius: 10px; /* 更大的圆角 */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* 更强的阴影效果 */
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-bottom: 20px;
    font-size: 18px; /* 增大字体大小 */
    text-align: center; /* 文本居中 */
    min-width: 250px; /* 设置最小宽度 */
}