| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page.data-v-22db1e38 {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad.data-v-22db1e38 {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .data-v-22db1e38: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;
- }
- .navbar.data-v-22db1e38 {
- width: 100vw;
- overflow: hidden;
- }
- .searchTabhead.data-v-22db1e38 {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 899;
- width: 100%;
- background-color: #ffffff;
- }
- .searchbox.data-v-22db1e38 {
- width: 100%;
- height: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- background-color: #ffffff;
- }
- .tab-slot.data-v-22db1e38 {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .tab-slot .tab.data-v-22db1e38 {
- font-size: 26rpx;
- font-weight: 400;
- color: #696969;
- }
- .tab-slot .tab.active.data-v-22db1e38 {
- color: #333333;
- position: relative;
- }
- .tab-slot .tab.active.data-v-22db1e38::before {
- content: '';
- position: absolute;
- bottom: 0;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- width: 20rpx;
- height: 4rpx;
- background: #333333;
- border-radius: 2rpx;
- }
|