| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- page {
- /* background: #1c1b20; */
- }
- .input-box {
- position: fixed;
- bottom: 0;
- left: 0;
- height: 100rpx;
- width: 100%;
- display: flex;
- box-sizing: content-box;
- z-index: 999;
- /* background-color: #ececec; */
- /* padding: 0 5rpx; */
- }
- .chat-listitem {
- display: flex;
- margin-top: 20rpx;
- padding: 10rpx;
- }
- .chat-listitem-text {
- color: #000000;
- background: #FFFFFF;
- margin-top: 10rpx;
- width: -webkit-fit-content;
- width: fit-content;
- padding: 15rpx;
- font-size: 30rpx;
- height: -webkit-max-content;
- height: max-content;
- word-wrap: break-word;
- word-break: break-all;
- border-radius: 10rpx;
- }
- .chat-listitem-image-type4 {
- color: #000000;
- background: #FFFFFF;
- width: -webkit-fit-content;
- width: fit-content;
- font-size: 30rpx;
- height: -webkit-max-content;
- height: max-content;
- word-wrap: break-word;
- word-break: break-all;
- border-top-left-radius: 20rpx;
- border-top-right-radius: 20rpx;
- }
- .chat-listitem-image {
- margin-top: 5rpx;
- width: 75rpx;
- height: 75rpx;
- border-radius: 5rpx;
- }
- .save {
- width: 130rpx;
- text-align: center;
- border-radius: 10rpx;
- height: 70rpx;
- color: #FFF;
- background: #1789FD;
- margin: 5rpx 10rpx 0;
- line-height: 70rpx;
- }
|