selectHall.wxss 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /* pages/indexPages/selectHall/selectHall.wxss */
  2. .custom-navigation {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. z-index: 999;
  7. width: calc(100% - 120rpx);
  8. padding-left: 40rpx;
  9. display: flex;
  10. align-items: center;
  11. background: none;
  12. }
  13. .custom-navigation>image {
  14. width: 40rpx;
  15. height: auto;
  16. }
  17. .custom-navigation>view {
  18. width: 0;
  19. flex: 1;
  20. font-family: "苹方M";
  21. font-size: 36rpx;
  22. color: #323232;
  23. text-align: center;
  24. }
  25. .map {
  26. width: 100%;
  27. height: calc(100vh - 600rpx);
  28. transition: all 0.35s;
  29. }
  30. .map>map {
  31. width: 100%;
  32. height: 100%;
  33. }
  34. .containers {
  35. padding-bottom: 20rpx;
  36. position: fixed;
  37. bottom: 0;
  38. left: 0;
  39. z-index: 10;
  40. width: 100%;
  41. height: calc(100vh - 400rpx);
  42. background: #ffffff;
  43. border-radius: 50rpx 50rpx 0 0;
  44. box-shadow: 0px -2rpx 20rpx 0px rgba(0, 0, 0, 0.09);
  45. box-sizing: border-box;
  46. transition: all 0.35s;
  47. }
  48. .contraindown {
  49. height: 600rpx;
  50. }
  51. .border-style {
  52. padding-bottom: 40rpx;
  53. padding-top: 20rpx;
  54. width: 100%;
  55. height: 8rpx;
  56. }
  57. .border-style-bar {
  58. margin: auto;
  59. width: 100rpx;
  60. height: 8rpx;
  61. border-radius: 4rpx;
  62. background: #cdcdcd;
  63. }
  64. .search-box {
  65. padding: 0 30rpx;
  66. margin: 0rpx 32rpx 0 32rpx;
  67. width: calc(100% - 64rpx);
  68. height: 80rpx;
  69. border: 0.7px solid #595959;
  70. border-radius: 16rpx;
  71. display: flex;
  72. align-items: center;
  73. box-sizing: border-box;
  74. }
  75. .search-box .search-icon {
  76. width: 40rpx;
  77. height: 40rpx;
  78. line-height: 40rpx;
  79. }
  80. .search-box .search-icon image {
  81. width: 100%;
  82. height: auto;
  83. }
  84. .search-box .search-input {
  85. margin-left: 20rpx;
  86. width: 0;
  87. flex: 1;
  88. height: 100%;
  89. }
  90. .search-box .search-input input {
  91. width: 100%;
  92. height: 100%;
  93. font-family: "苹方R";
  94. font-size: 28rpx;
  95. }
  96. .select-tabs {
  97. margin: 40rpx 32rpx 0 32rpx;
  98. width: calc(100% - 64rpx);
  99. height: 56rpx;
  100. display: flex;
  101. align-items: center;
  102. justify-content: space-between;
  103. }
  104. .select-tab {
  105. padding: 0 20rpx;
  106. margin-right: 20rpx;
  107. width: fit-content;
  108. min-width: 100rpx;
  109. height: 56rpx;
  110. font-family: "苹方R";
  111. font-size: 24rpx;
  112. color: #AFAFAF;
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. border-radius: 8rpx;
  117. box-sizing: border-box;
  118. border: 1px solid #afafaf;
  119. transition: all 0.2s;
  120. }
  121. .select-tab-active {
  122. color: #4686F6;
  123. background: #E1EFFD;
  124. border: 1px solid transparent;
  125. }
  126. .hallList {
  127. margin-top: 40rpx;
  128. width: 100%;
  129. height: calc(100% - 264rpx);
  130. }
  131. .hall-list {
  132. position: relative;
  133. padding: 35rpx;
  134. margin: 0 32rpx 30rpx 32rpx;
  135. width: calc(100% - 64rpx);
  136. background: #ffffff;
  137. border-radius: 20rpx;
  138. box-shadow: 0px 0px 8rpx 0px #dde4e8;
  139. box-sizing: border-box;
  140. }
  141. .hall-list-xz {
  142. border: 0.7px solid #4686f6;
  143. }
  144. .hallList-select {
  145. position: absolute;
  146. top: 0;
  147. right: 0;
  148. z-index: 9;
  149. width: 80rpx;
  150. height: auto;
  151. }
  152. .hallName {
  153. width: 100%;
  154. font-family: "苹方M";
  155. font-size: 32rpx;
  156. line-height: 48rpx;
  157. color: #333333;
  158. }
  159. .address {
  160. padding-top: 10rpx;
  161. font-family: "苹方R";
  162. font-size: 24rpx;
  163. color: #666666;
  164. line-height: 36rpx;
  165. }
  166. .address>image {
  167. position: relative;
  168. top: 5rpx;
  169. width: 25rpx;
  170. height: auto;
  171. }
  172. .address>span {
  173. margin-left: 10rpx;
  174. }
  175. .address>.juli {
  176. margin-left: 10rpx;
  177. padding-left: 10rpx;
  178. font-family: "苹方R";
  179. font-size: 24rpx;
  180. border-left: 1px solid #707070;
  181. }
  182. .daohang {
  183. padding-top: 10rpx;
  184. width: 100%;
  185. line-height: 42rpx;
  186. font-family: "苹方R";
  187. font-size: 20rpx;
  188. color: #999999;
  189. }
  190. .daohang>image {
  191. position: relative;
  192. top: 5rpx;
  193. width: 25rpx;
  194. height: auto;
  195. }
  196. .daohang>.toDaohang {
  197. margin-left: 10rpx;
  198. font-family: "苹方R";
  199. font-size: 28rpx;
  200. color: #02C3CA;
  201. border-bottom: 1px solid #02C3CA;
  202. }
  203. .other {
  204. padding-top: 20rpx;
  205. width: 100%;
  206. height: 60rpx;
  207. display: flex;
  208. align-items: center;
  209. }
  210. .zxsc {
  211. width: 0;
  212. flex: 1;
  213. height: 100%;
  214. display: flex;
  215. align-items: center;
  216. justify-content: space-evenly;
  217. font-family: "苹方R";
  218. font-size: 24rpx;
  219. color: #319EFD;
  220. }
  221. .zxsc>view {
  222. height: 100%;
  223. display: flex;
  224. align-items: center;
  225. justify-content: center;
  226. }
  227. .zxsc .zxscIcon {
  228. margin-right: 6rpx;
  229. width: 30rpx;
  230. height: auto;
  231. }
  232. .zxsc>span {
  233. margin-right: 50rpx;
  234. }
  235. .yypdmr {
  236. width: 160rpx;
  237. height: 100%;
  238. display: flex;
  239. align-items: center;
  240. }
  241. .qyypd {
  242. width: 100%;
  243. height: 100%;
  244. background: linear-gradient(90deg, #81afff 3%, #4686f6);
  245. border-radius: 0px 10rpx 10rpx 0px;
  246. font-family: "苹方R";
  247. font-size: 28rpx;
  248. color: #FFFFFF;
  249. display: flex;
  250. align-items: center;
  251. justify-content: center;
  252. }
  253. .qyypd>image {
  254. position: relative;
  255. top: 1rpx;
  256. margin-left: 15rpx;
  257. width: 15rpx;
  258. height: auto;
  259. }
  260. .none-hall {
  261. padding: 20rpx 30rpx 80rpx 30rpx;
  262. width: 100%;
  263. height: 100%;
  264. display: flex;
  265. align-items: center;
  266. justify-content: center;
  267. font-family: "苹方R";
  268. text-align: center;
  269. box-sizing: border-box;
  270. }
  271. .active {
  272. opacity: 0.6;
  273. }