123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /* pages/chat-detail/chat-detail.wxss */
- page {
- background-color: #F0F4F7;
- }
- .row-left {
- padding: 20rpx;
- width: 85%;
- display: inline-flex;
- align-items: center;
- }
- .row-right {
- float: right;
- padding: 20rpx;
- width: 85%;
- display: inline-flex;
- align-items: center;
- justify-content: flex-end;
- }
- .photo {
- width: 80rpx;
- height: 80rpx;
- border-radius: 40rpx;
- }
- .row-left .content {
- background-color: #fff;
- margin-left: 20rpx;
- border-radius: 10rpx;
- padding: 10rpx;
- max-width: 80%;
- }
- .row-right .content {
- background-color: #fff;
- margin-right: 20rpx;
- border-radius: 10rpx;
- padding: 10rpx;
- max-width: 80%;
- }
- .input-bar {
- width: 96%;
- padding: 15rpx;
- padding-bottom: 25rpx;
- position: absolute;
- bottom: 10rpx;
- height: 80rpx;
- display: inline-flex;
- align-items: center;
- justify-content: space-between;
- background-color: #fff;
- }
- .input {
- height: 60rpx;
- line-height: 80rpx;
- border: solid 1rpx #dddddd;
- width: 77%;
- border-radius: 25rpx;
- padding-left: 10rpx;
- }
- .send-btn {
- color: #fff;
- background-color: #53c8ee;
- border-radius: 30rpx;
- padding: 20rpx 30rpx;
- margin-left: 20rpx;
- }
|