208 lines
3.8 KiB
Plaintext
208 lines
3.8 KiB
Plaintext
.TUI-message-input-container {
|
|
background-color: #fff;
|
|
width: 100vw;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.TUI-message-input {
|
|
display: flex;
|
|
padding-bottom: 16rpx;
|
|
background-color: #fff;
|
|
width: 95vw;
|
|
overflow: scroll;
|
|
margin: 0 auto;
|
|
}
|
|
.TUI-commom-function {
|
|
background-color: blueviolet;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
width: 95vw;
|
|
height: 106rpx;
|
|
background-color: #FFF;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
}
|
|
.TUI-commom-function-item {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-size: 28rpx;
|
|
color: #3CC7C0;
|
|
height: 48rpx;
|
|
margin-left: 16rpx;
|
|
border-radius: 10rpx;
|
|
background-color: #fff;
|
|
border: 1px solid #3CC7C0;
|
|
padding: 0 20rpx;
|
|
}
|
|
.TUI-commom-function-item:first-child{
|
|
border: 1px solid #999;
|
|
color: #999;
|
|
}
|
|
.TUI-message-input-functions {
|
|
flex: 2;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.TUI-message-input-main {
|
|
min-height: 78rpx;
|
|
background-color: #F1F1F1;
|
|
flex: 9;
|
|
margin: 0 10rpx;
|
|
padding: 0 5rpx;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.TUI-message-input-main-focus {
|
|
min-height: 78rpx;
|
|
background-color: #F1F1F1;
|
|
flex: 9;
|
|
margin: 0 10rpx;
|
|
padding: 0 5rpx;
|
|
border-radius: 10rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.TUI-message-input-area {
|
|
width: 100%;
|
|
max-height: 100px;
|
|
/* 最多显示10行 */
|
|
line-height: 30rpx;
|
|
overflow: scroll;
|
|
padding: 20rpx 20rpx;
|
|
}
|
|
.TUI-icon {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
margin: 0 16rpx;
|
|
}
|
|
.TUI-Extensions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
width: 100vw;
|
|
height: 100px;
|
|
margin-left: 14rpx;
|
|
margin-right: 14rpx;
|
|
}
|
|
|
|
.TUI-Extension-slot {
|
|
width: 128rpx;
|
|
height: 170rpx;
|
|
margin-left: 26rpx;
|
|
margin-right: 26rpx;
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.TUI-Extension-icon {
|
|
width: 128rpx;
|
|
height: 128rpx;
|
|
border-radius: 25%;
|
|
}
|
|
|
|
.TUI-sendMessage-btn {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 90%;
|
|
text-align: center;
|
|
justify-content: center;
|
|
border-radius: 10rpx;
|
|
color: #fff;
|
|
max-height: 200rpx;
|
|
padding: 20rpx 0;
|
|
height: 50rpx;
|
|
}
|
|
.TUI-sendMessage-btn-input{
|
|
background-color: #3CC7C0;
|
|
}
|
|
|
|
.TUI-Emoji-area {
|
|
width: 100vw;
|
|
height: 450rpx;
|
|
}
|
|
|
|
.TUI-Extension-slot-name {
|
|
line-height: 34rpx;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.record-modal {
|
|
height: 300rpx;
|
|
width: 60vw;
|
|
background-color: #000;
|
|
opacity: 0.8;
|
|
position: fixed;
|
|
top: 670rpx;
|
|
z-index: 9999;
|
|
left: 20vw;
|
|
border-radius: 24rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.record-modal .wrapper {
|
|
display: flex;
|
|
height: 200rpx;
|
|
box-sizing: border-box;
|
|
padding: 10vw;
|
|
}
|
|
.record-modal .wrapper .modal-loading {
|
|
opacity: 1;
|
|
width: 40rpx;
|
|
height: 16rpx;
|
|
border-radius: 4rpx;
|
|
background-color: #006fff;
|
|
animation: loading 2s
|
|
cubic-bezier(0.17, 0.37, 0.43, 0.67) infinite;
|
|
}
|
|
.modal-title {
|
|
text-align: center;
|
|
color: #fff;
|
|
}
|
|
@keyframes loading{
|
|
0% {
|
|
transform: translate(0,0)
|
|
}
|
|
50%
|
|
{
|
|
transform :translate(30vw,0);
|
|
background-color: #f5634a;
|
|
width :40px;
|
|
}
|
|
100%
|
|
{transform: translate(0,0);
|
|
}
|
|
}
|
|
.MY-TUI-Extension-slot{
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
.MY-TUI-Extension-icon{
|
|
width: 50%;
|
|
background-color: #F4F4F4;
|
|
padding: 30rpx;
|
|
}
|
|
.MY-TUI-Extension-slot-name{
|
|
background-color: #fff;
|
|
font-size: 30rpx;
|
|
color: #666666;
|
|
}
|
|
.dialog{
|
|
width: 50%;
|
|
text-align: center;
|
|
height: 100rpx;
|
|
line-height: 100rpx;
|
|
}
|
|
.dialog_cancel_btn{
|
|
border-top: 1px solid #E9E9E9;
|
|
border-right: 1px solid #E9E9E9;
|
|
}
|
|
.dialog_confirm_btn{
|
|
border-top: 1px solid #E9E9E9;
|
|
color: #3CC7C0;
|
|
} |