new_list.css 1.9 KB

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