99 lines
1.9 KiB
Plaintext
99 lines
1.9 KiB
Plaintext
/* pages/map.wxss */
|
|
.mapContent{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: center;
|
|
}
|
|
.mapContent .mapTop{
|
|
width: 100%;
|
|
height: 900rpx;
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
}
|
|
.inputVal{
|
|
width: 100%;
|
|
height: 100rpx;
|
|
background-color: rgb(54, 105, 248);
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.weui-input{
|
|
width: 450rpx;
|
|
height: 60rpx;
|
|
border-radius: 40rpx;
|
|
background-color: rgb(156, 133, 252);
|
|
padding-left: 40rpx;
|
|
color: #ffffff;
|
|
font-size: 14px;
|
|
box-sizing: border-box;
|
|
}
|
|
.phcolor{
|
|
color: #ffffff;
|
|
font-size: 14px;
|
|
letter-spacing: 1rpx;
|
|
text-align: center;
|
|
}
|
|
.mapContent .info{
|
|
width: 100%;
|
|
height: calc(100% - 900rpx);
|
|
padding: 20rpx 15rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.mapContent .info .top{
|
|
width: 100%;
|
|
height: 170rpx;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-between;
|
|
}
|
|
.mapContent .info .top .image{
|
|
width: 280rpx;
|
|
height: 100%;
|
|
background-color: blue;
|
|
}
|
|
.mapContent .info .top .image image{
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.mapContent .info .top .title{
|
|
flex: 1;
|
|
height: 100%;
|
|
padding-left: 10rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.mapContent .info .top .title .text{
|
|
width: 100%;
|
|
height: 20px;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.mapContent .info .top .title .bottom{
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
}
|
|
.mapContent .info .top .title .bottom .btn{
|
|
display: inline-block;
|
|
color: rgb(156, 133, 252);
|
|
margin-right: 10rpx;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
border: 1px solid rgb(156, 133, 252);
|
|
border-radius: 10rpx;
|
|
height: 40rpx;
|
|
line-height: 40rpx;
|
|
/* width: calc(fit-content + 10rpx) ; */
|
|
}
|
|
.listPos{
|
|
width: 100%;
|
|
height: auto;
|
|
position: fixed;
|
|
top: 100rpx;
|
|
left: 0;
|
|
background-color: #ffffff;
|
|
} |