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

109 lines
2.9 KiB

1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
1 month ago
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. .click-animation.data-v-781d871a: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. .volunteer-header.data-v-781d871a {
  33. width: 100%;
  34. }
  35. .volunteer-header .swiper-container.data-v-781d871a {
  36. position: relative;
  37. margin: 20rpx;
  38. border-radius: 20rpx;
  39. overflow: hidden;
  40. }
  41. .volunteer-header .swiper-container .header-title.data-v-781d871a {
  42. position: absolute;
  43. bottom: 20rpx;
  44. left: 20rpx;
  45. z-index: 10;
  46. display: flex;
  47. flex-direction: column;
  48. background-color: rgba(0, 0, 0, 0.4);
  49. padding: 10rpx 20rpx;
  50. border-radius: 10rpx;
  51. }
  52. .volunteer-header .swiper-container .header-title .title-text.data-v-781d871a {
  53. font-size: 36rpx;
  54. font-weight: bold;
  55. color: #fff;
  56. }
  57. .volunteer-header .swiper-container .header-title .date-text.data-v-781d871a {
  58. font-size: 28rpx;
  59. color: #2c5e2e;
  60. margin-top: 6rpx;
  61. }
  62. .volunteer-header .swiper-container .dove-icon.data-v-781d871a {
  63. position: absolute;
  64. right: 20rpx;
  65. bottom: 20rpx;
  66. z-index: 10;
  67. width: 70rpx;
  68. height: 70rpx;
  69. background-color: #fff;
  70. border-radius: 50%;
  71. padding: 10rpx;
  72. }
  73. .volunteer-header .notice-bar.data-v-781d871a {
  74. display: flex;
  75. align-items: center;
  76. background-color: #fff;
  77. padding: 10rpx 20rpx;
  78. margin: 0 20rpx 20rpx;
  79. border-radius: 12rpx;
  80. box-shadow: 2rpx 3rpx 2rpx 2rpx #3a94e1;
  81. }
  82. .volunteer-header .notice-bar .horn-icon.data-v-781d871a {
  83. width: 40rpx;
  84. height: 40rpx;
  85. margin-right: 10rpx;
  86. }
  87. .volunteer-header .notice-bar .notice-scroll-container.data-v-781d871a {
  88. flex: 1;
  89. height: 60rpx;
  90. overflow: hidden;
  91. position: relative;
  92. }
  93. .volunteer-header .notice-bar .notice-scroll.data-v-781d871a {
  94. position: absolute;
  95. top: 0;
  96. left: 0;
  97. width: 100%;
  98. }
  99. .volunteer-header .notice-bar .notice-text.data-v-781d871a {
  100. display: block;
  101. height: 60rpx;
  102. line-height: 60rpx;
  103. font-size: 28rpx;
  104. color: #000;
  105. font-weight: 700;
  106. white-space: nowrap;
  107. overflow: hidden;
  108. text-overflow: ellipsis;
  109. }