index.less 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. .main {
  2. height: 88vh;
  3. .one {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. background-color: #fff;
  7. }
  8. .two {
  9. flex-grow: 1;
  10. position: relative;
  11. width: 96vw;
  12. .scroll-view {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. bottom: 0;
  18. .list-scroll-view {
  19. display: flex;
  20. flex-wrap: wrap;
  21. align-content: flex-start;
  22. justify-content: space-between;
  23. .list {
  24. display: flex;
  25. flex-direction: column;
  26. width: 96vw;
  27. padding: 2vw;
  28. background-color: #ffffff;
  29. margin: 0 0 2vw 0;
  30. .name {
  31. font-size: 14px;
  32. font-weight: bold;
  33. margin: 0 0 1vw 0;
  34. }
  35. .other {
  36. font-size: 12px;
  37. margin: 0 0 1vw 0;
  38. .other_1 {
  39. padding: 0 0 1vw 0;
  40. }
  41. .other_1 text:nth-child(1) {
  42. color: #666;
  43. }
  44. }
  45. .btn {
  46. text-align: center;
  47. button {
  48. color: #ffffff;
  49. font-size: 14px;
  50. margin: 0 2vw;
  51. }
  52. }
  53. }
  54. }
  55. }
  56. }
  57. }