123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- page {
- width: 100%;
- height: 100%;
- }
- .box {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- map {
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- map .coverImage {
- position: absolute;
- top: 46.5%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .search {
- width: 95%;
- display: flex;
- z-index: 999;
- align-items: center;
- background: #EDEDED;
- height: 70rpx;
- justify-content: center;
- border-radius: 6rpx;
- margin: 20rpx auto;
- position: absolute;
- top: 0rpx;
- left: 2.5%;
- }
- .search .place {
- font-size: 26rpx;
- color: #707070;
- }
- .search input {
- width: 75%;
- height: 100%;
- font-size: 26rpx;
- color: #707070;
- }
- scroll-view{
- height: 900rpx;
- padding-bottom: 100rpx;
- padding-top: 90rpx;
- }
- .list {
- width: 100%;
- z-index: 999;
- background: #fff;
- position: fixed;
- bottom: 0rpx;
- /* overflow-y: scroll; */
- max-height: 900rpx;
- }
- .list image {
- width: 32rpx;
- height: 32rpx;
- margin-top: 16rpx;
- }
- .city_list {
- display: flex;
- align-items: center;
- width: 85%;
- font-size: 26rpx;
- justify-content: space-between;
- padding: 16rpx 0rpx;
- border-bottom: 2rpx solid #E8E8E8;
- margin: 0 auto;
- }
- .city_list view {
- display: flex;
- flex-direction: column;
- overflow: hidden;
- width: 85%;
- }
- .city_list view .title1 {
- font-size: 21rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: #989898;
- padding-top: 8rpx;
- }
- .city_list view .title {
- font-size: 25rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- color: black;
- padding-top: 14rpx;
- }
- .city_list:last-of-type {
- border: none;
- }
- .parking {
- position: fixed;
- bottom: 0rpx;
- width: 100%;
- left: 0rpx;
- height: 270rpx;
- background: #fff;
- z-index: 999;
- -webkit-transform: translateY(100%);
- transform: translateY(100%);
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .background {
- width: 100%;
- height: 100%;
- position: fixed;
- z-index: 888;
- background: #989898;
- opacity: 0.5;
- }
- .bottom{
- width:100%;
- height:100rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size:32rpx;
- font-family:PingFang SC;
- font-weight:500;
- color:rgba(255,255,255,1);
- position: fixed;
- bottom: 0rpx;
- left: 0;
- z-index: 999;
- background: white;
- }
- .bottom view{
- width: 90%;
- height: 88rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background:rgba(24,213,185,1);
- border-radius:10rpx;
- }
- .coverImage {
- position: absolute;
- top: 50%;
- left: 50%;
- z-index: 999;
- }
- .circle {
- width: 84rpx;
- display: flex;
- justify-content: center;
- align-items: flex-end;
- /* margin-bottom: 30rpx; */
- position: fixed;
- z-index: 1000;
- left: 30rpx;
- }
- .circle image {
- width: 84rpx;
- height: 84rpx;
- }
|