12345678910111213141516171819202122232425262728293031323334353637 |
- .li{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20rpx;
- margin: 20rpx;
- border-bottom: 2rpx solid whitesmoke;
- .left{
- .top{
- font-size: 30rpx;
- font-weight: bold;
- text{
- margin-right: 20rpx;
- }
- }
- .under{
- font-size: 28rpx;
- text{
- margin-right: 20rpx;
- }
- }
- }
- .right{
- font-size: 28rpx;
- width: 200rpx;
- text-align: center;
- }
- }
- .mapBox {
- width: 100vw;
- height: 70vh;
- background: white;
- .map{
- width: 750rpx;
- height:calc( 70vh - 150rpx) ;
- }
- }
|