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

105 lines
2.7 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-5e624878: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. .page.data-v-5e624878 {
  33. background-color: #f5f5f5;
  34. min-height: 100vh;
  35. padding: 20rpx;
  36. }
  37. .activity-card.data-v-5e624878 {
  38. display: flex;
  39. background: #fff;
  40. border-radius: 12rpx;
  41. padding: 20rpx;
  42. margin-bottom: 40rpx;
  43. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
  44. }
  45. .activity-image.data-v-5e624878 {
  46. width: 180rpx;
  47. height: 180rpx;
  48. border-radius: 8rpx;
  49. margin-right: 20rpx;
  50. }
  51. .activity-info.data-v-5e624878 {
  52. flex: 1;
  53. display: flex;
  54. flex-direction: column;
  55. justify-content: space-between;
  56. }
  57. .title-row.data-v-5e624878 {
  58. display: flex;
  59. align-items: center;
  60. margin-bottom: 10rpx;
  61. }
  62. .activity-badge.data-v-5e624878 {
  63. width: 31px;
  64. height: 20px;
  65. background: #218cdd;
  66. border-radius: 3.5px;
  67. margin-right: 7rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. }
  72. .badge-text.data-v-5e624878 {
  73. font-size: 18rpx;
  74. color: #fff;
  75. }
  76. .activity-title.data-v-5e624878 {
  77. font-size: 28rpx;
  78. font-weight: bold;
  79. color: #333;
  80. line-height: 1.4;
  81. }
  82. .activity-location.data-v-5e624878, .activity-time.data-v-5e624878, .activity-participants.data-v-5e624878 {
  83. display: flex;
  84. align-items: center;
  85. margin-bottom: 6rpx;
  86. }
  87. .location-text.data-v-5e624878, .time-text.data-v-5e624878, .participants-text.data-v-5e624878 {
  88. font-size: 24rpx;
  89. color: #999;
  90. margin-left: 6rpx;
  91. }
  92. .qrcode-container.data-v-5e624878 {
  93. display: flex;
  94. justify-content: center;
  95. margin-bottom: 60rpx;
  96. }
  97. .qrcode-wrapper.data-v-5e624878 {
  98. background: #fff;
  99. border-radius: 12rpx;
  100. padding: 40rpx;
  101. box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.1);
  102. }
  103. .save-container.data-v-5e624878 {
  104. padding: 0 40rpx;
  105. }