pay.less 934 B

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