index.less 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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: 60vh;
  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. }
  83. .model {
  84. width: 80vw;
  85. height: 300rpx;
  86. .content {
  87. width: 100%;
  88. padding: 40rpx;
  89. background-size: cover;
  90. .close {
  91. height: 50rpx;
  92. width: 100%;
  93. display: flex;
  94. .h2 {
  95. margin: auto;
  96. text-align: center;
  97. font-size: 40rpx;
  98. font-weight: bold;
  99. }
  100. van-icon {
  101. color: rgb(128, 125, 125);
  102. float: right;
  103. }
  104. }
  105. .btnBox{
  106. margin-top: 50rpx;
  107. display: flex;
  108. .btn{
  109. font-size: 35rpx;
  110. width: 40%;
  111. background: #4F9AF7;
  112. margin: auto;
  113. color:white;
  114. padding: 20rpx;
  115. text-align: center;
  116. border-radius: 100rpx;
  117. }
  118. }
  119. }
  120. }