u-line-progress.wxss 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page.data-v-0fa21744 {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad.data-v-0fa21744 {
  12. padding-bottom: constant(safe-area-inset-bottom);
  13. padding-bottom: env(safe-area-inset-bottom);
  14. box-sizing: content-box;
  15. }
  16. .data-v-0fa21744:export {
  17. appThemeColor: #38C148;
  18. appThemeBgColor: #ffffff;
  19. appThemeBgGrayColor: #fafafa;
  20. appThemeBgGrayDeppColor: #f8f8f8;
  21. appThemeSearchBgColor: #F4F5F8;
  22. appThemeBorderColor: #efefef;
  23. appThemeTextColor: #333333;
  24. appThemeTextGrayColor: #8f92a1;
  25. appThemeTextGrayLightColor: #cccccc;
  26. appThemeTextGrayDeepColor: #696969;
  27. appThemeTextWhiteColor: #ffffff;
  28. appThemeTextBlackColor: #171717;
  29. appThemeTextBlackDeepColor: #16162e;
  30. appThemeTextMoneyColor: #f00;
  31. appThemeTextGrayWhiteColor: #c3c6cb;
  32. appThemeSkuGrayColor: #f5f5f8;
  33. appThemeCardGrayColor: #8f92a1;
  34. appThemeShopGrayColor: #888e98;
  35. appThemePointsSignBgColor: #f0f0f0;
  36. appThemePointsSignLabelColor: #dfdfdf;
  37. appThemePointsSignValueColor: #696969;
  38. appThemePointsSignYellowColor: #f9a906;
  39. appThemePointsSignBlueColor: #22ac38;
  40. appThemeNavbarTabColor: #696969;
  41. appThemeNavbarTabColorActive: #333333;
  42. appThemeShadow: 0px 2px 8px 0px rgba(27, 25, 86, 0.06);
  43. appZIndexDeep: 0;
  44. appZIndexNormal: 19;
  45. appZIndexAbsolute: 99;
  46. appZIndexFixed: 199;
  47. appZIndexPage: 999;
  48. appThemeBuyBtnBgColor: #ed3f14;
  49. }
  50. .u-progress.data-v-0fa21744 {
  51. overflow: hidden;
  52. height: 15px;
  53. display: inline-flex;
  54. align-items: center;
  55. width: 100%;
  56. border-radius: 100rpx;
  57. }
  58. .u-active.data-v-0fa21744 {
  59. width: 0;
  60. height: 100%;
  61. align-items: center;
  62. display: flex;
  63. flex-direction: row;
  64. justify-items: flex-end;
  65. justify-content: space-around;
  66. font-size: 20rpx;
  67. color: #ffffff;
  68. transition: all 0.4s ease;
  69. }
  70. .u-striped.data-v-0fa21744 {
  71. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  72. background-size: 39px 39px;
  73. }
  74. .u-striped-active.data-v-0fa21744 {
  75. -webkit-animation: progress-stripes-data-v-0fa21744 2s linear infinite;
  76. animation: progress-stripes-data-v-0fa21744 2s linear infinite;
  77. }
  78. @-webkit-keyframes progress-stripes-data-v-0fa21744 {
  79. 0% {
  80. background-position: 0 0;
  81. }
  82. 100% {
  83. background-position: 39px 0;
  84. }
  85. }
  86. @keyframes progress-stripes-data-v-0fa21744 {
  87. 0% {
  88. background-position: 0 0;
  89. }
  90. 100% {
  91. background-position: 39px 0;
  92. }
  93. }