pay.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* pages/pay/pay.wxss */
  2. .pay{
  3. .title{
  4. font-weight: 600;
  5. }
  6. .red{
  7. font-weight: 600;
  8. padding: 20rpx;
  9. color: #f03;
  10. }
  11. .user-address{
  12. .user-address-h1{
  13. font-weight: 600;
  14. }
  15. .user-address-h2{
  16. max-width: 85vw;
  17. overflow: hidden;
  18. text-overflow:ellipsis;
  19. white-space: nowrap;
  20. }
  21. }
  22. .pay-list{
  23. margin: 20rpx 0;
  24. .container{
  25. width: 100vw;
  26. padding: 10rpx 16rpx;
  27. background-color: white;
  28. box-sizing: border-box;
  29. .scroll{
  30. width: 100%;
  31. height: 200rpx;
  32. white-space:nowrap;
  33. .img{
  34. height: 90%;
  35. display: inline-block;
  36. padding: 10rpx;
  37. }
  38. }
  39. }
  40. }
  41. .pay-setup {
  42. margin: 20rpx 0;
  43. .pay-flex{
  44. width: 100%;
  45. display: flex;
  46. justify-content: flex-start;
  47. align-items: flex-start;
  48. }
  49. }
  50. .pay-type{
  51. .type{
  52. width: 100%;
  53. display: flex;
  54. justify-content: space-between;
  55. align-items: center;
  56. };
  57. }
  58. .balance{
  59. padding: 10px 16px;background-color: #fff;
  60. .txt{color: #f03;}
  61. }
  62. }