chat-edit.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. @charset "UTF-8";
  2. .plv-mp-chat-edit-wrap {
  3. position: absolute;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. background: #44434f;
  8. }
  9. .plv-mp-chat-edit-input {
  10. height: 100rpx;
  11. box-sizing: border-box;
  12. display: flex;
  13. padding: 0 20rpx;
  14. }
  15. .plv-mp-chat-edit-input-left {
  16. height: 100%;
  17. display: flex;
  18. align-items: center;
  19. }
  20. .plv-mp-chat-edit-ipt {
  21. flex: 1;
  22. font-size: 26rpx;
  23. border-radius: 8rpx;
  24. border: none;
  25. background: #212121;
  26. color: #fff;
  27. padding-left: 10rpx;
  28. height: 60rpx;
  29. margin: 20rpx 0;
  30. text-align: left;
  31. }
  32. .plv-mp-chat-edit-input-right {
  33. height: 100%;
  34. display: flex;
  35. align-items: center;
  36. margin-left: 10rpx;
  37. }
  38. .plv-mp-send-btn {
  39. color: #fff;
  40. font-size: 28rpx;
  41. line-height: 40rpx;
  42. }
  43. .plv-mp-chat-edit-input__icon {
  44. width: 40rpx;
  45. height: 40rpx;
  46. margin-right: 20rpx;
  47. }
  48. .plv-mp-chat-edit-input__add {
  49. margin-right: 0;
  50. }
  51. .plv-mp-emotion-list {
  52. height: 200rpx;
  53. padding: 20rpx 40rpx;
  54. display: flex;
  55. flex-wrap: wrap;
  56. overflow-y: scroll;
  57. -webkit-overflow-scrolling: touch;
  58. box-sizing: border-box;
  59. }
  60. .plv-mp-emotion-item {
  61. width: 12%;
  62. text-align: center;
  63. font-size: 0;
  64. overflow: hidden;
  65. }
  66. .plv-mp-emotion-item__icon {
  67. display: inline-block;
  68. margin: -10rpx 0 0 -10rpx;
  69. width: 48px;
  70. height: 48px;
  71. transform: scale(0.64);
  72. background: url(//livestatic.polyv.net/assets/images/em/default.png) no-repeat;
  73. }
  74. .plv-mp-chat-edit-plus {
  75. height: 200rpx;
  76. padding: 20rpx 40rpx;
  77. overflow-y: scroll;
  78. -webkit-overflow-scrolling: touch;
  79. box-sizing: border-box;
  80. }
  81. .plv-mp-chat-edit-plus-item {
  82. width: 25%;
  83. display: inline-flex;
  84. flex-direction: column;
  85. justify-content: center;
  86. align-items: center;
  87. margin-bottom: 20rpx;
  88. }
  89. .plv-mp-chat-edit-host-icon {
  90. width: 90rpx;
  91. height: 90rpx;
  92. margin-bottom: 20rpx;
  93. }
  94. .plv-mp-chat-edit-host-title {
  95. color: #fff;
  96. font-size: 24rpx;
  97. }
  98. /**
  99. 白天皮肤
  100. */
  101. .plv-mp-skin__white {
  102. background: #fff;
  103. }
  104. .plv-mp-skin__white .plv-mp-chat-edit-ipt {
  105. background: #fafafa;
  106. color: #000;
  107. }
  108. .plv-mp-skin__white .plv-mp-send-btn, .plv-mp-skin__white .plv-mp-chat-edit-host-title {
  109. color: #757575;
  110. }