1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .container {
- width: 100vw;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- display: flex;
- flex-direction: column;
- }
- .tui-chatroom-navigatorbar {
- position: relative;
- /*top: 0;*/
- flex-shrink: 0;
- width: 750rpx;
- height: 176rpx;
- background-color: #006EFF;
- }
- .tui-chatroom-navigatorbar-back {
- position: absolute;
- width: 48rpx;
- height: 48rpx;
- left: 24rpx;
- bottom: 20rpx;
- }
- .conversation-title {
- position: absolute;
- width: 350rpx;
- height: 88rpx;
- line-height: 56rpx;
- font-size: 36rpx;
- color: #FFFFFF;
- z-index: 100;
- bottom: 0;
- left: 200rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .message-list {
- flex: 1;
- width: 100vw;
- overflow-y: scroll;
- }
- .message-input {
- flex-shrink: 0;
- width: 100%;
- }
- .calling {
- position: fixed;
- z-index: 199;
- top: 0;
- /* #ifdef H5 */
- top: calc(88rpx + constant(safe-area-inset-top));
- top: calc(88rpx + env(safe-area-inset-top));
- /* #endif */
- bottom: 0;
- right: 0;
- }
- .group-profile {
- top: 176rpx;
- left: 0;
- z-index: 1111
- }
- .container-box {
- position: fixed;
- display: flex;
- justify-content: center;
- align-items: center;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- background-color: rgba(0, 0, 0, 0.5);
- }
- .video-message {
- width: 90vw;
- height: 300px;
- }
|