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

177 lines
5.1 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-2f6f776c: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-2f6f776c {
  33. min-height: 100vh;
  34. background: #f8f8f8;
  35. padding-bottom: 120rpx;
  36. }
  37. .activity-detail .banner-container.data-v-2f6f776c {
  38. width: 100%;
  39. height: 450rpx;
  40. }
  41. .activity-detail .banner-container .banner-swiper.data-v-2f6f776c {
  42. width: 100%;
  43. height: 100%;
  44. }
  45. .activity-detail .banner-container .banner-swiper .banner-image.data-v-2f6f776c {
  46. width: 100%;
  47. height: 100%;
  48. }
  49. .activity-detail .activity-info.data-v-2f6f776c {
  50. background: #ffffff;
  51. margin: 20rpx;
  52. border-radius: 16rpx;
  53. padding: 30rpx;
  54. }
  55. .activity-detail .activity-info .title-section.data-v-2f6f776c {
  56. display: flex;
  57. align-items: center;
  58. margin-bottom: 30rpx;
  59. }
  60. .activity-detail .activity-info .title-section .activity-badge.data-v-2f6f776c {
  61. background: #218CDD;
  62. border-radius: 8rpx;
  63. height: 40rpx;
  64. padding: 0 5rpx 10rpx;
  65. line-height: 40rpx;
  66. text-align: center;
  67. margin-right: 16rpx;
  68. }
  69. .activity-detail .activity-info .title-section .activity-badge .badge-text.data-v-2f6f776c {
  70. color: #ffffff;
  71. font-size: 24rpx;
  72. font-weight: 500;
  73. }
  74. .activity-detail .activity-info .title-section .activity-title.data-v-2f6f776c {
  75. font-size: 36rpx;
  76. font-weight: bold;
  77. color: #333333;
  78. flex: 1;
  79. }
  80. .activity-detail .activity-info .info-section.data-v-2f6f776c {
  81. background: #F3F7F8;
  82. margin-bottom: 40rpx;
  83. border: 2rpx dashed #F3F7F8;
  84. }
  85. .activity-detail .activity-info .info-section .info-item.data-v-2f6f776c {
  86. display: flex;
  87. align-items: center;
  88. margin-bottom: 20rpx;
  89. }
  90. .activity-detail .activity-info .info-section .info-item.data-v-2f6f776c:last-child {
  91. margin-bottom: 0;
  92. }
  93. .activity-detail .activity-info .info-section .info-item .info-label.data-v-2f6f776c {
  94. font-size: 28rpx;
  95. color: #999999;
  96. margin-left: 12rpx;
  97. margin-right: 8rpx;
  98. }
  99. .activity-detail .activity-info .info-section .info-item .info-value.data-v-2f6f776c {
  100. font-size: 28rpx;
  101. color: #999999;
  102. flex: 1;
  103. }
  104. .activity-detail .activity-info .detail-section.data-v-2f6f776c {
  105. margin-bottom: 40rpx;
  106. }
  107. .activity-detail .activity-info .detail-section .section-title.data-v-2f6f776c {
  108. margin-bottom: 20rpx;
  109. }
  110. .activity-detail .activity-info .detail-section .section-title .title-text.data-v-2f6f776c {
  111. font-size: 32rpx;
  112. font-weight: bold;
  113. color: #333333;
  114. }
  115. .activity-detail .activity-info .detail-section .detail-content .detail-text.data-v-2f6f776c {
  116. display: block;
  117. font-size: 28rpx;
  118. color: #666666;
  119. line-height: 1.6;
  120. margin-bottom: 16rpx;
  121. }
  122. .activity-detail .activity-info .detail-section .detail-content .detail-text.data-v-2f6f776c:last-child {
  123. margin-bottom: 0;
  124. }
  125. .activity-detail .activity-info .gallery-section .section-title.data-v-2f6f776c {
  126. margin-bottom: 20rpx;
  127. }
  128. .activity-detail .activity-info .gallery-section .section-title .title-text.data-v-2f6f776c {
  129. font-size: 32rpx;
  130. font-weight: bold;
  131. color: #333333;
  132. }
  133. .activity-detail .activity-info .gallery-section .gallery-grid.data-v-2f6f776c {
  134. display: grid;
  135. grid-template-columns: repeat(2, 1fr);
  136. gap: 16rpx;
  137. }
  138. .activity-detail .activity-info .gallery-section .gallery-grid .gallery-image.data-v-2f6f776c {
  139. width: 100%;
  140. height: 200rpx;
  141. border-radius: 12rpx;
  142. }
  143. .activity-detail .bottom-action.data-v-2f6f776c {
  144. position: fixed;
  145. bottom: 0;
  146. left: 0;
  147. right: 0;
  148. background: #ffffff;
  149. padding: 20rpx 30rpx;
  150. border-top: 1rpx solid #eeeeee;
  151. display: flex;
  152. align-items: center;
  153. justify-content: space-between;
  154. z-index: 100;
  155. }
  156. .activity-detail .bottom-action .action-left.data-v-2f6f776c {
  157. display: flex;
  158. align-items: center;
  159. gap: 100rpx;
  160. }
  161. .activity-detail .bottom-action .action-left .action-item.data-v-2f6f776c {
  162. display: flex;
  163. flex-direction: column;
  164. align-items: center;
  165. gap: 8rpx;
  166. }
  167. .activity-detail .bottom-action .action-left .action-item .action-text.data-v-2f6f776c {
  168. font-size: 22rpx;
  169. color: #000;
  170. }
  171. .activity-detail .bottom-action .action-left .action-item .participants-count.data-v-2f6f776c {
  172. font-size: 24rpx;
  173. color: #333333;
  174. }
  175. .activity-detail .bottom-action .action-right.data-v-2f6f776c {
  176. flex-shrink: 0;
  177. }