chatroom.wxss 823 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. @charset "UTF-8";
  2. .plv-mp-chatroom-wrap {
  3. height: 100%;
  4. position: relative;
  5. padding-bottom: 100rpx;
  6. box-sizing: border-box;
  7. background: #44434f;
  8. }
  9. .plv-mp-chatroom-scroll-view {
  10. height: 100%;
  11. }
  12. .plv-mp-chatroom-more {
  13. position: absolute;
  14. left: 0;
  15. right: 0;
  16. bottom: 100rpx;
  17. height: 64rpx;
  18. line-height: 64rpx;
  19. color: #fff;
  20. font-size: 26rpx;
  21. background: #6ebbf7;
  22. text-align: center;
  23. }
  24. .plv-mp-chatroom-thumb {
  25. position: absolute;
  26. bottom: 128rpx;
  27. right: 32rpx;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. flex-direction: column;
  32. }
  33. .plv-mp-chatroom-icon__thumb {
  34. width: 92rpx;
  35. height: 92rpx;
  36. margin-bottom: 6rpx;
  37. }
  38. .plv-mp-chatroom-thumb__text {
  39. font-size: 28rpx;
  40. color: #333333;
  41. }
  42. /**
  43. 白天皮肤
  44. */
  45. .plv-mp-skin__white {
  46. background: #f5f9fa;
  47. }