123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- .image-message{
- width: 300rpx;
- }
- .msg-img{
- width: 300rpx;
- border-radius: 2px 10px 10px 10px;
- }
- .video-message{
- width: 160px;
- height: 120px;
- background-color: rgba(0, 0, 0, 0.2);
- border-radius: 2px 10px 10px 10px;
- display: flex;
- justify-content: center;
- align-items: center;
- position: relative;
- overflow: hidden;
- }
- .poster{
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- right: 0;
- z-index: 1;
- }
- .video-icon {
- position: relative;
- z-index: 10;
- display: block;
- width: 32px;
- height: 32px;
- }
- .message-body-span {
- display: flex;
- justify-content: center;
- align-items: center;
- /*justify-content: flex-start;*/
- flex-wrap: wrap;
- outline: none;
- font-size: 28rpx;
- color: #ffffff;
- position: relative;
- max-width: 60vw;
- }
- .message-body-span-text {
- width: 100%;
- display: inline;
- word-wrap: break-word;
- word-break: break-all;
- color: #ffffff;
- }
- .custom-content-text {
- font-family: PingFangSC-Regular;
- height: 25px;
- line-height: 25px;
- font-size: 28rpx;
- letter-spacing: 0;
- }
- .system-message{
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-radius: 16rpx 4rpx 16rpx 16rpx;
- width:100vw;
- }
- .err-title{
- color: #ffffff;
- font-size: 28rpx;
- padding-top: 30rpx;
- text-align: center;
- padding: 30rpx 50rpx 0rpx 50rpx;
- }
- .err-line{
- width: 70%;
- padding: 20rpx 24rpx;
- margin: 0 auto;
- text-align: center;
- }
- .err-text{
- font-size: 20rpx;
- color: #ffffff;
- text-align: center;
- }
|