fast_sleep_console.scss 1.4 KB

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