s-menu-button.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .grid-wrap.data-v-75f856ac {
  27. width: 100%;
  28. display: flex;
  29. position: relative;
  30. box-sizing: border-box;
  31. overflow: hidden;
  32. flex-wrap: wrap;
  33. align-items: center;
  34. }
  35. .menu-box.data-v-75f856ac {
  36. position: relative;
  37. z-index: 1;
  38. transform: translate(0, 0);
  39. }
  40. .menu-box .tag-box.data-v-75f856ac {
  41. position: absolute;
  42. z-index: 2;
  43. top: 0;
  44. right: -6rpx;
  45. font-size: 2em;
  46. line-height: 1;
  47. padding: 0.4em 0.6em 0.3em;
  48. transform: scale(0.4) translateX(0.5em) translatey(-0.6em);
  49. transform-origin: 100% 0;
  50. border-radius: 200rpx;
  51. white-space: nowrap;
  52. }
  53. .menu-box .menu-icon.data-v-75f856ac {
  54. transform: translate(0, 0);
  55. width: 80rpx;
  56. height: 80rpx;
  57. padding-bottom: 10rpx;
  58. }
  59. .menu-box .menu-title.data-v-75f856ac {
  60. font-size: 24rpx;
  61. color: #333;
  62. }
  63. .data-v-75f856ac {
  64. position: relative;
  65. z-index: 1;
  66. }
  67. .data-v-75f856ac .ui-swiper-dot {
  68. position: absolute;
  69. width: 100%;
  70. bottom: 20rpx;
  71. height: 30rpx;
  72. display: flex;
  73. align-items: center;
  74. justify-content: center;
  75. z-index: 2;
  76. }
  77. .data-v-75f856ac .ui-swiper-dot.default .line-box {
  78. display: inline-flex;
  79. border-radius: 50rpx;
  80. width: 6px;
  81. height: 6px;
  82. border: 2px solid transparent;
  83. margin: 0 10rpx;
  84. opacity: 0.3;
  85. position: relative;
  86. justify-content: center;
  87. align-items: center;
  88. }
  89. .data-v-75f856ac .ui-swiper-dot.default .line-box.cur {
  90. width: 8px;
  91. height: 8px;
  92. opacity: 1;
  93. border: 0px solid transparent;
  94. }
  95. .data-v-75f856ac .ui-swiper-dot.default .line-box.cur::after {
  96. content: "";
  97. border-radius: 50rpx;
  98. width: 4px;
  99. height: 4px;
  100. background-color: #fff;
  101. }
  102. .data-v-75f856ac .ui-swiper-dot.long .line-box {
  103. display: inline-block;
  104. border-radius: 100rpx;
  105. width: 6px;
  106. height: 6px;
  107. margin: 0 10rpx;
  108. opacity: 0.3;
  109. position: relative;
  110. }
  111. .data-v-75f856ac .ui-swiper-dot.long .line-box.cur {
  112. width: 24rpx;
  113. opacity: 1;
  114. }
  115. .data-v-75f856ac .ui-swiper-dot.line {
  116. bottom: 20rpx;
  117. }
  118. .data-v-75f856ac .ui-swiper-dot.line .line-box {
  119. display: inline-block;
  120. width: 30px;
  121. height: 3px;
  122. opacity: 0.3;
  123. position: relative;
  124. }
  125. .data-v-75f856ac .ui-swiper-dot.line .line-box.cur {
  126. opacity: 1;
  127. }
  128. .data-v-75f856ac .ui-swiper-dot.tag {
  129. justify-content: flex-end;
  130. position: absolute;
  131. bottom: 20rpx;
  132. right: 20rpx;
  133. }