customerServe.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* pages/customerServe/customerServe.wxss */
  2. page {
  3. background: #F5F5F5;
  4. font-family: PingFang SC;
  5. }
  6. .head {
  7. width: 100%;
  8. height: 55px;
  9. background: #FFFFFF;
  10. display: flex;
  11. align-items: center;
  12. justify-content: flex-end;
  13. }
  14. .head image {
  15. width: 37px;
  16. height: 49px;
  17. margin-right: 14px;
  18. }
  19. .inputRoom {
  20. width: 100%;
  21. height: 79px;
  22. background: #508FF4;
  23. border-top: 1px solid #cdcdcd;
  24. position: fixed;
  25. bottom: 0;
  26. display: flex;
  27. align-items: center;
  28. z-index: 20;
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: space-around;
  32. }
  33. .inputRoom input{
  34. width: 345px;
  35. height: 35px;
  36. background: #FFFFFF;
  37. border-radius: 5px;
  38. font-size: 14px;
  39. padding-left: 10px;
  40. }
  41. .leftMsg {
  42. line-height: 40px;
  43. height: 40px;
  44. background: #FFFFFF;
  45. box-shadow: 0px 1px 3px 0px rgba(153, 153, 153, 0.3);
  46. border-radius: 5px;
  47. font-size: 14px;
  48. color: #333333;
  49. padding: 0 7px;
  50. z-index: 10;
  51. margin-left: -6px;
  52. z-index: 10;
  53. }
  54. .rightMsg {
  55. line-height: 40px;
  56. height: 40px;
  57. background: #D9ECFF;
  58. box-shadow: 0px 1px 3px 0px rgba(153, 153, 153, 0.3);
  59. border-radius: 5px;
  60. font-size: 14px;
  61. color: #333333;
  62. padding: 0 7px;
  63. z-index: 10;
  64. margin-right: -6px;
  65. z-index: 10;
  66. }