message.wxss 1.5 KB

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