index.less 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. /* nova-werun/components/circle-card/index.wxss */
  2. .trends-one{
  3. width: 100%;
  4. margin-bottom: 20rpx;
  5. border-bottom: grey solid 1px;
  6. padding-left: 30rpx;
  7. padding-right: 20rpx;
  8. .namebax{
  9. width: 100%;
  10. height: 100rpx;
  11. display: flex;
  12. align-items: center;
  13. image{
  14. width: 80rpx;
  15. height: 80rpx;
  16. border-radius: 50%;
  17. }
  18. .name{
  19. margin-left: 10rpx;
  20. font-size: 34rpx;
  21. font-weight: 600;
  22. }
  23. }
  24. .text{
  25. width: 92%;
  26. padding-left: 90rpx;
  27. font-size: 34rpx;
  28. }
  29. .picture{
  30. width: 92%;
  31. padding-left: 90rpx;
  32. display: flex;
  33. flex-wrap: wrap;
  34. margin-top: 30rpx;
  35. .image{
  36. width: 175rpx;
  37. height: 175rpx;
  38. margin-right: 10rpx;
  39. margin-bottom: 10rpx;
  40. }
  41. .image:nth-child(3n) {
  42. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  43. }
  44. }
  45. .picture5 {
  46. width: 92%;
  47. padding-left: 90rpx;
  48. display: flex;
  49. flex-wrap: wrap;
  50. margin-top: 30rpx;
  51. .image {
  52. width: 175rpx;
  53. height: 175rpx;
  54. }
  55. .image-wrapper {
  56. margin-right: 10rpx;
  57. position: relative;
  58. }
  59. .image-wrapper:nth-of-type(3n) {
  60. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  61. }
  62. .more-images {
  63. position: absolute;
  64. bottom: 10rpx;
  65. right: 0rpx;
  66. background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
  67. color: white;
  68. font-size: 26px;
  69. width: 175rpx;
  70. height: 175rpx;
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. }
  75. }
  76. .picture2{
  77. width: 92%;
  78. padding-left: 90rpx;
  79. display: flex;
  80. flex-wrap: wrap;
  81. margin-top: 30rpx;
  82. .image{
  83. width: 240rpx;
  84. height: 240rpx;
  85. margin-right: 10rpx;
  86. margin-bottom: 10rpx;
  87. }
  88. }
  89. .picture4{
  90. width: 92%;
  91. padding-left: 90rpx;
  92. display: flex;
  93. flex-wrap: wrap;
  94. margin-top: 30rpx;
  95. .image{
  96. width: 230rpx;
  97. height: 230rpx;
  98. margin-right: 10rpx;
  99. margin-bottom: 10rpx;
  100. object-fit: cover;
  101. }
  102. .image:nth-child(2n) {
  103. margin-right: 0; /* 每行的最后一张图片不需要右边距 */
  104. }
  105. }
  106. .picture3{
  107. width: 92%;
  108. padding-left: 90rpx;
  109. display: flex;
  110. flex-wrap: wrap;
  111. margin-top: 30rpx;
  112. .image{
  113. margin-right: 10rpx;
  114. margin-bottom: 10rpx;
  115. }
  116. .image-portrait {
  117. width: 332rpx; /* 竖屏图片的宽度 */
  118. height: 425rpx;
  119. }
  120. .image-landscape {
  121. width: 442rpx; /* 横屏图片的宽度 */
  122. height: 300rpx;
  123. }
  124. }
  125. .timebox{
  126. width: 100%;
  127. height: 80rpx;
  128. padding-left: 90rpx;
  129. margin-bottom: 20rpx;
  130. display: flex;
  131. align-items: center;
  132. position: relative;
  133. .time-box{
  134. width: 85%;
  135. height: 100%;
  136. display: flex;
  137. align-items: center;
  138. .time{
  139. font-size: 30rpx;
  140. margin-right: 20rpx;
  141. }
  142. }
  143. .functionbox{
  144. width: 280rpx;
  145. height: 80rpx;
  146. background-color: black;
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. position: absolute;
  151. right: 99rpx;
  152. border-radius: 10rpx;
  153. .function{
  154. width: 100%;
  155. display: flex;
  156. color: white;
  157. justify-content: center;
  158. .function1{
  159. width: 48%;
  160. display: flex;
  161. justify-content: center;
  162. color: white;
  163. .text2{
  164. display: flex;
  165. justify-content: center;
  166. align-items: center;
  167. font-size: 28rpx;
  168. margin-left: 12rpx;
  169. }
  170. }
  171. }
  172. }
  173. .point{
  174. display: flex;
  175. align-items: center;
  176. justify-content: center;
  177. width: 70rpx;
  178. height: 40rpx;
  179. border-radius: 10rpx;
  180. background-color: #efefef;
  181. color: #506692;
  182. font-size: 50rpx;
  183. }
  184. }
  185. }