notice.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. -webkit-border-radius: 4rpx;
  47. border-radius: 4rpx;
  48. }
  49. .title {
  50. display: -webkit-box;
  51. display: -webkit-flex;
  52. display: flex;
  53. -webkit-box-align: center;
  54. -webkit-align-items: center;
  55. align-items: center;
  56. height: 90rpx;
  57. font-size: 32rpx;
  58. color: #303133;
  59. }
  60. .img-wrapper {
  61. width: 100%;
  62. height: 260rpx;
  63. position: relative;
  64. }
  65. .pic {
  66. display: block;
  67. width: 100%;
  68. height: 100%;
  69. -webkit-border-radius: 6rpx;
  70. border-radius: 6rpx;
  71. }
  72. .cover {
  73. display: -webkit-box;
  74. display: -webkit-flex;
  75. display: flex;
  76. -webkit-box-pack: center;
  77. -webkit-justify-content: center;
  78. justify-content: center;
  79. -webkit-box-align: center;
  80. -webkit-align-items: center;
  81. align-items: center;
  82. position: absolute;
  83. left: 0;
  84. top: 0;
  85. width: 100%;
  86. height: 100%;
  87. background-color: rgba(0, 0, 0, 0.5);
  88. font-size: 36rpx;
  89. color: #fff;
  90. }
  91. .introduce {
  92. display: inline-block;
  93. padding: 16rpx 0;
  94. font-size: 28rpx;
  95. color: #606266;
  96. line-height: 38rpx;
  97. }
  98. .bot {
  99. display: -webkit-box;
  100. display: -webkit-flex;
  101. display: flex;
  102. -webkit-box-align: center;
  103. -webkit-align-items: center;
  104. align-items: center;
  105. -webkit-box-pack: justify;
  106. -webkit-justify-content: space-between;
  107. justify-content: space-between;
  108. height: 80rpx;
  109. font-size: 24rpx;
  110. color: #707070;
  111. position: relative;
  112. }
  113. .more-icon {
  114. font-size: 32rpx;
  115. }