/* 充值页面样式 */
.recharge-page {
    padding: 30px 0;
}

.balance-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
}

.balance-num {
    font-size: 36px;
    font-weight: bold;
    color: #007bff;
    margin: 10px 0;
}

.amount-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-item:hover {
    background-color: #e7f3ff;
    border-color: #007bff;
    color: #007bff;
}

.amount-item.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pay-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.pay-item:hover {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.pay-item.active {
    border-color: #007bff;
    background-color: #e7f3ff;
}

.qrcode-container {
    text-align: center;
    padding: 20px;
}

#pay-qrcode {
    width: 250px;
    height: 250px;
    margin: 20px auto;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

#check-pay-status {
    width: 100%;
    max-width: 200px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    #pay-qrcode {
        width: 200px;
        height: 200px;
    }
    
    .balance-num {
        font-size: 28px;
    }
}