index.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. page {
  2. background: #f6f6f6;
  3. }
  4. .box {
  5. margin: 20rpx;
  6. background: #ffffff;
  7. display: flex;
  8. border-radius: 20rpx;
  9. padding: 20rpx;
  10. .image {
  11. width: 150rpx;
  12. height: 150rpx;
  13. margin-right: 20rpx;
  14. border-radius: 20rpx;
  15. }
  16. .right {
  17. width: 75%;
  18. position: relative;
  19. .title {
  20. overflow: hidden; //一定要写
  21. text-overflow: ellipsis; //超出省略号
  22. display: -webkit-box; //一定要写
  23. -webkit-line-clamp: 1; //控制行数
  24. -webkit-box-orient: vertical; //一定要写
  25. }
  26. .price {
  27. color: red;
  28. margin-top: 20rpx;
  29. }
  30. .time {
  31. color: #c1bcbc;
  32. margin-top: 10rpx;
  33. }
  34. .lecturer {
  35. font-size: 28rpx;
  36. margin-top: 20rpx;
  37. }
  38. .collection {
  39. position: absolute;
  40. right: 20rpx;
  41. top: 40rpx;
  42. padding: 10rpx 20rpx;
  43. background: #309b9e;
  44. color: #ffffff;
  45. border-radius: 20rpx;
  46. }
  47. }
  48. }