木邻有你前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

172 lines
4.9 KiB

1 month ago
1 month ago
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .activity-detail.data-v-2f6f776c {
  28. min-height: 100vh;
  29. background: #f8f8f8;
  30. padding-bottom: 120rpx;
  31. }
  32. .activity-detail .banner-container.data-v-2f6f776c {
  33. width: 100%;
  34. height: 450rpx;
  35. }
  36. .activity-detail .banner-container .banner-swiper.data-v-2f6f776c {
  37. width: 100%;
  38. height: 100%;
  39. }
  40. .activity-detail .banner-container .banner-swiper .banner-image.data-v-2f6f776c {
  41. width: 100%;
  42. height: 100%;
  43. }
  44. .activity-detail .activity-info.data-v-2f6f776c {
  45. background: #ffffff;
  46. margin: 20rpx;
  47. border-radius: 16rpx;
  48. padding: 30rpx;
  49. }
  50. .activity-detail .activity-info .title-section.data-v-2f6f776c {
  51. display: flex;
  52. align-items: center;
  53. margin-bottom: 30rpx;
  54. }
  55. .activity-detail .activity-info .title-section .activity-badge.data-v-2f6f776c {
  56. background: #218CDD;
  57. border-radius: 8rpx;
  58. height: 40rpx;
  59. padding: 0 5rpx 10rpx;
  60. line-height: 40rpx;
  61. text-align: center;
  62. margin-right: 16rpx;
  63. }
  64. .activity-detail .activity-info .title-section .activity-badge .badge-text.data-v-2f6f776c {
  65. color: #ffffff;
  66. font-size: 24rpx;
  67. font-weight: 500;
  68. }
  69. .activity-detail .activity-info .title-section .activity-title.data-v-2f6f776c {
  70. font-size: 36rpx;
  71. font-weight: bold;
  72. color: #333333;
  73. flex: 1;
  74. }
  75. .activity-detail .activity-info .info-section.data-v-2f6f776c {
  76. background: #F3F7F8;
  77. margin-bottom: 40rpx;
  78. border: 2rpx dashed #F3F7F8;
  79. }
  80. .activity-detail .activity-info .info-section .info-item.data-v-2f6f776c {
  81. display: flex;
  82. align-items: center;
  83. margin-bottom: 20rpx;
  84. }
  85. .activity-detail .activity-info .info-section .info-item.data-v-2f6f776c:last-child {
  86. margin-bottom: 0;
  87. }
  88. .activity-detail .activity-info .info-section .info-item .info-label.data-v-2f6f776c {
  89. font-size: 28rpx;
  90. color: #999999;
  91. margin-left: 12rpx;
  92. margin-right: 8rpx;
  93. }
  94. .activity-detail .activity-info .info-section .info-item .info-value.data-v-2f6f776c {
  95. font-size: 28rpx;
  96. color: #999999;
  97. flex: 1;
  98. }
  99. .activity-detail .activity-info .detail-section.data-v-2f6f776c {
  100. margin-bottom: 40rpx;
  101. }
  102. .activity-detail .activity-info .detail-section .section-title.data-v-2f6f776c {
  103. margin-bottom: 20rpx;
  104. }
  105. .activity-detail .activity-info .detail-section .section-title .title-text.data-v-2f6f776c {
  106. font-size: 32rpx;
  107. font-weight: bold;
  108. color: #333333;
  109. }
  110. .activity-detail .activity-info .detail-section .detail-content .detail-text.data-v-2f6f776c {
  111. display: block;
  112. font-size: 28rpx;
  113. color: #666666;
  114. line-height: 1.6;
  115. margin-bottom: 16rpx;
  116. }
  117. .activity-detail .activity-info .detail-section .detail-content .detail-text.data-v-2f6f776c:last-child {
  118. margin-bottom: 0;
  119. }
  120. .activity-detail .activity-info .gallery-section .section-title.data-v-2f6f776c {
  121. margin-bottom: 20rpx;
  122. }
  123. .activity-detail .activity-info .gallery-section .section-title .title-text.data-v-2f6f776c {
  124. font-size: 32rpx;
  125. font-weight: bold;
  126. color: #333333;
  127. }
  128. .activity-detail .activity-info .gallery-section .gallery-grid.data-v-2f6f776c {
  129. display: grid;
  130. grid-template-columns: repeat(2, 1fr);
  131. gap: 16rpx;
  132. }
  133. .activity-detail .activity-info .gallery-section .gallery-grid .gallery-image.data-v-2f6f776c {
  134. width: 100%;
  135. height: 200rpx;
  136. border-radius: 12rpx;
  137. }
  138. .activity-detail .bottom-action.data-v-2f6f776c {
  139. position: fixed;
  140. bottom: 0;
  141. left: 0;
  142. right: 0;
  143. background: #ffffff;
  144. padding: 20rpx 30rpx;
  145. border-top: 1rpx solid #eeeeee;
  146. display: flex;
  147. align-items: center;
  148. justify-content: space-between;
  149. z-index: 100;
  150. }
  151. .activity-detail .bottom-action .action-left.data-v-2f6f776c {
  152. display: flex;
  153. align-items: center;
  154. gap: 100rpx;
  155. }
  156. .activity-detail .bottom-action .action-left .action-item.data-v-2f6f776c {
  157. display: flex;
  158. flex-direction: column;
  159. align-items: center;
  160. gap: 8rpx;
  161. }
  162. .activity-detail .bottom-action .action-left .action-item .action-text.data-v-2f6f776c {
  163. font-size: 22rpx;
  164. color: #000;
  165. }
  166. .activity-detail .bottom-action .action-left .action-item .participants-count.data-v-2f6f776c {
  167. font-size: 24rpx;
  168. color: #333333;
  169. }
  170. .activity-detail .bottom-action .action-right.data-v-2f6f776c {
  171. flex-shrink: 0;
  172. }