index.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* nova-werun/components/home/index.wxss */
  2. .all{
  3. width: 100vw;
  4. overflow-y: scroll;
  5. .clockinbox{
  6. width: 100%;
  7. height: 650rpx;
  8. background-color: skyblue;
  9. display:flex;
  10. flex-direction: column;
  11. align-items: center;
  12. border-top: black solid 2px;
  13. .addressbox{
  14. width: 100%;
  15. height: 52rpx;
  16. font-size: 30rpx;
  17. display: flex;
  18. margin-top: 16rpx;
  19. align-items: center;
  20. .addressbox-text{
  21. width: 80%;
  22. white-space: nowrap;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. }
  26. }
  27. .runbox{
  28. width: 350rpx;
  29. height: 350rpx;
  30. border-radius: 50%;
  31. border: solid black 5rpx;
  32. margin-top: 10rpx;
  33. display: flex;
  34. align-items: center;
  35. justify-content: center;
  36. .run{
  37. width: 320rpx;
  38. height: 320rpx;
  39. border-radius: 50%;
  40. border: solid black 5rpx;
  41. display: flex;
  42. align-items: center;
  43. flex-direction: column;
  44. .tody-steps{
  45. width: 100%;
  46. font-size: 28rpx;
  47. display: flex;
  48. justify-content: center;
  49. margin-top: 50rpx;
  50. font-weight: 600;
  51. }
  52. .step-num{
  53. font-size: 50rpx;
  54. font-weight: 600;
  55. margin-top: 20rpx;
  56. }
  57. .objective{
  58. width: 100%;
  59. height: 50rpx;
  60. align-items: center;
  61. justify-content: center;
  62. display: flex;
  63. margin-top: 20rpx;
  64. image{
  65. width: 32rpx;
  66. height: 32rpx;
  67. margin-right: 10rpx;
  68. }
  69. .ob-num{
  70. font-size: 28rpx;
  71. }
  72. }
  73. }
  74. }
  75. .inspire{
  76. width: 100%;
  77. height: 40rpx;
  78. display: flex;
  79. justify-content: center;
  80. align-items: center;
  81. font-size: 30rpx;
  82. font-weight: 600;
  83. margin-top: 30rpx;
  84. }
  85. .today-check{
  86. width: 195rpx;
  87. height: 100rpx;
  88. display: flex;
  89. justify-content: center;
  90. align-items: center;
  91. font-size: 35rpx;
  92. margin-top: 30rpx;
  93. border-radius: 50rpx;
  94. font-weight: 600;
  95. border: black solid 2px;
  96. }
  97. }
  98. .selectbox{
  99. width: 100%;
  100. height: 50%;
  101. margin-top: 3%;
  102. border-top: black solid 2px;
  103. background-color: white;
  104. padding: 10rpx;
  105. .a{
  106. border: black solid 2px;
  107. border-radius: 40rpx;
  108. height: 60rpx;
  109. }
  110. .typebox{
  111. width: 100%;
  112. height: 100%;
  113. padding-left: 10rpx;
  114. padding-right: 10rpx;
  115. margin-bottom: 15rpx;
  116. .container{
  117. width: 100%;
  118. height: 450rpx;
  119. display: flex;
  120. flex-wrap: wrap;
  121. padding-top: 20rpx;
  122. font-weight: 600;
  123. .column{
  124. width: 25%; /* 每列占容器的25% */
  125. height: 200rpx;
  126. display: flex;
  127. flex-direction: column; /* 使内容垂直排列 */
  128. align-items: center; /* 水平居中对齐 */
  129. margin-bottom: 10px; /* 列之间的间距 */
  130. justify-content: center;
  131. margin-bottom: -10rpx;
  132. image{
  133. width: 100rpx;
  134. height: 100rpx;
  135. }
  136. }
  137. }
  138. }
  139. }
  140. .activitybox{
  141. width: 100%;
  142. height: 300rpx;
  143. background-color: aqua;
  144. }
  145. }