new3.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .new3 .body {
  2. padding: 0 5px;
  3. margin-top: 90px;
  4. }
  5. .new3 .body h4 {
  6. font-weight: 500;
  7. }
  8. .new3 .body .title {
  9. color: #777;
  10. margin: 5px 0;
  11. }
  12. .new3 .body .list .list-flex {
  13. margin: 10px 0;
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: center;
  17. }
  18. .new3 .body .list .list-flex .list-item {
  19. border-radius: 5px;
  20. flex: 1;
  21. padding: 10px;
  22. margin-right: 20px;
  23. box-shadow: 0 0 5px #d6d6d6;
  24. }
  25. .new3 .body .list .list-flex .list-item:hover {
  26. cursor: pointer;
  27. }
  28. @media screen and (max-width: 768px) {
  29. .new3 .body .list .list-flex .list-item {
  30. margin-right: 5px;
  31. }
  32. }
  33. .new3 .body .list .list-flex .list-item h4 {
  34. font-weight: 600;
  35. }
  36. .new3 .body .list .list-flex .list-item .p {
  37. display: flex;
  38. justify-content: space-between;
  39. align-items: center;
  40. }
  41. .new3 .body .list .list-flex .list-item .p a:hover {
  42. color: #777;
  43. }
  44. .new3 .body .list .list-flex > .list-item:last-child {
  45. margin: 0 0 0 20px;
  46. }
  47. @media screen and (max-width: 768px) {
  48. .new3 .body .list .list-flex > .list-item:last-child {
  49. margin: 0 0 0 5px;
  50. }
  51. }