live-reply.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .chat-container {
  2. padding-top: 520rpx;
  3. padding-bottom: 100rpx;
  4. }
  5. .chat {
  6. margin: 11rpx 30rpx;
  7. display: flex;
  8. flex-direction: row;
  9. }
  10. .chat-card {
  11. border-radius: 20rpx;
  12. background: #F3F5F9;
  13. display: flex;
  14. flex-direction: row;
  15. padding: 3rpx 20rpx 3rpx 15rpx;
  16. font-size: 26rpx;
  17. color: #999999;
  18. }
  19. .chat-name {
  20. color: #0078FF;
  21. flex-shrink: 0;
  22. }
  23. .chat-msg {
  24. flex-shrink: 1;
  25. word-break: break-all;
  26. }
  27. .reply {
  28. width: 100%;
  29. background: #fff;
  30. box-shadow: 0 -5rpx 10rpx 0 rgba(153, 153, 153, 0.1);
  31. padding: 0rpx 30rpx;
  32. box-sizing: border-box;
  33. display: flex;
  34. position: fixed;
  35. bottom: 0;
  36. left: 0;
  37. }
  38. .space {
  39. flex: 1;
  40. }
  41. .left {
  42. height: 100%;
  43. display: flex;
  44. flex-direction: column;
  45. align-items: center;
  46. font-size: 25rpx;
  47. justify-content: center;
  48. color: #333333;
  49. }
  50. .loading {
  51. display: flex;
  52. flex-direction: column;
  53. justify-content: center;
  54. align-items: center;
  55. height: 100%;
  56. }
  57. .loginBtn {
  58. width: 481rpx !important;
  59. height: 83rpx !important;
  60. position: relative;
  61. z-index: 5;
  62. }