| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .user-msg-box {
- display: flex;
- align-items: center;
- width: 690rpx;
- height: 78rpx;
- margin: 0 auto;
- box-sizing: border-box;
- }
- .user-msg-box .image {
- width: 50rpx;
- height: 50rpx;
- margin-right: 14rpx;
- border-radius: 50%;
- overflow: hidden;
- }
- .user-msg-box .image image {
- width: 100%;
- height: 100%;
- }
- .even-more {
- height: 40rpx;
- color: #00C1D2;
- line-height: 40rpx;
- margin: 0 auto;
- text-align: center;
- padding-bottom: 20rpx;
- }
- .user-msg-box .content {
- flex: 1;
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 100%;
- border-top: 2rpx solid rgba(151, 151, 151, .1);
- }
- .user-msg-box .content>view {
- font-size: 28rpx;
- color: rgba(0, 0, 0, .9);
- }
- .user-msg-box .content .time {
- color: rgba(51, 51, 51, .9);
- }
|