1234567891011121314151617181920212223242526272829303132333435 |
- .message-view{
- width: 100%;
- min-height: 100%;
- background: #f0eff2;
- padding-top: 19rpx;
- }
- .message-box{
- width: 100%;
- margin-bottom: 19rpx;
- }
- .message-time{
- color: #fff;
- font-size: 24rpx;
- background: #cccbce;
- width: 310rpx;
- height: 36rpx;
- line-height: 36rpx;
- margin: 0 auto;
- text-align: center;
- border-radius: 18rpx;
-
- }
- .message-text{
- color: #464646;
- font-weight: 800;
- font-size: 24rpx;
- width: 704rpx;
- min-height: 80rpx;
- margin: 20rpx auto;
- background: #fff;
- border-radius: 20rpx;
- padding: 20rpx;
- box-sizing: border-box;
- }
|