index.less 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .main {
  2. height: 88.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. width: 92vw;
  12. padding: 2vw;
  13. background-color: #f1f1f1;
  14. input {
  15. font-size: 16px;
  16. }
  17. }
  18. .two {
  19. flex-grow: 1;
  20. position: relative;
  21. width: 96vw;
  22. .scroll-view {
  23. position: absolute;
  24. top: 0;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. .list-scroll-view {
  29. display: flex;
  30. flex-wrap: wrap;
  31. align-content: flex-start;
  32. justify-content: space-between;
  33. .list {
  34. background-color: #ffffff;
  35. margin: 0 0 2vw 0;
  36. padding: 2vw;
  37. display: flex;
  38. flex-direction: column;
  39. width: 96vw;
  40. .name {
  41. font-size: 18px;
  42. font-weight: bold;
  43. margin: 0 0 1vw 0;
  44. }
  45. .other {
  46. margin: 0 0 1vw 0;
  47. .other_1 {
  48. color: #858585;
  49. font-size: 15px;
  50. margin: 0 0 1vw 0;
  51. text:nth-child(1) {
  52. color: #000000;
  53. }
  54. }
  55. }
  56. .btn {
  57. text-align: center;
  58. button {
  59. margin: 0 2vw;
  60. font-size: 14px;
  61. }
  62. }
  63. }
  64. .list:last-child {
  65. margin: 0;
  66. }
  67. }
  68. }
  69. }
  70. }