u-tabbar.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. .u-fixed-placeholder.data-v-180fb800 {
  28. box-sizing: content-box;
  29. }
  30. .u-tabbar__content.data-v-180fb800 {
  31. display: -webkit-box;
  32. display: -webkit-flex;
  33. display: flex;
  34. -webkit-box-orient: horizontal;
  35. -webkit-box-direction: normal;
  36. -webkit-flex-direction: row;
  37. flex-direction: row;
  38. -webkit-box-align: center;
  39. -webkit-align-items: center;
  40. align-items: center;
  41. position: relative;
  42. position: fixed;
  43. bottom: 0;
  44. left: 0;
  45. width: 100%;
  46. z-index: 998;
  47. box-sizing: content-box;
  48. }
  49. .u-tabbar__content__circle__border.data-v-180fb800 {
  50. border-radius: 100%;
  51. width: 110rpx;
  52. height: 110rpx;
  53. top: -48rpx;
  54. position: absolute;
  55. z-index: 4;
  56. background-color: #ffffff;
  57. left: 50%;
  58. -webkit-transform: translateX(-50%);
  59. transform: translateX(-50%);
  60. }
  61. .u-tabbar__content__circle__border.data-v-180fb800:after {
  62. border-radius: 100px;
  63. }
  64. .u-tabbar__content__item.data-v-180fb800 {
  65. -webkit-box-flex: 1;
  66. -webkit-flex: 1;
  67. flex: 1;
  68. -webkit-box-pack: center;
  69. -webkit-justify-content: center;
  70. justify-content: center;
  71. height: 100%;
  72. padding: 12rpx 0;
  73. display: -webkit-box;
  74. display: -webkit-flex;
  75. display: flex;
  76. -webkit-box-orient: horizontal;
  77. -webkit-box-direction: normal;
  78. -webkit-flex-direction: row;
  79. flex-direction: row;
  80. flex-direction: column;
  81. -webkit-box-align: center;
  82. -webkit-align-items: center;
  83. align-items: center;
  84. position: relative;
  85. }
  86. .u-tabbar__content__item__button.data-v-180fb800 {
  87. position: absolute;
  88. top: 14rpx;
  89. left: 50%;
  90. -webkit-transform: translateX(-50%);
  91. transform: translateX(-50%);
  92. }
  93. .u-tabbar__content__item__text.data-v-180fb800 {
  94. color: #606266;
  95. font-size: 26rpx;
  96. line-height: 28rpx;
  97. position: absolute;
  98. bottom: 14rpx;
  99. left: 50%;
  100. -webkit-transform: translateX(-50%);
  101. transform: translateX(-50%);
  102. }
  103. .u-tabbar__content__circle.data-v-180fb800 {
  104. position: relative;
  105. display: -webkit-box;
  106. display: -webkit-flex;
  107. display: flex;
  108. -webkit-box-orient: horizontal;
  109. -webkit-box-direction: normal;
  110. -webkit-flex-direction: row;
  111. flex-direction: row;
  112. flex-direction: column;
  113. -webkit-box-pack: justify;
  114. -webkit-justify-content: space-between;
  115. justify-content: space-between;
  116. z-index: 10;
  117. height: calc(100% - 1px);
  118. }
  119. .u-tabbar__content__circle__button.data-v-180fb800 {
  120. width: 90rpx;
  121. height: 90rpx;
  122. border-radius: 100%;
  123. display: -webkit-box;
  124. display: -webkit-flex;
  125. display: flex;
  126. -webkit-box-orient: horizontal;
  127. -webkit-box-direction: normal;
  128. -webkit-flex-direction: row;
  129. flex-direction: row;
  130. -webkit-box-pack: center;
  131. -webkit-justify-content: center;
  132. justify-content: center;
  133. -webkit-box-align: center;
  134. -webkit-align-items: center;
  135. align-items: center;
  136. position: absolute;
  137. background-color: #ffffff;
  138. top: -40rpx;
  139. left: 50%;
  140. z-index: 6;
  141. -webkit-transform: translateX(-50%);
  142. transform: translateX(-50%);
  143. }