index.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .main {
  2. height: var(--thrHeight);
  3. .zero {
  4. margin: 0 2vw 2vw 2vw;
  5. }
  6. .one {
  7. position: relative;
  8. height: 120px;
  9. .one_1 {
  10. height: 80px;
  11. background-color: #216EC7;
  12. border-bottom-left-radius: 10px;
  13. border-bottom-right-radius: 10px;
  14. color: transparent;
  15. }
  16. .one_2 {
  17. position: absolute;
  18. top: 5vw;
  19. width: 86vw;
  20. height: 86px;
  21. margin: 0 3vw;
  22. padding: 2vw;
  23. background-color: var(--bgColor);
  24. display: flex;
  25. justify-content: space-between;
  26. .l {
  27. display: flex;
  28. justify-content: start;
  29. width: 72vw;
  30. .l_1 {
  31. padding: 3vw 0;
  32. .icon {
  33. width: 60px;
  34. height: 60px;
  35. border-radius: 90px;
  36. }
  37. }
  38. .l_2 {
  39. width: 56vw;
  40. padding: 4vw 0 0 0;
  41. .info {
  42. margin: 0 0 2vw 0;
  43. padding: 0 2vw;
  44. font-size: var(--txtSize);
  45. }
  46. .info:nth-child(1) {
  47. font-weight: bold;
  48. font-size: var(--titleSize);
  49. }
  50. .info:nth-child(2) {
  51. color: var(--labelColor);
  52. font-size: 15px;
  53. }
  54. }
  55. }
  56. .r {
  57. padding: 8vw 0;
  58. font-size: var(--txtSize);
  59. color: var(--labelColor);
  60. }
  61. }
  62. }
  63. .two {
  64. flex-grow: 1;
  65. position: relative;
  66. .scroll-view {
  67. position: absolute;
  68. top: 0;
  69. left: 0;
  70. right: 0;
  71. bottom: 0;
  72. .list-scroll-view {
  73. display: flex;
  74. flex-wrap: wrap;
  75. flex-direction: row;
  76. align-content: flex-start;
  77. justify-content: space-between;
  78. .list {
  79. background-color: var(--bgColor);
  80. width: 96vw;
  81. margin: 0 0 1.5vw 0;
  82. padding: 2vw;
  83. .list_1 {
  84. .icon {
  85. margin: 0 2vw 0 0;
  86. }
  87. .title {
  88. font-size: var(--txtSize);
  89. }
  90. }
  91. .list_2 {
  92. display: flex;
  93. flex-direction: row;
  94. justify-content: space-between;
  95. flex-wrap: wrap;
  96. .routeList {
  97. width: 26vw;
  98. padding: 2vw;
  99. .route_1 {
  100. display: flex;
  101. flex-direction: column;
  102. justify-content: center;
  103. .title {
  104. font-size: var(--txtSize);
  105. padding: 1vw 0 0 0;
  106. text-align: center;
  107. }
  108. }
  109. }
  110. }
  111. }
  112. }
  113. }
  114. }
  115. }