index.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. background-color: #84b4f1;
  8. .tab{
  9. font-size: 40rpx;
  10. background-color: #84b4f1;
  11. }
  12. .textbox{
  13. width: 100%;
  14. height: 80rpx;
  15. border-radius: 40rpx;
  16. border: solid black 1px;
  17. display: flex;
  18. align-items: center;
  19. margin-top: 40rpx;
  20. background-color: white;
  21. .text{
  22. font-size: 30rpx;
  23. margin-left: 20rpx;
  24. }
  25. .number{
  26. font-size: 32rpx;
  27. margin-left: auto;
  28. margin-right: 20rpx;
  29. }
  30. }
  31. .mapbox{
  32. width: 100%;
  33. height: 1100rpx;
  34. border-radius: 15rpx;
  35. position: relative;
  36. margin-top: 30rpx;
  37. margin-bottom: 40rpx;
  38. .map{
  39. width: 100%;
  40. height: 100%;
  41. border-radius: 15rpx;
  42. overflow: hidden;
  43. }
  44. .button{
  45. width: 150rpx;
  46. height: 150rpx;
  47. border-radius: 50%;
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. font-size: 40rpx;
  52. background-color: #4F9AF7;
  53. color: white;
  54. position: absolute;
  55. left: 38%;
  56. bottom: 100rpx;
  57. }
  58. }
  59. }