12345678910111213141516171819202122232425262728293031323334353637383940 |
- .list {
- margin: 24rpx 30rpx;
- }
- .item {
- padding: 40rpx 24rpx 20rpx 24rpx;
- background-color: #fff;
- margin-bottom: 24rpx;
- }
- .flex-around {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .flex-around > image {
- width: 100rpx;
- height: 100rpx;
- }
- .flex {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- line-height: 55rpx;
- }
- .time {
- font-size: 26rpx;
- color: rgba(174, 192, 215, 0.8);
- }
- .tit {
- max-width: 509rpx;
- font-size: 34rpx;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
|