message.wxss 1.6 KB

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