message.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* pages/message/message.wxss */
  2. page{
  3. padding: 30rpx 30rpx 160rpx;
  4. background: #F7F7F7;
  5. }
  6. .list{
  7. position: relative;
  8. margin-bottom: 80rpx;
  9. }
  10. .list:last-child{
  11. padding-bottom: 160rpx;
  12. }
  13. .post{
  14. position: fixed;
  15. padding: 24rpx 30rpx 50rpx;
  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. margin-bottom: 24rpx;
  34. }
  35. .post button:not([size='mini']){
  36. height: 64rpx;
  37. width: 124rpx !important;
  38. background: #D94B24;
  39. border-radius: 8rpx;
  40. line-height: 64rpx;
  41. font-size: 30rpx;
  42. color: #fff;
  43. padding: 0;
  44. font-weight: 400;
  45. margin: 0;
  46. }
  47. .list{
  48. float: left;
  49. width: 100%;
  50. }
  51. .wz image{
  52. width: 64rpx;
  53. height: 64rpx;
  54. border-radius: 100%;
  55. float: left;
  56. }
  57. .wz .content{
  58. background: #fff;
  59. padding: 20rpx;
  60. font-size: 30rpx;
  61. line-height: 48rpx;
  62. margin-left: 20rpx;
  63. border-radius: 8rpx;
  64. }
  65. .wz>view{
  66. max-width: 80%;
  67. float: left;
  68. }
  69. .me image{
  70. width: 64rpx;
  71. height: 64rpx;
  72. border-radius: 100%;
  73. float: right;
  74. }
  75. .me .content{
  76. background: #fff;
  77. padding: 20rpx;
  78. font-size: 30rpx;
  79. line-height: 48rpx;
  80. float: right;
  81. margin-right: 20rpx;
  82. border-radius: 8rpx;
  83. max-width: 80%;
  84. }
  85. .name{
  86. display: block;
  87. font-size: 28rpx;
  88. margin-left: 20rpx;
  89. margin-bottom: 20rpx;
  90. }
  91. .subscribe{
  92. position: fixed;
  93. padding: 24rpx 30rpx 80rpx;
  94. bottom: 180rpx;
  95. left: 0;
  96. background: #fff;
  97. z-index: 9;
  98. border-top: 1px solid rgba(245, 245, 245, 1);
  99. display: flex;
  100. justify-content: space-between;
  101. width: 100%;
  102. height: 34rpx;
  103. }
  104. .subscribe .notice{
  105. width: 34rpx;
  106. height: 34rpx;
  107. position: absolute;
  108. left: 10px;
  109. top: 35rpx;
  110. }
  111. .subscribe .noticeMsg{
  112. padding-left:60rpx;
  113. color: red;
  114. }