mesage.css 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. html,
  2. body {
  3. height: 100%;
  4. font-family: PingFangSC-Regular;
  5. color: #333333;
  6. }
  7. .navigation {
  8. width: 100%;
  9. height: 176rpx;
  10. box-sizing: border-box;
  11. padding: 88rpx 32rpx 0;
  12. background: #ffffff;
  13. position: fixed;
  14. top: 0;
  15. display: flex;
  16. align-items: center;
  17. z-index: 999;
  18. }
  19. .navigation image {
  20. width: 20rpx;
  21. height: 36rpx;
  22. margin-right: 12rpx;
  23. }
  24. .navigation > view {
  25. display: flex;
  26. font-size: 30rpx;
  27. color: #3296fb;
  28. align-items: center;
  29. margin-right: 190rpx;
  30. }
  31. .navigation > text {
  32. font-size: 34rpx;
  33. }
  34. .content {
  35. height: 100%;
  36. box-sizing: border-box;
  37. padding-top: 176rpx;
  38. }
  39. .content > .mItem {
  40. box-sizing: border-box;
  41. padding: 48rpx 32rpx 0;
  42. display: flex;
  43. flex-direction: column;
  44. align-items: center;
  45. margin-bottom: 12rpx;
  46. }
  47. .content > .mItem > .time {
  48. opacity: 0.15;
  49. background: #000000;
  50. border-radius: 25rpx;
  51. color: #ffffff;
  52. font-family: SFProText-Medium;
  53. font-size: 26rpx;
  54. padding: 10rpx 32rpx;
  55. margin-bottom: 30rpx;
  56. }
  57. .content > .mItem > .msgBox {
  58. width: 100%;
  59. background: #ffffff;
  60. box-shadow: 0 4rpx 8rpx 0 rgba(0,0,0,0.03);
  61. border-radius: 8rpx;
  62. }
  63. .content > .mItem > .msgBox > image {
  64. width: 100%;
  65. height: 240rpx;
  66. vertical-align: top;
  67. }
  68. .content > .mItem > .msgBox > .msgContent {
  69. padding: 32rpx 40rpx 40rpx;
  70. display: flex;
  71. flex-direction: column;
  72. }
  73. .content > .mItem > .msgBox > .msgContent > .title {
  74. font-family: PingFangSC-Medium;
  75. font-size: 34rpx;
  76. margin-bottom: 16rpx;
  77. }
  78. .content > .mItem > .msgBox > .msgContent > .msg {
  79. font-size: 32rpx;
  80. color: #666666;
  81. text-align: justify;
  82. line-height: 48rpx;
  83. }
  84. .content > .mItem > .msgBox > .msgContent > .btn {
  85. font-size: 26rpx;
  86. color: #3296fb;
  87. text-align: center;
  88. width: 156rpx;
  89. height: 60rpx;
  90. line-height: 60rpx;
  91. border: 2rpx solid #3296fb;
  92. border-radius: 30rpx;
  93. margin-top: 34rpx;
  94. }