fast_sleep_console.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .cell_hover {
  2. background-color: #E5E5E5;
  3. }
  4. // .timeline_left {
  5. // display: flex;
  6. // flex-direction: column;
  7. // width: 300px;
  8. // }
  9. .timeline_time {
  10. font-size: 24px;
  11. line-height: 36px;
  12. color: #999999;
  13. overflow: hidden;
  14. width: 500px;
  15. white-space: nowrap;
  16. display: -webkit-box;
  17. -webkit-box-orient: vertical;
  18. overflow: hidden;
  19. -webkit-line-clamp: 1; // 限制为一行
  20. text-overflow: ellipsis; // 超出部分显示省略号
  21. }
  22. .timeline_title {
  23. font-size: 34px;
  24. color: #999;
  25. line-height: 46px;
  26. }
  27. .timeline_desc {
  28. font-size: 24px;
  29. line-height: 34px;
  30. width: 500px;
  31. // color: #B2B2B2;
  32. white-space: nowrap;
  33. display: -webkit-box;
  34. -webkit-box-orient: vertical;
  35. overflow: hidden;
  36. -webkit-line-clamp: 1; // 限制为一行
  37. text-overflow: ellipsis; // 超出部分显示省略号
  38. }
  39. .timeline_thirdspace {
  40. height: 12px;
  41. margin-top: 5px;
  42. }
  43. .console_item_img {
  44. width: 76px;
  45. height: 76px;
  46. border-radius: 12px;
  47. }
  48. .main_console_footer {
  49. height: 128px;
  50. width: 750px;
  51. background-color: #fff;
  52. align-items: center;
  53. justify-content: center;
  54. display: flex;
  55. position: relative;
  56. }