feat(payment): add complete payment system with multi-provider support
Add a full payment and subscription system supporting EasyPay (Alipay/WeChat), Stripe, and direct Alipay/WeChat Pay providers with multi-instance load balancing.
This commit is contained in:
@@ -141,6 +141,27 @@
|
||||
@apply dark:shadow-amber-500/20;
|
||||
}
|
||||
|
||||
.btn-stripe {
|
||||
@apply bg-[#635bff] text-white shadow-md shadow-[#635bff]/25;
|
||||
@apply hover:bg-[#5851ea] hover:shadow-lg hover:shadow-[#635bff]/30;
|
||||
@apply dark:bg-[#7a73ff] dark:shadow-[#7a73ff]/20;
|
||||
@apply dark:hover:bg-[#635bff];
|
||||
}
|
||||
|
||||
.btn-alipay {
|
||||
@apply bg-[#00AEEF] text-white shadow-md shadow-[#00AEEF]/25;
|
||||
@apply hover:bg-[#009dd6] hover:shadow-lg hover:shadow-[#00AEEF]/30;
|
||||
@apply active:bg-[#008cbe];
|
||||
@apply dark:shadow-[#00AEEF]/20;
|
||||
}
|
||||
|
||||
.btn-wxpay {
|
||||
@apply bg-[#2BB741] text-white shadow-md shadow-[#2BB741]/25;
|
||||
@apply hover:bg-[#24a038] hover:shadow-lg hover:shadow-[#2BB741]/30;
|
||||
@apply active:bg-[#1d8a2f];
|
||||
@apply dark:shadow-[#2BB741]/20;
|
||||
}
|
||||
|
||||
.btn-sm {
|
||||
@apply rounded-lg px-3 py-1.5 text-xs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user