index.less 5.1 KB

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