123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* comps/chat/inputbar/suit/main/main.wxss */
- .text-input {
- width: 100%;
- height: 100rpx;
- padding: 0;
- display: block;
- }
- .news {
- box-sizing: border-box;
- width: 100%;
- height: 80rpx;
- font-size: 14px;
- padding: 0 32rpx;
- display: inline-block;
- margin-top: 10rpx;
- line-height: 80rpx;
- position: relative;
- top: 0;
- background-color: #FFFCF5;
- border: solid 1rpx #FFFCF5;
- border-radius: 40rpx;
- }
- .send_btn {
- width: 10%;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 17px;
- color: #000;
- padding: 0;
- display: inline-block;
- /* float: right; */
- margin: 8rpx 16rpx auto auto;
- background-color: #fff;
- }
- .f-row {
- height: 100rpx;
- display: flex;
- align-items: center;
- }
|