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.

104 lines
2.5 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-73408264,
  30. view.data-v-73408264,
  31. scroll-view.data-v-73408264,
  32. swiper.data-v-73408264,
  33. button.data-v-73408264,
  34. input.data-v-73408264,
  35. textarea.data-v-73408264,
  36. label.data-v-73408264,
  37. navigator.data-v-73408264,
  38. image.data-v-73408264 {
  39. box-sizing: border-box !important;
  40. }
  41. image.data-v-73408264 {
  42. vertical-align: top;
  43. }
  44. .uni-add-tips-box.data-v-73408264 {
  45. position: fixed;
  46. top: 0;
  47. right: 0;
  48. z-index: 99999;
  49. opacity: 0.8;
  50. display: flex;
  51. justify-content: flex-end;
  52. align-items: flex-end;
  53. flex-direction: column;
  54. width: 600rpx;
  55. -webkit-animation: opacityC-data-v-73408264 1s linear infinite;
  56. animation: opacityC-data-v-73408264 1s linear infinite;
  57. }
  58. .uni-add-tips-content.data-v-73408264::before {
  59. content: "";
  60. position: absolute;
  61. width: 0;
  62. height: 0;
  63. top: -38rpx;
  64. right: 105rpx;
  65. border-width: 20rpx;
  66. border-style: solid;
  67. display: block;
  68. border-color: transparent transparent #34b5e2 transparent;
  69. }
  70. .uni-add-tips-content.data-v-73408264 {
  71. border-width: 0rpx;
  72. margin-top: 20rpx;
  73. position: relative;
  74. background-color: #34b5e2;
  75. box-shadow: 0 10rpx 20rpx -10rpx #34b5e2;
  76. border-radius: 12rpx;
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. padding: 18rpx 20rpx;
  81. margin-right: 40rpx;
  82. }
  83. .uni-add-tips-content > text.data-v-73408264 {
  84. color: #fff;
  85. font-size: 28rpx;
  86. font-weight: 400;
  87. }
  88. @-webkit-keyframes opacityC-data-v-73408264 {
  89. 0% {
  90. opacity: 0.8;
  91. }
  92. 50% {
  93. opacity: 1;
  94. }
  95. }
  96. @keyframes opacityC-data-v-73408264 {
  97. 0% {
  98. opacity: 0.8;
  99. }
  100. 50% {
  101. opacity: 1;
  102. }
  103. }