payment-details.wxss 596 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* pages/payment-details/payment-details.wxss */
  2. page {
  3. background: #f5f5f5;
  4. }
  5. .cell {
  6. height: 146rpx;
  7. background: #fff;
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. padding: 0 30rpx;
  12. box-sizing: border-box;
  13. border-bottom: 1rpx solid #eee;
  14. border-top: 1rpx solid #eee;
  15. }
  16. .info {
  17. color: #333;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: flex-start;
  21. }
  22. .title {
  23. font-weight: bold;
  24. font-size: 34rpx;
  25. }
  26. .text {
  27. font-size: 22rpx;
  28. color: #999;
  29. margin-top: 15rpx;
  30. }
  31. .money {
  32. font-size: 42rpx;
  33. }
  34. .ruzhang {
  35. color: #ff4725;
  36. }