index.less 4.0 KB

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