国外MOSE官网
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.

142 lines
4.2 KiB

5 days 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. .volunteer-ranking.data-v-8c72fc0e {
  28. background-color: #fff;
  29. margin: 20rpx;
  30. border-radius: 10rpx;
  31. padding: 20rpx;
  32. }
  33. .volunteer-ranking .ranking-header.data-v-8c72fc0e {
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. margin-bottom: 20rpx;
  38. }
  39. .volunteer-ranking .ranking-header .ranking-title-img.data-v-8c72fc0e {
  40. height: 60rpx;
  41. width: 200rpx;
  42. }
  43. .volunteer-ranking .ranking-header .more.data-v-8c72fc0e {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .volunteer-ranking .ranking-header .more .more-text.data-v-8c72fc0e {
  48. font-size: 24rpx;
  49. color: #999;
  50. margin-right: 4rpx;
  51. }
  52. .volunteer-ranking .ranking-scroll-container.data-v-8c72fc0e {
  53. position: relative;
  54. width: 100%;
  55. }
  56. .volunteer-ranking .ranking-list.data-v-8c72fc0e {
  57. white-space: nowrap;
  58. padding: 15rpx 0;
  59. width: 100%;
  60. overflow-x: auto;
  61. -webkit-overflow-scrolling: touch;
  62. }
  63. .volunteer-ranking .ranking-list .ranking-content.data-v-8c72fc0e {
  64. display: flex;
  65. padding: 0 20rpx;
  66. min-width: -webkit-max-content;
  67. min-width: max-content;
  68. }
  69. .volunteer-ranking .ranking-list .ranking-item.data-v-8c72fc0e {
  70. display: inline-flex;
  71. flex-direction: column;
  72. align-items: center;
  73. margin-right: 40rpx;
  74. flex-shrink: 0;
  75. min-width: 100rpx;
  76. transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  77. }
  78. .volunteer-ranking .ranking-list .ranking-item.data-v-8c72fc0e:hover, .volunteer-ranking .ranking-list .ranking-item.data-v-8c72fc0e:active {
  79. -webkit-transform: scale(1.08);
  80. transform: scale(1.08);
  81. }
  82. .volunteer-ranking .ranking-list .ranking-item.data-v-8c72fc0e:last-child {
  83. margin-right: 20rpx;
  84. }
  85. .volunteer-ranking .ranking-list .ranking-item .avatar-container.data-v-8c72fc0e {
  86. position: relative;
  87. width: 100rpx;
  88. height: 100rpx;
  89. display: flex;
  90. justify-content: center;
  91. align-items: center;
  92. }
  93. .volunteer-ranking .ranking-list .ranking-item .avatar-container .avatar-with-border.data-v-8c72fc0e {
  94. width: 100rpx;
  95. height: 100rpx;
  96. border: 4rpx solid #218CDD;
  97. border-radius: 50%;
  98. box-shadow: 0 4rpx 12rpx rgba(33, 140, 221, 0.2);
  99. transition: all 0.3s ease;
  100. overflow: hidden;
  101. display: flex;
  102. align-items: center;
  103. justify-content: center;
  104. }
  105. .volunteer-ranking .ranking-list .ranking-item .avatar-container .avatar-with-border .avatar-image.data-v-8c72fc0e {
  106. width: 100%;
  107. height: 100%;
  108. border-radius: 50%;
  109. }
  110. .volunteer-ranking .ranking-list .ranking-item .points-container.data-v-8c72fc0e {
  111. display: flex;
  112. align-items: center;
  113. justify-content: center;
  114. margin-top: 8rpx;
  115. background-color: #218CDD;
  116. border-radius: 20rpx;
  117. padding: 4rpx 12rpx;
  118. box-shadow: 0 2rpx 8rpx rgba(33, 140, 221, 0.3);
  119. }
  120. .volunteer-ranking .ranking-list .ranking-item .points-container .points-icon.data-v-8c72fc0e {
  121. width: 20rpx;
  122. height: 20rpx;
  123. margin-right: 4rpx;
  124. -webkit-filter: brightness(0) invert(1);
  125. filter: brightness(0) invert(1);
  126. }
  127. .volunteer-ranking .ranking-list .ranking-item .points-container .volunteer-points.data-v-8c72fc0e {
  128. font-size: 20rpx;
  129. color: #fff;
  130. font-weight: bold;
  131. margin: 0;
  132. }
  133. .volunteer-ranking .ranking-list .ranking-item .volunteer-name.data-v-8c72fc0e {
  134. font-size: 24rpx;
  135. color: #333;
  136. margin-top: 10rpx;
  137. max-width: 100rpx;
  138. white-space: nowrap;
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. font-weight: 500;
  142. }