74 lines
1.1 KiB
Plaintext
74 lines
1.1 KiB
Plaintext
.box {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 30rpx;
|
|
}
|
|
|
|
.box .user {
|
|
width: 100%;
|
|
display: flex;
|
|
color: #fff;
|
|
margin-bottom: 20rpx;
|
|
flex-direction: row-reverse;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.box .user .head {
|
|
width: 90rpx;
|
|
height: 90rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.box .user .text {
|
|
max-width: 470rpx;
|
|
background-color: #3399CC;
|
|
padding: 17rpx 35rpx;
|
|
border-radius: 30rpx 30rpx 0 30rpx;
|
|
margin: 0 17rpx;
|
|
font-size: 30rpx;
|
|
line-height: 35rpx;
|
|
}
|
|
|
|
.box .laixin {
|
|
flex-direction: row;
|
|
}
|
|
|
|
.box .laixin .text {
|
|
border-radius: 30rpx 30rpx 30rpx 0;
|
|
}
|
|
|
|
.bot {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
background-color: #fff;
|
|
height: 98rpx;
|
|
width: 750rpx;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
.bot .input {
|
|
width: 500rpx;
|
|
height: 46rpx;
|
|
background-color: #ECECEC;
|
|
border-radius: 23rpx;
|
|
font-size: 30rpx;
|
|
padding: 0 23rpx;
|
|
}
|
|
|
|
.bot .fasong {
|
|
width: 125rpx;
|
|
height: 54rpx;
|
|
line-height: 54rpx;
|
|
font-size: 30rpx;
|
|
text-align: center;
|
|
background-color: #3399CC;
|
|
color: #fff;
|
|
border-radius: 5rpx;
|
|
}
|
|
|
|
page {
|
|
background-color: #ECECEC;
|
|
}
|