main.wxss 768 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* comps/chat/inputbar/suit/main/main.wxss */
  2. .text-input {
  3. width: 100%;
  4. height: 100rpx;
  5. padding: 0;
  6. display: block;
  7. }
  8. .news {
  9. box-sizing: border-box;
  10. width: 100%;
  11. height: 80rpx;
  12. font-size: 14px;
  13. padding: 0 32rpx;
  14. display: inline-block;
  15. margin-top: 10rpx;
  16. line-height: 80rpx;
  17. position: relative;
  18. top: 0;
  19. background-color: #FFFCF5;
  20. border: solid 1rpx #FFFCF5;
  21. border-radius: 40rpx;
  22. }
  23. .send_btn {
  24. width: 10%;
  25. height: 80rpx;
  26. line-height: 80rpx;
  27. font-size: 17px;
  28. color: #000;
  29. padding: 0;
  30. display: inline-block;
  31. /* float: right; */
  32. margin: 8rpx 16rpx auto auto;
  33. background-color: #fff;
  34. }
  35. .f-row {
  36. height: 100rpx;
  37. display: flex;
  38. align-items: center;
  39. }