favorites.wxss 989 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. border-radius: 15rpx;
  24. margin: 15rpx auto;
  25. padding: 25rpx 25rpx;
  26. margin-bottom: 25rpx;
  27. }
  28. .favorites_img {
  29. width: 80px !important;
  30. height: 80px;
  31. }
  32. .favorites_img image {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. .favorites_list {
  37. width: 70%;
  38. padding-left: 20rpx;
  39. }
  40. .icon_del {
  41. color: #606266;
  42. z-index: 9999;
  43. font-weight: bold;
  44. }
  45. .favorites_name {
  46. height: 80rpx;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. display: -webkit-box;
  50. -webkit-box-orient: vertial;
  51. -webkit-line-clamp: 2;
  52. }
  53. .favorites_peice {
  54. margin-top: 25rpx;
  55. color: #db1935;
  56. font-weight: bold;
  57. }