木邻有你前端代码仓库
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.

174 lines
5.0 KiB

  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. .click-animation.data-v-6425a31c:active {
  16. -webkit-transform: scale(0.98);
  17. transform: scale(0.98);
  18. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.12);
  19. }
  20. /* 行为相关颜色 */
  21. /* 文字基本颜色 */
  22. /* 背景颜色 */
  23. /* 边框颜色 */
  24. /* 尺寸变量 */
  25. /* 文字尺寸 */
  26. /* 图片尺寸 */
  27. /* Border Radius */
  28. /* 水平间距 */
  29. /* 垂直间距 */
  30. /* 透明度 */
  31. /* 文章场景相关 */
  32. .activity-detail.data-v-6425a31c {
  33. min-height: 100vh;
  34. background: #f8f8f8;
  35. padding-bottom: 120rpx;
  36. }
  37. .activity-detail .banner-container.data-v-6425a31c {
  38. width: 100%;
  39. height: 450rpx;
  40. }
  41. .activity-detail .banner-container .banner-swiper.data-v-6425a31c {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. .activity-detail .banner-container .banner-swiper .banner-image.data-v-6425a31c {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .activity-detail .activity-info.data-v-6425a31c {
  50. background: #ffffff;
  51. margin: 20rpx;
  52. border-radius: 16rpx;
  53. padding: 30rpx;
  54. }
  55. .activity-detail .activity-info .title-section.data-v-6425a31c {
  56. display: flex;
  57. align-items: center;
  58. margin-bottom: 30rpx;
  59. }
  60. .activity-detail .activity-info .title-section .activity-badge.data-v-6425a31c {
  61. background: #218CDD;
  62. border-radius: 8rpx;
  63. padding: 4rpx 10rpx;
  64. margin-right: 16rpx;
  65. }
  66. .activity-detail .activity-info .title-section .activity-badge .badge-text.data-v-6425a31c {
  67. color: #ffffff;
  68. font-size: 24rpx;
  69. font-weight: 500;
  70. }
  71. .activity-detail .activity-info .title-section .activity-title.data-v-6425a31c {
  72. font-size: 36rpx;
  73. font-weight: bold;
  74. color: #333333;
  75. flex: 1;
  76. }
  77. .activity-detail .activity-info .info-section.data-v-6425a31c {
  78. background: #F3F7F8;
  79. margin-bottom: 40rpx;
  80. border: 2rpx dashed #F3F7F8;
  81. }
  82. .activity-detail .activity-info .info-section .info-item.data-v-6425a31c {
  83. display: flex;
  84. align-items: center;
  85. margin-bottom: 20rpx;
  86. }
  87. .activity-detail .activity-info .info-section .info-item.data-v-6425a31c:last-child {
  88. margin-bottom: 0;
  89. }
  90. .activity-detail .activity-info .info-section .info-item .info-label.data-v-6425a31c {
  91. font-size: 28rpx;
  92. color: #999999;
  93. margin-left: 12rpx;
  94. margin-right: 8rpx;
  95. }
  96. .activity-detail .activity-info .info-section .info-item .info-value.data-v-6425a31c {
  97. font-size: 28rpx;
  98. color: #999999;
  99. flex: 1;
  100. }
  101. .activity-detail .activity-info .detail-section.data-v-6425a31c {
  102. margin-bottom: 40rpx;
  103. }
  104. .activity-detail .activity-info .detail-section .section-title.data-v-6425a31c {
  105. margin-bottom: 20rpx;
  106. }
  107. .activity-detail .activity-info .detail-section .section-title .title-text.data-v-6425a31c {
  108. font-size: 32rpx;
  109. font-weight: bold;
  110. color: #333333;
  111. }
  112. .activity-detail .activity-info .detail-section .detail-content .detail-text.data-v-6425a31c {
  113. display: block;
  114. font-size: 28rpx;
  115. color: #666666;
  116. line-height: 1.6;
  117. margin-bottom: 16rpx;
  118. }
  119. .activity-detail .activity-info .detail-section .detail-content .detail-text.data-v-6425a31c:last-child {
  120. margin-bottom: 0;
  121. }
  122. .activity-detail .activity-info .gallery-section .section-title.data-v-6425a31c {
  123. margin-bottom: 20rpx;
  124. }
  125. .activity-detail .activity-info .gallery-section .section-title .title-text.data-v-6425a31c {
  126. font-size: 32rpx;
  127. font-weight: bold;
  128. color: #333333;
  129. }
  130. .activity-detail .activity-info .gallery-section .gallery-grid.data-v-6425a31c {
  131. display: grid;
  132. grid-template-columns: repeat(2, 1fr);
  133. gap: 16rpx;
  134. }
  135. .activity-detail .activity-info .gallery-section .gallery-grid .gallery-image.data-v-6425a31c {
  136. width: 100%;
  137. height: 200rpx;
  138. border-radius: 12rpx;
  139. }
  140. .activity-detail .bottom-action.data-v-6425a31c {
  141. position: fixed;
  142. bottom: 0;
  143. left: 0;
  144. right: 0;
  145. background: #ffffff;
  146. padding: 20rpx 30rpx;
  147. border-top: 1rpx solid #eeeeee;
  148. display: flex;
  149. align-items: center;
  150. justify-content: space-between;
  151. z-index: 100;
  152. }
  153. .activity-detail .bottom-action .action-left.data-v-6425a31c {
  154. display: flex;
  155. align-items: center;
  156. gap: 100rpx;
  157. }
  158. .activity-detail .bottom-action .action-left .action-item.data-v-6425a31c {
  159. display: flex;
  160. flex-direction: column;
  161. align-items: center;
  162. gap: 8rpx;
  163. }
  164. .activity-detail .bottom-action .action-left .action-item .action-text.data-v-6425a31c {
  165. font-size: 22rpx;
  166. color: #000;
  167. }
  168. .activity-detail .bottom-action .action-left .action-item .participants-count.data-v-6425a31c {
  169. font-size: 24rpx;
  170. color: #333333;
  171. }
  172. .activity-detail .bottom-action .action-right.data-v-6425a31c {
  173. flex-shrink: 0;
  174. }