request-payment.wxss 413 B

1234567891011121314151617181920212223242526
  1. .page-section{
  2. width: auto;
  3. margin: 30rpx;
  4. padding: 64rpx 30rpx;
  5. background-color: #fff;
  6. text-align: center;
  7. font-size: 28rpx;
  8. }
  9. .desc{
  10. color: #B2B2B2;
  11. }
  12. .price{
  13. margin-top: 30rpx;
  14. margin-bottom: 25rpx;
  15. position: relative;
  16. display: inline-block;
  17. font-size: 78rpx;
  18. line-height: 1;
  19. }
  20. .price:before{
  21. content: "¥";
  22. position: absolute;
  23. font-size: 40rpx;
  24. top: 8rpx;
  25. left: -40rpx;
  26. }