| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .timeline_item {
- display: flex;
- flex-direction: row;
- align-items: center;
- padding-right: 40px;
- position: relative;
- padding-left: 52px;
- background-color: #fff;
- }
- .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;
- }
|