new_list.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .new2 .body {
  2. margin-top: 90px;
  3. padding: 10px 0;
  4. }
  5. .new2 .body .list .list-item {
  6. text-decoration: none;
  7. color: black;
  8. display: flex;
  9. justify-content: flex-start;
  10. align-items: start;
  11. padding-bottom: 10px;
  12. margin-bottom: 10px;
  13. border-bottom: 1px solid #e6e6e6;
  14. }
  15. .new2 .body .list-header {
  16. position: relative;
  17. margin-bottom: 20px;
  18. background-size: cover;
  19. -webkit-background-size: 100% 160px;
  20. -moz-background-size: 100% auto;
  21. background-position: center center;
  22. }
  23. .new2 .body .list-header img {
  24. width: 100%;
  25. }
  26. .new2 .body .list-header div {
  27. position: absolute;
  28. color: #fff;
  29. bottom: 0;
  30. left: 10px;
  31. }
  32. .new2 .body .list-header div h3 {
  33. font-size: 16px;
  34. margin-bottom: 5px;
  35. }
  36. .new2 .body .list .list-item:hover {
  37. color: #2382ff;
  38. }
  39. .new2 .body .list .list-item .item-img {
  40. flex: 1;
  41. padding: 0 20px;
  42. }
  43. @media screen and (max-width: 768px) {
  44. .new2 .body .list .list-item .item-img {
  45. padding: 0 10px;
  46. }
  47. }
  48. .new2 .body .list .list-item .item-img img {
  49. width: 100%;
  50. border-radius: 5px;
  51. }
  52. .new2 .body .list .list-item .item-img img:hover {
  53. transform: scale(1.1);
  54. }
  55. .new2 .body .list .list-item .item-detail {
  56. flex: 4;
  57. height: 100%;
  58. position: relative;
  59. overflow: hidden;
  60. }
  61. @media screen and (max-width: 768px) {
  62. .new2 .body .list .list-item .item-detail {
  63. flex: 2;
  64. }
  65. }
  66. .new2 .body .list .list-item .item-detail .title {
  67. font-weight: 400;
  68. }
  69. @media screen and (max-width: 768px) {
  70. .new2 .body .list .list-item .item-detail .title {
  71. white-space: normal;
  72. display: -webkit-box;
  73. -webkit-box-orient: vertical;
  74. -webkit-line-clamp: 2;
  75. }
  76. }
  77. .new2 .body .list .list-item .item-detail .time {
  78. font-size: 12px;
  79. color: #777;
  80. margin-top: 5px;
  81. }
  82. .new2 .body .list .list-item .item-detail .time span {
  83. margin-left: 5px;
  84. }