news.wxss 664 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* pages/mine/news/news.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: 135rpx;
  11. padding: 20rpx;
  12. box-sizing: border-box;
  13. margin-bottom: 20rpx;
  14. }
  15. .top view {
  16. float: left;
  17. }
  18. .save {
  19. float: right;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: flex-end;
  23. font-size: 24rpx;
  24. }
  25. .img image {
  26. width: 100rpx;
  27. height: 100rpx;
  28. }
  29. .price {
  30. display: flex;
  31. align-items: flex-start;
  32. flex-direction: column;
  33. width: 50%;
  34. font-size: 28rpx;
  35. margin-left: 10rpx;
  36. }
  37. .price :nth-child(1){
  38. font-weight: 600;
  39. }
  40. .price :nth-child(2){
  41. margin-top: 32rpx;
  42. }