| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- .cell_hover {
- background-color: #E5E5E5;
- }
- // .timeline_left {
- // display: flex;
- // flex-direction: column;
- // width: 300px;
- // }
- .timeline_time {
- font-size: 24px;
- line-height: 36px;
- color: #999999;
- overflow: hidden;
- width: 500px;
- white-space: nowrap;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- -webkit-line-clamp: 1; // 限制为一行
- text-overflow: ellipsis; // 超出部分显示省略号
- }
- .timeline_title {
- font-size: 34px;
- color: #999;
- line-height: 46px;
-
- }
- .timeline_desc {
- font-size: 24px;
- line-height: 34px;
- width: 500px;
- // color: #B2B2B2;
- white-space: nowrap;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- overflow: hidden;
- -webkit-line-clamp: 1; // 限制为一行
- text-overflow: ellipsis; // 超出部分显示省略号
- }
- .timeline_thirdspace {
- height: 12px;
- margin-top: 5px;
- }
- .console_item_img {
- width: 76px;
- height: 76px;
- border-radius: 12px;
- }
- .main_console_footer {
- height: 128px;
- width: 750px;
- background-color: #fff;
- align-items: center;
- justify-content: center;
- display: flex;
- position: relative;
- }
|