/* Toast 消息样式 */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    max-width: 90%;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    padding: 12px 16px;
}

.toast-icon {
    margin-right: 12px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon.error {
    color: #F44336;
}

.toast-icon.warning {
    color: #FFC107;
}

.toast-icon.info {
    color: #2196F3;
}

#toast-message {
    font-size: 14px;
    line-height: 1.4;
}

.mt10{
    margin: 10px 0 !important;
}

.copyright img {
    width: 20px;
    display: inline-block;
}
table td {
    padding: 6px;
    border: 1px solid #bfbfbf;
}

figure.image {
    width: 100% !important;
}
figure.image img {
    margin: 0 auto;
}