.payment-container {
    background: white;
    max-width: 400px;
    width: 100%;
}

.payment-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0 20px;
}

.payment-info .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    padding: 0 20px;
}

.payment-info .info-item .info-item:last-child {
    margin-bottom: 0;
}

.payment-info .info-item .info-label {
    font-weight: 500;
}

.payment-info .info-item .info-value {
    font-weight: bold;
    color: #333;
}

.payment-info .info-item .info-value.amount {
    font-size: 24px;
    color: #e74c3c;
}

.payment-container .qr-container {
    text-align: center;
    margin-bottom: 20px;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-container .payment-tips {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}

.payment-container .payment-tips i {
    color: #1aad19;
    margin-right: 5px;
}

.payment-container .timer {
    text-align: center;
    color: #666;
    font-size: 14px;
}

.payment-container .timer .countdown {
    color: #e74c3c;
    font-weight: bold;
}