/* ================= 支付页（内容区） ================= */
.payment-wrapper {
    max-width: 1100px;
    margin: 24px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* ================= 顶部订单信息 ================= */
.payment-order-success-card {
    padding: 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.payment-success-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,#667eea,#764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-success-text {
    flex: 1;
}

.payment-success-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.payment-success-desc {
    font-size: 14px;
    color: #666;
}

.payment-countdown {
    color: #e4393c;
    font-weight: 500;
}

.payment-order-meta {
    text-align: right;
    font-size: 14px;
    color: #666;
    flex-shrink: 0;
}

.payment-order-meta .price {
    font-size: 20px;
    font-weight: bold;
    color: #e4393c;
}

/* ================= 支付方式 ================= */
.payment-methods {
    padding: 24px;
}

.payment-section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.payment-method-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.payment-method-item {
    flex: 1;
    min-width: 160px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.payment-method-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-method-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.payment-method-icon.alipay { background: #1677ff; }
.payment-method-icon.balance { background: #ff9900; }
.payment-method-icon.proxy   { background: #ff6600; }

.payment-method-name {
    font-size: 15px;
    font-weight: 500;
}

.payment-method-tag {
    font-size: 12px;
    color: #999;
    margin-left: 4px;
}

.payment-method-desc {
    font-size: 12px;
    color: #999;
}

/* ================= 底部按钮 ================= */
.payment-action {
    padding: 24px;
    border-top: 1px solid #eee;
    text-align: right;
}

.btn-payment-primary {
    padding: 14px 40px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: bold;
    background: #e4393c;
    color: #fff;
    cursor: pointer;
}

.btn-payment-primary:hover {
    background: #c9302c;
}

.btn-payment-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}