index.scss 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. .Page.buildingAround {
  2. width: 100%;
  3. height: 100%;
  4. position: relative;
  5. overflow: hidden;
  6. >.MapContainer {
  7. width: 100%;
  8. height: 100%;
  9. position: relative;
  10. overflow: hidden;
  11. z-index: 1;
  12. background: #eee;
  13. >view {
  14. width: 100%;
  15. height: calc(100vh - 700px);
  16. position: relative;
  17. overflow: hidden;
  18. map {
  19. width: 100%;
  20. height: 100%;
  21. }
  22. }
  23. }
  24. >.TabContainer {
  25. position: absolute;
  26. left: 0;
  27. width: 100%;
  28. overflow: visible;
  29. bottom: 0;
  30. >view {
  31. padding: 50px 0 0;
  32. position: relative;
  33. overflow: hidden;
  34. background: #fff;
  35. z-index: 2;
  36. border-radius: 44px 44px 0 0;
  37. >.Title {
  38. align-items: center;
  39. padding: 0 40px;
  40. >.flex-item {
  41. margin-right: 20px;
  42. >text {
  43. display: block;
  44. font-size: 34px;
  45. white-space: nowrap;
  46. overflow: hidden;
  47. text-overflow: ellipsis;
  48. }
  49. }
  50. >.Go {
  51. font-size: 0;
  52. white-space: nowrap;
  53. border-radius: 60px;
  54. background: #1A3B83;
  55. padding: 0 20px;
  56. >text {
  57. display: inline-block;
  58. vertical-align: middle;
  59. font-size: 28px;
  60. color: #fff;
  61. line-height: 60px;
  62. &.iconfont {
  63. margin-left: 10px;
  64. }
  65. }
  66. }
  67. }
  68. >.Address {
  69. align-items: center;
  70. padding: 0 40px;
  71. margin-top: 4px;
  72. >text {
  73. color: #1A3B83;
  74. font-size: 24px;
  75. line-height: 1;
  76. }
  77. >.flex-item {
  78. margin-left: 10px;
  79. >text {
  80. display: block;
  81. font-size: 24px;
  82. color: #999;
  83. white-space: nowrap;
  84. overflow: hidden;
  85. text-overflow: ellipsis;
  86. line-height: 34px;
  87. }
  88. }
  89. }
  90. >.Nav {
  91. align-items: center;
  92. margin-top: 20px;
  93. >view {
  94. text-align: center;
  95. font-size: 0;
  96. &.active {
  97. >text {
  98. color: #1A3B83;
  99. &::after {
  100. content: '';
  101. width: 100%;
  102. height: 4px;
  103. position: absolute;
  104. display: block;
  105. background: #1A3B83;
  106. left: 0;
  107. bottom: 0;
  108. }
  109. }
  110. }
  111. >text {
  112. display: inline-block;
  113. position: relative;
  114. overflow: hidden;
  115. font-size: 30px;
  116. color: #666;
  117. line-height: 44px;
  118. padding-bottom: 8px;
  119. font-weight: bold;
  120. }
  121. }
  122. }
  123. >.CutLine {
  124. position: relative;
  125. overflow: hidden;
  126. width: 200px;
  127. height: 8px;
  128. border-radius: 8px;
  129. background: rgba(0, 0, 0, 0.12);
  130. margin: 16px auto 0;
  131. }
  132. >.ListContainer {
  133. width: 100%;
  134. position: relative;
  135. height: 450px;
  136. >scroll-view {
  137. width: 100%;
  138. height: 100%;
  139. .ScrollContent {
  140. position: relative;
  141. overflow: hidden;
  142. padding-bottom: 40px;
  143. >.List {
  144. padding: 0 30px;
  145. position: relative;
  146. overflow: hidden;
  147. >view {
  148. align-items: center;
  149. margin-top: 20px;
  150. >text {
  151. font-size: 30px;
  152. line-height: 40px;
  153. color: #666;
  154. margin-left: 10px;
  155. &.iconfont {
  156. color: #1A3B83;
  157. }
  158. }
  159. >.flex-item {
  160. >text {
  161. display: block;
  162. font-size: 28px;
  163. color: #666;
  164. white-space: nowrap;
  165. overflow: hidden;
  166. text-overflow: ellipsis;
  167. }
  168. }
  169. }
  170. }
  171. >text {
  172. display: block;
  173. padding: 0 30px;
  174. font-size: 28px;
  175. color: #666;
  176. line-height: 40px;
  177. margin-top: 40px;
  178. }
  179. }
  180. }
  181. }
  182. }
  183. }
  184. }