You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
2.4 KiB
149 lines
2.4 KiB
/* pages/livingCircle/livingCircle.wxss */
|
|
.map-view-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
background: #F8F8F7;
|
|
width: 100%;
|
|
}
|
|
|
|
.map-view-content {
|
|
width: 100%;
|
|
background: #FFF;
|
|
padding: 20px 0 20px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#map {
|
|
width: 100%;
|
|
height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
.zoom-in, .zoom-out {
|
|
position: absolute;
|
|
width: 40px;
|
|
height: 40px;
|
|
color: #3fc971;
|
|
background-color: white;
|
|
border: 1px solid #3fc971;
|
|
text-align: center;
|
|
line-height: 40px;
|
|
font-size: 30px;
|
|
box-sizing: border-box;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.zoom-in {
|
|
right: 10px;
|
|
bottom: 88px;
|
|
}
|
|
|
|
.zoom-out {
|
|
right: 10px;
|
|
bottom: 50px;
|
|
}
|
|
|
|
.van-search__content {
|
|
border: solid #44c9c7 2rpx;
|
|
}
|
|
|
|
.movable-area {
|
|
pointer-events: none;
|
|
z-index: 100;
|
|
width: 100%;
|
|
height: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.movable-area .toCommunity {
|
|
width: 150rpx;
|
|
height: 150rpx;
|
|
}
|
|
|
|
.movable-view {
|
|
pointer-events: auto;
|
|
height: 60rpx;
|
|
width: 180rpx;
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.movable-view .content {
|
|
background-color: #FFF;
|
|
border-radius: 30rpx 0 0 30rpx;
|
|
padding: 16rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.tab {
|
|
background-color: #FFF;
|
|
width: 100%;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.tab .item {
|
|
padding: 10rpx 0;
|
|
box-sizing: border-box;
|
|
color: #666666;
|
|
min-width: 150rpx;
|
|
text-align: center;
|
|
margin-right: 20rpx;
|
|
}
|
|
|
|
.tab .active {
|
|
color: #08b3b3;
|
|
border-bottom: 6rpx solid #08b3b3;
|
|
}
|
|
|
|
.map_item {
|
|
background-color: #ffffff;
|
|
border-radius: 10rpx;
|
|
padding: 20rpx;
|
|
box-sizing: border-box;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.map_item .tag {
|
|
width: fit-content;
|
|
padding: 6rpx 10rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 15rpx 15rpx 15rpx 0;
|
|
margin: 10rpx 0 20rpx 0;
|
|
}
|
|
|
|
.map_item .tag-g {
|
|
color: #009e8d;
|
|
background-color: #dcf4f0;
|
|
}
|
|
|
|
.map_item .tag-r {
|
|
color: #ff6363;
|
|
background-color: #ffefef;
|
|
}
|
|
|
|
.map_item .tag-b {
|
|
color: #5a77ec;
|
|
background-color: #e4e9fc;
|
|
}
|
|
|
|
.map_item .left_image {
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
margin-right: 24rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
.map_item .navigation {
|
|
width: 46rpx;
|
|
height: 46rpx;
|
|
}
|
|
|
|
.ellipsis {
|
|
padding: 0;
|
|
}
|
|
|