index.less 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* nova-werun/pages/home/sport/sport-home/index.wxss */
  2. .all{
  3. width: 100vw;
  4. padding-left: 40rpx;
  5. padding-right: 40rpx;
  6. padding-top: 20rpx;
  7. .tab{
  8. font-size: 40rpx;
  9. }
  10. .textbox{
  11. width: 100%;
  12. height: 80rpx;
  13. border-radius: 40rpx;
  14. border: solid black 1px;
  15. display: flex;
  16. align-items: center;
  17. margin-top: 40rpx;
  18. .text{
  19. font-size: 30rpx;
  20. margin-left: 20rpx;
  21. }
  22. .number{
  23. font-size: 32rpx;
  24. margin-left: auto;
  25. margin-right: 20rpx;
  26. }
  27. }
  28. .mapbox{
  29. width: 100%;
  30. height: 1100rpx;
  31. border-radius: 15rpx;
  32. border: solid black 1px;
  33. position: relative;
  34. margin-top: 30rpx;
  35. margin-bottom: 40rpx;
  36. .map{
  37. width: 100%;
  38. height: 100%;
  39. }
  40. .button{
  41. width: 150rpx;
  42. height: 150rpx;
  43. border-radius: 50%;
  44. display: flex;
  45. justify-content: center;
  46. align-items: center;
  47. font-size: 40rpx;
  48. background-color: orange;
  49. color: white;
  50. position: absolute;
  51. left: 38%;
  52. bottom: 100rpx;
  53. }
  54. }
  55. }