index.less 2.3 KB

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