拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
1.4KB

  1. .notice__container{
  2. position: relative;
  3. background: rgba(241, 244, 245, 1);
  4. }
  5. .notice__content{
  6. position: relative;
  7. padding: 30rpx 40rpx;
  8. height: 100vh;
  9. }
  10. .notice__item{
  11. display: flex;
  12. align-items: center;
  13. flex-direction: column;
  14. /* justify-content: space-between; */
  15. /* padding: 40rpx 70rpx 50rpx 60rpx; */
  16. margin-bottom: 40rpx;
  17. }
  18. .notice__item :last-child{
  19. margin-bottom: 0;
  20. }
  21. .item__time{
  22. font-size: 26rpx;
  23. color: #FFFFFF;
  24. padding: 10rpx 16rpx;
  25. background: rgba(216, 217, 227, 0.8);
  26. border-radius: 30rpx;
  27. margin-bottom: 40rpx;
  28. }
  29. .item__container{
  30. background: rgba(255, 255, 255, 1);
  31. border-radius: 20rpx;
  32. margin-bottom: 14rpx;
  33. padding: 26rpx 30rpx 40rpx;
  34. }
  35. .item__title{
  36. display: flex;
  37. align-items: center;
  38. justify-content: space-between;
  39. font-size: 30rpx;
  40. padding-bottom: 26rpx;
  41. border-bottom: 1px solid rgba(216, 217, 227, 1);
  42. }
  43. .title__left{
  44. display: flex;
  45. align-items: center;
  46. color: rgba(33, 30, 58, 1);
  47. }
  48. .title__left::before{
  49. content: "";
  50. width: 16rpx;
  51. height: 16rpx;
  52. border-radius: 8rpx;
  53. margin-right: 10rpx;
  54. }
  55. .is--read::before{
  56. background: rgba(135, 135, 135, 1);
  57. }
  58. .no--read::before{
  59. background: rgba(255, 62, 75, 1);
  60. }
  61. .title__left image{
  62. width: 60rpx;
  63. height: 60rpx;
  64. margin-right: 8rpx;
  65. }
  66. .title__right{
  67. color: rgba(176, 178, 195, 1);
  68. }
  69. .title__right::after{
  70. content: '>'
  71. }
  72. .item__content{
  73. padding: 30rpx 0;
  74. font-size: 28rpx;
  75. color: rgba(65, 64, 84, 1);
  76. }