favorites.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. height: 100%;
  13. }
  14. .container {
  15. height: 100%;
  16. background-color: #f8f8f8;
  17. padding: 15rpx 0rpx;
  18. font-size: 28rpx;
  19. }
  20. .favorites {
  21. width: 90%;
  22. background-color: #ffffff;
  23. -webkit-border-radius: 15rpx;
  24. border-radius: 15rpx;
  25. margin: 15rpx auto;
  26. padding: 25rpx 25rpx;
  27. margin-bottom: 25rpx;
  28. }
  29. .favorites_img {
  30. width: 80px !important;
  31. height: 80px;
  32. }
  33. .favorites_img image {
  34. width: 100%;
  35. height: 100%;
  36. }
  37. .favorites_list {
  38. width: 70%;
  39. padding-left: 20rpx;
  40. }
  41. .icon_del {
  42. color: #606266;
  43. z-index: 9999;
  44. font-weight: bold;
  45. }
  46. .favorites_name {
  47. height: 80rpx;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. display: -webkit-box;
  51. -webkit-box-orient: vertical;
  52. -webkit-line-clamp: 2;
  53. }
  54. .favorites_peice {
  55. margin-top: 25rpx;
  56. color: #db1935;
  57. font-weight: bold;
  58. }