index.less 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .main {
  2. height: 80.8vh;
  3. .zero {
  4. width: 96vw;
  5. margin: 0 0 2vw 0;
  6. }
  7. .zero:nth-child(2) {
  8. margin: 0;
  9. }
  10. .one {
  11. display: flex;
  12. flex-direction: row;
  13. justify-content: space-between;
  14. padding: 2vw;
  15. width: 92vw;
  16. background-color: #f1f1f1;
  17. input {
  18. font-size: 14px;
  19. }
  20. }
  21. .two {
  22. flex-grow: 1;
  23. position: relative;
  24. width: 96vw;
  25. .scroll-view {
  26. position: absolute;
  27. top: 0;
  28. left: 0;
  29. right: 0;
  30. bottom: 0;
  31. .list-scroll-view {
  32. display: flex;
  33. flex-wrap: wrap;
  34. align-content: flex-start;
  35. justify-content: space-between;
  36. .list {
  37. background-color: #ffffff;
  38. margin: 0 0 2vw 0;
  39. padding: 2vw;
  40. display: flex;
  41. flex-direction: column;
  42. width: 96vw;
  43. .list_1 {
  44. display: flex;
  45. flex-direction: row;
  46. justify-content: space-between;
  47. font-size: 10px;
  48. margin: 0 0 1vw 0;
  49. color: #858585;
  50. }
  51. .list_2 {
  52. margin: 0 0 3vw 0;
  53. font-size: 16px;
  54. font-weight: bold;
  55. }
  56. .list_3 {
  57. display: flex;
  58. flex-direction: row;
  59. justify-content: space-between;
  60. font-size: 12px;
  61. color: #858585;
  62. .btn {
  63. button {
  64. font-size: 12px;
  65. background-color: transparent;
  66. color: #334790;
  67. }
  68. }
  69. }
  70. }
  71. .list:last-child {
  72. margin: 0;
  73. }
  74. }
  75. }
  76. }
  77. }