| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page.data-v-0fa21744 {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad.data-v-0fa21744 {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .data-v-0fa21744:export {
- appThemeColor: #38C148;
- appThemeBgColor: #ffffff;
- appThemeBgGrayColor: #fafafa;
- appThemeBgGrayDeppColor: #f8f8f8;
- appThemeSearchBgColor: #F4F5F8;
- appThemeBorderColor: #efefef;
- appThemeTextColor: #333333;
- appThemeTextGrayColor: #8f92a1;
- appThemeTextGrayLightColor: #cccccc;
- appThemeTextGrayDeepColor: #696969;
- appThemeTextWhiteColor: #ffffff;
- appThemeTextBlackColor: #171717;
- appThemeTextBlackDeepColor: #16162e;
- appThemeTextMoneyColor: #f00;
- appThemeTextGrayWhiteColor: #c3c6cb;
- appThemeSkuGrayColor: #f5f5f8;
- appThemeCardGrayColor: #8f92a1;
- appThemeShopGrayColor: #888e98;
- appThemePointsSignBgColor: #f0f0f0;
- appThemePointsSignLabelColor: #dfdfdf;
- appThemePointsSignValueColor: #696969;
- appThemePointsSignYellowColor: #f9a906;
- appThemePointsSignBlueColor: #22ac38;
- appThemeNavbarTabColor: #696969;
- appThemeNavbarTabColorActive: #333333;
- appThemeShadow: 0px 2px 8px 0px rgba(27, 25, 86, 0.06);
- appZIndexDeep: 0;
- appZIndexNormal: 19;
- appZIndexAbsolute: 99;
- appZIndexFixed: 199;
- appZIndexPage: 999;
- appThemeBuyBtnBgColor: #ed3f14;
- }
- .u-progress.data-v-0fa21744 {
- overflow: hidden;
- height: 15px;
- display: inline-flex;
- align-items: center;
- width: 100%;
- border-radius: 100rpx;
- }
- .u-active.data-v-0fa21744 {
- width: 0;
- height: 100%;
- align-items: center;
- display: flex;
- flex-direction: row;
- justify-items: flex-end;
- justify-content: space-around;
- font-size: 20rpx;
- color: #ffffff;
- transition: all 0.4s ease;
- }
- .u-striped.data-v-0fa21744 {
- 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);
- background-size: 39px 39px;
- }
- .u-striped-active.data-v-0fa21744 {
- -webkit-animation: progress-stripes-data-v-0fa21744 2s linear infinite;
- animation: progress-stripes-data-v-0fa21744 2s linear infinite;
- }
- @-webkit-keyframes progress-stripes-data-v-0fa21744 {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 39px 0;
- }
- }
- @keyframes progress-stripes-data-v-0fa21744 {
- 0% {
- background-position: 0 0;
- }
- 100% {
- background-position: 39px 0;
- }
- }
|