u-picker.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page.data-v-70102400 {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad.data-v-70102400 {
  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-70102400: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-datetime-picker.data-v-70102400 {
  51. position: relative;
  52. z-index: 999;
  53. }
  54. .u-picker-view.data-v-70102400 {
  55. height: 100%;
  56. box-sizing: border-box;
  57. }
  58. .u-picker-header.data-v-70102400 {
  59. width: 100%;
  60. height: 90rpx;
  61. padding: 0 40rpx;
  62. display: flex;
  63. flex-direction: row;
  64. justify-content: space-between;
  65. align-items: center;
  66. box-sizing: border-box;
  67. font-size: 30rpx;
  68. background: #fff;
  69. position: relative;
  70. }
  71. .u-picker-header.data-v-70102400::after {
  72. content: '';
  73. position: absolute;
  74. border-bottom: 1rpx solid #eaeef1;
  75. -webkit-transform: scaleY(0.5);
  76. transform: scaleY(0.5);
  77. bottom: 0;
  78. right: 0;
  79. left: 0;
  80. }
  81. .u-picker__title.data-v-70102400 {
  82. color: #606266;
  83. }
  84. .u-picker-body.data-v-70102400 {
  85. width: 100%;
  86. height: 500rpx;
  87. overflow: hidden;
  88. background-color: #fff;
  89. }
  90. .u-column-item.data-v-70102400 {
  91. display: flex;
  92. flex-direction: row;
  93. align-items: center;
  94. justify-content: center;
  95. font-size: 32rpx;
  96. color: #303133;
  97. padding: 0 8rpx;
  98. }
  99. .u-text.data-v-70102400 {
  100. font-size: 24rpx;
  101. padding-left: 8rpx;
  102. }
  103. .u-btn-picker.data-v-70102400 {
  104. padding: 16rpx;
  105. box-sizing: border-box;
  106. text-align: center;
  107. text-decoration: none;
  108. }
  109. .u-opacity.data-v-70102400 {
  110. opacity: 0.5;
  111. }
  112. .u-btn-picker--primary.data-v-70102400 {
  113. color: #22ac38;
  114. }
  115. .u-btn-picker--tips.data-v-70102400 {
  116. color: #909399;
  117. }