.donate-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.donate-methods .method {
    text-align: center;
    max-width: 280px;
}

.donate-methods .method h4 {
    margin-bottom: 10px;
    color: #555;
}

.donate-methods .qrcode {
    width: 200px;
    height: 200px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.donors-list {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
}

.donor-card {
    min-width: 100px;
    flex: 1 1 120px;
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: #2d2d2d; /* 深灰背景 */
    border: 1px solid #444;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #ccc;
    transition: background 0.3s, transform 0.2s;
}

.donor-card:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.donor-name {
    font-weight: 600;
    color: #eee;
    margin-bottom: 4px;
    font-size: 1em;
}

.donor-amount {
    color: #a0a0a0;
    font-size: 0.95em;
    margin-bottom: 4px;
}

.donor-date {
    color: #777;
    font-size: 0.85em;
}

/* 响应式：小屏下堆叠显示 */
@media (max-width: 600px) {
    .donor-card {
        min-width: 100%;
    }
}
