mineMessage.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* pages/mineMessage/mineMessage.wxss */
  2. page{
  3. background-color: #F7F7F7;
  4. }
  5. .msg-box{
  6. width: 750rpx;
  7. height: 176rpx;
  8. background: #FFFFFF;
  9. display: flex;
  10. flex-direction: row;
  11. position: relative;
  12. }
  13. .msg-box>image:nth-child(1){
  14. width: 112rpx;
  15. height: 112rpx;
  16. margin: 32rpx 24rpx 32rpx 32rpx;
  17. }
  18. .msg-box>view:nth-child(2){
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. }
  23. .msg-box>view:nth-child(2)>text:nth-child(1){
  24. width: auto;
  25. height: 48rpx;
  26. font-size: 34rpx;
  27. font-family: PingFangSC-Semibold, PingFang SC;
  28. font-weight: 600;
  29. color: rgba(0,0,0,0.87);
  30. line-height: 48rpx;
  31. text-align: left;
  32. }
  33. .msg-box>view:nth-child(2)>text:nth-child(2){
  34. width: 450rpx;
  35. height: 48rpx;
  36. font-size: 30rpx;
  37. font-family: PingFangSC-Regular, PingFang SC;
  38. font-weight: 400;
  39. color: rgba(0,0,0,0.4);
  40. line-height: 48rpx;
  41. text-align: left;
  42. overflow: hidden;
  43. text-overflow: ellipsis;
  44. white-space: nowrap;
  45. }
  46. .msg-box>view:nth-child(3){
  47. position: absolute;
  48. top: 46rpx;
  49. right: 30rpx;
  50. width: auto;
  51. height: 32rpx;
  52. font-size: 26rpx;
  53. font-family: Helvetica;
  54. color: rgba(0,0,0,0.4);
  55. line-height: 32rpx;
  56. }