123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @import "chat-item-head.wxss";
- .chat-item-style{
- width:100%;
- display: flex;
- align-items: center;
- position: relative;
- height: 130rpx;
- padding-left: 40rpx;
- }
- .content {
- flex: 1;
- border-bottom: 2rpx solid #e5e5e5;
- height: 128rpx;
- display: flex;
- align-items: center;
- }
- .chat-item-content-super-style{
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- width: 480rpx;
- }
- .chat-item-name-style{
- color: #111;
- font-size: 30rpx;
- margin-bottom: 14rpx;
- font-weight: bold;
- display: flex;
- align-items: center;
- }
- .organ {
- padding: 0 8rpx;
- height: 32rpx;
- line-height: 32rpx;
- background: #E8F8FE;
- color: #79868F;
- /* border-radius: 16rpx; */
- display: block;
- font-size: 22rpx;
- margin-left: 14rpx;
- font-weight: 400;
- }
- .chat-item-content-style{
- min-height: 20rpx;
- width: 100%;
- color: #A3A4A5;
- font-size: 26rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .chat-item-status-super-style{
- position: absolute;
- right: 40rpx;
- top: 25rpx;
- display:flex;
- flex-direction: column;
- align-items:flex-end;
- }
- .chat-item-time-style{
- color: #999999;
- font-size: 22rpx;
- margin-bottom: 20rpx;
- text-align: right;
- }
|