index.less 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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: 16px;
  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: 14px;
  48. margin: 0 0 1vw 0;
  49. color: #858585;
  50. .name {
  51. width: 70vw;
  52. }
  53. }
  54. .list_2 {
  55. margin: 0 0 3vw 0;
  56. font-size: 18px;
  57. font-weight: bold;
  58. }
  59. .list_3 {
  60. display: flex;
  61. flex-direction: row;
  62. justify-content: space-between;
  63. font-size: 14px;
  64. color: #858585;
  65. .btn {
  66. color: #334790;
  67. font-size: 14px;
  68. font-weight: 700;
  69. }
  70. }
  71. }
  72. .list:last-child {
  73. margin: 0;
  74. }
  75. }
  76. }
  77. }
  78. }