message.wxss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* pages/message/message.wxss */
  2. page{
  3. padding: 30rpx 30rpx 160rpx;
  4. background: #F7F7F7;
  5. }
  6. .list{
  7. position: relative;
  8. margin-bottom: 24rpx;
  9. }
  10. .post{
  11. position: fixed;
  12. padding: 24rpx 30rpx 80rpx;
  13. bottom: 0;
  14. left: 0;
  15. background: #fff;
  16. z-index: 9;
  17. border-top: 1px solid rgba(245, 245, 245, 1);
  18. display: flex;
  19. justify-content: space-between;
  20. width: 100%;
  21. }
  22. .post input{
  23. width: 75%;
  24. height: 64rpx;
  25. border: 1px solid rgba(224, 224, 224, 1);
  26. border-radius: 9rpx;
  27. font-size: 30rpx;
  28. color: #333;
  29. padding: 0 16rpx;
  30. }
  31. .post button:not([size='mini']){
  32. height: 64rpx;
  33. width: 124rpx !important;
  34. background: #D94B24;
  35. border-radius: 8rpx;
  36. line-height: 64rpx;
  37. font-size: 30rpx;
  38. color: #fff;
  39. padding: 0;
  40. font-weight: 400;
  41. margin: 0;
  42. }
  43. .list{
  44. float: left;
  45. width: 100%;
  46. }
  47. .wz image{
  48. width: 64rpx;
  49. height: 64rpx;
  50. border-radius: 100%;
  51. float: left;
  52. }
  53. .wz .content{
  54. background: #fff;
  55. padding: 20rpx;
  56. font-size: 30rpx;
  57. line-height: 48rpx;
  58. margin-left: 20rpx;
  59. border-radius: 8rpx;
  60. }
  61. .wz>view{
  62. max-width: 80%;
  63. float: left;
  64. }
  65. .me image{
  66. width: 64rpx;
  67. height: 64rpx;
  68. border-radius: 100%;
  69. float: right;
  70. }
  71. .me .content{
  72. background: #fff;
  73. padding: 20rpx;
  74. font-size: 30rpx;
  75. line-height: 48rpx;
  76. float: right;
  77. margin-right: 20rpx;
  78. border-radius: 8rpx;
  79. max-width: 80%;
  80. }
  81. .name{
  82. display: block;
  83. font-size: 28rpx;
  84. margin-left: 20rpx;
  85. margin-bottom: 20rpx;
  86. }