index.less 706 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .li{
  2. display: flex;
  3. justify-content: space-between;
  4. align-items: center;
  5. padding: 20rpx;
  6. margin: 20rpx;
  7. border-bottom: 2rpx solid whitesmoke;
  8. .left{
  9. .top{
  10. font-size: 30rpx;
  11. font-weight: bold;
  12. text{
  13. margin-right: 20rpx;
  14. }
  15. }
  16. .under{
  17. font-size: 28rpx;
  18. text{
  19. margin-right: 20rpx;
  20. }
  21. }
  22. }
  23. .right{
  24. font-size: 28rpx;
  25. width: 200rpx;
  26. text-align: center;
  27. }
  28. }
  29. .mapBox {
  30. width: 100vw;
  31. height: 70vh;
  32. background: white;
  33. .map{
  34. width: 750rpx;
  35. height:calc( 70vh - 150rpx) ;
  36. }
  37. }