wx-web/pages/chatOnline/index.wxss

111 lines
2.2 KiB
Plaintext

.content.data-v-725f8307 {
width: 100%;
height: 100vh;
position: relative;
}
.content .background_image.data-v-725f8307 {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
z-index: -9;
width: 100%;
height: 100vh;
filter: blur(4px);
background-size: cover;
}
.scroll_wrapper.data-v-725f8307 {
height: calc(100vh - 80px);
}
.chat_list.data-v-725f8307 {
overflow: hidden;
padding-bottom: 80px;
width: 100%;
padding: 0 10px;
box-sizing: border-box;
}
.chat_item .chat_time.data-v-725f8307 {
margin: 16px 0;
text-align: center;
font-size: 14px;
color: rgba(83, 88, 110, 1);
}
.last_chat_item.data-v-725f8307 {
width: 100%;
margin-top: 20px;
}
.chat_content.data-v-725f8307 {
display: flex;
align-items: flex-start;
}
.left .chat_content.data-v-725f8307 {
flex-direction: row;
}
.right .chat_content.data-v-725f8307 {
flex-direction: row-reverse;
}
.avatar.data-v-725f8307 {
flex-shrink: 0;
display: block;
width: 46px;
height: 46px;
border-radius: 50%;
}
.left .avatar.data-v-725f8307 {
margin-right: 12px;
}
.right .avatar.data-v-725f8307 {
margin-left: 12px;
}
.chat_content .message.data-v-725f8307 {
max-width: calc(100% - 130px);
padding: 8px 12px;
box-sizing: border-box;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
font-size: 16px;
color: rgba(63, 72, 112, 1);
background: rgba(204, 230, 255, 1);
}
.right .chat_content .message.data-v-725f8307 {
background: rgba(242, 52, 255, 1);
color: #ffffff;
}
.bottom_bar.data-v-725f8307 {
padding: 0 12px;
box-sizing: border-box;
width: 100%;
height: 80px;
background: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
}
.icon_wrapper.data-v-725f8307 {
flex-shrink: 0;
width: 48px;
height: 48px;
background: rgb(245, 245, 247);
border-radius: 10px;
text-align: center;
}
.icon_wrapper .iconfont.data-v-725f8307 {
font-size: 26px;
line-height: 48px !important;
text-align: center;
}
.bottom_bar input.data-v-725f8307 {
flex-grow: 1;
margin: 0 10px;
padding: 0 10px;
box-sizing: border-box;
height: 48px;
border-radius: 10px;
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
font-size: 14px;
color: rgba(35, 42, 53, 1);
text-align: left;
}