index.less 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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: linear-gradient(to bottom, #4F9AF7, #FFFFFF); /* 竖直渐变 */
  8. .tab-bar {
  9. display: flex;
  10. justify-content: space-around;
  11. }
  12. .tab-item {
  13. padding: 10rpx 0;
  14. text-align: center;
  15. position: relative;
  16. color: black;
  17. font-size: 32rpx;
  18. }
  19. .tab-item.active {
  20. position: relative;
  21. color: #0178EE;
  22. font-size: 32rpx;
  23. font-family: 'NotoSans-Bold-5', sans-serif;
  24. }
  25. .tab-item.active::after {
  26. content: "";
  27. width: 64rpx;
  28. position: absolute;
  29. left: calc(50% - 32rpx);
  30. right: calc(50% - 32rpx);
  31. bottom: 0;
  32. height: 2rpx;
  33. background-color: #0178EE;
  34. border-radius: 4rpx;
  35. }
  36. .textbox{
  37. width: 100%;
  38. height: 80rpx;
  39. border-radius: 40rpx;
  40. display: flex;
  41. align-items: center;
  42. margin-top: 40rpx;
  43. background-color: white;
  44. .text{
  45. font-size: 30rpx;
  46. margin-left: 20rpx;
  47. }
  48. .number{
  49. font-size: 32rpx;
  50. margin-left: auto;
  51. margin-right: 20rpx;
  52. }
  53. }
  54. .mapbox{
  55. width: 100%;
  56. height: 1100rpx;
  57. border-radius: 15rpx;
  58. position: relative;
  59. margin-top: 30rpx;
  60. margin-bottom: 40rpx;
  61. .map{
  62. width: 100%;
  63. height: 100%;
  64. border-radius: 15rpx;
  65. overflow: hidden;
  66. }
  67. .button{
  68. width: 150rpx;
  69. height: 150rpx;
  70. border-radius: 50%;
  71. display: flex;
  72. justify-content: center;
  73. align-items: center;
  74. font-size: 40rpx;
  75. background-color: #4F9AF7;
  76. color: white;
  77. position: absolute;
  78. left: 38%;
  79. bottom: 100rpx;
  80. }
  81. }
  82. }