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.

132 lines
3.4 KiB

6 months 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. /*文字颜色*/
  23. /* 图片尺寸 */
  24. /* Border Radius */
  25. /* 水平间距 */
  26. /* 垂直间距 */
  27. /* 透明度 */
  28. /* 文章场景相关 */
  29. page.data-v-24a05de4,
  30. view.data-v-24a05de4,
  31. scroll-view.data-v-24a05de4,
  32. swiper.data-v-24a05de4,
  33. button.data-v-24a05de4,
  34. input.data-v-24a05de4,
  35. textarea.data-v-24a05de4,
  36. label.data-v-24a05de4,
  37. navigator.data-v-24a05de4,
  38. image.data-v-24a05de4 {
  39. box-sizing: border-box !important;
  40. }
  41. image.data-v-24a05de4 {
  42. vertical-align: top;
  43. }
  44. .uni-noticebar.data-v-24a05de4 {
  45. display: flex;
  46. width: 100%;
  47. box-sizing: border-box;
  48. flex-direction: row;
  49. align-items: center;
  50. padding: 6px 12px;
  51. margin-bottom: 10px;
  52. }
  53. .uni-noticebar-close.data-v-24a05de4 {
  54. margin-right: 5px;
  55. }
  56. .uni-noticebar-icon.data-v-24a05de4 {
  57. margin-right: 5px;
  58. }
  59. .uni-noticebar__content-wrapper.data-v-24a05de4 {
  60. flex: 1;
  61. flex-direction: column;
  62. overflow: hidden;
  63. }
  64. .uni-noticebar__content-wrapper--single.data-v-24a05de4 {
  65. line-height: 18px;
  66. }
  67. .uni-noticebar__content-wrapper--single.data-v-24a05de4,
  68. .uni-noticebar__content-wrapper--scrollable.data-v-24a05de4 {
  69. flex-direction: row;
  70. }
  71. .uni-noticebar__content-wrapper--scrollable.data-v-24a05de4 {
  72. position: relative;
  73. height: 18px;
  74. }
  75. .uni-noticebar__content--scrollable.data-v-24a05de4 {
  76. flex: 1;
  77. display: block;
  78. overflow: hidden;
  79. }
  80. .uni-noticebar__content--single.data-v-24a05de4 {
  81. display: flex;
  82. flex: none;
  83. width: 100%;
  84. justify-content: center;
  85. }
  86. .uni-noticebar__content-text.data-v-24a05de4 {
  87. font-size: 14px;
  88. line-height: 18px;
  89. word-break: break-all;
  90. }
  91. .uni-noticebar__content-text--single.data-v-24a05de4 {
  92. display: block;
  93. width: 100%;
  94. white-space: nowrap;
  95. overflow: hidden;
  96. text-overflow: ellipsis;
  97. }
  98. .uni-noticebar__content-text--scrollable.data-v-24a05de4 {
  99. position: absolute;
  100. display: block;
  101. height: 18px;
  102. line-height: 18px;
  103. white-space: nowrap;
  104. padding-left: 100%;
  105. -webkit-animation: notice-data-v-24a05de4 10s 0s linear infinite both;
  106. animation: notice-data-v-24a05de4 10s 0s linear infinite both;
  107. -webkit-animation-play-state: paused;
  108. animation-play-state: paused;
  109. }
  110. .uni-noticebar__more.data-v-24a05de4 {
  111. display: inline-flex;
  112. flex-direction: row;
  113. flex-wrap: nowrap;
  114. align-items: center;
  115. padding-left: 5px;
  116. }
  117. .uni-noticebar__more-text.data-v-24a05de4 {
  118. font-size: 14px;
  119. }
  120. @-webkit-keyframes notice-data-v-24a05de4 {
  121. 100% {
  122. -webkit-transform: translate3d(-100%, 0, 0);
  123. transform: translate3d(-100%, 0, 0);
  124. }
  125. }
  126. @keyframes notice-data-v-24a05de4 {
  127. 100% {
  128. -webkit-transform: translate3d(-100%, 0, 0);
  129. transform: translate3d(-100%, 0, 0);
  130. }
  131. }