request-payment.wxss 424 B

1234567891011121314151617181920212223242526
  1. .page-section{
  2. width: auto;
  3. margin: 15px;
  4. padding: 62px 15px;
  5. background-color: var(--weui-BG-2);
  6. text-align: center;
  7. font-size: 14px;
  8. }
  9. .desc{
  10. color: var(--weui-FG-1);
  11. }
  12. .price{
  13. margin-top: 15px;
  14. margin-bottom: 13px;
  15. position: relative;
  16. display: inline-block;
  17. font-size: 39px;
  18. line-height: 1;
  19. }
  20. .price:before{
  21. content: "¥";
  22. position: absolute;
  23. font-size: 20px;
  24. top: 4px;
  25. left: -20px;
  26. }