u-cell-item.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. @charset "UTF-8";
  2. /**
  3. * 主题色配置
  4. * 默认在 uni.scss 全局引入:@import '@/theme.scss';
  5. * <script> 下使用主题变量:import x from '@/theme.scss';
  6. */
  7. .page.data-v-65423b64 {
  8. background-color: #f8f8f8;
  9. font-family: PingFangSC;
  10. }
  11. .safeAreaPad.data-v-65423b64 {
  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-65423b64: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-cell.data-v-65423b64 {
  51. display: flex;
  52. flex-direction: row;
  53. align-items: center;
  54. position: relative;
  55. box-sizing: border-box;
  56. width: 100%;
  57. padding: 26rpx 32rpx;
  58. font-size: 28rpx;
  59. line-height: 54rpx;
  60. color: #606266;
  61. background-color: #fff;
  62. text-align: left;
  63. }
  64. .u-cell_title.data-v-65423b64 {
  65. font-size: 28rpx;
  66. }
  67. .u-cell__left-icon-wrap.data-v-65423b64 {
  68. margin-right: 10rpx;
  69. font-size: 32rpx;
  70. }
  71. .u-cell__right-icon-wrap.data-v-65423b64 {
  72. margin-left: 10rpx;
  73. color: #969799;
  74. font-size: 28rpx;
  75. }
  76. .u-cell__left-icon-wrap.data-v-65423b64,
  77. .u-cell__right-icon-wrap.data-v-65423b64 {
  78. display: flex;
  79. flex-direction: row;
  80. align-items: center;
  81. height: 48rpx;
  82. }
  83. .u-cell-border.data-v-65423b64:after {
  84. position: absolute;
  85. box-sizing: border-box;
  86. content: ' ';
  87. pointer-events: none;
  88. border-bottom: 1px solid #e4e7ed;
  89. right: 0;
  90. left: 0;
  91. top: 0;
  92. -webkit-transform: scaleY(0.5);
  93. transform: scaleY(0.5);
  94. }
  95. .u-cell-border.data-v-65423b64 {
  96. position: relative;
  97. }
  98. .u-cell__label.data-v-65423b64 {
  99. margin-top: 6rpx;
  100. font-size: 26rpx;
  101. line-height: 36rpx;
  102. color: #909399;
  103. word-wrap: break-word;
  104. }
  105. .u-cell__value.data-v-65423b64 {
  106. overflow: hidden;
  107. text-align: right;
  108. vertical-align: middle;
  109. color: #909399;
  110. font-size: 26rpx;
  111. }
  112. .u-cell__title.data-v-65423b64,
  113. .u-cell__value.data-v-65423b64 {
  114. flex: 1;
  115. }
  116. .u-cell--required.data-v-65423b64 {
  117. overflow: visible;
  118. display: flex;
  119. flex-direction: row;
  120. align-items: center;
  121. }
  122. .u-cell--required.data-v-65423b64:before {
  123. position: absolute;
  124. content: '*';
  125. left: 8px;
  126. margin-top: 4rpx;
  127. font-size: 14px;
  128. color: #fa3534;
  129. }
  130. .u-cell_right.data-v-65423b64 {
  131. line-height: 1;
  132. }