index.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. .button{
  37. width: 150rpx;
  38. height: 150rpx;
  39. border-radius: 50%;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. font-size: 40rpx;
  44. background-color: orange;
  45. color: white;
  46. position: absolute;
  47. left: 38%;
  48. bottom: 100rpx;
  49. }
  50. }
  51. }