index.wxss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. /* 竖直渐变 */
  9. }
  10. .all .tab-bar {
  11. display: flex;
  12. justify-content: space-around;
  13. }
  14. .all .tab-item {
  15. padding: 10rpx 0;
  16. text-align: center;
  17. position: relative;
  18. color: black;
  19. font-size: 32rpx;
  20. }
  21. .all .tab-item.active {
  22. position: relative;
  23. color: #0178EE;
  24. font-size: 32rpx;
  25. font-family: 'NotoSans-Bold-5', sans-serif;
  26. }
  27. .all .tab-item.active::after {
  28. content: "";
  29. width: 64rpx;
  30. position: absolute;
  31. left: calc(50% - 32rpx);
  32. right: calc(50% - 32rpx);
  33. bottom: 0;
  34. height: 2rpx;
  35. background-color: #0178EE;
  36. border-radius: 4rpx;
  37. }
  38. .all .textbox {
  39. width: 100%;
  40. height: 80rpx;
  41. border-radius: 40rpx;
  42. display: flex;
  43. align-items: center;
  44. margin-top: 40rpx;
  45. background-color: white;
  46. }
  47. .all .textbox .text {
  48. font-size: 30rpx;
  49. margin-left: 20rpx;
  50. }
  51. .all .textbox .number {
  52. font-size: 32rpx;
  53. margin-left: auto;
  54. margin-right: 20rpx;
  55. }
  56. .all .mapbox {
  57. width: 100%;
  58. height: 60vh;
  59. border-radius: 15rpx;
  60. position: relative;
  61. margin-top: 30rpx;
  62. margin-bottom: 40rpx;
  63. }
  64. .all .mapbox .map {
  65. width: 100%;
  66. height: 100%;
  67. border-radius: 15rpx;
  68. overflow: hidden;
  69. }
  70. .all .mapbox .button {
  71. width: 150rpx;
  72. height: 150rpx;
  73. border-radius: 50%;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. font-size: 40rpx;
  78. background-color: #4F9AF7;
  79. color: white;
  80. position: absolute;
  81. left: 38%;
  82. bottom: 100rpx;
  83. }
  84. .model {
  85. width: 80vw;
  86. height: 300rpx;
  87. }
  88. .model .content {
  89. width: 100%;
  90. padding: 40rpx;
  91. background-size: cover;
  92. }
  93. .model .content .close {
  94. height: 50rpx;
  95. width: 100%;
  96. display: flex;
  97. }
  98. .model .content .close .h2 {
  99. margin: auto;
  100. text-align: center;
  101. font-size: 40rpx;
  102. font-weight: bold;
  103. }
  104. .model .content .close van-icon {
  105. color: #807d7d;
  106. float: right;
  107. }
  108. .model .content .btnBox {
  109. margin-top: 50rpx;
  110. display: flex;
  111. }
  112. .model .content .btnBox .btn {
  113. font-size: 35rpx;
  114. width: 40%;
  115. background: #4F9AF7;
  116. margin: auto;
  117. color: white;
  118. padding: 20rpx;
  119. text-align: center;
  120. border-radius: 100rpx;
  121. }