index.less 3.9 KB

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