notice.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background-color: #f7f7f7;
  13. padding-bottom: 30rpx;
  14. }
  15. .notice-item {
  16. display: -webkit-box;
  17. display: -webkit-flex;
  18. display: flex;
  19. -webkit-box-orient: vertical;
  20. -webkit-box-direction: normal;
  21. -webkit-flex-direction: column;
  22. flex-direction: column;
  23. -webkit-box-align: center;
  24. -webkit-align-items: center;
  25. align-items: center;
  26. }
  27. .time {
  28. display: -webkit-box;
  29. display: -webkit-flex;
  30. display: flex;
  31. -webkit-box-align: center;
  32. -webkit-align-items: center;
  33. align-items: center;
  34. -webkit-box-pack: center;
  35. -webkit-justify-content: center;
  36. justify-content: center;
  37. height: 80rpx;
  38. padding-top: 10rpx;
  39. font-size: 26rpx;
  40. color: #7d7d7d;
  41. }
  42. .content {
  43. width: 710rpx;
  44. padding: 0 24rpx;
  45. background-color: #fff;
  46. border-radius: 4rpx;
  47. }
  48. .title {
  49. display: -webkit-box;
  50. display: -webkit-flex;
  51. display: flex;
  52. -webkit-box-align: center;
  53. -webkit-align-items: center;
  54. align-items: center;
  55. height: 90rpx;
  56. font-size: 32rpx;
  57. color: #303133;
  58. }
  59. .img-wrapper {
  60. width: 100%;
  61. height: 260rpx;
  62. position: relative;
  63. }
  64. .pic {
  65. display: block;
  66. width: 100%;
  67. height: 100%;
  68. border-radius: 6rpx;
  69. }
  70. .cover {
  71. display: -webkit-box;
  72. display: -webkit-flex;
  73. display: flex;
  74. -webkit-box-pack: center;
  75. -webkit-justify-content: center;
  76. justify-content: center;
  77. -webkit-box-align: center;
  78. -webkit-align-items: center;
  79. align-items: center;
  80. position: absolute;
  81. left: 0;
  82. top: 0;
  83. width: 100%;
  84. height: 100%;
  85. background-color: rgba(0, 0, 0, 0.5);
  86. font-size: 36rpx;
  87. color: #fff;
  88. }
  89. .introduce {
  90. display: inline-block;
  91. padding: 16rpx 0;
  92. font-size: 28rpx;
  93. color: #606266;
  94. line-height: 38rpx;
  95. }
  96. .bot {
  97. display: -webkit-box;
  98. display: -webkit-flex;
  99. display: flex;
  100. -webkit-box-align: center;
  101. -webkit-align-items: center;
  102. align-items: center;
  103. -webkit-box-pack: justify;
  104. -webkit-justify-content: space-between;
  105. justify-content: space-between;
  106. height: 80rpx;
  107. font-size: 24rpx;
  108. color: #707070;
  109. position: relative;
  110. }
  111. .more-icon {
  112. font-size: 32rpx;
  113. }