news.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* .wrap {
  2. } */
  3. .wrap .list {
  4. padding: 3.75rem 0 0;
  5. width: 90rem;
  6. margin: 0 auto;
  7. display: flex;
  8. flex-wrap: wrap;
  9. align-items: center;
  10. }
  11. .wrap .list > :not(:nth-child(3n)) {
  12. margin-right: 1.875rem;
  13. }
  14. .list .list-item {
  15. width: 27.5rem;
  16. background: #f4f4f4;
  17. padding: 1.875rem;
  18. margin-bottom: 1.875rem;
  19. }
  20. .list .list-item .item-cover {
  21. width: 27.5rem;
  22. height: 18.3125rem;
  23. background: #000;
  24. transform: translate(-1.875rem, -1.875rem);
  25. }
  26. .list .list-item .item-time {
  27. font-size: 0.875rem;
  28. font-weight: 400;
  29. color: #1d52a2;
  30. height: 1rem;
  31. }
  32. .list .list-item .item-title {
  33. font-size: 1rem;
  34. font-weight: 500;
  35. color: #222222;
  36. height: 2.75rem;
  37. margin-top: 1.25rem;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. display: -webkit-box;
  41. -webkit-box-orient: vertical;
  42. -webkit-line-clamp: 2;
  43. }
  44. .list .list-item .item-detail {
  45. font-size: 0.875rem;
  46. font-weight: 400;
  47. color: #444444;
  48. height: 4.375rem;
  49. margin-top: 1.25rem;
  50. margin-bottom: 1.875rem;
  51. overflow: hidden;
  52. text-overflow: ellipsis;
  53. display: -webkit-box;
  54. -webkit-box-orient: vertical;
  55. -webkit-line-clamp: 3;
  56. }
  57. .list .list-item .item-view-detail {
  58. font-size: 0.875rem;
  59. font-weight: 500;
  60. color: #888888;
  61. text-decoration: none;
  62. }
  63. .wrap .pagination {
  64. display: flex;
  65. align-items: center;
  66. justify-content: center;
  67. margin-bottom: 2.5rem;
  68. }
  69. .pagination :not(:last-child) {
  70. margin-right: 0.625rem;
  71. }
  72. .pagination .pagination-item {
  73. width: 2.5rem;
  74. height: 2.5rem;
  75. border: 0.0625rem solid rgba(151, 151, 151, 0.2);
  76. text-align: center;
  77. line-height: 2.5rem;
  78. user-select: none;
  79. font-size: 1rem;
  80. font-weight: 400;
  81. color: #222222;
  82. cursor: pointer;
  83. }
  84. .pagination :first-child,
  85. .pagination :last-child {
  86. font-size: 1.5rem;
  87. }
  88. .pagination .current {
  89. background: #1d52a2;
  90. color: #ffffff;
  91. }