orderbook.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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: row;
  13. justify-content: space-around;
  14. flex-wrap: wrap;
  15. width: 96vw;
  16. padding: 2vw 0;
  17. background-color: #f1f1f1;
  18. button {
  19. width: 100%;
  20. font-size: 14px;
  21. margin: 0 1vw 1vw 1vw;
  22. padding: 2vw 1vw;
  23. }
  24. }
  25. .two {
  26. flex-grow: 1;
  27. // position: relative;
  28. .two_1 {
  29. margin: 0 0 2vw 0;
  30. }
  31. .two_2 {
  32. width: 96vw;
  33. .a {
  34. display: flex;
  35. flex-direction: column;
  36. width: 92vw;
  37. height: 70vh;
  38. padding: 2vw;
  39. position: relative;
  40. background-color: #ffffff;
  41. .teamList {
  42. background-color: #ffffff;
  43. border-bottom: 1px solid #cccccc;
  44. width: 96vw;
  45. padding: 2vw;
  46. .name {
  47. font-size: 18px;
  48. margin: 0 0 1vw 0;
  49. font-weight: bold;
  50. }
  51. .other {
  52. margin: 0 0 1vw 0;
  53. .other_1 {
  54. margin: 0 0 1vw 0;
  55. font-size: 15px;
  56. text {
  57. color: #000000;
  58. }
  59. text:nth-child(1) {
  60. color: #858585;
  61. }
  62. }
  63. }
  64. .btn {
  65. text-align: center;
  66. button {
  67. margin: 0 2vw;
  68. font-size: 14px;
  69. }
  70. }
  71. }
  72. .teamList:last-child {
  73. border-bottom: none;
  74. }
  75. }
  76. .b {
  77. .teamList {
  78. .name {
  79. text {
  80. font-size: 22px;
  81. color: #ff0000;
  82. padding: 0 2vw;
  83. text-transform: uppercase;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. .scroll-view {
  90. position: absolute;
  91. top: 0;
  92. left: 0;
  93. right: 0;
  94. bottom: 0;
  95. .list-scroll-view {
  96. display: flex;
  97. flex-wrap: wrap;
  98. align-content: flex-start;
  99. justify-content: space-between;
  100. }
  101. }
  102. }
  103. }