favorites.wxss 796 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .container,page {
  2. height: 100%;
  3. }
  4. .container {
  5. background-color: #f8f8f8;
  6. padding: 15rpx 0rpx;
  7. font-size: 28rpx;
  8. }
  9. .favorites {
  10. width: 90%;
  11. background-color: #fff;
  12. border-radius: 15rpx;
  13. padding: 25rpx;
  14. margin: 15rpx auto 25rpx;
  15. }
  16. .favorites_img {
  17. width: 80px!important;
  18. height: 80px;
  19. }
  20. .favorites_img image {
  21. width: 100%;
  22. height: 100%;
  23. }
  24. .favorites_list {
  25. width: 70%;
  26. padding-left: 20rpx;
  27. }
  28. .icon_del {
  29. color: #606266;
  30. z-index: 9999;
  31. font-weight: 700;
  32. }
  33. .favorites_name {
  34. height: 80rpx;
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. display: -webkit-box;
  38. -webkit-box-orient: vertical;
  39. -webkit-line-clamp: 2;
  40. }
  41. .favorites_peice {
  42. margin-top: 25rpx;
  43. color: #db1935;
  44. font-weight: 700;
  45. }