news-mobile.css 1.7 KB

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