index.less 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .main {
  2. height: 80.8vh;
  3. .one {
  4. width: 100%;
  5. }
  6. .two {
  7. width: 100%;
  8. margin: 2px;
  9. }
  10. .thr {
  11. width: 96vw;
  12. flex-grow: 1;
  13. position: relative;
  14. background-color: #ffffff;
  15. .scroll-view {
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. right: 0;
  20. bottom: 0;
  21. .list-scroll-view {
  22. display: flex;
  23. flex-wrap: wrap;
  24. align-content: flex-start;
  25. justify-content: space-between;
  26. .list {
  27. display: flex;
  28. width: 96vw;
  29. margin: 10px 0;
  30. border-bottom: 0.1px solid #D1CFCF;
  31. .image {
  32. display: flex;
  33. justify-content: center;
  34. align-items: center;
  35. width: 30vw;
  36. image {
  37. width: 20vw;
  38. height: 20vw;
  39. border-radius: 5px;
  40. }
  41. }
  42. .content {
  43. padding: 5px;
  44. .name {
  45. font-size: 14px;
  46. font-weight: bold;
  47. padding: 2px 0;
  48. list-style: disc;
  49. }
  50. .title {
  51. font-size: 12px;
  52. color: #666;
  53. padding: 2px 0;
  54. display: -webkit-box;
  55. overflow: hidden;
  56. -webkit-line-clamp: 3;
  57. -webkit-box-orient: vertical;
  58. text {
  59. padding: 0 10px;
  60. }
  61. }
  62. }
  63. }
  64. }
  65. }
  66. }
  67. }