message.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. }
  90. .subscribe{
  91. position: fixed;
  92. padding: 24rpx 30rpx 80rpx;
  93. bottom: 180rpx;
  94. left: 0;
  95. background: #fff;
  96. z-index: 9;
  97. border-top: 1px solid rgba(245, 245, 245, 1);
  98. display: flex;
  99. justify-content: space-between;
  100. width: 100%;
  101. height: 34rpx;
  102. }
  103. .subscribe .notice{
  104. width: 34rpx;
  105. height: 34rpx;
  106. position: absolute;
  107. left: 10px;
  108. top: 35rpx;
  109. }
  110. .subscribe .noticeMsg{
  111. padding-left:60rpx;
  112. color: red;
  113. }