mapContent.wxss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. /* pages/jsCase/citySel/index.wxss */
  2. page {
  3. height : 100%;
  4. background: #f2f5f7;
  5. }
  6. .head {
  7. position : fixed;
  8. top : 0;
  9. left : 0;
  10. width : 100%;
  11. /* height : 170rpx; */
  12. box-sizing: border-box;
  13. padding : 20rpx 20rpx 20rpx;
  14. background: #fff;
  15. z-index : 99999;
  16. }
  17. .search-box{
  18. display: flex;
  19. align-items: center;
  20. }
  21. .r_head {
  22. height: 90rpx;
  23. }
  24. .head_input {
  25. /* position: relative; */
  26. flex : 1;
  27. display: flex;
  28. align-items: center;
  29. height: 60rpx;
  30. padding-left:16rpx;
  31. border-radius: 30rpx;
  32. background : #f2f5f7;
  33. }
  34. .search_icon {
  35. /* position : absolute;
  36. top : 50%;
  37. left : 0;
  38. margin-top : -15rpx; */
  39. width : 30rpx;
  40. height : 30rpx;
  41. margin-right:12rpx;
  42. }
  43. .head input {
  44. height : 60rpx;
  45. /* padding-left : 75rpx; */
  46. font-size : 28rpx;
  47. }
  48. .place_holder {
  49. font-size: 28rpx;
  50. color : #999999;
  51. }
  52. .sha_icon {
  53. margin-left: 18rpx;
  54. font-size : 28rpx;
  55. color : #333333;
  56. }
  57. .head_curr {
  58. height : 80rpx;
  59. display: flex;
  60. align-items: center;
  61. color : #333;
  62. font-size : 28rpx;
  63. /* padding-top: 20rpx; */
  64. box-sizing : border-box;
  65. }
  66. .h_c_icon {
  67. flex-shrink : 0;
  68. margin-right: 15rpx;
  69. width : 32rpx;
  70. height : 32rpx;
  71. margin-left:12rpx;
  72. }
  73. .sy_container {
  74. box-sizing : border-box;
  75. width : 100%;
  76. height : 100%;
  77. padding-top: 170rpx;
  78. }
  79. .hot_city .title {
  80. padding : 10rpx 30rpx;
  81. color : #999;
  82. font-size: 26rpx;
  83. }
  84. .hot_city .box {
  85. background-color: #fff;
  86. padding : 5rpx 30rpx 15rpx 40rpx;
  87. box-sizing : border-box;
  88. }
  89. .hot_city .box .name {
  90. vertical-align: top;
  91. display : inline-block;
  92. min-width : 140rpx;
  93. line-height : 56rpx;
  94. height : 56rpx;
  95. border-radius : 28rpx;
  96. font-size : 28rpx;
  97. color : #333;
  98. text-align : center;
  99. padding : 0 20rpx;
  100. box-sizing : border-box;
  101. margin-top : 10rpx;
  102. margin-right : 20rpx;
  103. position : relative;
  104. }
  105. .hot_city .box .name::after {
  106. content : '';
  107. position : absolute;
  108. width : 200%;
  109. height : 200%;
  110. -webkit-transform-origin: 0 0;
  111. transform-origin : 0 0;
  112. -webkit-transform : scale(0.5, 0.5);
  113. transform : scale(0.5, 0.5);
  114. -webkit-box-sizing : border-box;
  115. box-sizing : border-box;
  116. left : 0;
  117. top : 0;
  118. border-radius : 56rpx;
  119. border : 2rpx solid rgb(235, 225, 225);
  120. }
  121. .sel_city {
  122. color : #fff !important;
  123. background: pink;
  124. }
  125. .all_city .letter_name {
  126. height : 48rpx;
  127. font-size : 24rpx;
  128. color : #999;
  129. background : #f2f5f7;
  130. padding : 0 30rpx;
  131. line-height: 48rpx;
  132. }
  133. .all_city .city {
  134. background-color: #fff;
  135. }
  136. .all_city .city .name {
  137. width : 100%;
  138. padding : 30rpx;
  139. font-size: 28rpx;
  140. color : #333;
  141. position : relative;
  142. overflow : hidden;
  143. }
  144. .all_city .city .name::after {
  145. content : '';
  146. position : absolute;
  147. border-bottom : 1rpx solid #eaeef1;
  148. -webkit-transform: scaleY(0.5);
  149. transform : scaleY(0.5);
  150. bottom : 0;
  151. right : 0;
  152. left : 30rpx;
  153. }
  154. .city_hover {
  155. background-color: #eee !important;
  156. }
  157. .fixed_bar {
  158. position : fixed;
  159. z-index : 99999;
  160. top : 180rpx;
  161. right : 0px;
  162. padding-right: 10rpx;
  163. width : 50rpx;
  164. font-size : 22rpx;
  165. text-align : center;
  166. }
  167. .bar_item {
  168. background-color: rgb(233, 228, 220);
  169. border-radius : 50%;
  170. }
  171. @media screen and (max-width: 320px) {
  172. .fixed_bar {
  173. font-size: 20rpx;
  174. }
  175. }
  176. .bar_item_active {
  177. background-color: #fff;
  178. /* box-shadow : 5rpx 5rpx 5rpx #f7c3ee; */
  179. box-shadow : 5rpx 5rpx 5rpx #09afff;
  180. }
  181. .fixed_letter {
  182. position : absolute;
  183. z-index : 20;
  184. width : 160rpx;
  185. height : 160rpx;
  186. left : 50%;
  187. top : 50%;
  188. margin-left : -80rpx;
  189. margin-top : -80rpx;
  190. border-radius : 80rpx;
  191. text-align : center;
  192. line-height : 160rpx;
  193. font-size : 70rpx;
  194. color : #fff;
  195. background-color: rgba(0, 0, 0, 0.5);
  196. /* box-shadow : 5rpx 5rpx 5rpx #f7c3ee; */
  197. box-shadow : 5rpx 5rpx 5rpx #09afff;
  198. }
  199. /* 搜索结果 */
  200. .result_list {
  201. padding-top: 90rpx;
  202. background : #fff;
  203. width : 100%;
  204. }
  205. .r_item {
  206. width : 100%;
  207. position : relative;
  208. padding : 20rpx 20rpx 20rpx 30rpx;
  209. font-size : 28rpx;
  210. color : #333;
  211. box-sizing: border-box;
  212. border-bottom : 1rpx solid #eaeef1;
  213. }
  214. .r_item::after {
  215. /* content : '';
  216. position : absolute;
  217. border-bottom : 1rpx solid #eaeef1;
  218. -webkit-transform: scaleY(0.5);
  219. transform : scaleY(0.5);
  220. bottom : 0;
  221. right : 0;
  222. left : 30rpx; */
  223. }
  224. .r_item_hover {
  225. background-color: #eee !important;
  226. }
  227. .no_data {
  228. margin-top:80px;
  229. height : 500rpx;
  230. align-items: center;
  231. font-size : 26rpx;
  232. color : #999;
  233. display: flex;
  234. flex-direction: column;
  235. }
  236. .no_data image {
  237. width : 250rpx;
  238. height : 162rpx;
  239. margin-bottom: 30rpx;
  240. }
  241. #myMap {
  242. position: fixed;
  243. top: 80rpx;
  244. left: 0;
  245. z-index: 9;
  246. width: 100%;
  247. height: 580rpx;
  248. background-color: #f6f6f6;
  249. }
  250. .input-view{
  251. flex:1;
  252. }
  253. .city-block{
  254. display: flex;
  255. align-items: center;
  256. }
  257. .arrow-img{
  258. width:20rpx;
  259. height:20rpx;
  260. margin:0 8rpx;
  261. transform: rotate(0deg);
  262. transition:all 0.3s;
  263. }
  264. .arrow-up{
  265. transform: rotate(180deg);
  266. transition: all 0.3s;
  267. }
  268. .marker-name{
  269. z-index:99;
  270. top:282rpx;
  271. position: fixed;
  272. height:68rpx;
  273. line-height: 68rpx;
  274. border-radius: 68rpx;
  275. background: #fff;
  276. padding:0 20rpx;
  277. left: 50%;
  278. -webkit-transform: translate(-50%, 0);
  279. transform: translate(-50%, 0);
  280. display: inline-block;
  281. }
  282. .map-icon{
  283. position: fixed;
  284. z-index:99;
  285. top:350rpx;
  286. width:70rpx;
  287. height:70rpx;
  288. left:340rpx;
  289. }
  290. .poi-list{
  291. position: fixed;
  292. background: #ffffff;
  293. z-index:9999;
  294. top:600rpx;
  295. width:100%;
  296. left:0;
  297. height: 1000rpx;
  298. }
  299. .poi-item{
  300. display: flex;
  301. padding:20rpx;
  302. border-bottom:1rpx solid #eee;
  303. align-items: center;
  304. }
  305. .poi-left{
  306. flex:1;
  307. display: flex;
  308. flex-direction: column;
  309. }
  310. .poi-name{
  311. font-size: 28rpx;
  312. color: #333;
  313. margin-bottom:12rpx;
  314. }
  315. .poi-address{
  316. font-size: 24rpx;
  317. color:#777;
  318. }
  319. .poi-right{
  320. margin-left:40rpx;
  321. }
  322. .hot_city{
  323. position: relative;
  324. z-index:9999;
  325. background: #f2f5f7;
  326. }
  327. .all_city{
  328. }
  329. .sy_container{
  330. position: relative;
  331. z-index:9999;
  332. }
  333. .result_list{
  334. position: relative;
  335. z-index:8888;
  336. min-height: 700rpx;
  337. }