messageList.wxss 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. }
  5. view,text{
  6. box-sizing: border-box;
  7. color:#333;
  8. font-size: 28rpx;
  9. }
  10. .van-tab--active view.van-ellipsis{
  11. color:#1677FF;
  12. }
  13. .message-list{
  14. margin:40rpx 24rpx 0;
  15. width:702rpx;
  16. }
  17. .message-item{
  18. background: #FFFFFF;
  19. border-radius: 18rpx;
  20. min-height:200rpx;
  21. margin-bottom:16rpx;
  22. padding:30rpx 24rpx 28rpx;
  23. }
  24. .message-item .title{
  25. height: 36rpx;
  26. display: flex;
  27. align-self: center;
  28. }
  29. .message-item .title image{
  30. width:36rpx;
  31. height:36rpx;
  32. margin-right:10rpx;
  33. }
  34. .message-item .title view{
  35. font-size: 32rpx;
  36. line-height: 32rpx;
  37. }
  38. view.content{
  39. margin:56rpx 0 46rpx;
  40. line-height: 38rpx;
  41. color:#666;
  42. font-size: 26rpx;
  43. }
  44. view.content.warn-text{
  45. font-weight: 600;
  46. color: #DC0000;
  47. }
  48. .message-bottom {
  49. display: flex;
  50. align-items: center;
  51. justify-content: flex-end;
  52. height: 40rpx;
  53. line-height: 40rpx;
  54. }
  55. .message-bottom image{
  56. width:30rpx;
  57. height: 30rpx;
  58. margin-right:8rpx;
  59. }
  60. .message-bottom view{
  61. color: #0EAEFC;
  62. }