index.less 2.3 KB

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