pat.wxss 589 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* pages/mine/pat/pat.wxss */
  2. .container {
  3. background: #ececec;
  4. width: 100%;
  5. box-sizing: border-box;
  6. }
  7. .top {
  8. width: 100%;
  9. background: #fff;
  10. height: 130rpx;
  11. padding: 20rpx;
  12. box-sizing: border-box;
  13. margin-bottom: 20rpx;
  14. display: flex;
  15. justify-content: space-between;
  16. }
  17. .save {
  18. float: right;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: flex-end;
  22. font-size: 24rpx;
  23. }
  24. .price {
  25. display: flex;
  26. align-items: flex-start;
  27. flex-direction: column;
  28. width: 50%;
  29. font-size: 28rpx;
  30. margin-left: 10rpx;
  31. }
  32. .price :nth-child(2){
  33. margin-top: 20rpx;
  34. }