orderbook.wxss 1.8 KB

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